/* *{
    margin: 0;
    padding: 0;
  
} */



@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Georgian:wght@100..900&family=Paytone+One&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');

html, body {
    overflow-x: hidden;
    
  }
  
:root{
    --primary-font:Merriweather ;
    --secondary-font:Noto Sans Georgian ;
    --primary-color:#135AFD;
    --secondary-color:#FFFF00;
}


/* Nav section */

.customNav{
    font-size: 2vw;
    font-weight: 350;
    font-family: var(--secondary-font);
    
}
.navbar{
    padding-top: 0;
    padding-bottom: 50px;
}
.navbar-nav{
    margin-left: 5px;
}
.nav-link{
    padding-bottom: 0;
    padding-top: 0;
    transition: all 0.5s;
    color: white;
    
}
.nav-link:hover{
    background-color: var(--primary-color);
    border-radius: 10px;
    color: white;
}
/* .sticky{
    background-color: rgba(11, 68, 240, 0.7);
}
.sticky .nav-link{
     color: white; 
} */


/* hero section */

 .hero-section{
    background-image: url("../images/richard-horvath-cPccYbPrF-A-unsplash.jpg");
    width: 100%;
    height: 60%;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    
    margin-bottom: -50px;
    padding-bottom: 100px; 
    
    /* inverted border */
    position: relative;
} 
h1{
    font-family: var(--primary-font),sans-serif;
}
.bg-body-tertiary {
    --bs-bg-opacity: 0;
}
.btn{
    font-family: var(--secondary-font),sans-serif;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    border-radius: 20px;
    margin: 10px 20px;
    padding: 10px 20px;
    font-weight: 700;
    transition: transform 250ms;
    position: relative;
    box-shadow: rgba(0, 0,0, 0.24) 0px 3px 8px;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: 20px;
      border: 2px solid blue;
      animation: clippath 3s infinite linear;
  }
}
.btn:hover{
    transform: scale(1.2);
    background-color: white;
}

@keyframes clippath {
  0%,
  100% {
      clip-path: inset(0 0 95% 0);
  }
  25% {
      clip-path: inset(0 95% 0 0);
  }
  50% {
      clip-path: inset(95% 0 0 0);
  }
  75% {
      clip-path: inset(0 0 0 95%);
  }
}
.btn-gradient{
  
  background: linear-gradient(#FFFF00, #FFF) padding-box,
  linear-gradient(to right, darkblue, darkorchid) border-box;
  border-radius: 50em;
  border: 3px solid transparent;
    
}


/* main- text - animation in hero section */
.animate {
    font-size: 40px;
    margin: 100px 0 0;
  
  }
  
  .animate span {
    display: inline-block;
   }
  
  .animate span:nth-of-type(2) {
    animation-delay: .05s;
  }
  .animate span:nth-of-type(3) {
    animation-delay: .1s;
  }
  .animate span:nth-of-type(4) {
    animation-delay: .15s;
  }
  .animate span:nth-of-type(5) {
    animation-delay: .2s;
  }
  .animate span:nth-of-type(6) {
    animation-delay: .25s;
  }
  .animate span:nth-of-type(7) {
    animation-delay: .3s;
  }
  .animate span:nth-of-type(8) {
    animation-delay: .35s;
  }
  .animate span:nth-of-type(9) {
    animation-delay: .4s;
  }
  .animate span:nth-of-type(10) {
    animation-delay: .45s;
  }
  .animate span:nth-of-type(11) {
    animation-delay: .5s;
  }
  .animate span:nth-of-type(12) {
    animation-delay: .55s;
  }
  .animate span:nth-of-type(13) {
    animation-delay: .6s;
  }
  .animate span:nth-of-type(14) {
    animation-delay: .65s;
  }
  .animate span:nth-of-type(15) {
    animation-delay: .7s;
  }
  .animate span:nth-of-type(16) {
    animation-delay: .75s;
  }
  .animate span:nth-of-type(17) {
    animation-delay: .8s;
  }
  .animate span:nth-of-type(18) {
    animation-delay: .85s;
  }
  .animate span:nth-of-type(19) {
    animation-delay: .9s;
  }
  .animate span:nth-of-type(20) {
    animation-delay: .95s;
  }
  
  .one span {
    color: white;
    font-family: var(--primary-font),sans-serif;
    opacity: 0;
    transform: translate(0, -100px) rotate(360deg) scale(0);
    animation: revolveDrop .7s forwards;
    margin: 0;
    padding: 0;
  }
  
  
  @keyframes revolveDrop {
    30% {
      transform: translate(0, -50px) rotate(180deg) scale(1);
    }
  
    60% {
      transform: translate(0, 20px) scale(.8) rotate(0deg);
    }
  
    100% {
      transform: translate(0) scale(1) rotate(0deg);
      opacity: 1;
    }
  }
  


/* Our differentiators */

.differentiators{
    width: 100%;
    height: 50%;
    background-color: white;
    
    /* inverted border */
     position: relative;
     width: 100%;
     margin-top: -40px;
}

 /* inverted border */
.differentiators::after, .differentiators::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 40px;
    z-index: 1;
}
.differentiators::after{
    background: white;
  top: 0;
  right: 0;
  border-top-right-radius: 40px;
  box-shadow: 40px 0 0 #157ade;
}
.differentiators::before{
    height: 80px;
  width: 40px;
  background: transparent;
  bottom: 100%;
  left: 0;
  border-bottom-left-radius: 40px;
  box-shadow: 0 40px 0 #fff;
}

h2{
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-size: 2rem;

      /* inverted border */
      padding: 20px;
      z-index: 2;
      position: relative;

}
.para{
    font-family: var(--secondary-font);
    color: #005197;
    margin-left: 3rem;
    margin-right: 3rem;
    text-align: justify;

}
.differentiators_img{
    margin-top: 2vw;
    width: 140px;
    height: 140px;
    transition: transform 250ms;
    position: relative;
}
.differentiators_img:hover{
    transform: scale(1.2);
}

.differentiators_h6{
    margin-top: 1vw;
    color: var(--primary-color);
    font-family: var(--secondary-font);
    font-weight: 700;
}
.diff_4{
    margin-left: 200px;
}


/* infographics */

  
.infographic{
    margin-top: 30px;
    width: 100%;
    height: 50%;
    background-color: var(--primary-color);

    /* inverted border */
    
    position: relative;
    margin-top: -40px;
}

.infographic::after, .infographic::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 40px;
    z-index: 1;
}
.infographic::after{
    background: var(--primary-color);
    top: 0;
    right: 0;
    border-top-right-radius: 40px;
    box-shadow: 40px 0 0 white;
}
.infographic::before{
    height: 80px;
    width: 40px;
    background: transparent;
    bottom: 100%;
    left: 0;
    border-bottom-left-radius: 40px;
    box-shadow: 0 40px 0 var(--primary-color);
}

.infoNum{
    font-size: 80px;
    font-weight: 500;
    color: white;
} 
.infoPara{
    color: white;
    font-family: var(--secondary-font);
}
.infographic span{
    color: white;
    font-size:60px ;
    font-weight: 200;
}
    




/* service section */
.services{
    width: 100%;
    height: 80%;
    background-color: white;
    
    /* inverted border */
    position: relative;
    margin-top: -40px;

}
.service_box{
  text-align: center;
}
.service_row{
  margin-left: 50px
 }


/* inverted border */
.services::after, .services::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 40px;
    z-index: 1;
}
.services::after{
    background: white;
  top: 0;
  right: 0;
  border-top-right-radius: 40px;
  box-shadow: 40px 0 0 var(--primary-color);
}
.services::before{
    height: 80px;
  width: 40px;
  background: transparent;
  bottom: 100%;
  left: 0;
  border-bottom-left-radius: 40px;
  box-shadow: 0 40px 0 white;
}
.service_img{
    margin-top: 2vw;
    width: 150px;
    height: 150px;
    transition: transform 250ms;
    position: relative;
}
.service_img:hover{
   
    transform: scale(1.2);

}

.service_h6{
    margin-top: 1vw;
    color: var(--primary-color);
    font-family: var(--secondary-font);
    font-weight: 600;
}
.service_4{
    margin-left: 150px;
}

/* testimonial section */

.testimonial{
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    padding-top: 30px;

     /* inverted border */
     position: relative;
     margin-top: -40px;
 
}

/* inverted border */
.testimonial::after, .testimonial::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 40px;
    z-index: 1;
}
.testimonial::after{
    background: var(--primary-color);
  top: 0;
  right: 0;
  border-top-right-radius: 40px;
  box-shadow: 40px 0 0 white;
}
.testimonial::before{
    height: 80px;
  width: 40px;
  background: transparent;
  bottom: 100%;
  left: 0;
  border-bottom-left-radius: 40px;
  box-shadow: 0 40px 0 var(--primary-color);
}

.customer_views{
    width: 350px ;
    height: 250px;
    background-color: white;
    border-radius: 30px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    transition: transform 0.5s;
    margin-bottom: 20px;
    
}
.customer_views:hover{
    transform: scale(1.1);
}

.customer_views p{
    font-family: var(--secondary-font);
   
}




/* client section */

.clients{
    width: 100%;
    height: 80%;
    background-color: white; 
    padding-bottom: 50px; 
   

    /* inverted border */
    position: relative;
    margin-top: -40px;

}
/* inverted border */
.clients::after, .clients::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 40px;
    z-index: 1;
}
.clients::after{
    background: white ;
  top: 0;
  right: 0;
  border-top-right-radius: 40px;
  box-shadow: 40px 0 0 var(--primary-color);
}
.clients::before{
    height: 80px;
  width: 40px;
  background: transparent;
  bottom: 100%;
  left: 0;
  border-bottom-left-radius: 40px;
  box-shadow: 0 40px 0 white;
}


/* footer section */

.footer{
    color: white;
    background-color: var(--primary-color);
    padding-top: 3.5rem;

     /* inverted border */
     position: relative;
     margin-top: -40px;
}

/* inverted border */
.footer::after, .footer::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 40px;
    z-index: 1;
}
.footer::after{
  background: var(--primary-color) ;
  top: 0;
  right: 0;
  border-top-right-radius: 40px;
  box-shadow: 40px 0 0 white;
}
.footer::before{
  height: 80px;
  width: 40px;
  background: transparent;
  bottom: 100%;
  left: 0;
  border-bottom-left-radius: 40px;
  box-shadow: 0 40px 0 var(--primary-color);
}
.footer_p{
    font-family: var(--secondary-font);
    margin-bottom: 0;
}
.footer_page_links{
  text-decoration: none;
  color: white;
  font-family: var(--secondary-font);
  font-size: 20px;
}
.footer_icon{
    text-align:center ;
    margin-top: 2rem;
}
.footer_icon i{
    margin: 0.3rem;
}

/* whatsapp icon */
.whatsapp_float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.whatsapp-icon {
  margin-top: 16px;
}

/* inverted border for  navbar & hero section */

.home_inverted_border{
  /* inverted border */
  position: relative;
  width: 100%;
  margin-top: -20px;  
}
/* inverted border */
.home_inverted_border::after, .home_inverted_border::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 40px;
  z-index: 1;
}
.home_inverted_border::after{
  /* background: linear-gradient(to right, #042353,#01204f,#002d71 ); */
  /* #042353, #011e49, #012f74 */
background: linear-gradient(to right,#042353, #011e49, #012f74 );
top: 0;
right: 0;
border-top-right-radius: 40px;
box-shadow: 40px 0 0 var(--primary-color);
}
.home_inverted_border::before{
  height: 80px;
width: 40px;
background: transparent;
bottom: 100%;
left: 0;
border-bottom-left-radius: 40px;
box-shadow: 0 40px 0 #042353;
}

/* Responsive Changes */
/* # Mobile
only screen and (min-width: 480px)

# Tablet
only screen and (min-width: 768px)  */

/* # Phone
only screen and (max-width:320px)

# Tablet
only screen and (min-width:321px) and (max-width:768px) */

/* @media only screen and (min-device-width: 480px){
    .para{
         padding: 1.3rem;
margin: 2rem;
    }
} */
  


@media only screen and (max-width:475px){
    *{
        margin: 0;
        padding: 0;
    }
    .customNav{
        font-size: 1.5rem;
        font-weight: 300;
        padding-bottom: 1vw;
    }
    
    h1{
        margin-right: 0;
        margin-left: 0;
    }
    
    .animate{
        font-size: 30px;
    }
    
    .job_title{
      padding-left: 35px;
   }
   
  .para{
      margin-left: 35px;
      margin-right: 35px;
  }
   .service_row{
    margin-left: 0 ;
   } 
   .navbar-nav{
       flex-flow:column nowrap;
       margin-left: 280px;
     }
   .nav-link{
      padding-left: 2vw;
      padding-right: 2vw;
      margin-left: 0;
      margin-right:0 ;
   }

    .diff_4{
        margin-left: 0px;
    }
    .service_4{
        margin-left: 0;
    }
    .customer_views{
        margin-left: 33px;
    }
    /* .service_box{
        margin-left: 30px;
    } */

    .footer_division{
        padding-bottom: 1rem;
    }
}

/* whatsapp-icon */
@media screen and (max-width: 767px) {
  .whatsapp-icon {
      margin-top: 10px;
  }

  .whatsapp_float {
      width: 40px;
      height: 40px;
      bottom: 20px;
      right: 10px;
      font-size: 22px;
  }
}


