*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}
.home{
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 17, 66, 0.7),rgba(0,0,0,0.5)),url(images/shipmentcover.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

/*BACKGROUND VIDEO SECTION*/
.home-video{
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (min-aspect-ratio:16/9){
  .home-video{
    width: 100%;
    height: auto;
  }
}
@media (max-aspect-ratio:16/9){
  .home-video{
    width: auto;
    height: 100%;
  }
}

/*---------------
---HEADER SECTION----
---------------*/
header{
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 4%;
  background-color: #c7c7c7bb;
  backdrop-filter: blur(5px);
  width: 100%;
  z-index: 1;
}
/*---------------
---LOGO----
---------------*/
.header-logo{
  display: flex;
  align-items: center;
}
.header-logo-image{
  width: 40px;
  height: 40px;
  margin-right: 5px;
}
.header-logo-image img{
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.header-logo-text h2{
  color: #fff;
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: .5px;
  line-height: 1.4;
  letter-spacing: 1px;
}
.header-logo-text span{
  color: #0a1174;
}
/*---------------
---NAVIGATION----
---------------*/

.menu-close{
  display: none;
}
nav{
  background-color: #2626267d;
  font-size: 14px;
}
nav > ul{
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
nav a{
  display: block;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .5px;
}
nav ul li{
  color: #0a1174;
  list-style: none;
  transition: .5s ease;
}
ul img{
  width: 85%;
  height: 150px;
}
nav > ul > li > a{
  padding: 10px 25px;
}
nav ul>li.dropdown > a::after{
  position: relative;
  float: right;
  content: '';
}
nav > ul > li:hover{
  background: #0a1174;
}
nav ul.menu-area{
  padding: 40px 20px 0 20px;
  background: #fff;
  text-align: left;
  border-top: 5px solid #164c82 transparent;
  box-shadow: 0 5px 10px rgba(0,0,0,0.6);
  position: absolute;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: none;
  width: 100%;
  top: -9999px;
  left: 0;
  flex-wrap: wrap;
  z-index: 1;
}
nav ul li:hover ul.menu-area{
  top: 100%;
}
nav ul.menu-area ul{
  width: 25%;
  margin-bottom: 40px;
  color: #262626;
}
nav ul.menu-area h4{
  margin-bottom: 15px;
  text-transform: uppercase;
}
nav ul.menu-area ul li {
  display: block;
}
nav ul.menu-area ul li a{
  margin-top: 10px;
  color: #000;
  text-transform: none;
}
nav ul.menu-area ul li a:hover{
  color: #0a1174;
}
/*---------------
---Header Button----
---------------*/
.buttonh{
  padding: 8px 25px;
  text-decoration: none;
  background-color: #0a1174;
  text-transform: uppercase;
  font-size: 13px;
  color: #fff;
  letter-spacing: .5px;
  transition: .5s ease;
  cursor: pointer;
}
.buttonh:hover{
  background-color: #fff;
  color: #0a1174;
}
header i{
  color: #fff;
  font-size: 23px;
  display: none;
  cursor: pointer;
  transition: .5s ease;
  padding: 4px;
  border-radius: 50%;
}
header i:hover{
  color: #0a1174;
  padding: 5px;
  background-color: #f2f7fd5f;
  border-radius: 50%;
}
/*---------------
---Title Button----
---------------*/
.title{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.title h1{
  font-size: 60px;
  color: #fff;
}
.title P{
  font-weight: 200;
  color: #fff;
  margin-bottom: 40px;
}
.title a{
  padding: 10px 35px;
  background-color: #0a1174;
  text-decoration: none;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  transition: .5s ease;
}
.title a:hover{
  background-color: #fff;
  color: #0a1174;
}
/*--------------
----QUOTE FORM-----*/
.quote{
  width: 600px;
  height: 550px;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%,-50%) scale(0.1) ;
  border: 1px solid #0a1174;
  visibility: hidden;
  z-index: 1;
  position: fixed;
}
.quote-form{
  padding: 15px 20px;
  background: #0a1174;
}
.close-icon{
  position: absolute;
  top: 4.3%;
  right: 5%;
}
.close-icon i{
  font-size: 28px;
  color: #fff;
  width: 35px;
  height: 35px;
  background: #3688f4;
  border-radius: 50%;
  cursor: pointer;
  transition: .5s ease;
}
.close-icon i:hover{
  background-color: #fff;
  color: #0a1174;
}
.quote-form h2{
  color: #3688f4;
  font-size: 30px;
  margin-bottom: 10px;
}
form .db1-field{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  gap: 0.5rem;
}
.db1-field .field{
  height: 40px;
  width: calc(100% / 2 - 13px);
  position: relative;
}
form .field input,
form .message textarea{
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 18px 0 40px;
  border: 1px solid #0a1174;
  font-size: 13px;
}
form .field input,
form .message textarea{
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 18px 0 40px;
  border: 1px solid #0a1174;
  font-size: 13px;
}
form .field input::placeholder,
form .message textarea::placeholder{
  color: #2b4d5943;
}
.quote-form .field i{
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 16px;
  color: #2b4d5943;
}
.quote-form form i{
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 16px;
  color: #2b4d5943;
}
form .message{
  position: relative;
}
form .message i{
  top: 20px;
}
form .message textarea{
  min-height: 150px;
  padding-top: 10px;
}
.contact-button{
  margin-top: 30px;
}
.contact-button button{
  padding: 10px 20px;
  background-color: #3688f4;
  color: #fff;
  border: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: .5s ease;
  width: 100%;
}
.contact-button button:hover{
  background-color: #fff;
  color: #0a1174;
}
.contact-button span{
  color: #fff;
  display: none;
}
.open-quote{
  visibility: visible;
  top: 50%;
  transform: translate(-50%,-50%) scale(10);
  transition: transform 0.5s;
}
/*-------------
---ATTACH SECTION------
------------*/
.attach{
  position: relative;
  top: 85%;
}
.attach-container{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(230px,auto));
  justify-content: center;
}
.attach1{
  width: 230px;
  height: 130px;
  background-color: #0a1174d8;
}
.attach-box{
  padding: 10px;
  text-align: center;
}
.attach i{
  font-size: 25px;
  color: #3688f4;
  margin-bottom: 5px;
}
.attach-text h3{
  color: #fff;
  letter-spacing: .5px;
}
.attach-text p{
  font-size: 13px;
  color: #fff;
  font-weight: 200;
  letter-spacing: .5px;
}

/*-------------
---ABOUT SECTION------
------------*/
.about{
  width: 100%;
  height: 95vh;
  background: linear-gradient(rgba(255, 255, 255, 0.9),rgba(255, 255, 255, 0.9)), url(images/background.jpg);
  background-position: center;
  background-size: cover;
}
.about-container{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(550px,auto));
  justify-content: center;
  padding-top: 70px;
}
.about-left{
  width: 550px;
  height: 500px;
}
.about-text{
  padding: 80px 10px 0;
  letter-spacing: .5px;
}
.about-text h2{
  font-size: 50px;
  color: #0a1174;
  margin-bottom: 10px;
}
.about-text span{
  color: #3688f4;
}
.about-text p{
  font-size: 14px;
  line-height: 1.4;
  font-weight: 200;
  margin-bottom: 40px;
}
.about-text a{
  padding: 10px 25px;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  background-color: #0a1174;
  color: #fff;
  transition: .5s ease;
}
.about-text a:hover{
  background-color: #a5c4ec;
  color: #0a1174;
}
.about-right{
  width: 550px;
  height: 500px;
  display: grid;
  grid-template-columns: 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px;
  grid-template-rows: 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px ;
}
.about-image{
  grid-column: 2/9;
  grid-row: 2/8;
  background: url(images/container5.jpg);
  background-position: center;
  background-size: cover;
}
.about-background{
  grid-column: 1/4;
  grid-row: 4/9;
  background: url(images/partners3.jpg);
  background-position: center;
  background-size: cover;
}
.about-clients{
  grid-column: 7/10;
  grid-row: 7/8;
  background-color: #0a1174;
  text-align: center;
  padding: 5px 0 0;
}
.about-clients h2{
  color: #fff;
  font-size: 20px;
}
.about-clients p{
  color: #fff;
  font-size: 14px;
  font-weight: 200;
}
/* ------------------
----CTA SECTION---
---------------------*/
.cta{
  width: 100%;
  height: 45vh;
  background: url(images/partners4.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.cta-text{
  text-align: center;
  padding: 40px 0;
  letter-spacing: .5px;
}
.cta-text h5{
  color: #0a1174;
}
.cta-text h2{
  color: #fff;
  font-size: 45px;
}
.cta-text p{
  font-size: 14px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 200;
}
.cta-text a{
  padding: 8px 25px;
  background-color: #0a1174;
  text-decoration: none;
  font-size: 13px;
  color: #fff;
  transition: .5s ease;
  cursor: pointer;
}
.cta-text a:hover{
  background-color: #fff;
  color: #0a1174;
}
/*-------------
---SERVICES SECTION------
------------*/
.service{
  width: 100%;
  height: 84vh;
  padding: 30px 8%;
  background: linear-gradient(rgba(255, 255, 255, 0.9),rgba(255, 255, 255, 0.9)), url(images/background.jpg);
  background-position: center;
  background-size: cover;
}
.service-title-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-title{
  width: 60%;
  letter-spacing: .5px;
}
.service-title h2{
  font-size: 40px;
  color: #0a1174;
  font-weight: 800;
  margin-bottom: 5px;
}
.service-title span{
  color: #3688f4;
}
.service-title p{
  font-size: 14px;
  font-weight: 200;
  line-height: 1.4;
}
.service-button a{
  text-decoration: none;
  padding: 10px 22px;
  background-color: #0a1174;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  transition: .5s ease;
}
.service-button a:hover{
  background-color: #a5c4ec;
  color: #0a1174;
}
.service-container{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,auto));
  justify-content: center;
  padding-top: 20px;
  gap: 1rem;
}
.service-card1{
  width: 320px;
  height: 320px;
  background: linear-gradient(rgba(110, 152, 251, 0.6),rgba(0,0,0,0.6)), url(images/container.jpg);
  background-position: center;
  background-size: cover;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card2{
  width: 320px;
  height: 320px;
  background: linear-gradient(rgba(110, 152, 251, 0.6),rgba(0,0,0,0.6)), url(images/partners1.jpg);
  background-position: center;
  background-size: cover;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card3{
  width: 320px;
  height: 320px;
  background: linear-gradient(rgba(110, 152, 251, 0.6),rgba(0,0,0,0.6)), url(images/container4.jpg);
  background-position: center;
  background-size: cover;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.overlay{
  position: absolute;
  bottom: 0;
  background-color: #a5c4ec5d;
  backdrop-filter: blur(5px);
  height: 100%;
  padding: 30px 10px 0;
  text-align: center;
}
.overlay i{
  font-size: 30px;
  margin-bottom: 5px;
  color: #0a1174;
}
.overlay h2{
  color: #fff;
  font-size: 30px;
}
.overlay p{
  font-size: 13px;
  font-weight: 400;
  color: #0a1174;
  margin-bottom: 25px;
}
.overlay a{
  padding: 8px 20px;
  text-decoration: none;
  background-color: #0a1174;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
}
.overlay a:hover{
  background-color: #fff;
  color: #0a1174;
  transition: .5s ease;
}
.service-card1:hover .overlay{
  bottom: 100%;
  transition: 1.3s ease;
}
.service-card2:hover .overlay{
  bottom: 100%;
  transition: 1.3s ease;
}
.service-card3:hover .overlay{
  bottom: 100%;
  transition: 1.3s ease;
}

/*-------------
---EXPERIENCE SECTION------
------------*/
.experience{
  width: 100%;
  height: 80vh;
  background-color: #0a1174;
}
.experience-container{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(550px,auto));
  justify-content: center;
  padding-top: 40px;
}
.experience-left{
  width: 550px;
  height: 400px;
  background:url(images/partners3.jpg);
  background-position: center;
  background-size: cover;
  display: grid;
  grid-template-columns: 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px;
  grid-template-rows: 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px ;
}
.experience-background{
  grid-column: 8/11;
  grid-row: 5/8;
  background-color: #3688f4;
}
.experience-right{
  width: 550px;
  height: 400px;
}
.experience-text{
  padding: 20px 10px;
  text-align: right;
}
.experience-text h2{
  font-size: 35px;
  color: #fff;
}
.experience-text span{
  color: #3688f4;
}
.experience-text p{
  font-size: 14px;
  font-weight: 200;
  color: #fff;
}
.experience-icons{
  padding: 30px 0 0;
  padding-left: 10%;
  text-align: center;
  display: flex;
  justify-content: space-around;
  letter-spacing: .5px;
}
.experience-icons i{
  font-size: 40px;
  color: #fff;
}
.experience-icons h2{
  font-size: 15px;
  color: #fff;
}
.experience-icons p{
  font-size: 13px;
  font-weight: 200;
  color: #fff;
}
/*-------------
---CTA SECTION------
------------*/
.cta2{
  width: 100%;
  height: 45vh;
  background: url(images/partners4.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
}
.cta2-text{
  text-align: center;
  padding-top: 30px;
}
.cta2-text i{
  font-size: 45px;
  color: #0a1174;
  margin-bottom: 5px;
}
.cta2-text h2{
  font-size: 40px;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 18px;
}
.cta2-text a{
  padding: 10px 25px;
  background-color: #0a1174;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  transition: .5s ease;
}
.cta2-text a:hover{
  background-color: #fff;
  color: #0a1174;
}

/*-------------
---REVIEWS SECTION------
------------*/
.reviews{
  width: 100%;
  height: 60vh;
  background-color: #3688f47a;
  padding: 0 4%;
}
.reviews-container{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(400px,auto));
  justify-content: center;
  padding-top: 30px;
}
.reviews-text{
  width: 400px;
  height: 400px;
  padding: 15px 13px;
}
.reviews-text h2{
  font-size: 38px;
  color: #0a1174;
  margin-bottom: 5px;
}
.reviews-text p{
  font-size: 13px;
  font-weight: 300;
  line-height: 1.4;
  color: #0a1174;
  margin-bottom: 20px;
}
.reviews-text a{
  padding: 10px 22px;
  background-color: #0a1174;
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  transition: .5s ease;
}
.reviews-text a:hover{
  background-color: #fff;
  color: #0a1174;
}
.reviews-box{
  max-width: 1100px;
  width: 100%;
  padding-top: 15px;
  position: relative;
}
.reviews-box .reviews-box2{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 12px);
  overflow: hidden;
  gap: 5rem;
  cursor: pointer;
}
.reviews-icon {
  position: absolute;
  right: 8%;
  padding-top: 15px;
}
.reviews-icon i{
  font-size: 32px;
  color: #0a1174;
  cursor: pointer;
  transition: .5s ease;
}
.reviews-icon i:hover{
  color: #fff;
}
.reviews-card{
  width: 300px;
  height: 250px;
  background-color: #fff;
  padding: 15px;
  box-shadow: 0 0 10px #0a1174;
}
.reviews-card h5{
  color: #3688f4;
  margin-bottom: 5px;
}
.reviews-card p{
  font-size: 13px;
  line-height: 1.4;
  font-weight: 300;
  color: #0a1174;
}
.review-partner{
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.review-image{
  width: 60px;
  height: 60px;
  background-color: #3688f4;
  border-radius: 50%;
}
.review-title{
  margin-left: 10px;
}
.review-title h4{
  color: #0a1174;
  margin-bottom: 2px;
  font-size: 14px;
}
.review-title p{
  font-weight: 300;
}
/*-------------
---PARTNERS SECTION------
------------*/
.partners{
  width: 100%;
  height: 100%;
  text-align: center;
  color: #0a1174;
  overflow: hidden;
}
.partners .partners-container{
  animation: scroll 30s infinite linear;
  display: flex;
  align-items: center;
  width: calc(250px * 15);
  padding-top: 15px;
}
@keyframes scroll{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(calc(-250px * 7));
  }
}
.partners:hover .partners-container{
  animation-play-state: paused;
}
.partner-card{
  width: 210px;
  height: 110px;
  border: 0px solid #0a1174;
  cursor: pointer;
  opacity: 0.1;
}
.partner-card img{
  width: 130px;
  height: 80px;
}
.partner-text{
  width: 150px;
  height: 110px;
  padding-top: 20px;
}
.partner-text h2{
  font-size: 16px;
}
/*-------------
---FOOTER SECTION------
------------*/
footer{
  width: 100%;
  height: 40vh;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(350px,auto));
  justify-content: center;
  align-items: center;
  padding-top: 25px;
  background:linear-gradient(rgba(106, 176, 234, 0.9),rgba(106, 176, 234, 0.9)), url(images/aboutcont1.jpg);
  background-position: center;
  background-size: cover;
}
.footer-left{
  width: 350px;
  height: 100%;
  padding: 15px;
}
.logo-box{
  display: flex;
  justify-content: center;
}
.logo-image{
  width: 100px;
  height: 50px;
  margin-right: 10px;
  margin-top: 10px;
}
.logo-image img{
  width: 100%;
  height: 100%;
}
.logo{
  text-align: left;
}
.logo-text h2{
  font-size: 25px;
  color: #0a1174;
  margin-bottom: 4px;
}
.logo-text p{
  font-size: 13px;
  font-weight: 300;
  color: #0a1174;
}
.logo-socials{
  margin-top: 10px;
}
.logo-socials i{
  color: #0a1174;
  cursor: pointer;
  transition: .5s ease;
}
.logo-socials i:hover{
  color: #fff;
}
/*-------------
---FOOTER center------
------------*/
.footer-center{
  width: 350px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  padding: 15px;
}
.navigation-title h3{
  color: #0a1174;
}
.navigation-links a{
  text-decoration: none;
  color: #0a1174;
  font-weight: 300;
  cursor: pointer;
  font-size: 14px;
}
.navigation-links a:hover{
  color: #fff;
}
.footer-right{
  width: 400px;
  height: 100%;
  padding: 15px;
  display: flex;
  justify-content: center;
}
.address-box h5{
  font-size: 20px;
  margin-bottom: 2px;
  color: #0a1174;
}
.address-box p{
  font-size: 14px;
  font-weight: 300;
  color: #0a1174;
}
/*---------------
---Copyright----
---------------*/
.copyright{
  text-align: center;
  padding: 5px 0;
  background-color: #0a1174;
}       
.copyright p{
  color: #0a1174;
  font-weight: 200;
  font-size: 14px;
  letter-spacing: .5px;
  color: #fff;
}
.copyright a{
  color: #a5c4ec;
}
.copyright a:hover{
  color: #3688f4;
}

/*---------------
---Animation Scrolling----
---------------*/
@keyframes animate{
  0%,100% 
  {
    clip-path: polygon(0% 45%,15% 44%,32% 50%,48% 50%,70% 61%,87% 60%,100% 56%,100% 100%,0% 100%,);
  }
  50%
  {
    clip-path: polygon(0% 60%,16% 65%,34% 66%,51% 62%,67% 50%,84% 45%,100% 46%,100% 100%,0% 100%,);
  }
}
div.animate{
  transition: 5s;
}
.sec-1 .animate{
  transform: translateX(-150%);
  opacity: 0;
}
.sec-1.show-animate .animate{
  transform: translateX(0);
  transition: 2s;
  opacity: 1;
}
.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: all 2s ease;
}
.reveal.active{
  transform: translateY(0px);
  opacity: 1;
}







/*Mobile Devices*/
@media (max-width:480px){
  .top-header{
    display: none;
  }
  .top-socials{
    position: absolute;
    right: 24%;
  }
  /*Header Nav Section*/
  header{
    position: fixed;
  }
  header i{
    display: block;
  }
  .nav-container{
    position: absolute;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    display: block;
    transition: all .35s ease;
    background: #0a1174f5;
    backdrop-filter: blur(5px);
    z-index: 1;
    transition: all 1.5s ease;
  }
  .menu-close{
    display: block;
    position: absolute;
    top: 2%;
    right: 3%;
  }
  nav{
    height: 100%;
  }
  nav > ul{
    display: block;
    width: 100%;
    padding-top: 50px;
  }
  nav ul.menu-area{
    display: none;
  }
  nav > ul > li:hover{
    background: #3688f4;
  }
  nav a{
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
  }
  ul > li > a{
    display:block;
    flex-direction: column;
    z-index: 1;
  }
  .quote{
    width: 370px;
    height: 100%;
    margin-left: 20px;
  }
  
  form .db1-field{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    gap: 0.5rem;
  }
   /*Title Section*/
   .title{
    position: absolute;
    left: 50%;
    top: 55%;
   }
   .title h1{
    font-size: 50px;
   }
   .buttonh{
    display: none;
   }
   .attach{
    top: 93%;
   }
   .about{
    margin-top: 500px;
    height: 100%;
   }
   .about-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(360px,auto));
  }
  .about-left{
    width: 360px;
    height: 300px;
  }
  .about-text{
    text-align: center;
    padding: 5px 4%;
  }
  .about-text h2{
    font-size: 25px;
  }
  .about-text p{
    font-size: 13px;
    margin-bottom: 20px;
  }
  .about-right{
    width: 360px;
    height: 500px;
    display: grid;
    grid-template-columns: 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px;
    grid-template-rows: 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px ;
  }
  .about-image{
    grid-column: 1/8;
    grid-row: 2/8;
    background: url(images/partners2.jpg);
    background-position: center;
    background-size: cover;
  }
  .about-background{
    grid-column: 1/4;
    grid-row: 3/8;
    background: url(images/partners3.jpg);
    background-position: center;
    background-size: cover;
  }
  .about-clients{
    grid-column: 5/8;
    grid-row: 6/8;
    background-color: #0a1174;
    text-align: center;
    padding: 5px 0 0;
  }
  /* Services */
  .service{
    margin-top: 10px;
    height: 100%;
  }
  .service-title-box{
    display: block;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
    width: 350px;
  }
  .service-title{
    letter-spacing: .5px;
    width: 360px;
    text-align: center;
  }
  .service-title h2{
    font-size: 28px;
  }
  .service-title p{
    font-size: 13px;
    margin-bottom: 20px;
  }
  .service-container{
    padding-top: 30px;
  }
  .overlay{
    text-align: center;
  }
  /* CTA SECTION */
  .cta-text h2{
    color: #fff;
    font-size: 40px;
  }
  .cta-text p{
    font-size: 12px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 200;
  }
  .cta-text a{
    padding: 8px 25px;
    background-color: #0a1174;
    text-decoration: none;
    font-size: 13px;
    color: #fff;
    transition: .5s ease;
  }
  /*-------------
---EXPERIENCE SECTION------
------------*/
.experience{
  width: 100%;
  height: 100%;
  background-color: #0a1174;
}
.experience-container{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(360px,auto));
  justify-content: center;
  padding-bottom: 30px;
}
.experience-left{
  width: 360px;
  height: 300px;
  display: grid;
  grid-template-columns: 40px 40px 40px  40px 40px 40px  40px 40px 40px 40px 40px 40px ;
  grid-template-rows: 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px ;
}
.experience-background{
  grid-column: 5/10;
  grid-row: 5/7;
  background-color: #3688f4;
}
.experience-right{
  width: 360px;
  height: 100%;
}
.experience-text{
  text-align: center;
  display: grid;
  width: 360px;
}
.experience-text h2{
  font-size: 28px;
  color: #fff;
  margin-bottom: 5px;
}
.experience-text span{
  color: #3688f4;
}
.experience-text p{
  font-size: 13px;
  font-weight: 200;
  color: #fff;
}
.experience-icons{
  text-align: center;
  display: grid;
  justify-content: center;
  padding-right: 40px;
}
.experience-icon1{
  margin-top: 5px;
  width: 150px;
}
.experience-icons i{
  font-size: 40px;
  color: #fff;
}
.experience-icons h2{
  font-size: 15px;
  color: #fff;
}
.experience-icons p{
  font-size: 13px;
  font-weight: 200;
  color: #fff;
}
/*-------------
---PARTNERS SECTION------
------------*/
.partners{
  width: 100%;
  height: 100%;
  text-align: center;
  color: #0a1174;
}
/*-------------
---REVIEWS SECTION------
------------*/
.reviews{
  width: 100%;
  height: 100%;
  background-color: #3688f47a;
}
.reviews-container{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(360px,auto));
  justify-content: center;
  gap: 2rem;
}
.reviews-icon{
  position: absolute;
  bottom: 0;
}
.reviews-text{
  text-align: center;
  width: 360px;
  height: 100%;
  padding: 15px 13px;
}
.reviews-text h2{
  font-size: 38px;
  color: #0a1174;
  margin-bottom: 5px;
}
.reviews-text p{
  font-size: 13px;
  font-weight: 200;
  line-height: 1.4;
  margin-bottom: 20px;
}
.reviews-text a{
  padding: 10px 22px;
  background-color: #0a1174;
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  transition: .5s ease;
}
.reviews-text a:hover{
  background-color: #fff;
  color: #0a1174;
}
.reviews-box{
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
}
.reviews-box .reviews-box2{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 1.5) - 10px);
  overflow: hidden;
  cursor: pointer;
  padding-bottom: 70px;
}
.reviews-card{
  width: 300px;
  height: 250px;
  background-color: #fff;
  padding: 15px;
  box-shadow: 0 0 10px #0a1174;
  text-align: center;
  margin-top: 20px;
}
.reviews-card h5{
  color: #3688f4;
  margin-bottom: 5px;
}
.reviews-card p{
  font-size: 13px;
  line-height: 1.4;
  font-weight: 200;
}
.review-partner{
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.review-image{
  width: 60px;
  height: 60px;
  background-color: #3688f4;
  border-radius: 50%;
}
.review-title{
  margin-left: 10px;
}
.review-title h4{
  color: #0a1174;
  margin-bottom: 2px;
  font-size: 14px;
}
.review-title p{
  font-weight: 300;
}
/*-------------
---CTA SECTION------
------------*/

.cta2-text i{
  font-size: 35px;
}
.cta2-text h2{
  font-size: 31px;
}
.cta2-text a{
  padding: 8px 22px;
  font-size: 12px;
}
/*-------------
---FOOTER SECTION------
------------*/
footer{
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(350px,auto));
  align-items: center;
  justify-content: center;
  background-color: #a5c4ec;
  padding: 15px;
}
.footer-left{
  width: 350px;
  height: 100%;
  padding: 15px;
}
.logo-box{
  display: flex;
  justify-content: center;
}
.logo-image{
  width: 120px;
  height: 50px;
  margin-right: 10px;
  margin-top: 10px;
}
.logo-image img{
  width: 100%;
  height: 100%;
}
.logo{
  text-align: left;
}
.logo-text h2{
  font-size: 25px;
  color: #0a1174;
  margin-bottom: 4px;
}
.logo-text p{
  font-size: 13px;
  font-weight: 200;
  color: #0a1174;
}
.logo-socials{
  margin-top: 10px;
}
.logo-socials i{
  color: #0a1174;
  cursor: pointer;
  transition: .5s ease;
}
.logo-socials i:hover{
  color: #fff;
}
/*-------------
---FOOTER center------
------------*/
.footer-center{
  width: 350px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 15px;
  text-align: center;
}
.navigation{
  margin-top: 10px;
}
.navigation-title h3{
  color: #0a1174;
}
.navigation-links a{
  text-decoration: none;
  color: #0a1174;
  font-weight: 200;
  cursor: pointer;
}
.navigation-links a:hover{
  color: #fff;
}
.footer-right{
  width: 350px;
  height: 100%;
  display: inline-block;
  justify-content: center;
  text-align: center;
}
.address-box h5{
  font-size: 20px;
  margin-bottom: 2px;
  color: #0a1174;
}
.address-box p{
  font-size: 15px;
  font-weight: 200;
  color: #0a1174;
}
/*---------------
---Copyright----
---------------*/
.copyright p{
  font-size: 13px;
}



}
/*Extra Small Devices*/
@media (min-width:481px) and (max-width:767px){
  .top-header{
    display: none;
  }
  .top-socials{
    position: absolute;
    right: 24%;
  }
 
  /*Header Nav Section*/
  header{
    position: fixed;
  }
  header i{
    display: block;
  }
  .nav-container{
    position: absolute;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    display: block;
    transition: all .35s ease;
    background: #0a1174f5;
    backdrop-filter: blur(5px);
    z-index: 1;
    transition: all 1.5s ease;
  }
  .menu-close{
    display: block;
    position: absolute;
    top: 2%;
    right: 3%;
  }
  nav{
    height: 100%;
  }
  nav > ul{
    display: block;
    width: 100%;
    padding-top: 50px;
  }
  nav ul.menu-area{
    display: none;
  }
  nav > ul > li:hover{
    background: #3688f4;
  }
  nav a{
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
  }
  ul > li > a{
    display:block;
    flex-direction: column;
    z-index: 1;
  }
  .buttonh{
    display: none;
   }
   .quote{
    width: 470px;
    height: 100%;
    margin-left: 20px;
  }
  
  form .db1-field{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    gap: 0.5rem;
  }
   /*Title Section*/
   .title{
    position: absolute;
    left: 50%;
    left: 50%;
   }
   .title h1{
    font-size: 50px;
   }
   .attach{
    top: 90%;
    height: 100%;
   }
   .about{
    margin-top: 300px;
    height: 100%;
   }
   .about-container{
    grid-template-columns: repeat(auto-fit,minmax(481px,auto));
    justify-content: center;
  }
  .about-left{
    width: 481px;
    resize: both;
  }
  .about-text h2{
    font-size: 35px;
  }
  .about-right{
    width: 481px;
  }
  .about-image{
    grid-column: 1/9;
    grid-row: 2/8;
    background: url(images/partners2.jpg);
    background-position: center;
    background-size: cover;
  }
  .about-background{
    grid-column: 1/4;
    grid-row: 3/8;
    background: url(images/partners3.jpg);
    background-position: center;
    background-size: cover;
  }
  .about-clients{
    grid-column: 6/9;
    grid-row: 7/8;
    background-color: #0a1174;
    text-align: center;
    padding: 5px 0 0;
  }
  .about-clients h2{
    color: #fff;
    font-size: 15px;
  }
  .about-clients p{
    color: #fff;
    font-size: 13px;
    font-weight: 200;
  }
  .about-text{
    text-align: center;
    padding: 5px 4%;
  }
  /*Service Section*/

  .service{
    height: 100%;
  }
  .service-title-box{
    display: block;
    justify-content: center;
    text-align: center;
  }
  .service-title{
    width: 100%;
    letter-spacing: .5px;
    text-align: center;
  }
  .service-title h2{
    font-size: 35px;
  }
  .service-title p{
    font-size: 13px;
    margin-bottom: 20px;
  }
  .service-container{
    padding-top: 30px;
  }
  .overlay{
    text-align: center;
  }
   /* CTA SECTION */
  .cta-text h2{
    color: #fff;
    font-size: 35px;
  }
    /*-------------
---EXPERIENCE SECTION------
------------*/
.experience{
  width: 100%;
  height: 160vh;
  background-color: #0a1174;
}
.experience-container{
  display: block;
}
.experience-left{
  width: 500px;
  height: 300px;
  display: grid;
  grid-template-columns: 40px 40px 40px  40px 40px 40px  40px 40px 40px 40px 40px 40px ;
  grid-template-rows: 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px ;
}
.experience-background{
  grid-column: 8/12;
  grid-row: 5/7;
  background-color: #3688f4;
  z-index: 1;
}
.experience-right{ 
  width: 100%;
  height: 300px;
}
.experience-text{
  text-align: center;
  display: block;
  width: 100%;
}
.experience-text h2{
  font-size: 28px;
  color: #fff;
  margin-bottom: 5px;
}
.experience-text span{
  color: #3688f4;
}
.experience-text p{
  font-size: 13px;
  font-weight: 200;
  color: #fff;
}
.experience-icons{
  text-align: center;
  display: block;
}
.experience-icon1{
  margin-top: 5px;
}
.experience-icons i{
  font-size: 40px;
  color: #fff;
}
.experience-icons h2{
  font-size: 15px;
  color: #fff;
}
.experience-icons p{
  font-size: 13px;
  font-weight: 200;
  color: #fff;
}
/*-------------
---PARTNERS SECTION------
------------*/
.partners{
  width: 100%;
  height: 100%;
  text-align: center;
  color: #0a1174;
}
.partners-container{
  display: flex;
  grid-template-rows: repeat(auto-fit,minmax(200px,auto));
  justify-content: center;
  padding-top: 35px;
  padding-bottom: 30px;
  gap: 1rem;
  overflow: hidden;
}
.cta2-text i{
  font-size: 35px;
}
.cta2-text h2{
  font-size: 30px;
}
.cta2-text a{
  padding: 8px 22px;
  font-size: 12px;
}
/*-------------
---REVIEWS SECTION------
------------*/
.reviews{
  width: 100%;
  height: 100%;
  background-color: #3688f47a;
  display: block;
  justify-content: center;
}
.reviews-container{
  display: block;
  grid-template-columns: repeat(auto-fit,minmax(400px,auto));
  justify-content: center;
}
.reviews-box .reviews-box2{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 2) - 12px);
  overflow: hidden;
  cursor: pointer;
  padding-bottom: 20px;
}
.reviews-card{
  width: 300px;
  height: 250px;
  background-color: #fff;
  padding: 15px;
  box-shadow: 0 0 10px #0a1174;
  text-align: center;
  margin-top: 20px;
}
/*-------------
---FOOTER SECTION------
------------*/
footer{
  width: 100%;
  height: 120vh;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(350px,auto));
  align-items: center;
  justify-content: center;
  background-color: #a5c4ec;
  padding: 15px;
}
.footer-left{
  width: 350px;
  height: 100%;
  padding: 15px;
}
.logo-box{
  display: flex;
  justify-content: center;
}
.logo-image{
  width: 120px;
  height: 50px;
  margin-right: 10px;
  margin-top: 10px;
}
.logo-image img{
  width: 100%;
  height: 100%;
}
.logo{
  text-align: left;
}
.logo-text h2{
  font-size: 25px;
  color: #0a1174;
  margin-bottom: 4px;
}
.logo-text p{
  font-size: 13px;
  font-weight: 200;
  color: #0a1174;
}
.logo-socials{
  margin-top: 10px;
}
.logo-socials i{
  color: #0a1174;
  cursor: pointer;
  transition: .5s ease;
}
.logo-socials i:hover{
  color: #fff;
}
/*-------------
---FOOTER center------
------------*/
.footer-center{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 15px;
  text-align: center;
}
.navigation{
  margin-top: 10px;
}
.navigation-title h3{
  color: #0a1174;
}
.navigation-links a{
  text-decoration: none;
  color: #0a1174;
  font-weight: 200;
  cursor: pointer;
}
.navigation-links a:hover{
  color: #fff;
}
.footer-right{
  width: 100%;
  height: 100%;
  display: inline-block;
  justify-content: center;
  text-align: center;
}
.address-box h5{
  font-size: 20px;
  margin-bottom: 2px;
  color: #0a1174;
}
.address-box p{
  font-size: 15px;
  font-weight: 200;
  color: #0a1174;
}
/*---------------
---Copyright----
---------------*/
.copyright p{
  font-size: 11px;
}


  
}
/*Small Tablets*/
@media (min-width:768px) and (max-width:991px){
  .top-header{
    display: none;
  }
  .top-socials{
    position: absolute;
    right: 24%;
  }
    /*Header Nav Section*/
  header{
    position: fixed;
  }
  header i{
    display: block;
  }
  .nav-container{
    position: absolute;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    display: block;
    transition: all .35s ease;
    background: #0a1174f5;
    backdrop-filter: blur(5px);
    z-index: 1;
    transition: all 1.5s ease;
  }
  .menu-close{
    display: block;
    position: absolute;
    top: 2%;
    right: 3%;
  }
  nav{
    height: 100%;
  }
  nav > ul{
    display: block;
    width: 100%;
    padding-top: 50px;
  }
  nav ul.menu-area{
    display: none;
  }
  nav > ul > li:hover{
    background: #3688f4;
  }
  nav a{
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
  }
  ul > li > a{
    display:block;
    flex-direction: column;
    z-index: 1;
  }
  .buttonh{
    display: none;
   }
   
   .quote{
    margin-left: 20px;
  }
   /*Title Section*/
   .title{
    top: 50%;
    left: 50%;
   }
   .title h1{
    font-size: 50px;
   }
   .attach{
    position: relative;
    top: 72%;
  }
  .attach-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(170px,auto));
    justify-content: center;
  }
  .attach1{
    width: 170px;
    height: 130px;
    background-color: #0a1174d8;
  }
  .attach-box{
    padding: 10px;
    text-align: center;
  }
  .attach i{
    font-size: 23px;
    color: #3688f4;
    margin-bottom: 5px;
  }
  .about{
    height: 100%;
   }
  .service{
    height: 100%;
  }
  .experience{
    width: 100%;
    height: 100%;
    background-color: #0a1174;
  }
  .reviews{
    height: 100%;
  }
  .reviews-text{
    text-align: center;
    width: 100%;
    height: 300px;
    padding: 15px 13px;
  }
  .reviews-container{
    padding-bottom: 50px;
  }
  .reviews-box .reviews-box2{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 1.5) - 10px);
    overflow: hidden;
    gap: 1rem;
    cursor: pointer;
    padding-bottom: 20px;
  }
  .reviews-container{
    display: block;
    grid-template-columns: repeat(auto-fit,minmax(300px,auto));
    justify-content: center;
  }
/*-------------
---PARTNERS SECTION------
------------*/
.partners{
  width: 100%;
  height: 100%;
  text-align: center;
  color: #0a1174;
}
.cta2-text i{
  font-size: 35px;
}
.cta2-text h2{
  font-size: 30px;
}
/*-------------
---FOOTER SECTION------
------------*/
footer{
  width: 100%;
  height: 120vh;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(350px,auto));
  align-items: center;
  justify-content: center;
  background-color: #a5c4ec;
  padding: 15px;
}
.footer-left{
  width: 350px;
  height: 100%;
  padding: 15px;
}
.logo-box{
  display: flex;
  justify-content: center;
}
.logo-image{
  width: 120px;
  height: 50px;
  margin-right: 10px;
  margin-top: 10px;
}
.logo-image img{
  width: 100%;
  height: 100%;
}
.logo{
  text-align: left;
}
.logo-text h2{
  font-size: 25px;
  color: #0a1174;
  margin-bottom: 4px;
}
.logo-text p{
  font-size: 13px;
  font-weight: 200;
  color: #0a1174;
}
.logo-socials{
  margin-top: 10px;
}
.logo-socials i{
  color: #0a1174;
  cursor: pointer;
  transition: .5s ease;
}
.logo-socials i:hover{
  color: #fff;
}
/*-------------
---FOOTER center------
------------*/
.footer-center{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 15px;
  text-align: center;
}
.navigation{
  margin-top: 10px;
}
.navigation-title h3{
  color: #0a1174;
}
.navigation-links a{
  text-decoration: none;
  color: #0a1174;
  font-weight: 200;
  cursor: pointer;
}
.navigation-links a:hover{
  color: #fff;
}
.footer-right{
  width: 100%;
  height: 100%;
  display: inline-block;
  justify-content: center;
  text-align: center;
}
.address-box h5{
  font-size: 20px;
  margin-bottom: 2px;
  color: #0a1174;
}
.address-box p{
  font-size: 15px;
  font-weight: 200;
  color: #0a1174;
}
/*---------------
---Copyright----
---------------*/
.copyright p{
  font-size: 11px;
}


}
/*Large Tablets/Laptops*/
@media (min-width:992px) and (max-width:1199px){
  .top-header{
    display: none;
  }
  .top-socials{
    position: absolute;
    right: 24%;
  }
   /*Header Nav Section*/
   header{
    position: fixed;
  }
  header i{
    display: block;
  }
  .nav-container{
    position: absolute;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    display: block;
    transition: all .35s ease;
    background: #0a1174f5;
    backdrop-filter: blur(5px);
    z-index: 1;
    transition: all 1.5s ease;
  }
  .menu-close{
    display: block;
    position: absolute;
    top: 2%;
    right: 3%;
  }
  nav{
    height: 100%;
  }
  nav > ul{
    display: block;
    width: 100%;
    padding-top: 50px;
  }
  nav ul.menu-area{
    display: none;
  }
  nav > ul > li:hover{
    background: #3688f4;
  }
  nav a{
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
  }
  ul > li > a{
    display:block;
    flex-direction: column;
    z-index: 1;
  }
  .buttonh{
    display: none;
   }
   /*Title Section*/
   .title{
    top: 50%;
    left: 50%;
   }
   .title h1{
    font-size: 50px;
   }
   .about{
    height: 100%;
   }
  .service{
    height: 100%;
  }
  .experience{
    width: 100%;
    height: 100%;
    background-color: #0a1174;
  }
  .reviews{
    height: 100%;
  }
/*-------------
---PARTNERS SECTION------
------------*/
.partners{
  width: 100%;
  height: 100%;
  text-align: center;
  color: #0a1174;
}
  .reviews-box .reviews-box2{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 2) - 3px);
    overflow: hidden;
    cursor: pointer;
    padding-bottom: 20px;
    gap: 1rem;
  }
  .reviews-card{
    width: 300px;
  }
 /*-------------
---FOOTER SECTION------
------------*/
footer{
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(350px,auto));
  align-items: center;
  justify-content: center;
  background-color: #a5c4ec;
  padding: 15px;
}
.footer-left{
  width: 350px;
  height: 100%;
  padding: 15px;
}
.logo-box{
  display: flex;
  justify-content: center;
}
.logo-image{
  width: 120px;
  height: 50px;
  margin-right: 10px;
  margin-top: 10px;
}
.logo-image img{
  width: 100%;
  height: 100%;
}
.logo{
  text-align: left;
}
.logo-text h2{
  font-size: 25px;
  color: #0a1174;
  margin-bottom: 4px;
}
.logo-text p{
  font-size: 13px;
  font-weight: 200;
  color: #0a1174;
}
.logo-socials{
  margin-top: 10px;
}
.logo-socials i{
  color: #0a1174;
  cursor: pointer;
  transition: .5s ease;
}
.logo-socials i:hover{
  color: #fff;
}
/*-------------
---FOOTER center------
------------*/
.footer-center{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 15px;
  text-align: center;
}
.navigation{
  margin-top: 10px;
}
.navigation-title h3{
  color: #0a1174;
}
.navigation-links a{
  text-decoration: none;
  color: #0a1174;
  font-weight: 200;
  cursor: pointer;
}
.navigation-links a:hover{
  color: #fff;
}
.footer-right{
  width: 100%;
  height: 100%;
  display: inline-block;
  justify-content: center;
  text-align: center;
}
.address-box h5{
  font-size: 20px;
  margin-bottom: 2px;
  color: #0a1174;
}
.address-box p{
  font-size: 15px;
  font-weight: 200;
  color: #0a1174;
}
/*---------------
---Copyright----
---------------*/
.copyright p{
  font-size: 11px;
}


}
/*Desktops*/
@media (min-width:1500px) and (max-width:1919px){
  /*---------------
---LOGO----
---------------*/
.header-logo{
  display: flex;
  align-items: center;
}
.header-logo-image{
  width: 50px;
  height: 50px;
  margin-right: 5px;
}
.header-logo-image img{
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.header-logo-text h2{
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: .5px;
  line-height: 1.4;
  letter-spacing: 1px;
}
.header-logo-text span{
  color: #0a1174;
}
/*---------------
---NAVIGATION----
---------------*/
nav{
  background-color: #2626267d;
  font-size: 17px;
}

/*---------------
---Header Button----
---------------*/
.buttonh{
  padding: 9px 27px;
  font-size: 15px;
}
/*---------------
---Title Button----
---------------*/
.title{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.title h1{
  font-size: 70px;
  color: #fff;
}
.title P{
  font-weight: 200;
  color: #fff;
  margin-bottom: 40px;
  font-size: 22px;
}
.title a{
  padding: 10px 35px;
  font-size: 15px;
}
/*-------------
---ATTACH SECTION------
------------*/
.attach{
  position: relative;
  top: 90%;
}
.attach-container{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,auto));
  justify-content: center;
}
.attach1{
  width: 300px;
  height: 150px;
  background-color: #0a1174d8;
}
.attach i{
  font-size: 35px;
  color: #3688f4;
  margin-bottom: 5px;
}
.attach-text h3{
  font-size: 25px;
}
.attach-text p{
  font-size: 15px;
}

/*-------------
---ABOUT SECTION------
------------*/
.about{
  width: 100%;
  height: 100%;
}
.about-container{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(650px,auto));
  justify-content: center;
  padding: 50px 0 150px;
}
.about-left{
  width: 650px;
  height: 500px;
}
.about-text h2{
  font-size: 60px;
}
.about-text p{
  font-size: 20px;
}
.about-text a{
  font-size: 17px;
}
.about-text a:hover{
  background-color: #a5c4ec;
  color: #0a1174;
}
.about-right{
  width: 650px;
  height: 500px;
  display: grid;
  grid-template-columns: 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px;
  grid-template-rows: 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px ;
}
.about-image{
  grid-column: 2/11;
  grid-row: 2/10;
}
.about-background{
  grid-column: 1/6;
  grid-row: 5/11;
}
.about-clients{
  grid-column: 7/11;
  grid-row: 8/10;
}
.about-clients h2{
  color: #fff;
  font-size: 30px;
}
.about-clients p{
  font-size: 17px;
}
/* ------------------
----CTA SECTION---
---------------------*/
.cta{
  width: 100%;
  height: 100%;
  background: url(images/partners4.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.cta-text{
  text-align: center;
  padding: 40px 0;
  letter-spacing: .5px;
}
.cta-text h5{
  color: #0a1174;
  font-size: 20px;
}
.cta-text h2{
  color: #fff;
  font-size: 55px;
}
.cta-text p{
  font-size: 18px;
}
.cta-text a{
  padding: 8px 25px;
  font-size: 18px;
}
/*-------------
---SERVICES SECTION------
------------*/
.service{
  width: 100%;
  height: 100%;
  padding: 30px 8%;
  background: linear-gradient(rgba(255, 255, 255, 0.9),rgba(255, 255, 255, 0.9)), url(images/background.jpg);
  background-position: center;
  background-size: cover;
}
.service-title-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-title{
  width: 60%;
  letter-spacing: .5px;
  padding: 0 4%;
}
.service-title h2{
  font-size: 49px;
}
.service-title p{
  font-size: 18px;
}
.service-button a{
  padding: 9px 22px;
  font-size: 16px;
}
.service-container{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(400px,auto));
  justify-content: center;
  padding: 30px 0;
  gap: 1rem;
}
.service-card1{
  width: 400px;
  height: 360px;
}
.service-card2{
  width: 400px;
  height: 360px;
  background: linear-gradient(rgba(110, 152, 251, 0.6),rgba(0,0,0,0.6)), url(images/partners1.jpg);
  background-position: center;
  background-size: cover;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card3{
  width: 400px;
  height: 360px;
}
.overlay i{
  font-size: 35px;
}
.overlay h2{
  font-size: 32px;
}
.overlay p{
  font-size: 17px;
}
.overlay a{
  padding: 8px 20px;
  font-size: 16px;
}
/*-------------
---EXPERIENCE SECTION------
------------*/
.experience{
  width: 100%;
  height: 80vh;
  background-color: #0a1174;
}
.experience-container{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(650px,auto));
  justify-content: center;
  padding-top: 40px;
}
.experience-left{
  width: 650px;
  height: 500px;
  background:url(images/partners3.jpg);
  background-position: center;
  background-size: cover;
  display: grid;
  grid-template-columns: 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px;
  grid-template-rows: 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px ;
}
.experience-background{
  grid-column: 8/12;
  grid-row: 8/11;
  background-color: #3688f4;
}
.experience-right{
  width: 650px;
  height: 500px;
}
.experience-text{
  padding: 20px 10px;
  text-align: right;
}
.experience-text h2{
  font-size: 50px;
  color: #fff;
}
.experience-text p{
  font-size: 19px;
}
.experience-icons i{
  font-size: 45px;
}
.experience-icons h2{
  font-size: 20px;
  color: #fff;
}
.experience-icons p{
  font-size: 17px;
}
/*-------------
---CTA SECTION------
------------*/
.cta2{
  width: 100%;
  height: 100%;
}
.cta2-text{
  padding-bottom: 20px;
}
.cta2-text i{
  font-size: 50px;
  color: #0a1174;
  margin-bottom: 5px;
}
.cta2-text h2{
  font-size: 45px;
}
.cta2-text a{
  padding: 10px 25px;
  font-size: 17px;
}
/*-------------
---REVIEWS SECTION------
------------*/
.reviews{
  width: 100%;
  height: 100%;
  background-color: #3688f47a;
  padding: 0 4%;
}
.reviews-container{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(500px,auto));
  justify-content: center;
  padding: 30px 0;
}
.reviews-text{
  width: 500px;
  height: 440px;
  padding: 15px 13px;
}
.reviews-text h2{
  font-size: 45px;
}
.reviews-text p{
  font-size: 18px;
}
.reviews-text a{
  font-size: 18px;
}
.reviews-box{
  max-width: 1100px;
  width: 100%;
  padding-top: 15px;
  position: relative;
}
.reviews-box .reviews-box2{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 12px);
  overflow: hidden;
  gap: 5rem;
  cursor: pointer;
}
.reviews-icon i{
  font-size: 38px;
  color: #0a1174;
  cursor: pointer;
  transition: .5s ease;
}
.reviews-icon i:hover{
  color: #fff;
}
.reviews-card{
  width: 400px;
  height: 300px;
  background-color: #fff;
  padding: 15px;
  box-shadow: 0 0 10px #0a1174;
}
.reviews-card h5{
  color: #3688f4;
  margin-bottom: 5px;
  font-size: 20px;
}
.reviews-card p{
  font-size: 18px;
  line-height: 1.4;
  font-weight: 200;
}
.review-partner{
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.review-image{
  width: 60px;
  height: 60px;
  background-color: #3688f4;
  border-radius: 50%;
}
.review-title{
  margin-left: 10px;
}
.review-title h4{
  color: #0a1174;
  margin-bottom: 2px;
  font-size: 18px;
}
.review-title p{
  font-weight: 300;
}
.partners{
  width: 100%;
  height: 100%;
}
.partners .partners-container{
  animation: scroll 30s infinite linear;
  display: flex;
  align-items: center;
  width: calc(300px * 15);
  padding-top: 30px;
}
.partner-card{
  width: 280px;
  height: 170px;
  border: 0px solid #0a1174;
  cursor: pointer;
  opacity: 0.1;
}
.partner-card img{
  width: 180px;
  height: 110px;
}
.partner-text{
  width: 180px;
  height: 110px;
  padding-top: 20px;
}
.partner-text h2{
  font-size: 25px;
}
/*-------------
---FOOTER SECTION------
------------*/
footer{
  width: 100%;
  height: 40vh;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(350px,auto));
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  background:linear-gradient(rgba(106, 176, 234, 0.9),rgba(106, 176, 234, 0.9)), url(images/aboutcont1.jpg);
  background-position: center;
  background-size: cover;
}
.footer-left{
  width: 500px;
  height: 100%;
  padding: 15px;
}
.logo-box{
  display: flex;
  justify-content: center;
}
.logo-image{
  width: 110px;
  height: 60px;
  margin-right: 10px;
  margin-top: 10px;
}
.logo-image img{
  width: 100%;
  height: 100%;
}
.logo{
  text-align: left;
}
.logo-text h2{
  font-size: 30px;
  color: #0a1174;
  margin-bottom: 4px;
}
.logo-text p{
  font-size: 20px;
  font-weight: 300;
  color: #0a1174;
}
.logo-socials{
  margin-top: 10px;
}
.logo-socials i{
  color: #0a1174;
  cursor: pointer;
  transition: .5s ease;
  font-size: 28px;
}
/*-------------
---FOOTER center------
------------*/
.footer-center{
  width: 500px;
  height: 100%;
  justify-content: space-evenly;
}
.navigation-title h3{
  color: #0a1174;
  font-size: 30px;
}
.navigation-links a{
  text-decoration: none;
  color: #0a1174;
  font-weight: 300;
  cursor: pointer;
  font-size: 20px;
}
.navigation-links a:hover{
  color: #fff;
}
.footer-right{
  width: 500px;
  height: 100%;
}
.address-box h5{
  font-size: 28px;
  margin-bottom: 2px;
  color: #0a1174;
}
.address-box p{
  font-size: 20px;
  font-weight: 300;
  color: #0a1174;
}
/*---------------
---Copyright----
---------------*/  
.copyright p{
  font-size: 20px;
}

}
@media (min-width:1920px){
  header{
    padding-left: 6%;
    padding-right: 3%;
  }
    /*---------------
---LOGO----
---------------*/
.header-logo{
  display: flex;
  align-items: center;
}
.header-logo-image{
  width: 75px;
  height: 75px;
  margin-right: 5px;
}
.header-logo-image img{
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.header-logo-text h2{
  font-size: 28px;
}

/*---------------
---NAVIGATION----
---------------*/
nav{
  background-color: #2626267d;
  font-size: 28px;
}
/*---------------
---Header Button----
---------------*/
.buttonh{
  padding: 9px 27px;
  font-size: 27px;
}
/*---------------
---Title Button----
---------------*/
.title{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.title h1{
  font-size: 100px;
  color: #fff;
}
.title P{
  font-weight: 200;
  color: #fff;
  margin-bottom: 40px;
  font-size: 30px;
}
.title a{
  padding: 10px 35px;
  font-size: 28px;
}
/*-------------
---ATTACH SECTION------
------------*/
.attach{
  position: relative;
  top: 90%;
}
.attach-container{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(400px,auto));
  justify-content: center;
}
.attach1{
  width: 400px;
  height: 230px;
  background-color: #0a1174d8;
}
.attach i{
  font-size: 45px;
  color: #3688f4;
  margin-bottom: 5px;
}
.attach-text h3{
  font-size: 32px;
}
.attach-text p{
  font-size: 25px;
}
/*-------------
---ABOUT SECTION------
------------*/
.about{
  width: 100%;
  height: 100%;
}
.about-container{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(850px,auto));
  justify-content: center;
  padding: 100px 0 350px;
}
.about-left{
  width: 950px;
  height: 600px;
}
.about-text h2{
  font-size: 70px;
}
.about-text p{
  font-size: 28px;
}
.about-text a{
  font-size: 24px;
}
.about-right{
  width: 950px;
  height: 600px;
  display: grid;
  grid-template-columns: 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px;
  grid-template-rows: 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px ;
}
.about-image{
  grid-column: 2/15;
  grid-row: 2/12;
}
.about-background{
  grid-column: 1/7;
  grid-row: 6/13;
}
.about-clients{
  grid-column: 10/16;
  grid-row: 11/14;
}
.about-clients h2{
  color: #fff;
  font-size: 45px;
}
.about-clients p{
  font-size: 26px;
}
/* ------------------
----CTA SECTION---
---------------------*/
.cta{
  width: 100%;
  height: 100%;
}
.cta-text h5{
  color: #0a1174;
  font-size: 33px;
}
.cta-text h2{
  color: #fff;
  font-size: 70px;
}
.cta-text p{
  font-size: 26px;
}
.cta-text a{
  padding: 8px 25px;
  font-size: 24px;
}
/*-------------
---SERVICES SECTION------
------------*/
.service{
  width: 100%;
  height: 100%;
  padding: 30px 8%;
}
.service-title{
  padding: 0 3%;
}
.service-title h2{
  font-size: 65px;
}
.service-title p{
  font-size: 28px;
}
.service-button a{
  padding: 9px 22px;
  font-size: 26px;
}
.service-container{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(600px,auto));
  justify-content: center;
  padding: 30px 0;
  gap: 1rem;
}
.service-card1{
  width: 600px;
  height: 480px;
}
.service-card2{
  width: 600px;
  height: 480px;
}
.service-card3{
  width: 600px;
  height: 480px;
}
.overlay i{
  font-size: 45px;
}
.overlay h2{
  font-size: 45px;
}
.overlay p{
  font-size: 28px;
}
.overlay a{
  padding: 8px 20px;
  font-size: 24px;
}
/*-------------
---EXPERIENCE SECTION------
------------*/
.experience{
  width: 100%;
  height: 80vh;
  background-color: #0a1174;
}
.experience-container{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(950px,auto));
  justify-content: center;
  padding-top: 60px;
}
.experience-left{
  width: 950px;
  height: 650px;
  background:url(images/partners3.jpg);
  background-position: center;
  background-size: cover;
  display: grid;
  grid-template-columns: 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px;
  grid-template-rows: 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px ;
}
.experience-background{
  grid-column: 10/16;
  grid-row: 10/14;
  background-color: #3688f4;
}
.experience-right{
  width: 950px;
  height: 650px;
}
.experience-text{
  padding: 20px 10px;
  text-align: right;
}
.experience-text h2{
  font-size: 65px;
  color: #fff;
}
.experience-text p{
  font-size: 28px;
}
.experience-icons i{
  font-size: 55px;
}
.experience-icons h2{
  font-size: 30px;
  color: #fff;
}
.experience-icons p{
  font-size: 26px;
}
/*-------------
---CTA SECTION------
------------*/
.cta2{
  width: 100%;
  height: 100%;
}
.cta2-text{
  padding-bottom: 40px;
}
.cta2-text i{
  font-size: 60px;
  color: #0a1174;
  margin-bottom: 5px;
}
.cta2-text h2{
  font-size: 60px;
}
.cta2-text a{
  padding: 10px 25px;
  font-size: 28px;
}
/*-------------
---REVIEWS SECTION------
------------*/
.reviews{
  width: 100%;
  height: 100%;
  background-color: #3688f47a;
  padding: 0 4%;
}
.reviews-container{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(700px,auto));
  justify-content: center;
  padding: 30px 0 10px;
}
.reviews-text{
  width: 700px;
  height: 600px;
  padding: 15px 13px;
}
.reviews-text h2{
  font-size: 65px;
}
.reviews-text p{
  font-size: 30px;
}
.reviews-text a{
  font-size: 27px;
}
.reviews-box{
  max-width: 1500px;
  width: 100%;
  padding-top: 15px;
  position: relative;
}
.reviews-box .reviews-box2{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 12px);
  overflow: hidden;
  gap: 5rem;
  cursor: pointer;
}
.reviews-icon i{
  font-size: 38px;
  color: #0a1174;
  cursor: pointer;
  transition: .5s ease;
}
.reviews-icon i:hover{
  color: #fff;
}
.reviews-card{
  width: 500px;
  height: 400px;
  background-color: #fff;
  padding: 15px;
  box-shadow: 0 0 10px #0a1174;
}
.reviews-card h5{
  color: #3688f4;
  margin-bottom: 5px;
  font-size: 28px;
}
.reviews-card p{
  font-size: 25px;
  line-height: 1.4;
  font-weight: 200;
}
.review-partner{
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.review-image{
  width: 60px;
  height: 60px;
  background-color: #3688f4;
  border-radius: 50%;
}
.review-title{
  margin-left: 10px;
}
.review-title h4{
  color: #0a1174;
  margin-bottom: 2px;
  font-size: 25px;
}
.review-title p{
  font-weight: 300;
}
.reviews-icon i{
  font-size: 55px;
  color: #0a1174;
  cursor: pointer;
  transition: .5s ease;
}
/*--------------
--PARTNERS SECTION--
--------------*/
.partners{
  width: 100%;
  height: 100%;
}
.partners .partners-container{
  animation: scroll 30s infinite linear;
  display: flex;
  align-items: center;
  width: calc(300px * 15);
  padding-top: 30px;
}
.partner-card{
  width: 380px;
  height: 200px;
  border: 0px solid #0a1174;
  cursor: pointer;
  opacity: 0.1;
}
.partner-card img{
  width: 230px;
  height: 150px;
}
.partner-text{
  width: 280px;
  height: 150px;
  padding-top: 20px;
}
.partner-text h2{
  font-size: 35px;
}
/*-------------
---FOOTER SECTION------
------------*/
footer{
  width: 100%;
  height: 40vh;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(700px,auto));
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  background:linear-gradient(rgba(106, 176, 234, 0.9),rgba(106, 176, 234, 0.9)), url(images/aboutcont1.jpg);
  background-position: center;
  background-size: cover;
}
.footer-left{
  width: 700px;
  height: 100%;
  padding: 15px;
}
.logo-box{
  display: flex;
  justify-content: center;
}
.logo-image{
  width: 200px;
  height: 100px;
  margin-right: 10px;
  margin-top: 10px;
}
.logo-image img{
  width: 100%;
  height: 100%;
}
.logo{
  text-align: left;
}
.logo-text h2{
  font-size: 50px;
  color: #0a1174;
  margin-bottom: 4px;
}
.logo-text p{
  font-size: 28px;
  font-weight: 300;
  color: #0a1174;
}
.logo-socials{
  margin-top: 10px;
}
.logo-socials i{
  color: #0a1174;
  cursor: pointer;
  transition: .5s ease;
  font-size: 35px;
}
/*-------------
---FOOTER center------
------------*/
.footer-center{
  width: 700px;
  height: 100%;
  justify-content: space-evenly;
}
.navigation-title h3{
  color: #0a1174;
  font-size: 45px;
}
.navigation-links a{
  text-decoration: none;
  color: #0a1174;
  font-weight: 300;
  cursor: pointer;
  font-size: 30px;
}
.navigation-links a:hover{
  color: #fff;
}
.footer-right{
  width: 700px;
  height: 100%;
}
.address-box h5{
  font-size: 40px;
  margin-bottom: 2px;
  color: #0a1174;
}
.address-box p{
  font-size: 28px;
  font-weight: 300;
  color: #0a1174;
}
/*---------------
---Copyright----
---------------*/
       
.copyright p{
  font-size: 30px;
}
}