@import url('https://fonts.googleapis.com/css2?family=Oregano:ital@0;1&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
}

.body{
    position: relative;
    overflow-x: hidden;
}

.tracker {
    position: fixed; 
    width: 60px;
    aspect-ratio: 1/1;
    border: 3px solid #FF9104;
    border-radius: 50%;
    pointer-events: none; 
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.tracker .inner-ball {
    width: 15px;
    aspect-ratio: 1/1;
    background-color: #FF9104;
    border-radius: 50%;
    position: relative;
    transition: transform 0.1s ease-out; 
}

/* NAVIGATION---------------START-----------------HERE------------------ */

nav{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

nav img{
    width: 150px;
}

nav .nav-bar{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li.nav-active-item{
    margin: 0 10px;
    padding: 5px 0;
    position: relative;
}

nav li.nav-active-item::before{
    content: "";
    background: #FF9104;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0);
    transform-origin: left;
    transition: all 0.5s ease-in-out;
}

nav li.nav-active-item:hover::before{
    transform: scale(1);
}

nav li.nav-active-item.active::before{
    content: "";
    background: #FF9104;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(1);
}

nav .nav-active-item:hover .nav-active-link{
    color: #FF9104;
}

nav .nav-active-item.active .nav-active-link{
    color: #FF9104;
}

nav a.nav-active-link{
    color: #FFFF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

nav .nav-hide-btn,.nav-show-btn{
    display: none;
}

nav #contact{
    display: none;
}

.btnn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 45px;
    border-radius: 10px;
    border: 2px solid #FFF;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease-in;
    z-index: 1;
    text-decoration: none;
}
.btnn::before,.btnn::after {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 100%;
    transform: skew(15deg);
    transition: all 0.5s;
    overflow: hidden;
    z-index: -1;
}
.btnn::before {
    left: -10px;
    background: #FFF;
}
.btnn::after {
    right: -10px;
    background: #FFF;
}
.btnn:hover::before,.btnn:hover::after {
    width: 58%;
}
.btnn:hover span {
    color: #FF9104;
    transition: 0.3s;
}
.btnn span {
    color: #FFF;
    font-size: 18px;
    transition: all 0.3s ease-in;
    font-weight: 600;
}

.drop-down-1{
    position: absolute;
    top: 100px;
    left: 0;
    width: 650px;
    z-index: 2;
    background: #FFF;
    box-shadow: 0 0 10px  gray;
    padding: 10px 15px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.drop-down-1 .drop-content img{
    width: 50px !important;
}

.drop-down-1 h6{
    font-size: 14px;
}

.drop-down-1 h6{
    font-size: 14px;
}

.drop-down-1 P{
    font-size: 13px;
}

#drop-down-2{
    display: none;
}

#drop-1:hover .drop-down-1{
    top: 40px;
    opacity: 1;
    visibility: visible;
}

@media only screen and (max-width: 1200px){
    .drop-down-1 {
        width: 600px;
    }
}
@media only screen and (max-width: 992px){
    nav .nav-bar {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        z-index: 10;
        background: #0F2942;
        width: 300px;
        height: 100vh;
        overflow-y: scroll;
        transition: all 0.5s ease-in-out;
    }
    li.nav-active-item {
        margin: 0 20px;
    }
    nav li.nav-active-item {
        margin: 20px;
    }
    nav li.nav-active-item.active::before {
        width: 95px;
    }
    nav li.nav-active-item::before {
        width: 95px;
    }
    nav .nav-hide,.drop-back {
        width: 50px;
        aspect-ratio: 1/1;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #FF9104;
        color: #FFF;
        text-decoration: none;
        font-size: 20px;
        border-radius: 100px;
        margin: 15px 15px 30px auto;
    }
    #drop-down-1{
        display: none;
    }
    #drop-down-2{
        display: block;
        width: 300px;
        height: 100vh;
        position: fixed;
        top: 0;
        left: -100%;
        overflow-y: scroll;
        opacity: 1;
        visibility: visible;
        transition: all 0.5s ease-in-out;
    }
    nav .nav-hide-btn,.nav-show-btn{
        display: block;
    }
    nav .nav-btn{
        display: none;
    }
    nav #contact{
        display: block;
    }
}

/* NAVIGATION---------------ENDS-----------------HERE------------------ */

/* BANNER---------------START-----------------HERE------------------ */

.banner{
    width: 100%;
    background-image: url(../images/banner-2.webp);
    background-repeat: no-repeat;
    background-size: cover;
    height: 120vh;
    display: flex;
    align-items: center;
    position: relative;
}

.banner::-webkit-scrollbar{
    display: none;
}

.banner .banner-content{
    width: 60%;
    position: relative;
    z-index: 1;
}

.banner h2{
    font-size: 60px;
    font-weight: 600;
    line-height: 1.1;
    font-family: "Outfit", sans-serif;
}

.banner h1{
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    font-family: "Outfit", sans-serif;
}

.banner p{
    font-size: 20px;
}

.banner .bttnn{
    width: 200px;
    height: 45px;
    background: #FF9104;
    display: flex;
    align-items: center;
    color: #FFF;
    justify-content: center;
    border-radius: 5px;
    margin-right: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.banner .bttnn:hover{
    transform: translateY(-5px);
    box-shadow: 3px 3px 10px 0 rgba(201, 201, 201, 0.233);
}

.banner #bttnn-2{
    border: 1px solid #FFF;
    background: transparent;
}   
.banner #bttnn-2:hover{
    background: #FFF;
    color: #0F2942;
}   

.banner .banner-bar{
    background: #060E32;
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    padding: 20px 0;
    transform: rotate(4deg);
    z-index: 2;
}

.banner #banner-bar-2{
    background: #FF9104;
    color: #060E32 !important;
    transform: rotate(-4deg);
    z-index: 1;
}

.banner img{
    position: absolute;
    z-index: 0;
}

.banner img.ball{
    animation: popup 3s infinite;
}
@keyframes popup {
    0%,100%{
        transform: scale(0.8);
    }50%{
        transform: scale(1.1);
    }
}

.banner .swiper-wrapper{
    transition-timing-function: linear !important;
}

@media only screen and (max-width: 1200px){
    .banner-bar h4 {
        font-size: 20px;
    }
    .banner p{
        font-size: 18px;
    }
}
@media only screen and (max-width: 992px){
    .banner .banner-content {
        width: 80%;
    }
    .banner h2 {
        font-size: 50px;
    }
    .banner h1 {
        font-size: 50px;
    }
}
@media only screen and (max-width: 767px){
    .banner .banner-content {
        width: 100%;
        text-align: center;
        position: relative;
        top: -30px;
    }
    .banner h2 {
        font-size: 35px;
    }
    .banner h1 {
        font-size: 34px;
    }
    .banner p {
        font-size: 14px;
    }
    .banner .banner-btn{
        justify-content: center;
    }
    .banner .bttnn {
        font-size: 13px;
        width: 150px;
        margin: 0;
    }
    .banner #bttnn-2 {
        margin-left: 10px;
    }
    .banner-bar h4{
        font-size: 18px;
    }
    .banner #banner-bar-2{
        bottom: -5px;
    }
    .banner img.ball{
        display: none;
    }
}

/* BANNER---------------ENDS-----------------HERE------------------ */

/* SERVVIEe---------------START-----------------HERE------------------ */

.service .service-title{
    width: 75%;
    margin: 0 auto;
}

.service h3{
    color: #FF9104;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
}

.service h1{
    color: #0F2942;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
}

.service h4{
    color: #0F2942;
    font-size: 25px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
    font-family: "Outfit", sans-serif;
}

.service p{
    color: #7a7a7a;
    transition: all 0.3s ease-in-out;
}

.service .service-content{
    box-shadow: 0 0 10px rgb(219, 219, 219);
    border-radius: 20px;
    padding: 30px;
    margin: 20px 0;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.service .service-content:hover{
    transform: translateY(-10px);
    box-shadow: 0 0 10px rgb(146, 146, 146);
    background: #060E32;
}

.service .service-content:hover p{
    color: #FFF;
}

.service .service-content:hover h4{
    color: #FFF;
}

.service img{
    width: 100px;
    margin-left: 15px;
}

.serv-btn{
    width: 200px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    background: #0F2942;
    color: #FFF;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 auto;
    transition: all 0.3s ease-in-out;
}

.serv-btn:hover{
    border: 2px solid #0F2942;
    color: #0F2942;
    background: transparent;
}

@media only screen and (max-width: 1200px){
    .service h4 {
        font-size: 23px;
    }
}
@media only screen and (max-width: 992px){
    .service img {
        width: 50px;
    }
    .service h4 {
        font-size: 19px;
    }
    .service .service-content {
        padding: 25px 15px;
    }
    .service .service-title {
        width: 100%;
    }
}
@media only screen and (max-width: 767px){
    .service .service-content {
        flex-direction: column;
        text-align: center;
    }
    .service h1 {
        font-size: 24px;
    }
    .service img {
        width: 60px;
        margin-top: 20px;
    }
}

/* SERVVIEe---------------ENDS-----------------HERE------------------ */

/* PROJECT---------------START-----------------HERE------------------ */

.project .project-title{
    width: 75%;
    margin: 0 auto;
}

.project h3{
    color: #FF9104;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
}

.project h1{
    color: #0F2942;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
}

.project h4{
    color: #0F2942;
    font-size: 25px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
}

.project .controls{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.project .buttons {
    margin: 0 20px;
    padding: 5px 0;
    color: #0F2942;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.project .buttons::before{
    content: "";
    background: #FF9104;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0);
    transform-origin: center;
    transition: all 0.3s ease-in-out;
}

.project .buttons.active::before{
    content: "";
    background: #FF9104;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(1);
}

.project .buttons:hover::before{
    transform: scale(1);
}

.project .buttons:hover{
    color: #FF9104;
}

.project .buttons.active{
    color: #FF9104;
}

.project .overflow-hidden{
    box-shadow: 0 0 10px rgb(189, 189, 189);
    margin: 20px 0;
    height: 265px;
}

.project img{
    transition: all 0.3s ease-in-out;    
    object-fit: cover;
}

.project img:hover{
    transform: scale(1.1);
}

.project .swiper-wrapper{
    transition-timing-function: linear !important;
}

.project .img{
    transition: all 2s ease-in-out
}

.project .overflow-hidden:hover  .img{
    transform: translateY(-40%);
}

@media only screen and (max-width: 992px){
    .project .project-title{
        width: 100%;
    }
}
@media only screen and (max-width: 767px){
    .project h1 {
        font-size: 24px;
    }
}

/* PROJECT---------------ENDS-----------------HERE------------------ */

/* PRICE---------------START-----------------HERE------------------ */

.price {
    background-image: url(../images/abt-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 100px 0;
}

.price .price-title span{
    background: #FF9104;
    color: #FFF;
    border-radius: 100px;
    margin-left: 10px;
    padding: 5px 20px;
}

.price .controls{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.price .buttons,.button {
    margin: 0 15px;
    padding: 5px 0;
    color: #FFF;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.price .buttons::before,.button::before{
    content: "";
    background: #FF9104;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0);
    transform-origin: center;
    transition: all 0.3s ease-in-out;
}

.price .buttons.active::before,.button.active::before{
    content: "";
    background: #FF9104;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(1);
}

.price .buttons:hover::before,.button:hover::before{
    transform: scale(1);
}

.price .buttons:hover,.button:hover{
    color: #FF9104;
}

.price .buttons.active,.button.active{
    color: #FF9104;
}

.price .price-title{
    width: 75%;
    margin: 0 auto;
}

.price h3{
    color: #FF9104;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
}

.price h2{
    color: #0F2942;
    font-weight: 700;
    font-size: 50px;
    font-family: "Outfit", sans-serif;
}

.price .price-card{
    background: #FFF;
    padding: 40px 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px gray;
    overflow: hidden;
    position: relative;
    margin: 20px 0;
}

.price h1{
    color: #FF9104;
    font-weight: 700;
    font-size: 40px;
    font-family: "Outfit", sans-serif;
}

.price .price-bttn{
    background: #0F2942;
    width: 200px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    text-decoration: none;
    border-radius: 100px;
    margin: 10px auto ;
    transition: all 0.3s ease-in-out;
}

.price .price-bttn:hover{
    background: #FF9104;
}

.price .strip {
    width: 200px;
    height: 50px;
    background: #0F2942;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: absolute;
    top: 12px;
    right: -60px;
    transform: rotate(45deg);
    font-weight: 800;
}

.price .price-card ul{
    height: 175px;
    overflow-y: scroll;
}

select#currency {
    background: #FF9104;
    color: #FFF;
    border: none;
    border-radius: 5px;
}

select#currency:focus{
    outline: none;
}

.price .price-card ul::-webkit-scrollbar {
    width: 8px;
}
.price ul::-webkit-scrollbar-thumb {
    background-color: #FF9104;
    border-radius: 10px;
}
.price .price-card ul::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

@media only screen and (max-width:992px){
    .price .price-title{
        width: 100%;
    }
    .price .currency-selector {
        text-align: center;
    }
}
@media only screen and (max-width: 767px){
    .price h2{
        font-size: 30px;
    }
}

/* PRICE---------------ENDS-----------------HERE------------------ */

/* TESTIMONIAL---------------START-----------------HERE------------------ */

.testimonial .test-title{
    width: 75%;
    margin: 0 auto;
}

.testimonial h3{
    color: #FF9104;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
}

.testimonial h1{
    color: #0F2942;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
}

.testimonial p{
    font-size: 15px;
}

.testimonial img{
    width: 50px;
    border-radius: 100px;
    border: 1px solid #636363;
}

.testimonial i{
    color:#ffbb00;
}

.testimonial .test-content{
    background: #FFFF;
    box-shadow: 0 0 10px gray;
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
}

.testimonial .swiper-wrapper{
    transition-timing-function: linear !important;
}

@media only screen and (max-width: 767px){
    .testimonial .test-title{
        width: 100%;
    }
}

/* TESTIMONIAL---------------ENDS-----------------HERE------------------ */

/* FOOTER---------------START-----------------HERE------------------ */

.footer {
    padding: 100px 0;
    border-bottom: 1px solid #0F2942;
}

.footer img{
    width: 150px;
}

.footer p{
    color: #4e4e4e;
    font-weight: 400;
}

.footer h3{
    color: #0F2942;
    font-weight: 700;
    font-size: 25px;
    font-family: "Outfit", sans-serif;
}

.footer li a{
    color: #4e4e4e;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    font-size: 17px;
}

.footer li{
    transition: all 0.3s ease-in-out;
}

.footer li:hover{
    padding-left: 10px;
}

.footer li:hover a{
    color: #FF9104;
}

.footer a.icn{
    width: 40px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF9104;
    color: #FFF;
    text-decoration: none;
    border-radius: 100px;
    margin-right: 10px;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.footer a.icn:hover{
    background: #0F2942;
}

.pre-footer p{
    color: #4e4e4e;
    font-weight: 400;
}

@media only screen and (max-width: 1200px){
    .footer h3{
        font-size: 23px;
    }
}
@media only screen and (max-width: 992px){
    .footer .footer-content{
        margin: 20px 0;
    }
}

/* FOOTER---------------ENDS-----------------HERE------------------ */

/* ABOUT-----------PAGE--------------START-----------------HERE------------------ */

/* BANNER_2---------------START-----------------HERE------------------ */

.banner-2{
    background-image: url(../images/abt-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 90vh;  
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-2 h1{
    font-size: 65px;
    color: #FF9104;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: "Outfit", sans-serif;
}

.banner-2 .banner-content{
    width: 80%;
    margin: 0 auto;
}

.banner-2 .banner-imgs{
    position: absolute;
    width: 80%;
    left: 50%;
    bottom: -130px;
    transform: translateX(-50%);
}

.banner-2  .bg-img{
    border: 5px solid #FF9104;
    border-radius: 20px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

@media only screen and (max-width: 1200px){
    .banner-2 .banner-imgs {
        width: 95%;
    }
    .banner-2 #h1{
        font-size: 50px;
    }
}
@media only screen and (max-width: 992px){
    .banner-2 .banner-content{
        width: 100%;
    }
    .banner-2 h1{
        font-size: 60px;
    }
}
@media only screen and (max-width: 767px){
    .banner-2 .banner-content{
        margin-top: 50px;
    }
    .banner-2 .banner-imgs {
        display: none;
    }
    .banner-2 h1 {
        font-size: 35px;
    }
    .banner-2 #h1 {
        font-size: 35px;
    }
    .banner-2 p{
        font-size: 14px !important;
    }
}

/* BANNER_2---------------ENDS-----------------HERE------------------ */

/* HELP---------------STRAT-----------------HERE------------------ */

.help{
    background: #E9EBF5;
    padding: 100px 0;
}

.help .help-info{
    background: #FFF;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 10px rgb(201, 201, 201);
}

.help small{
    background: #FFF;
    color: #FF9104;
    width: 60px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 25px;
    position: relative;
    top: -50px;
    margin-bottom: -50px;
}

.help h3{
    color: #0F2942;
}

.help h1{
    color: #FF9104;
    font-size: 45px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
}

.help .help-txt{
    background: #FFF;
    box-shadow: 0 0 10px rgb(199, 199, 199);
    padding: 30px 10px;
    border-radius: 20px;
    width: 380px;
    margin: 0 auto;
    position: relative;
    top: -100px;
}

@media only screen and (max-width: 992px){
    .help .help-content {
        margin-left: 0 !important;
        padding: 0 !important;
    }
    .help p {
        font-size: 14px;
    }
    .help h3 {
        font-size: 18px;
    }
    .help .help-txt {
        width: 100%;
    }
}
@media only screen and (max-width: 767px){
    .help img.w-100 {
        height: 250px !important;
    }
    .help .help-txt {
        position: static;
        margin-top: 20px;
    }
    .help .help-content {
        margin: 0 !important;
    }
    .help p {
        width: 100% !important;
    }
    .help h1{
        font-size: 40px;
    }
}

/* HELP---------------ENDS-----------------HERE------------------ */

/* CONTACT---------------START-----------------HERE------------------ */

.contact{
    background-image: url(../images/abt-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 150px 0 100px 0;
}

.contact h1{
    color: #FFF;
    font-weight: 700;
    font-size: 45px;
    font-family: "Outfit", sans-serif;
}

.contact h1 span{
    color: #FF9104;
}

.contact p{
    color: #5F5F5F;
    font-size: 16px;
}

.contact #name {
    width: 100%;
    height: 45px;
    font-size: 14px;
    padding: 0 10px;
    border: 2px solid #FFF;
    border-radius: 5px;
    background: transparent;
}

.contact #name:focus{
    outline: none;
}

.contact #name::placeholder{
    color: #FFF;
}

.contact .con-btn{
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF9104;
    color: #FFFF;
    border-radius: 5px;
    font-weight: 500;
    border: 2px solid #FF9104;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.contact .con-btn:hover{
    background: transparent;
    border: 2px solid #FF9104;
    color: #FF9104;
}

@media only screen and (max-width: 992px){
    .contact .contact-content{
        margin: 0 !important;
    }
    .contact h1{
        font-size: 34px;
    }
    .contact .con-info{
        flex-direction: column;
    }
    .contact .con-info .d-flex{
        width: 100%;
        margin: 6px 0;
    }
}
@media only screen and (max-width: 767px){
    .contact .contact-content{
        margin: 20px 0 !important;
        text-align: center;
    }
    .contact h1{
        font-size: 30px;
    }
    .contact iframe{
        height: 300px !important;
    }
}

/* ABT---------------START-----------------HERE------------------ */

.abt{
    background-image: url(../images/abt-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 100px 0;
    position: relative;
}

.abt h1{
    color: #FF9104;
    font-size: 65px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
}

.abt h2{
    color: #FFF;
    font-size: 45px;
    font-family: "Oregano", cursive;
}

.abt h3{
    color: #FFF;
    font-size: 60px;
    font-family: "Outfit", sans-serif;
    line-height: 1;
    text-align: right;
}

.abt p{
    color: #CED0DC;
    font-size: 20px;
    border-left: 2px solid #CED0DC;
}

.abt .img-1{
    width: 300px;
    position: absolute;
    top: 50px;
    left: 0;
    transform: rotate(-40deg);
}

.abt .img-2{
    width: 300px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.abt h4{
    font-size: 45px;
}

.abt strong{
    font-size: 35px;
    font-weight: 500;
}

@media only screen and (max-width: 992px){
    .abt .abt-content {
        text-align: center;
    }
    .abt h3 {
        text-align: center;
        word-spacing: -5px;
    }
    .abt p {
        padding: 20px 0 0 0 !important;
        border: none;
    }
    .abt .abt-title{
        width: 100% !important;
    }
}
@media only screen and (max-width: 767px){
    .abt h1 {
        font-size: 33px !important;
    }
    .abt h2 {
        font-size: 30px;
    }
    .abt p {
        font-size: 14px;
    }
    .abt h6 {
        font-size: 14px;
    }
    .abt .abt-counter {
        margin: 10px 0;
    }
}

/* ABT---------------ENDS-----------------HERE------------------ */

/* FAQ---------------START-----------------HERE------------------ */

.faq{
    background: #F0F1F4;
    padding: 100px 0;
}

.faq .accordion-button:not(.collapsed){
    background: #FF9104;
    color: #FFF;
}

.faq button.accordion-button.collapsed {
    background: #FFF;
    border: 2px solid #E3E4E4;
    color: #000;
    margin: 15px 0;
    box-shadow: none;
}

.faq .accordion-item {
    border: none;
}

.faq .accordion-button:focus {
    background: #FF9104;
    color: #FFF;
    box-shadow:  none;
}

.faq h1{
    color: #FF9104;
    font-size: 50px;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    text-align: center;
}

@media only screen and (max-width: 767px){
    .faq h1 {
        font-size: 35px;
    }
}

/* FAQ---------------ENDS-----------------HERE------------------ */

/* ABOUT-----------PAGE--------------ENDS-----------------HERE------------------ *