@import url('https://fonts.googleapis.com/css2?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');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
    --primary: #FF990A;
    --secondary: #FD5D27;
    --light-secondary: #FFECD7;
    --grey: #575757;
    --white: #fff;
    --dark: #020201;
}

/*--------------------------------------------------------------
# Font
--------------------------------------------------------------*/
.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}



html {
    scroll-behavior: smooth;
}

body {
    color: var(--grey);
    overflow-x: hidden;
}

a {
    color: var(--secondary);
    text-decoration: none;
}

a:hover {
    color: var(--primary);
    text-decoration: none;
}


ul {
    list-style: none;
    white-space: nowrap;
}

p {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.6px;
    color: var(--grey);
}



/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--light-secondary);
    width: 40px;
    height: 40px;
    transition: all 0.4s;
    border-radius: 50px;
    border: 2px solid var(--secondary);
}

.back-to-top i {
    font-size: 28px;
    color: var(--primary);
    line-height: 0;
}

.back-to-top:hover i {
    color: var(--white);
}

.back-to-top:hover {
    background: var(--secondary);
    color: var(--primary);
    margin-bottom: 10px;
    border: 2px solid var(--primary);
    box-shadow: rgb(255 135 19 / 58%) 0px 7px 29px 0px;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;

}

#preloader img {

    width: 100px;
    height: 100px;
    -webkit-animation: animate-preloader 2s linear infinite;
    animation: animate-preloader 2s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

header {
    height: 90px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999999;
}

header .logo {
    width: 100%;
    height: 70px;
}

.header-bg-white{
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.nav-section {
    border-bottom: 2px solid var(--light-secondary);
}

.nav-section a {
    color: var(--dark);
    font-weight: 600;
}

.nav-section a:hover {
    color: var(--primary);
}

a.bbt-btn, button.bbt-btn {
    background: linear-gradient(to left top, var(--primary), var(--secondary));
    border-radius: 5px;
    color: var(--light-secondary);
    font-weight: 600;
    transition: 0.7s all;
}
button.bbt-btn{
    border: 0px;
    padding: 7px;
}
a.bbt-btn:hover, button.bbt-btn:hover {
    background: linear-gradient(to right top, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: rgb(255 135 19 / 58%) 0px 7px 29px 0px;
}

/*--------------------------------------------------------------
# Landing
--------------------------------------------------------------*/
.landing-section {
    background: url("../img/banner-main.png");
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 80px;
}

.landing-img {
    z-index: 2;
}

.rotate {
    animation: rotation 50s infinite linear;
    position: absolute;
    top: 0;
    z-index: 1;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

.text {
    min-height: 60px;
    border-right: 2px solid var(--primary);
    font-size: 46px;
    background: -webkit-linear-gradient(var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.landing-section h6 {
    background: linear-gradient(to left top, var(--primary), var(--secondary));
    width: auto;
    color: var(--white);
    padding: 2px 15px;
    border-radius: 20px;
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
}
.landing-section h3 {
    color: var(--dark);
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 3px;
    font-weight: 700;
}
.landing-section p{
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
}

span.typed-cursor {
    display: none;
}

.why-choose-us {
    background: var(--white);
    width: 100%;
    z-index: 2;
    position: relative;
    padding: 15px;
    box-shadow: rgb(254 231 209) 0px 10px 15px -3px, rgb(255 253 244) 0px 4px 6px -2px;
    border-radius: 15px;
}
.why-choose-us p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
}
.why-choose-us::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 70%;
    background: linear-gradient(to top, var(--primary), var(--secondary));
    left: -4px;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 20px;
}
.why-choose-us::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 70%;
    background: linear-gradient(to top, var(--primary), var(--secondary));
    right: -4px;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 20px;
}
.why-choose-us h6{
    font-size: 20px;
    font-weight: 700;
    background: -webkit-linear-gradient(var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0px;
    border-radius: 0px;
}


.content {
    position: absolute;
    top: 50%;
    left: 2rem;
    width: 70%;
    transform: translateY(-50%);
  }
  .content h1,
  .content h4 {
    background: -webkit-linear-gradient(var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .content h1 {
    font-size: 6vmin;
  }
  .content h4 {
    font-size: 3vmin;
  }
  .content a {
    background: -webkit-linear-gradient(var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0rem;
    height: 100vh;
    background-color: var(--light-secondary);
    transition: 1s cubic-bezier(0.645, 0.045, 0.355, 1);
    will-change: width;
    z-index: 99;
  }
  .nav.is-active {
    width: 100%;
  }
  
  .nav__trigger {
    display: block;
    transition: 0.2s ease-in-out;
    z-index: 999;
  }
  .nav__trigger .bars {
    position: relative;
  }
  .nav__trigger .bars, .nav__trigger .bars:before, .nav__trigger .bars:after {
    width: 28px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 4px;
    transition: 0.2s ease-in-out;
  }
  .nav__trigger .bars:before, .nav__trigger .bars:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform;
  }
  .nav__trigger .bars:before {
    transform: translateY(-8px);
  }
  .nav__trigger .bars:after {
    transform: translateY(8px);
  }
  .nav__trigger.is-active {
    transform: rotate(-45deg);
  }
  .nav__trigger.is-active .bars:before, .nav__trigger.is-active .bars:after {
    transform: translateX(0) rotate(-90deg);
  }
  
  .nav__content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 1200px;
    padding: 1rem 3.75rem 1rem 2.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%);
    transition: 0s linear 0.25s;
  }
  .nav__content.is-active {
    visibility: visible;
    opacity: 1;
    transition: 0s linear;
  }
  .nav__content.is-active .nav__item a {
    opacity: 1;
    transform: translateY(0);
    transition-property: transform, opacity, color;
    transition-duration: 0.55s, 0.55s, 0.3s;
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1), ease-in-out, ease-in-out;
  }
  .nav__content.is-active .nav__list .nav__item:nth-of-type(1) a {
    transition-delay: 0s, 0s, 0s;
  }
  .nav__content.is-active .nav__list .nav__item:nth-of-type(2) a {
    transition-delay: 0.05s, 0.05s, 0s;
  }
  .nav__content.is-active .nav__list .nav__item:nth-of-type(3) a {
    transition-delay: 0.1s, 0.1s, 0s;
  }
  .nav__content.is-active .nav__list .nav__item:nth-of-type(4) a {
    transition-delay: 0.15s, 0.15s, 0s;
  }
  .nav__content.is-active .nav__list .nav__item:nth-of-type(5) a {
    transition-delay: 0.2s, 0.2s, 0s;
  }
  .nav__content.is-active .nav__list .nav__item:nth-of-type(6) a {
    transition-delay: 0.25s, 0.25s, 0s;
  }
  .nav__content.is-active .nav__list .nav__item:nth-of-type(7) a {
    transition-delay: 0.3s, 0.3s, 0s;
  }
  .nav__content.is-active .nav__list .nav__item:nth-of-type(8) a {
    transition-delay: 0.35s, 0.35s, 0s;
  }
  .nav__content.is-active .nav__list .nav__item:nth-of-type(9) a {
    transition-delay: 0.4s, 0.4s, 0s;
  }
  
  .nav__list ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav__item {
    overflow: hidden;
  }
  .nav__item a {
    display: inline-block;
    padding: 1rem;
    background: -webkit-linear-gradient(var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    font-size: 48px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(100%);
    transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    will-change: transform, opacity;
  }
  .nav__item a:hover {
    background: -webkit-linear-gradient(var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .nav__divider {
    margin: 1.75rem 0 1.5rem;
    width: 100%;
    height: 2px;
    background-color: var(--dark);
    transform: scaleX(0);
    transform-origin: 0 0;
    transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }


  .about-box {
    background: linear-gradient(to top, var(--primary), var(--secondary));
    border-radius: 15px;
}
.about-box h2{
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
}
.about-box p {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 26px;
}
.about-highlights-head img{
    width: 40px;
}
.about-highlights p{
    font-size: 16px;
    font-weight: 200;
    letter-spacing: 2px;
    line-height: 23px;
}
.about-highlights p b{
    font-size: 11px;
}
.about-box-content{
    z-index: 20000;
}
.about-bg{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
}
.about-parallax {
    background-image: url("../img/aim.jpg");
    min-height: 350px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.title h3{
    font-weight: 400;
    font-size: 30px;
}
.title h3 span{
    font-weight: 800;
    background: -webkit-linear-gradient(var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.our-work-process-box{
    background-image: url("../img/process.png");
    background-color: #ffefde;
    padding: 15px;
    transition: all 1s ease-in-out;
    border-radius: 10px;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
.our-work-process-box:hover{
    background-color: #FF990A;
}
.num{
    position: absolute;
    left: -7px;
    font-weight: 900;
    font-size: 175px;
    transition: all 1s ease-in-out;
    background: -webkit-linear-gradient(var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.five .num, .three .num, .two .num{
    left: -15px;
}
.our-work-process-box:hover .num{
    background: -webkit-linear-gradient(var(--white), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.our-work-process-box h4 {
    margin-left: 65px;
    font-size: 30px;
    font-weight: 700;
    transition: all 1s ease-in-out;
    background: -webkit-linear-gradient(var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.our-work-process-box:hover h4 {
    background: -webkit-linear-gradient(var(--white), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services{
    background-image: url("../img/dot-wave.png");
    background-color: #FFF9F4;
    background-repeat: no-repeat;
    background-size: cover;
}
.services p{
    font-size: 12px;
    padding: 0 10px;
}

.technologies{
    background: #FFF9F4;
}
.technologies-box {
    background: var(--white);
    padding: 10px;
    box-shadow: rgb(254 231 209) 0px 10px 15px -3px, rgb(255 253 244) 0px 4px 6px -2px;
    border-radius: 6px;
}
.technologies-box h6{
    font-size: 10px;
}

.contact-quote{
    background: linear-gradient(to top, var(--primary), var(--secondary));
}
.contact-quote h3{
    font-size: 60px;
    font-weight: 900;
    color: var(--white);
    -webkit-text-fill-color: rgba(255, 255, 255, 0); 
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--white);
}
.contact{
    background-image: url("../img/map-white.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
footer {
    background: var(--dark);
    color: var(--white);
}
footer p{
    color: var(--light-secondary);
    font-weight: 400;
}
.footer-logo{
    width: 350px;
    margin-bottom: 10px;
}
.copyright{
    background: linear-gradient(to top, var(--primary), var(--secondary));
}
.copyright p{
    font-size: 12px;
}
@media only screen and (max-width: 1000px){
    .nav-link {
        display: none;
    }
    .landing-section {
        padding-top: 100px;
    }
    .why-choose-us p{
        padding-bottom: 25px;
    }
    .our-work-process-box h4{
        font-size: 24px;
    }
    .num{
        font-size: 125px;
    }
    .our-work-process-box{
        height: 160px;
    }
    .contact-quote h3 {
        font-size: 50px;
    }
}
@media only screen and (max-width: 600px) {
    .nav-link {
      display: none;
    }
    .landing-section{
        overflow: hidden;
        padding-top: 95px;
    }
    .rotate{
        display: none;
    }
    .text {
        font-size: 26px;
        min-height: 30px;
    }
    .landing-section h3 {
        font-size: 21px;
        letter-spacing: 2px;
    }
    .why-choose-us p{
        padding-bottom: 30px;
    }
    .about-box h2 {
        font-size: 26px;
    }
    .about-parallax {
        background-image: url(../img/aim.jpg);
        min-height: 200px;
        background-attachment: local;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .num {
        font-size: 100px;
    }
    .our-work-process-box {
        height: 100px;
    }
    .five .num, .three .num, .two .num {
        left: -10px;
    }
    .contact-quote h3 {
        font-size: 36px;
    }
    section{
        overflow-x: hidden;
    }
    a.bbt-btn {
        margin-right: 15px;
    }
}