/* Imports fonts */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,400;0,500;0,600;0,700;0,800;0,900;1,700&display=swap');

body, html {
  overflow-x: hidden;
}

*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

p{
  font-size: 14px;
  letter-spacing: 1px;
  color: #1b2223;
  line-height:1.5;
}

h1{
  color: #1b2223;
   font-size:2.8em;
  line-height: 1.3em;
  font-weight: 400;
  margin-bottom:25px;
  letter-spacing: 1px;
}

h2{
  font-size: 2.1em;
  font-weight: 400;
  margin-bottom: 17px;
  color: #1b2223;
  letter-spacing: 1px;
}

h2 span{
  font-weight: 700;
  letter-spacing: 1px;
}

li{
  list-style: none;
}

a{
  color:#F2F2F2;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  letter-spacing: 1px;
}

button{
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  border-width: 0px;
  border-radius: 40px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.wrapper{
  padding: 120px 10%;
  width: 100%;
}

/**********************************************
***********************************************
***********************************************
***********************************************
***********************************************
Styles the contact bar */

.contact-bar{
  height: 8vh;
  background-color: #1b2223;
  font-size: 15px;
  font-weight: 400;
  color: #F2F2F2;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 1000;
}

.contact-bar .contact-details{
  display: flex;
  justify-content: flex-end;
}

.contact-bar .wrapper-nav{
  padding: 10px 10%;
  width: 100%;
}

.contact-bar .contact-details img{
  width: 15px;
  opacity: 0.95;
}

.contact-bar .contact-details p{
  margin-left:25px;
  color: #F2F2F2;
  opacity: 0.95;
}

.contact-bar .email{
  display: flex;
  align-items:center;
  opacity: 0.85;
}

.contact-bar .phone{
  display: flex;
  align-items:center;
  margin-left: 60px;
}

/**********************************************
***********************************************
***********************************************
***********************************************
***********************************************
Styles the navigation menu section */

.navigation{
  display: flex;
  align-items: center;
  background-color: #0094C6;
  font-family: 'Poppins', sans-serif;
  position: sticky;
	top: 0px;
  width: 100%;
  z-index: 2;
}

.navigation .wrapper-nav{
  padding: 35px 10%;
  width: 100%;
}

.navigation .nav-bar{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navigation .logo{
  width: 250px;
}

.navigation .nav-links{
  display: flex;
  justify-content: space-between;
  width: 60%;
  align-items: center;
}

.navigation .nav-links a:hover{
  color:#d1d1d1;
}

.navigation .nav-button{
  background-color:#F2F2F2;
  color: #0094C6;
}

.navigation .nav-button:hover{
  background-color:#d1d1d1;
}

.navigation .burger{
  display: none;
  cursor: pointer;
  z-index: 100;
}

.navigation .burger div{
  width: 25px;
  height: 3px;
  background-color:#F2F2F2;
  margin: 5px;
  transition: all 0.3s ease;
}

.navigation .nav-active{
  transform: translateX(0%);
  display: flex;
  justify-content: center;
}


@keyframes navLinkFade{
  from{
    opacity: 0;
    transform: translateX(50px);
  }
  to{
    opacity: 1;
    transform: translateX(0px);
  }
}

.navigation .toggle .line-1{
  transform: rotate(-45deg) translate(-5px,6px);
}

.navigation .toggle .line-2{
  opacity: 0;
}

.navigation .toggle .line-3{
  transform: rotate(45deg) translate(-5px,-6px);  
} 

/**********************************************
***********************************************
***********************************************
***********************************************
***********************************************
Styles the hero section */

.hero{
  display:flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background: #0094C6;
}

.hero .content{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero .wrapper-hero{
  padding: 75px 10% 120px;
  width:100%;
}

.hero .content .text-box{
  position: relative;
  max-width: 700px;
}

.hero .content .text-box .hero-span-one{
  color: #F2F2F2;
  font-size:1em;
  font-weight: 700;
}

.hero .content .text-box p{
  color: #1b2223;
}

.hero .hero-button{
  display: inline-block;
  margin-top: 40px;
  border: 2px solid #F2F2F2;
  text-decoration: none;
  background-color: transparent;
  color: #F2F2F2;
}

.hero .hero-button:hover{
  border-color: #b3b3b3;
  color:#b3b3b3;
}

.hero .hero-button-report{
  display: inline-block;
  margin-top: 40px;
  border: 2px solid #F2F2F2;
  text-decoration: none;
  background-color: transparent;
  color: #F2F2F2;
}

.hero .hero-button-report:hover{
  border-color: #b3b3b3;
  color:#b3b3b3;
}

.hero .circle{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1FBAED;
  clip-path: circle(600px at right 800px);
}

.hero .buttons{
  display: flex;
  justify-content: space-between;
  width: 90%;
}

/**********************************************
***********************************************
***********************************************
***********************************************
***********************************************
Styles the point section */

.points .content{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.points{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.points .point{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 28%;
}

.points .point p{
  margin-top: 45px;
  text-align:center;
}

.points img{
  padding: 0px 10%;
  width: 130px;
}

.points .line{
  background-color: #0094C6;
  height: 4px;
  position: relative;
  width: 10%;
}

.points .text{
  display: flex;
  flex-direction: column;
  margin-bottom: 66px;
}

/**********************************************
***********************************************
***********************************************
***********************************************
***********************************************
Styles the footer section */

.footer{ 
  background-color: #1b2223;
}

.footer .wrapper-footer{
  padding: 60px 10%;
  width: 100%;
} 

.footer .social { 
  text-align: center;
  padding-bottom: 40px;
  color: #F2F2F2;
  opacity: 0.85;
}

.footer .social a { 
  font-size: 20px;
  color: inherit;
  border: 1px solid #F2F2F2;;
  width: 40px; 
  height: 40px;; 
  line-height: 38px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin: 0 8px;
  opacity: 0.95;
}

.footer .social a:hover { 
  opacity: 0.55;
}

.footer ul { 
  margin-top: 0; 
  margin-bottom: 0;
  list-style: none;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
}

.footer ul a { 
  text-decoration: none;
  color: #F2F2F2;
  font-family: 'Poppins', sans-serif;
  opacity: 0.95;
}

.footer ul li {
  display: inline-block;
  padding: 5px 15px;
}

.footer ul li a:hover{ 
  opacity: 0.55;
}

.footer .copyright{ 
  margin-top: 25px;
  text-align: center;
  font-size: 14px;
  color:rgb(102, 102, 102);
}

/**********************************************
***********************************************
***********************************************
***********************************************
***********************************************
Styles the back to top button */

#btnScrollToTop {
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 60px; 
  height: 60px; 
  border-radius: 50%;
  background-color: #ffa053;
  color: rgb(226, 226, 226);
  outline: none;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

#btnScrollToTop:hover {
  background-color: #cc8244;
}

#btnScrollToTop:active {
  background-color: #cc8244;
}

.material-icons{
  font-size:35px;
}

/**********************************************
***********************************************
***********************************************
***********************************************
***********************************************
Website content on different browsers */


@media screen and (max-width:1360px){

  /* Styles the navigation menu section */

  .nav-links{
    position: fixed;
    height: 100vh;    
    right: 0px;
    top: 0vh;
    background-color: #0094C6;
    display: flex;
    flex-direction: column;
    align-items: center;
    width:30%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in; 
    z-index: 100;
  }
  .nav-links li{
    margin: 60px 0px;
    opacity: 0;
  }
  .navigation .burger{
    display: block; 
  }
}

@media screen and (max-width:1024px){

  /* Styles the navigation menu section */

  .navigation .nav-links{
    width: 60%;
    height: 100vh;
    position: fixed;
  }

}

@media screen and (max-width:950px){

    /* Styles the contact bar section */
  
    .contact-bar .contact-details{
      display: flex;
      justify-content: center;
    }
  
    /* Styles the hero section */
  
    .hero .hero-button:nth-child(2){
      margin-left:10px;
    }
  
    .hero .hero-button:nth-child(3){
      margin-left:10px;
    }
  
  }

@media screen and (max-width:860px){

  /* Styles the point section */

  .points .content{
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  
  .points .point{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .points img{
    padding: 0px 0%;
    width: 15%;
  }

  .points .text{
    display: flex;
    flex-direction: column;
    margin-bottom: 66px;
    align-items: center;
  }

  .point p{
    margin-top:40px;
  }

  .points .point:nth-child(2){
    margin: 70px 0px;
  }

  .points .point p{
    text-align: center;
  }

  /* Styles the h2 text */

  h2{
    font-size: 1.7em;
    font-weight: 400;
    margin-bottom: 17px;
    color: #1b2223;
    letter-spacing: 1px;
  }
  
  h2 span{
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1em;
  }

  /* Styles the hero section */

  .hero .hero-button{
    padding: 9px 13px;
  }

  .hero .content .text-box .hero-span-one{
    font-size:1.1em;
  }

  .hero .content .text-box h1{
    font-size: 1.9em;
    line-height: 1.5;
  }

  /* Styles the buttons */

  button{
    font-size:13px;
  }
	
  .hero .wrapper-hero {
    padding: 35px 10% 80px;
  }

  /* Styles the paragaph text */

  p{
    font-size:13px;
  }

  /* Styles the wrapper */

  .wrapper {
    padding: 90px 10%;
    width: 100%;
  }

}

@media screen and (max-width:720px){

  /* Styles the contact bar */

  .contact-bar p{
    font-size:12px;
  }

}

@media screen and (max-width:530px){

  /* Styles contact bar */

  .contact-bar{
    display: none;
  }

}

@media screen and (max-width:480px){

  /* Styles navigation menu */

  .navigation .logo{
    width: 65%;
  }

  /* Styles the hero section */

  .hero .content .text-box{
    max-width: 95%;
  }

  .hero .hero-button{
    padding: 4% 5%;
    font-size:11px;
    margin-top:25px
  }

  .hero .hero-button-report{
    padding: 29% 41%;
    font-size:11px;
    margin-top:25px
  }
  
  h1{
    line-height: 1.4;
  }

}

@media screen and (max-width:460px){

  /* Styles the point section */

  .points img{
    padding: 0px 0%;
    width: 20%;
  }

}