*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Syne", sans-serif;
    text-decoration: none;
    list-style: none;
}










/*LOADER*/


.loader{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    transition: opacity 0.75s, visibility 0.75s;
}

.loader-hidden{
    opacity: 0;
    visibility: hidden;
}


.hacker-loader {
    position: relative;
    width: 24em;
    height: 6em;
    background-color: #0a0a0a;
    border: 0.2em solid #00ff00;
    border-radius: 0.5em;
    padding: 1em;
    overflow: hidden;
    box-shadow: 0 0 1em rgba(0, 255, 0, 0.3);
  }
  
  .loader-text {
    text-align: center;
    margin-bottom: 1em;
  }
  
  .text-glitch {
    color: #00ff00;
    font-family: monospace;
    font-size: 1.5em;
    position: relative;
    display: inline-block;
  }
  
  .text-glitch::before,
  .text-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a0a;
    clip: rect(0, 0, 0, 0);
  }
  
  .text-glitch::before {
    left: -0.1em;
    text-shadow: 0.1em 0 #ff00ff;
    animation: glitch-effect 3s infinite linear alternate-reverse;
  }
  
  .text-glitch::after {
    left: 0.1em;
    text-shadow: -0.1em 0 #00ffff;
    animation: glitch-effect 2s infinite linear alternate-reverse;
  }
  
  .loader-bar {
    width: 100%;
    height: 0.5em;
    background-color: #003300;
    border-radius: 0.25em;
    position: relative;
    overflow: hidden;
  }
  
  .bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #00ff00;
    animation: bar-fill-animation 2s infinite ease-in-out;
  }
  
  .bar-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      45deg,
      transparent,
      rgba(0, 255, 0, 0.2),
      transparent
    );
    background-size: 200% 200%;
    animation: bar-glitch-animation 2s infinite linear;
  }
  
  .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .particle {
    position: absolute;
    width: 0.2em;
    height: 0.2em;
    background-color: #00ff00;
    border-radius: 50%;
    opacity: 0;
    animation: particle-animation 2s infinite linear;
  }
  
  .particle:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
  }
  
  .particle:nth-child(2) {
    top: 30%;
    left: 60%;
    animation-delay: 0.5s;
  }
  
  .particle:nth-child(3) {
    top: 70%;
    left: 30%;
    animation-delay: 1s;
  }
  
  .particle:nth-child(4) {
    top: 90%;
    left: 90%;
    animation-delay: 1.5s;
  }
  
  .particle:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 2s;
  }
  
  @keyframes glitch-effect {
    0% {
      clip: rect(42px, 9999px, 44px, 0);
    }
    5% {
      clip: rect(12px, 9999px, 59px, 0);
    }
    10% {
      clip: rect(48px, 9999px, 29px, 0);
    }
    15.0% {
      clip: rect(42px, 9999px, 73px, 0);
    }
    20% {
      clip: rect(63px, 9999px, 27px, 0);
    }
    25% {
      clip: rect(34px, 9999px, 55px, 0);
    }
    30.0% {
      clip: rect(86px, 9999px, 73px, 0);
    }
    35% {
      clip: rect(20px, 9999px, 20px, 0);
    }
    40% {
      clip: rect(26px, 9999px, 60px, 0);
    }
    45% {
      clip: rect(25px, 9999px, 66px, 0);
    }
    50% {
      clip: rect(57px, 9999px, 98px, 0);
    }
    55.0% {
      clip: rect(5px, 9999px, 46px, 0);
    }
    60.0% {
      clip: rect(82px, 9999px, 31px, 0);
    }
    65% {
      clip: rect(54px, 9999px, 27px, 0);
    }
    70% {
      clip: rect(28px, 9999px, 99px, 0);
    }
    75% {
      clip: rect(45px, 9999px, 69px, 0);
    }
    80% {
      clip: rect(23px, 9999px, 85px, 0);
    }
    85.0% {
      clip: rect(54px, 9999px, 84px, 0);
    }
    90% {
      clip: rect(45px, 9999px, 47px, 0);
    }
    95% {
      clip: rect(37px, 9999px, 20px, 0);
    }
    100% {
      clip: rect(4px, 9999px, 91px, 0);
    }
  }
  
  @keyframes bar-fill-animation {
    0%,
    100% {
      width: 0;
    }
    50% {
      width: 100%;
    }
  }
  
  @keyframes bar-glitch-animation {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 200% 0;
    }
  }
  
  @keyframes particle-animation {
    0% {
      opacity: 0;
      transform: translate(0, 0);
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: translate(2em, 2em);
    }
  }
  



/*FINE LOADER*/











header{
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 12%;
}
.logo img{
    max-width: 100%;
    width: 120px;
    height: auto;
}
.navbar{
    display: flex;
    align-items: center;
}
.navbar a{
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    padding: 10px 20px;
    margin: 0 20px;
    padding: 2px;
    border-bottom: 2px solid transparent;
    transition: all .42s;
}
.navbar a:hover{
    color: #00643b;
    border-bottom: 2px solid #00643b;
}
.nav-righ{
    display: flex;
    align-items: center;
    transition: all .42s;
}
.top-btn{
    display: flex;
    align-items: center;
    transition: all .42s;
}
.nav-btn a{
    color: #ffffff;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 700;
}
.nav-btn span i{
    font-size: 25px;
}
.top-btn:hover{
    transform: translateX(5px);
    text-decoration: underline;
}
#menu-icon{
    font-size: 35px;
    color: #ffffff;
    cursor: pointer;
    margin-left: 10px;
    display: none;
}

/* home-section-css */
section{
    padding: 80px 12%;
}
.home1{
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url(My\ project-1\ \(7\).png);
    background-size: cover;
    background-position: center;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    gap: 3rem;
}
.home1-img img{
    position: absolute;
    top: 0;
    right: 0;
    width: 650px;
    height: auto;
}
.home1-text h4{
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 8px;
}
.home1-text h1{
    font-size: 120px;
    line-height: 115px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #F5F5F5;
}
.home1-text h5{
    color: #ffffffcc;
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 30px;
}
.home1-btn{
    display: flex;
    align-items: center;
}
.home1-btn i{
    font-size: 25px;
    margin-left: 4px;
}
.btn1{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 17px;
    text-transform: capitalize;
    font-weight: 700;
    border: 2px solid #ffffff;
    background-color: #ffffff00;
    padding: 14px 20px;
    border-radius: 10px;
    margin-right: 20px;
    transition: all .42s;
}
.btn1:hover{
    background-color: black;
    border: 2px solid #ffffff;
    color: #ffffff;
}
.btn2{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 17px;
    text-transform: capitalize;
    font-weight: 700;
    border: 2px solid #ffffff;
    padding: 14px 20px;
    border-radius: 10px;
    transition: all .42s;
}
.btn2:hover{
    background-color: #080808;
    color: #FFF;
}
.down-arrow{
    position: absolute;
    right: 8%;
    bottom: 8%;
}
.down-arrow i{
    color: #000000;
    font-size: 32px;
    width: 52px;
    height: 52px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    transition: all .42s;
}
.down-arrow i:hover{
    transform: translateY(5px);
}
.hum-text{
    position: absolute;
    left: 12%;
    bottom: 8%;
}
.hum-text span{
    color: #ffffff;
    font-size: 40px;
    margin-right: 5px;
}
.hum-text h3{
    color: #ffffffcc;
    font-size: 18px;
    font-weight: 500;
}
.hum-social{
    position: absolute;
    bottom: 8%;
    left: 30%;
}
.hum-social i{
    font-size: 25px;
    margin-right: 15px;
    transition: all .42s;
}
.hum-social i:hover{
    transform: scale(1.3);
}


/* sticky-navbar-design */
header.sticky{
    background-color: rgba(95, 95, 95, 0.474) ;
    backdrop-filter: blur(8px);
    padding: 15px 12%;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
    transition: all .42s;
}

/* services-section-css */
.top-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
}
.top-text h4{
    color: #00643b;
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 8px;
}
.top-text h2{
    color: #ffffff;
    font-size: 55px;
    text-transform: capitalize;
    font-weight: 700;
}
.top-text p{
    color: #ffffff99;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}
.serv-left{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    gap: 3rem;
}
.serv-box{
    position: relative;
    padding: 25px 25px;
    background: #F5F5F5;
    border-radius: 10px;
    cursor: pointer;
    transition: all .42s;
}
.serv-icon{
    width: 50px;
    height: 50px;
    background: #FFF;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin-bottom: 40px;
    transition: all .42s;
}
.serv-icon i{
    font-size: 25px;
    color: #080808;
}
.serv-detls h3{
    color: #080808;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 700;
    line-height: 1.75rem;
}
.down-icon{
    position: absolute;
    bottom: 25px;
    right: 25px;
}
.down-icon i{
    font-size: 35px;
    color: #08080899;
    transform: rotate(45deg);
}
.serv-icon:hover{
    background: #F5F5F5;
}
.serv-box:hover{
    background: #FFF;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
#sev-boxid{
    background-color: #080808;
    color: #FFF;
}
#sev-boxid h3{
    color: #fff;
}
#sev-boxid .down-icon i{
    color: #fff;
}

/* about-section-css */
.about{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    gap: 3rem;
}
.about-img img{
    max-width: 100%;
    height: auto;
}
.about-text h5{
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
}
.about-text h2{
    color: #ffffff;
    font-size: 64px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 10px 0;
}
.about-text h3{
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.about-text p{
    color: #ffffff99;
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    margin: 20px auto;
}
.achivment{
    display: flex;
    gap: 30px;
}
.achivment h4{
    color: #080808;
    font-size: 30px;
    font-weight: 700;
}
.achivment h6{
    color: #08080899;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    margin: 8px 0px 50px 0;
}

/* recent-work-design-css */
.recent-work{
    background: #FFE9D9;
}
.text-center{
    text-align: center;
    margin-bottom: 60px;
}
.text-center h5{
    color: #50ff8d;
    font-size: 23px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 10px;
}
.text-center h2{
    color: #ffffff;
    font-size: 62px;
    text-transform: capitalize;
    font-weight: 700;
}
.main-work{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    gap: 2rem;
}
.main-work img{
    max-width: 100%;
    width: 100%;
    height: auto;
}
.work-text{
    display: flex;
    gap: 10px;
    margin: 15px 0;
}
.work-text p{
    color: #080808CC;
    font-size: 13px;
    text-transform: capitalize;
    font-weight: 600;
    border: 1px solid #080808CC;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all .42s;
}
.work-text p:hover{
    color: #FFF;
    background: #080808;
}
.work-tit{
    color: #080808;
    font-size: 32px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
}
.work-tit i{
    color: #080808;
    font-size: 35px;
    transform: rotate(45deg);
}
.work-3{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 17px;
    text-transform: capitalize;
    font-weight: 700;
    border: 2px solid #080808;
    background-color: #080808;
    padding: 10px 0;
    border-radius: 10px;
    transition: all .42s;
}
.work-btn i{
    font-size: 25px;
    margin-left: 5px;
}
.work-3:hover{
    background-color: transparent;
    color: #080808;
}

/* testimonail-section-css */
.test-text{
    text-align: center;
    margin-bottom: 100px;
}
.test-text h5{
    color: #82ffb4;
    font-size: 23px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 10px;
}
.test-text h2{
    color: #ffffffd4;
    font-size: 62px;
    text-transform: capitalize;
    font-weight: 700;
}
.main-testimonial{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    gap: 2rem;
}
.test-img img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 8px solid #FFF;
}
.bob-test{
    position: relative;
    padding: 60px 20px 20px 20px;
    background: #F5F5F5;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    cursor: pointer;
}
.test-img{
    position: absolute;
    left: 40%;
    top: -18%;
}
.test-detls p{
    color: #080808CC;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}
.test-detls p span{
    color: #82ffb4;
    font-size: 45px;
}
.test-detls h5{
    text-align: center;
    color: #080808;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
}

/* blog-section-css */
.blog-center{
    text-align: center;
    margin-bottom: 80px;
}
.blog-center h5{
    color: #00643b;
    font-size: 23px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 10px;
}
.blog-center h2{
    color: #080808;
    font-size: 62px;
    text-transform: capitalize;
    font-weight: 700;
}
.main-blog{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    gap: 2rem;
}
.blog-detls img{
    max-width: 100%;
    width: 100%;
    height: auto;
    transition: all .42s;
}
.blog-detls img:hover{
    transform: translateY(-5px);
}
.pht{
    display: flex;
    gap: 15px;
}
.pht p{
    color: #080808CC;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    margin: 8px 8px;
}
.pht2 p{
    color: #00643b;
}
.blog-phara{
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.blog-phara h4{
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 700;
    line-height: 28px;
    cursor: pointer;
    transition: all .42s;
}
.blog-phara h4:hover{
    color: #00643b;
}
.blog-phara i{
    font-size: 35px;
    color: #080808;
    transform: rotate(45deg);
}

/* pricing-section-css */
.pricing-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}
.pris-1 h5{
    color: #00643b;
    font-size: 23px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 10px;
}
.pris-1 h2{
    color: #080808;
    font-size: 62px;
    text-transform: inherit;
    line-height: 1.2;
    font-weight: 700;
}
.main-pricing{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    gap: 3rem;
}
.prisbox-detls{
    padding: 30px 30px;
    background: #F5F5F5;
    border-radius: 10px;
    cursor: pointer;
    transition: all .42s;
}
.pricsbox-1{
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.pricsbox-1 h4{
    color: #08080899;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 500;
}
.pricsbox-1 h3{
    color: #00643b;
    font-size: 22px;
    font-weight: 700;
}
.pricing-btm{
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.priscbtm-1 h2{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
}
.priscbtm-1 p{
    color: #08080899;
    font-size: 20px;
    text-transform: lowercase;
}
.priscbtm-1 i{
    color: #080808;
    font-size: 40px;
    transform: rotate(45deg);
}
.prisbox-detls:hover{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* contact-section */
.contact{
    background: #F5F5F5;
}
.main-cont{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    gap: 3rem;
}
.cont-center h5{
    color: #00643b;
    font-size: 23px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 10px;
}
.cont-center h2{
    color: #080808;
    font-size: 64px;
    text-transform: inherit;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 50px;
}
.icon-text{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}
.cont-icon i{
    color: #080808;
    font-size: 40px;
}
.cont-text h4{
    color: #08080899;
    font-size: 26px;
    text-transform: inherit;
    font-weight: 600;
}
.cont-text h3{
    color: #080808;
    font-size: 25px;
}
hr{
    margin-bottom: 25px;
    width: 80%;
}
form .main-input{
    display: flex;
    justify-content: space-between;
}
.input-detls .inlist{
    width: 100%;
    padding: 20px 12px;
    background: transparent;
    border: 2px solid #08080899;
    outline: none;
    border-radius: 10px;
    font-size: 16px;
    color: #08080899;
    margin: 15px 0;
}
.main-input .input-detls{
    width: 48%;
}
.input-detls .placeholder{
    color: #08080899;
    font-size: 16px;
    text-transform: inherit;
}
form .textarea .inlist{
    resize: none;
    width: 100%;
    height: 32vh;
    border: 2px solid #08080899;
    outline: none;
    border-radius: 10px;
    margin-top: 20px;
    padding: 20px 0px 0px 20px;
    font-size: 18px;
    text-transform: inherit;
}
.input-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}
.sub-btn button{
    padding: 15px 50px;
    border-radius: 10px;
    background-color: #080808;
    color: #FFF;
    font-size: 18px;
    text-transform: capitalize;
    cursor: pointer;
    transition: all .42s;
}
.sub-btn button:hover{
    background-color: transparent;
    color: #080808;
}
.sub-icon i{
    font-size: 32px;
    color: #080808;
    margin-right: 30px;
    transition: all .42s;
}
.sub-icon i:hover{
    color: #00643b;
}

/* Footer-design-css */
.main-footer{
    background-color: #080808;
    text-align: center;
    padding: 20px 12%;
    display: flex;
    justify-content: space-between;
}
.footer-left p{
    color: #FFF;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 500;
    margin-top: 7px;
}
.footer-right a{
    color: #FFF;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
}
.footer-icon{
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-icon i{
    color: #00643b;
    font-size: 35px;
    transition: all .42s;
}
.footer-icon i:hover{
    transform: translateY(-5px);
}

/* Responsive-design-css */
@media(max-width:1350px){
    header{
        padding: 30px 4%;
        transition: all .42s;
    }
    section{
        padding: 60px 4%;
        transition: all .42s;
    }
    .home-img img{
        width: 600;
        height: auto;
        transition: .32s;
    }
    header.sticky{
        padding: 15px 4%;
        transition: .3s;
    }
    .hum-text{
        left: 4%;
        transition: .3s;
    }

}
@media(max-width:1260px){
    .home1-text h1{
        font-size: 110px;
        line-height: 110px;
        transition: .3s;
    }
    .home1-text h5{
        font-size: 22px;
        transition: .3s;
        margin-bottom: 40px;
    }
    .home1-img img{
        width: 550px;
        height: auto;
        transition: .32s;
    }
}
@media(max-width:1105px){
    .home1-text h1{
        font-size: 95px;
        line-height: 90px;
        transition: .3s;
    }
    .home1-text h5{
        font-size: 20px;
        transition: .3s;
    }
    .home1-img img{
        width: 500px;
        height: auto;
        transition: .32s;
    }
    .home1-text h4{
        font-size: 22px;
        line-height: 12px;
        transition: .3s;
    }
    .btn1{
        padding: 10px 15px;
        transition: .3s;
    }
    .btn2{
        padding: 10px 15px;
        transition: .3s;
    }
    .top-text h2{
        font-size: 45px;
    }
}
@media(max-width:940px){
    .home1{
        grid-template-columns: 1fr;
        height: auto;
    }
    .home1-img img{
        position: relative;
        top: 0;
        right: 0;
        width: 450px;
        height: auto;
        transition: .32s;
    }
    .home1-text{
        padding-top: 60px;
    }
    .hum-text{
        bottom: 2%;
        transform: .3s;
    }
    .hum-text span{
        font-size: 30px;
    }
    .hum-social{
        bottom: 2%;
        margin-left: 40px;
    }
    .pricing-top{
        display: inline;
    }
    .pricing-top h2{
        font-size: 50px;
        line-height: 1.1;
        margin-bottom: 25px;
    }
    .prisbox-detls{
        margin-top: 40px;
    }
    .sub-btn button{
        padding: 15px 40px;
        transition: .3s;
    }
    .sub-icon i{
        font-size: 30px;
        margin-right: 15px;
    }
}
@media(max-width:800px){
    .home1-text h1{
        font-size: 70px;
        line-height: 70px;
        transition: .3s;
    }
    .home1-text h5{
        font-size: 18px;
        transition: .3s;
        margin-bottom: 30px;
    }
    .home1-img img{
        width: 400px;
        height: auto;
        transition: .32s;
    }
    .hum-social{
        bottom: 2%;
        margin-left: 60px;
        transition: .3s;
    }
    .main-testimonial{
        gap: 5rem;
        transition: .3s;
    }
    .sub-btn button{
        padding: 15px 40px;
        transition: .3s;
    }
    .sub-icon i{
        font-size: 25px;
        margin-right: 10px;
    }
    .footer-icon{
        display: none;
    }
    .main-footer{
        padding: 20px 6%;
        transition: .3s;
    }
    .footer-left p{
        font-size: 18px;
    }
}
@media(max-width:605px){
    .home1-text h1{
        font-size: 70px;
        line-height: 65px;
        transition: .3s;
    }
    .home1-text h5{
        font-size: 16px;
        transition: .3s;
        margin-bottom: 20px;
    }
    .home1-img img{
        width: 350px;
        height: auto;
        transition: .32s;
    }
    .hum-social{
        bottom: 2%;
        margin-left: 100px;
        transition: .3s;
    }
    .cont-center h2{
        font-size: 50px;
        line-height: 1.1;
        transition: .3s;
    }
}
@media(max-width:500px){
    .hum-social{
        left: 36%;
    }
    .hum-social i{
        font-size: 24px;
        margin-right: 10px;
    }
    .hum-text span{
        font-size: 30px;
    }
    .hum-text h3{
        font-size: 16px;
    }
    .about-text h2{
        font-size: 50px;
        transition: .3s;
    }
    .pris-1 h2{
        font-size: 42px;
        line-height: 1.1;
        margin-bottom: 25px;
    }
    .sub-btn button{
        padding: 15px 40px;
    }
    .sub-icon i{
        font-size: 30px;
        margin-right: 15px;
    }
}
@media(max-width:1010px){
    .top-text h2{
        font-size: 40px;
        transition: .3s;
    }
    .text-center h2{
        font-size: 55px;
        transition: .3s;
    }
    .top-text{
        display: inline;
    }
    .top-text p{
        font-size: 18px;
        margin: 10px 0px 40px 0;
    }
    .about{
        grid-template-columns: 1fr;
        height: auto;
    }
}
@media(max-width:620px){
    .text-center h2{
        font-size: 38px;
        transition: .3s;
    }
    .text-center h5{
        font-size: 25px;
        transition: .3s;
    }
    .text-center{
        text-align: center;
        margin-bottom: 45px;
    }
    .test-text h2{
        font-size: 38px;
        transition: .3s;
    }
    .blog-center h2{
        font-size: 45px;
        transition: .3s;
    }
    .blog-center{
        margin-bottom: 60px;
    }
    .main-blog{
        gap: 4rem;
    }
    .blog-phara h4{
        font-size: 24px;
        line-height: 34px;
    }
    .pht p{
        font-size: 20px;
        margin: 10px 8px;
    }
}
@media(max-width:960px){
    #menu-icon{
        display: block;
    }
    .navbar{
        position: absolute;
        top: 100%;
        right: -100%;
        width: 300px;
        height: 100vh;
        padding: 100px 40px;
        border-radius: 10px;
        display: block;
        flex-direction: column;
        background-color: #080808;
        transition: all .42s ease-in-out;
    }
    .navbar a{
        display: block;
        color: #FFF;
        margin: 30px 0;
        font-size: 24px;
    }
    .navbar a:hover{
        transform: translateX(5px);
        border-bottom: 2px solid transparent;
    }
    .navbar.open{
        right: 0;
    }
}






/*SLIDER DEI VIDEO*/


  
.home{
position: relative;
width: 100%;
height: 90vh;
min-height: 100vh;
display: flex;
justify-content: center;
flex-direction: column;
background-color: #313131;
}

.home:before{
z-index: 777;
content: '';
position: absolute;
background: rgba(68, 68, 68, 0.104);
width: 100%;
height: 100%;
top: 0;
left: 0;
}

.home .content{
z-index: 888;
color: #fff;
width: 70%;
margin-top: 20px;
margin-right: 20px;
display: none;
}

.home .content.active{
display: block;
}

.home .content h1{
font-size: 4em;
font-weight: 900;
text-transform: uppercase;
letter-spacing: 5px;
line-height: 60px;
margin-bottom: 10px;
}

.home .content h1 span{
font-size: 1.2em;
font-weight: 600;
}

.home .content p{
margin-bottom: 60px;
}

.home .content a{
background: #fff;
padding: 15px 35px;
color: #005645;
font-size: 1.1em;
font-weight: 500;
text-decoration: none;
border-radius: 2px;
}

.home .media-icons{
z-index: 888;
position: absolute;
right: 30px;
display: flex;
flex-direction: column;
transition: 0.5s ease;
}

.home .media-icons a{
color: #fff;
font-size: 1.6em;
transition: 0.3s ease;
}

.home .media-icons a:not(:last-child){
margin-bottom: 20px;
}

.home .media-icons a:hover{
transform: scale(1.3);
}

.home video{
z-index: 000;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}

.slider-navigation{
z-index: 888;
position: relative;
display: flex;
justify-content: center;
align-items: center;
transform: translateY(80px);
margin-bottom: 29px;
}

.slider-navigation .nav-btn{
width: 12px;
height: 12px;
background: #c8c8c8;
border-radius: 50%;
cursor: pointer;
box-shadow: 0 0 2px rgba(132, 132, 132, 0.5);
transition: 0.3s ease;
}

.slider-navigation .nav-btn.active{
background: #313131;
transform: scale(1.8);
}

.slider-navigation .nav-btn:not(:last-child){
margin-right: 20px;
}

.slider-navigation .nav-btn:hover{
transform: scale(1.2);
}

.video-slide{
position: absolute;
width: 100%;
clip-path: circle(0% at 0 50%);
}

.video-slide.active{
clip-path: circle(150% at 0 50%);
transition: 2s ease;
transition-property: clip-path;
}


@media (max-width: 500px){
.home .content h1{
    font-size: 3em;
    line-height: 50px;
}

.slider-navigation{
    z-index: 888;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(80px);
    /* margin-bottom: 29px; */
}

.home .content p{
    margin-bottom: 20px;
}

section .content .p{
    padding: 20px 20px;
}

}

@media (max-width: 1040px){
section{
    padding: 100px 20px;
}

.home .content p{
    margin-bottom: 10px;
}




}
/*FINE SLIDER*/


