* {
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -moz-tap-highlight-color: rgba(0, 0, 0, 0);
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #000000;
    border-radius: 10px;
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: #707070;
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #000000;
    background-image: -webkit-linear-gradient(90deg,
            transparent,
            #FFCB00 50%,
            transparent,
            transparent)
}

@font-face {
    font-family: Inter-Regular;
    src: url(../assets/fonts/inter/Inter-Regular.ttf);
}

@font-face {
    font-family: Koulen-Regular;
    src: url(../assets/fonts/koulen/Koulen-Regular.ttf);
}



::-moz-selection {
    color: rgb(255, 255, 255);
    background: #000000;
}

::selection {
    color: rgb(255, 255, 255);
    background: #000000;
}


h1 {
    font-family: Koulen-Regular;
    font-size: 95px;
    line-height: 100px;
    font-weight: 100;
}

h2 {
    font-family: Koulen-Regular;
    font-size: 42px;
    line-height: 50px;
    font-weight: 100;
    color: #515151;
}


h3,
h4,
p,
a {
    text-decoration: none;
    font-family: Inter-Regular;

}

p {
    font-size: 16px;
    font-weight: 100;
    line-height: 25px;
}

.fr-up {
    overflow: hidden;
    height: max-content;
}

/* header  */

/* .fr-und-ln::after {
    content: "";
    width: 0%;
    height: 2px;
    display: block;
    position: absolute;
    margin-top: 2px;
    transition: all 0.3s ease-in-out;
} */

.fr-und-ln {
    position: relative;
    transition: all 0.3s ease-in-out;

}

.fr-und-ln.active {
    color: #FFCB00;
    position: relative;
}

.fr-und-ln.active:hover {
    color: #FFCB00 !important;

}

.fr-und-ln:hover {
    color: #ffffff;
}

/* .fr-und-ln:hover::after {
    content: "";
    width: 70%;
    height: 2px;
    display: block;
    position: absolute;
    border-radius: 5px;
    background-color: #067225;
    transition: all 0.3s ease-in-out;

} */

/* header  */

.header {
    position: absolute;
    width: 100%;
    z-index: 1;
}



.logo img {
    width: 200px;
    height: 100%;
    object-fit: contain;
    /* position: relative;
    z-index: 2; */
}

.hdr-cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 15px 0;
}

.overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-image: url(../assets/hdr/3.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9); */
    overflow-y: hidden;
    transition: 0.5s;
    display: flex;
    align-items: center;
    color: #fff;
}

.overlay .scl-cntct {
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.overlay .scls a {
    padding: 0 !important;
}

.overlay .scls a i {
    font-size: 30px;
}
.overlay img{
    width: 200px;
    object-fit: contain;
}


.no-scroll {
    position: fixed;
    width: 100%;
    padding-right: 10px;
    background-color: #000000;
}

.hdr-rmv {
    margin-right: 5px;
    margin-left: -5px;
}

.fa-bars {
    color: #fff;
    position: relative;
    z-index: 2;
}

.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    height: max-content;
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: max-content;
    margin-top: 30px;
}

.overlay a {
    padding: 22px;
    text-decoration: none;
    font-size: 26px;
    color: #818181;
    /* display: block; */
    transition: 0.3s;
}


.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}


.hamburger .line {
    width: 40px;
    height: 4px;
    background-color: #ecf0f1;
    display: block;
    margin: 9px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;

}

.hamburgerbar {
    position: relative;
    z-index: 2;

}

.hamburger:hover {
    cursor: pointer;
}

.hamburger-6.is-active {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width: fit-content;

}

.hamburger-6.is-active .line:nth-child(2) {
    width: 0px;
}

.hamburger-6.is-active .line:nth-child(1),
.hamburger-6.is-active .line:nth-child(3) {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.hamburger-6.is-active .line:nth-child(1) {
    -webkit-transform: translateY(13px);
    -ms-transform: translateY(13px);
    -o-transform: translateY(13px);
    transform: translateY(13px);

}

.hamburger-6.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-13px) rotate(90deg);
    -ms-transform: translateY(-13px) rotate(90deg);
    -o-transform: translateY(-13px) rotate(90deg);
    transform: translateY(-13px) rotate(90deg);
}

.hd-rt {
    display: flex;
    align-items: center;
    justify-content: space-center;
    gap: 30px;
}

.hd-rt a p {
    color: #fff;
    font-size: 16px;
    padding: 8px 30px;
    border: 1px solid #fff;
}

.tp-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.wth-ic {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tp-hdr-rt {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header.header2 {
    position: relative;
    width: 100%;
    z-index: 1;
}

.header.header2 .hd-rt a p {
    color: #000000;
    border: 2px solid #000000;
}

.header.header2 .wth-ic {
    color: #000000;
}

.header.header2 .hamburger .line {
    background-color: #000000;
}

.hamburger.hamburger-6.is-active .line {
    background-color: #fff;
}


/* header cloes  */

/* index  */

.mn-bg {
    width: 100%;
    height: 100vh;
    background-image: url(../assets/imgs/mn1.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    display: flex;
    align-items: end;
}

.mn-bg h1 {
    color: #fff;
}

.mn-bg .p3 {
    color: #fff;
    max-width: 270px;
    text-align: end;
    float: right;
    margin-top: -150px;
}

.mn-txt {
    margin-bottom: 60px;
    display: flex;
    gap: 30px;
    align-items: end;
}

.mn-txt h3 {
    rotate: -90deg;
    width: 30px;
    text-wrap: nowrap;
    color: #fff;
    margin-bottom: 4px;
}

.mn-bg .p1 {
    max-width: 500px;
    color: #fff;
}

.mn-bg .p2 {
    padding: 10px 30px;
    border: 1px solid #fff;
    color: #fff;
    width: fit-content;
    margin-top: 30px;
}

.mn-bg h1 span {
    color: #FFC700;
    font-size: 70px;
}

.ind-1 {
    margin-top: 80px;
}

.ind-1-cont h2 {
    font-size: 50px;
    color: #000000;
}

.scnd-h2 {
    margin-left: 80px;
    margin-top: 30px;
}

.ind-1-lft h2 span {
    font-size: 40px;
    color: #8A8A8A;
}

.ind-1-lft h2 .bg-bx {
    font-size: 50px;
    color: #ffffff;
    margin-left: 30px;
    position: relative;
    padding: 0 30px;
}

.ind-1-lft h2 .bg-bx img {
    position: absolute;
    left: 0;
    top: -5px;
    width: 100%;
    z-index: -1;

}

.ind-1-lft h3 {
    font-size: 20px;
    color: #FFCB00;
    margin-top: 35px;
    margin-bottom: 14px;
}

.ind-1-rt .blu-bx {
    width: 100%;
    height: max-content;
    padding: 40px 10px;
    border-radius: 10px;
    background-color: #6AB3C2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    margin-bottom: 30px;
}

.blu-bx p {
    max-width: 190px;
    font-size: 14px;
    margin: 0 10px;
    line-height: 20px;
}

.blu-bx p span {
    font-size: 45px;
    font-weight: 600;
}

.ind-1-rt {
    position: relative;
    top: -120px;
}

.ind-1-rt-bt p {
    text-align: end;
    max-width: 500px;
    margin-left: auto;

}

.ind-1-rt-bt h3 {
    text-align: end;
    margin-left: auto;
    margin-top: 30px;
    position: relative;
    width: max-content;
    padding-bottom: 7px;


}

.ind-1-rt-bt h3::after {
    content: "";
    display: block;
    height: 2px;
    width: 70%;
    position: absolute;
    bottom: 0;
    background-color: #000000;
    right: 0;
    transition: all 0.3s ease-in-out;
}

.ind-1-rt-bt h3:hover::after {
    width: 100%;
}

.ind-2-cont {
    position: relative;
}

.ind-2-cont h1 {
    font-size: 120px;
    color: #fafafa;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.ind-2-cont h1 span {
    background-color: #fcfcfc;
    padding: 0 40px;
    color: #ffffff;

}

.ind-2-cont .p1 {
    font-weight: 600;
}

.ind-2-cont h2 {
    margin: 10px 0;
}

.ind-2-cont p {
    max-width: 800px;
}

.ind-2-cont h3 {
    margin-top: 30px;
    position: relative;
    width: max-content;
    padding-bottom: 7px;
    color: #000000;
}

.ind-2-cont h3::after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    position: absolute;
    bottom: 0;
    background-color: #000000;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.ind-2-cont h3:hover::after {
    width: 70%;
}

.ind-3 {
    background-color: #fafafa;
    width: 100%;
    height: 100%;
    margin-top: 80px;
    position: relative;
    padding: 130px 0;
}

.ind-3-img1 {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: -25px;
    height: 30px;
    z-index: -1;
    object-fit: contain;

}

.ind-3-img2 {
    position: absolute;
    bottom: 0;
    left: 0;
    margin-bottom: -25px;
    height: 30px;
    z-index: -1;
    object-fit: contain;

}

.ind-3-cont {
    display: flex;
    /* justify-content: center; */
    position: relative;
}

.ind-3-cont .lft-bx {
    height: 0px;
    width: 850px;
    border-left: 0px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 600px solid rgb(255, 255, 255);
    filter: drop-shadow(0px 1px 5px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 1;
}

.bk-bg {
    position: absolute;
    top: -30px;
    left: 18%;
    height: 660px;
    width: 240px;
    background-color: #FFCB00;
    transform: skew(-27deg);
    z-index: 0;
}

.lft-bx-inr {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20px 50px 50px;
}

.lft-bx-inr h2 {
    margin-bottom: 10px;
}

.lft-bx-inr h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.lft-bx-inr-cnt {
    display: flex;
    justify-content: space-start;
    gap: 80px;
}

.lft-bx-inr-cnt p {
    max-width: 250px;
    margin: 8px 0;
    font-size: 15px;
}

.vew-btn {
    padding: 10px 20px;
    background-color: #000000;
    color: #fff;
    border-radius: 5px;
    width: max-content;
    float: right;
    margin-top: 30px;
}

.vew-btn i {
    margin-left: 10px;
}

.ind-3-img3 {
    width: 500px;
    object-fit: contain;
    position: relative;
    top: -30px;
    left: -110px;
}

.ind-3-img4 {
    height: 320px;
    object-fit: contain;
    position: absolute;
    bottom: 0px;
    right: 0;
    float: right;
}

.ind-4 {
    margin-top: 100px;
    margin-bottom: 180px;
}

.ind-4-cont h2 {
    margin-bottom: 10px;
}

.ind-4-cont .p1 {
    max-width: 800px;
    margin-bottom: 50px;
}

.ind4-flx {
    display: flex;
    gap: 70px;
    /* justify-content: space-between; */
}

.ind4-flx img {
    width: 50px;
}

.in-flx {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.ind4-flx p {
    margin: 8px 0;
}

.ind4-rt img {
    width: 100%;
    object-fit: contain;
}

.ind4-rt p span {
    font-size: 40px;
    font-weight: 600;
}

.ind4-rt p {
    max-width: 250px !important;
}

.ind4-rt {
    position: relative;
}

.ind4-rt .p1 {
    position: absolute;
    bottom: 0px;
    left: -80px;

}

.ind4-rt .p2 {
    position: absolute;
    bottom: -120px;
    left: 16%;
}

.ind4-rt .p3 {
    position: absolute;
    bottom: -70px;
    right: 0px;
}

.prdct-bx {
    width: 350px;
    height: 370px;
    position: relative;

}

.prdct-bx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ind-5-flx {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.ovr-txt {
    position: absolute;
    left: 50%;
    bottom: 0%;
    transform: translate(-50%, -32%);
    z-index: 1;
    text-align: center;
    text-wrap: nowrap;
    z-index: 3;
}

.ovr-txt h2 {
    color: #fff;
    font-size: 25px;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;

}

.ovr-txt p {
    color: #fff;
    padding: 5px 20px;
    background-color: #FF0000;
    width: max-content;
    margin: 0 auto;
    font-size: 14px;
}

.ovr-clr {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: 0.5;
    z-index: 2;
    transition: all 0.3s ease-in-out;

}

.prdct-bx:hover .ovr-clr {
    opacity: 0;
}

.prdct-bx:hover .ovr-txt h2 {
    opacity: 0;
}

.vw-btn {
    padding: 7px 20px;
    background-color: #FF0000;
    color: #fff;
    border-radius: 5px;
    width: max-content;
    margin-top: 50px !important;
    margin: 0 auto;
}

.ind-6 {
    width: 100%;
    height: 500px;
    background-image: url(../assets/imgs/7.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.txt-bx {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    padding-left: 50px;
    text-align: center;


}

.txt-bx h2 {
    font-size: 26px;
    margin-bottom: 0px;
    color: #000000;
}

.txt-bx h3 {
    font-size: 18px;
    margin-bottom: 0px;
    color: #000000;
    margin-bottom: 10px;
}

.testimonial .item {
    padding: 50px 80PX;
}

.prof-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top: -42px;
    left: -58px;
}

.prof-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-bx {
    position: relative;
    width: 100%;
    height: 100%;
}

.slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 1rem 0;
    list-style-type: none;
}

.slick-dots li {
    margin: 0 0.25rem;
}

.slick-dots button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: rgb(235, 235, 235);
    text-indent: -9999px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.slick-dots li.slick-active button {
    background-color: #FFCB00;
    width: 18px;
    height: 10px;
    border-radius: 10px;
}

.ind-7 {
    margin-top: 80px;
}

.ind-7-cont {
    text-align: center;
}

.ind-7-cont h2 {
    margin-bottom: 10px;
}

.clnt-bx {
    width: 100%;
    height: 120px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.295);
    border-radius: 10px;
    padding: 20px;
}

.clnt-bx img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.clients .item {
    padding: 20px;
}

.clients {
    margin-top: 50px;
}

.ind-8 {
    width: 100%;
    height: 100%;
    background-color: #fafafa;
    margin-top: 80px;
    position: relative;
    padding: 80px 0;
}

.ind-8 .container {
    position: relative;
}

.ind-8-lft h3 {
    margin-bottom: 10px;
}

.ltbx {
    width: 200px;
    height: 300px;
    background-color: #ececec;
    position: absolute;
    top: -80px;
    left: 56px;
}

.ind-8-rt h2 {
    font-size: 27px;
}

.faq-2 {
    max-width: 700px;
    margin-top: 2rem;
    /* padding-bottom: 1rem; */
    border-bottom: 2px solid #6e6e6e;
    cursor: pointer;
}

.qustn header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qustn h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.faq.active i {
    transform: rotate(180deg);
}

.faq-2 .ansr-2 {
    height: 0;
    transition: all 0.3s linear;
    overflow: hidden;
}

.faq-2 h3 {
    font-size: 18px;
    color: #5a5a5a;
}

.ansr-2 p {
    margin-bottom: 10px;
}

.sldimg .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ind-9 {
    margin: 100px 0 80px 0;
}

/* index close  */

/* about  */

.page-header {
    height: 400px;
    width: 100%;
}

.in-abt {
    width: 100%;
    height: 100%;
    background-image: url(../assets/hdr/1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: end;

}

.page-header h2 {
    color: #fff;
    margin-bottom: 20px;

}

.pg-nav i {
    margin: 0 10px;
}
.pg-nav p a{
    color: #fff;
}

.pg-nav span {
    color: #FFCB00;
}

.pg-btm {
    margin-bottom: 70px;
}

.page-header p {
    color: #fff;
    font-weight: 600;
}

.abt-1 {
    width: 100%;
    height: 100%;
    background-color: #F4F8F2;
    margin-top: 130px;
    padding: 80px 0;
}

.abt-1-lft h3 {
    margin-bottom: 10px;
}

.abt-1-lft h2 {
    margin-bottom: 10px;
}

.abt-1-lft .h2 {
    font-size: 30px;
    line-height: 40px;
    margin-top: 20px;
}

.abt-1-rt img {
    width: 100%;
    object-fit: contain;
    margin-top: -170px;
}

.abt-2 {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.171);
    margin-top: 100px;
    padding: 150px 0;
    position: relative;
}

.abt-2-cont h2 {
    margin-bottom: 15px;
}

.abt-2-cont p {
    max-width: 800px;
}

.abt-2-bt img {
    width: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}

.abt-2-bt p {
    max-width: 600px;
    margin-top: 10px;
}

.abt-2-bt p span {
    font-weight: 600;
}

.abt-2-bt-cont {
    margin-top: 70px;
}

.abt-2-bt.in-bt {
    /* width: max-content; */
    float: right;
    text-align: end;
}

.abt-2-bt.in-bt p {
    margin-left: auto;
}

.abt-2-bt {
    width: 100%;
}

.abtimg1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 900px;
    /* height: 100%; */
    object-fit: contain;
    z-index: 0;
}

.abtimg2 {
    position: absolute;
    top: 0;
    left: 0;
    height: 700px;
    /* height: 100%; */
    object-fit: contain;
    z-index: 0;
}

.abt-2 .container {
    position: relative;
    z-index: 1;
}

.abt-2-btm2-fl {
    margin-top: 130px;
}

.abt-2-btm2-fl h2 {
    margin-top: 10px;
}

.abt-2-btm2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.abt-2-btm2-rt {
    display: flex;
    align-items: center;
    gap: 20px;
}

.abt-2-btm2-rt .bx {
    width: 280px;
    height: 200px;
    background-color: #fff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.171);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.abt-2-btm2-rt .bx p {
    width: fit-content;
}

.abt-2-btm2-rt .bx p span{
    font-weight: 900;
    font-size: 50px;
}
.abt-3{
    width: 100%;
    height: 100%;
    background-color: #000000;
    margin-bottom: 70px;
    margin-top: 100px;
    padding: 100px 0;
    position: relative;
}
.abtimg{
    height: 500px;
    object-fit: contain;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}
.abt-3-lft img{
    width: 300px;
    height: 320px;
    object-fit: cover;
    margin: 15px 0;
}
.img-nm h2{
    font-size: 22px;
    color: #fff;
    line-height: 24px;
}
.abt-3-lft{
    display: flex;
    gap: 30px;
    color: #fff;
}
.img-nm.in2{
    margin-top: 50px;
}
.abt3-conts{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.abt-3-rt p{
    max-width: 430px;
}
.abt-3-rt{
    color: #fff;
    width: max-content;
}
.abt-3-rt h2{
    color: #fff;
}

/* about close  */

/* solutions  */

.in-slsn{
    width: 100%;
    height: 100%;
    background-image: url(../assets/hdr/2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: end;
}
.solutions-1{
    margin: 100px 0;
}
.solutions-1 h2{
    margin: 10px 0;
}
.solutions-1 p{
    max-width: 700px;
}
.big-bx{
    width: 100%;
    height: 100%;
    background-color: #fff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.171);
    padding: 80px 0 100px 0;
    margin-top: 100px;
    position: relative;
}
.slsn-flx{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.slsn-flx img{
    width: 90%;
    object-fit: contain;
}
.slsn-lft h3{
    margin: 10px 0 20px 0;
}
.ftrs h3{
    margin-bottom: 20px;
}
.ftrs-p img{
    width: 17px;
    object-fit: contain;
    margin-right: 10px;
    margin-top: 5px;
}
.ftrs-p{
    display: flex;
    margin: 10px 0;
    align-items:baseline;
}
.frtp{
    margin-top: 50px;
}
.scnd-ftr{
    margin-top: 50px;
    margin-bottom: 70px;
}
.scnd-ftr p{
    max-width: 800px;
    margin-top: 10px;
}
.rmvcntr{
    justify-content: flex-start !important;
}
.line-1{
    height: 1px;
    max-width: 80%;
    background-color: #b1b1b1;
    margin: 8px auto;
}
.line-2{
    height: 1px;
    max-width: 60%;
    background-color: #b1b1b1;
    margin: 8px auto;
}
.lns{
    margin-top: 50px;
}
.line-3{
    height: 1px;
    max-width: 40%;
    background-color: #b1b1b1;
    margin: 8px auto;
}
/* solutions closed  */

/* products  */

.hdr-txt{
    margin-top: 80px;
    margin-bottom: 50px;
}
.slider-sec h2{
    font-size: 30px;
}
.slider-sec{
    margin-bottom: 140px;
}
.prdct img{
    width: 100%;
    object-fit: contain;
}
.prdct-slide{
    margin: 50px 0;
}
.slick-arrow img{
    width: 43px;
    object-fit: contain;
}
.slick-arrow{
    position: absolute;
    top: 109%;
    z-index: 1;
    cursor: pointer;
}
.prev_button{
    left: 45%;

}
.next_button{
    right: 45%;

}
.prdct{
    margin: 0 10px;
}
.sldrs{
    margin: 85px 0;
}
/* products close  */

/* contact  */

.cntct-lft h3{
    font-size: 25px;
    margin-bottom: 10px;
}
.vrt-ln{
    height: 100%;
    width: 1px;
    background-color: #b1b1b1;
    position: absolute;
    top: 0;
    right: 0;
}
.contact-cont{
    margin-bottom: 80px;
}
.inpts{
    width: 100%;
    height: 100%;
    margin-top: 20px;
    padding-right: 20px;
}
.tp-inpts{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}
.tp-inpts input{
    width: 100%;
    height: 50px;
    padding: 5px 20px 5px 5px;
    border: none;
    border-bottom: 1.7px solid #cacaca;
    margin: 10px 0;
}
.tp-inpts input:focus{
    outline: none;
}
.inpt{
    width: 100%;
}
.txt-area textarea{
    min-width: 100%;
    max-width: 100%;
    min-height: 80px;
    max-height: 120px;
    padding: 5px 20px 5px 5px;
    border: none;
    border-bottom: 1.7px solid #cacaca;
    margin: 10px 0;
    font-family: Inter-Regular;
    color: #515151;

}

.txt-area textarea:focus{
    outline: none;
}
.inpts button{
    border: none;
    background-color: #000000;
    color: #fff;
    padding: 8px 30px;
    border-radius: 5px;
    float: right;
    margin-top: 20px;
    cursor: pointer;
}
.cntct-rt h3{
    margin: 10px 0;
}
.ct-num{
    display: flex;
    align-items: center;
    gap: 10px;
}
.ct-num{
    margin-top: 20px;
    margin-bottom: 25px;
}
.visit{
    padding-left: 110px;
    margin-top: 80px;
}
.visit h3{
    margin: 10px 0;
}
.visit .loc-flx{
    margin-top: 50px;
}
.visit .loc-flx p{
    max-width: 300px;
    color: #000000;
}
.phn a{
    color: #000000;
}

/* contact close  */




/* footer  */

.foot-bg {
    width: 100%;
    height: 100%;
    background-image: url(../assets/imgs/12.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 40px 0;
}

.foot-conts {
    display: flex;
    justify-content: space-between;
    color: #fff;
    margin-bottom: 20px;
}

.foot-logo img {
    width: 200px;
    object-fit: contain;
}

.foot-logo p {
    font-size: 15px;
}

footer p {
    color: #fff;
    max-width: 250px;
    line-height: 20px;
    margin-top: 10px;
}

footer h4 {
    font-family: Koulen-Regular;
    font-size: 23px;
    font-weight: 100;
    margin-bottom: 8px;

}

footer p {
    color: #fff;

}

.foot-links p {
    margin: 10px 0;
    transition: all 0.3s ease-in-out;
}

.foot-links p:hover {
    font-size: 18px;
}

.scls i {
    color: #fff;
    font-size: 25px;
    margin-right: 15px;
    transition: all 0.3s ease-in-out;
}

.scls i:hover {
    scale: 1.2;
}

.i-flx {
    display: flex;
    /* align-items: center; */
    gap: 0px;
    margin: 4px 0;
}

.i-flx .phn span {
    margin-left: -30px;
}

.i-flx p {
    margin: 0;
}

.i-flx i {
    margin: 0;
    margin-top: 2px;
    margin-right: 10px;
}

.i-flx p {
    margin-bottom: 8px;
    line-height: 25px;
}

.loc-flx {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.loc-flx img {
    width: 40px;
    object-fit: contain;
    margin-bottom: 10px;
}

.copyright {
    color: #fff;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 50px;
    font-size: 14px;
}

.copyright img {
    position: relative;
    top: 3px;
    margin-left: 10px;
    transition: all 0.2s ease-in-out;
}

.copyright img:hover {
    scale: 1.4;
}



/* footer close  */