html {
  margin: 0;
  background-color: #090c0f;
  font-size: 62.5%;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

* {
  color: aliceblue;
  list-style: none;
  text-decoration: none;
  font-family: "Inter", sans-serif;
}

body {
  margin: 0;
  overflow-x: hidden;
}

::-moz-selection { /* Code for Firefox */
  color: white;
  background: #153948;
}

::selection {
  color: white;
  background: #153948;
}


#moto{
  font-size: 2.35rem;
  font-weight: 600;
}

/* scroll animation */
.hidden {
  transform: translateX(-100%);
  transition: all 1.5s ease-out;
  transition-delay: 0.5s;
}

.show {
  transform: translateX(0px);
}


.hide {
  opacity: 0;
  transform: translateY(35px);
  transition: all 1.5s;
}

.scnd-child{
  transition-delay: .5s;
}
.thrd-child{
  transition-delay: .75s;
}
.frth-child{
  transition-delay: 1.5s;
}

.shown {
  opacity: 1;
  transform: translateY(0px);

}

/* Pre-loader */

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #00a9c77c;
  color: aliceblue;
  cursor: pointer;
  padding: 13px;
  border-radius: 10px;
  font-size: 15px;
}

#myBtn:hover {
  background-color: #00a9c7be;
}



#preloader {
  background-color: #85b9dd;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.frame {
  width: 500px;
  height: auto;
  margin: 15% auto 0;
  position: absolute;
  width: 100%;
}

svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.plane-container {
  width: 200px;
  margin: 0px auto;
  position: absolute;
  left: 0;
  bottom: 200px;
  right: 0;
  z-index: 3;
}

.plane {
  width: 100%;
  height: 60px;
}

.plane-container {
  -webkit-animation: paper-plane-scoping 2s alternate infinite;
  -moz-animation: paper-plane-scoping 2s alternate infinite;
  animation: paper-plane-scoping 2s alternate infinite;

  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes paper-plane-scoping {
  0% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
  }

  100% {
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    transform: translateY(100px);
  }
}

.plane {
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;

  -webkit-animation: paper-plane-soaring 4s forwards infinite;
  -moz-animation: paper-plane-soaring 4s forwards infinite;
  animation: paper-plane-soaring 4s forwards infinite;
}

@-webkit-keyframes paper-plane-soaring {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  40% {
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  50% {
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  60% {
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.clouds {
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  transform: translateZ(0);
}

.cloud {
  position: absolute;
  top: 20%;
  width: 300px;
  right: 0;
  opacity: 1;
}

.cloud.front {
  z-index: 9;
}

.cloud.distant {
  z-index: 1;
}

.cloud.background {
  z-index: 1;
}

.cloud.smaller {
  margin-right: 400px;
  width: 100px;
  margin-top: 50px;
}

.cloud.small {
  margin-right: 200px;
  width: 150px;
}

.cloud.big {
  width: 500px;
  margin-top: 50px;
  margin-right: 150px;
}

.cloud.massive {
  width: 600px;
  margin-top: 20px;
  margin-right: 0px;
}

.cloud {
  -webkit-animation-name: cloud-movement;
  -webkit-animation-timing-function: linear;
  -webkit-animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 8s;

  -moz-animation-name: cloud-movement;
  -moz-animation-timing-function: linear;
  -moz-animation-direction: forwards;
  -moz-animation-iteration-count: infinite;
  -moz-animation-duration: 8s;

  animation-name: cloud-movement;
  animation-timing-function: linear;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-duration: 8s;
}

.slow {
  -webkit-animation-duration: 9.2s;
  -moz-animation-duration: 9.2s;
  animation-duration: 9.2s;
}

.slower {
  -webkit-animation-duration: 11.2s;
  -moz-animation-duration: 11.2s;
  animation-duration: 11.2s;
}

.slowest {
  -webkit-animation-duration: 13.5s;
  -moz-animation-duration: 13.5s;
  animation-duration: 13.5s;
}

.super-slow {
  -webkit-animation-duration: 20.5s;
  -moz-animation-duration: 20.5s;
  animation-duration: 20.5s;
}

@-webkit-keyframes cloud-movement {
  0% {
    opacity: 0.1;
    -webkit-transform: translateX(300px);
    -moz-transform: translateX(300px);
    transform: translateX(300px);
  }

  10% {
    opacity: 0.7;
  }

  90% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-1000px);
    -moz-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }
}

#preloader h4 {
  margin: 25px;
  color: #ffffff;
  font-size: 1.7rem;
  max-width: 300px;
  text-align: center;
  letter-spacing: 1px;
  line-height: 28px;
}

.waviy {
  position: relative;
  -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0, 0, 0, 0.2));
  font-size: 25px;
}

.waviy span {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-weight: 600;
  font-family: candara;
  font-size: 30px;
  margin-top: 300px;
  text-transform: uppercase;
  animation: waviy 1s infinite;
  animation-delay: calc(0.1s * var(--i));
}

@keyframes waviy {

  0%,
  40%,
  100% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(-20px);
  }
}

/* Navigation */

#nav-cont {
  width: 100vw;
  background-color: #1a232d;
  padding: 10px 0;
  position: fixed;
  z-index: 13;
  border-bottom: 1px solid #bebebe33;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95vw;
  margin: auto;
}

.logo-cont {
  position: relative;
  width: 165px;
  z-index: 9;
}

.logo-cont img {
  width: 55px;
}

p.logot {
  font-size: 22px;
  position: absolute;
  top: -5px;
  left: 65px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
}

.list-1 {
  background-color: #252b3a;
  padding: 0;
  margin: 0;
  font-size: 13px;
}

ul.list-1 li {
  float: left;
  padding: 0;
  padding: 0 10px;
  margin: 0 5px;
  display: block;
  font-weight: 600;
}

.list-1 ul li {
  margin: 0;
  width: max-content;
  padding-right: 45px;
}

li.hov {
  position: relative;
  display: block;
  transition: all 0.5s ease-in;
}

.hov:hover .child {
  pointer-events: all;
}

.child li a:hover {
  color: #00a9c7 !important;
}

.child li a {
  font-weight: 400 !important;
}

ul.list-1 li.hov a {
  display: block;
  position: relative;
  padding: 15px;
  padding-left: 25px;
}

ul.list-1 li a:hover {
  transition: 0.5s;
}

.child {
  list-style: none;
  padding: 0;
  position: absolute;
  left: 0;
  top: 115%;
  background-color: #0a1014;
  padding: 5px 0;
  border-radius: 7px;
  position: absolute;
  top: 150%;
  left: 0;
  opacity: 0;
  transition: all 0.35s ease-in;
}

.child {
  pointer-events: none;
}

.hov:hover>.child {
  opacity: 1;
  top: 100%;
}

li.hov ul li {
  display: block;
  position: relative;
  font-weight: 500;
}

.navbar {
  display: none;
}

a, #myBtn {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  -webkit-tap-highlight-color: transparent !important;
}

@media (max-width: 1000px) {

  .list-1,
  #bartn {
    display: none;
  }

  .navbar {
    display: block;
    position: absolute;
    top: 10px;
    right: 0;
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 62px;
  }

  .navbar .menu-items {
    display: flex;
    align-items: flex-start;
    padding-left: 20vw;
    overflow-y: hidden;
    overflow-x: hidden;
    height: 100vh;
  }

  .navbar .nav-container li {
    list-style: none;
  }

  .navbar .nav-container a {
    text-decoration: none;
    color: #f0f8ff;
    font-weight: 500;
    font-size: 1.7rem;
    padding: 0.7rem;
  }

  .navbar .nav-container a:hover {
    font-weight: bolder;
  }

  .nav-container {
    display: block;
    position: relative;
    height: 60px;
  }

  .nav-container .checkbox {
    position: absolute;
    display: block;
    height: 33px;
    width: 35px;
    top: 10px;
    right: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
    padding: 5px;
  }

  .nav-container .hamburger-lines {
    display: block;
    height: 30px;
    width: 30px;
    position: absolute;
    top: 17px;
    right: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .nav-container .hamburger-lines .line {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 10px;
    background: aliceblue;
  }

  .nav-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }

  .nav-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .nav-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }

  .navbar .menu-items {
    padding-top: 120px;
    height: 80vh;
    width: 100vw;
    transform: translateY(-150vh);
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease-in;
    text-align: center;
    background-color: #1a232d;
    overflow-y: hidden;
    overflow-x: hidden;
    height: 100vh;
  }

  .navbar .menu-items li {
    margin-bottom: 1.2rem;
    font-weight: 500;
    text-align: left;
    width: fit-content;
  }

  .nav-container input[type="checkbox"]:checked~.menu-items {
    transform: translateY(0px);
    transform: translateX(0%);
    rotate: 0deg;
    min-width: 205px;
  }

  .nav-container input[type="checkbox"]:checked~.hamburger-lines .line1 {
    transform: rotate(45deg);
  }

  .nav-container input[type="checkbox"]:checked~.hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .nav-container input[type="checkbox"]:checked~.hamburger-lines .line3 {
    transform: rotate(-45deg);
  }


  .meny {
    width: max-content;
    padding: 0 0 0 75px;
  }

  .meny li {
    width: fit-content;
  }

  .meny .btn {
    margin-top: 25px;
    padding: 13px 28px !important;
    font-size: 1.5rem !important;
  }

  .collapsible {
    color: aliceblue;
    cursor: pointer;
    width: fit-content;
    position: relative;
    display: inline-block;
    padding: 10px 0;
    border: none;
    font-weight: 500;
    background-color: #1a232d;
    text-align: left;
    outline: none;
    font-size: 1.5rem;
    margin: 0;
    transition: all 0.5s ease-in;
    position: relative;
  }

  .checkarrow{
    width: 150px;
    height: 50px;
    top: -8px;
    left: -20px;
    opacity: 0;
    position: absolute;
    z-index: 99;
    
  }

  .collapsible input[type="checkbox"]:checked~.ficont {
    transform: rotate(180deg);
  }


  .collapsible,
  .collapsible li,
  .checkbox {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
  }

  .ficont {
    margin-left: 10px;
    transition: all .2s ease-in;
  }

  .content p a {
    display: block;
    text-align: left;
    color: aliceblue !important;
    font-size: 1.5rem !important;
  }

  .content p a:hover {
    color: #00a9c7 !important;
    transition: 0.5s !important;
  }

  .collapsible li {
    display: inline-block;
    width: min-content;
  }

  .content {
    padding: 0 18px;
    max-height: 0;
    text-align: left;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
}

.btn {
  background-color: #00a9c7;
  padding: 15px 35px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.5s ease-out;
}

.btn::before {
  content: "";
  background-color: aliceblue;
  width: 100%;
  height: 500%;
  padding: 30px;
  position: absolute;
  top: -120px;
  left: 0;
  transition: all 0.5s ease-out;
  z-index: -1;
  rotate: 45deg;
  transform: translate(-35%, 100%);
}

.btn:hover::before {
  transform: translateX(30%);
  transform: translateY(20%);
}

.btn:hover {
  color: #00a9c7;
}


/* Siper Slider */
.swiper1 {
  width: 100vw;
  height: 100vh;
}

.swiper-slide img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.swiper-pagination-bullet {
  background-color: #252b3a !important;
  opacity: 0.75 !important;
  padding: 0px !important;
  margin: 0 10px 10px 0 !important;
}

.swiper-pagination-bullet-active {
  background-color: #00a9c7 !important;
}

.swiper-ins {
  width: 95vw;
  padding: 0 2.5vw;
  background-image: linear-gradient(to right, #0000005d 40%, #ffffff00 80%);
  height: 100vh;
  position: absolute;
  z-index: 7;
  right: 0;
  display: flex;
  pointer-events: none;
}

.swiper-ins-subcont {
  margin-top: 35vh;
  margin-left: 3vw;
  width: 70vw;
}

.arrow {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 999;
}

.arrow span {
  display: block;
  width: 15px;
  height: 15px;
  border-bottom: 5px solid white;
  border-right: 5px solid white;
  margin: -10px;
  animation: animate 1.75s infinite;
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(45deg) translate(15px, 15px);
  }
}

.swiper-ins-subcont h1 {
  font-family: "Inter", sans-serif;
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 900;
  margin-top: 18px;
  text-shadow: 0px 0px 15px #000000;
}

.swiper-ins-subcont p {
  font-family: "Inter Tight", sans-serif;
  font-size: 1.7rem;
  line-height: 25px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-bottom: 3px solid #00a9c7;
  display: inline;
  text-shadow: 0px 0px 15px #000000;
}

.swiper-ins-subcont a {
  pointer-events: all;
  margin-top: 35px;
}


@media (max-width: 450px) {
  .swiper-ins-subcont h1 {
    font-size: 2.5rem;
  }

  .swiper-ins-subcont p {
    font-size: 1.3rem;
    display: block;
    width: fit-content;
  }

  .btn-cont .btn {
    padding: 13px 20px;
  }
}

/* First Section (ServiceCards)  */

section {
  padding: 80px 0;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.heading {
  color: #00a9c7;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 10px auto;
}

.sub-heading {
  font-size: 3rem;
  max-width: fit-content;
  text-align: center;
  font-weight: 600;
  padding: 0 20px;
  margin: 10px auto;
}

.services-content {
  display: flex;
  margin-top: 75px;
  flex-flow: row;
  max-width: 1100px;
  justify-content: space-around;
  flex-wrap: wrap;
}

.service-card {
  max-width: 235px;
  min-width: 200px;
  margin: 0 25px;
  height: 310px;
  padding: 35px 30px;
  border: 2px #00a9c7 solid;
  border-radius: 12px;
  margin-bottom: 50px !important;
  margin: auto;
}

.service-card i {
  font-size: 35px;
  color: #00d2f7;
  margin: auto;
  padding-bottom: 25px;
  width: 95%;
  border-bottom: 1px solid #00a9c7;
  margin-bottom: 8.5px;
}

.sml-heading {
  color: aliceblue;
  font-size: 2.2rem;
  margin: 25px 0 0 0;
}

.body-text {
  color: #d6d6d6;
  font-size: 1.5rem;
  line-height: 21px;
}

.swiper1 {
  display: none;
}

.lgc {
  width: 85px;
}

@media (max-width: 700px) {
  .services-content {
    display: none;
  }

  .swiper1 {
    display: block;
    width: 85vw;
    margin: auto;
    height: 500px;
  }

  .swiper1 .swiper-slide {
    margin-top: 50px;
  }

  .service-card {
    margin: auto;
    height: 310px;
  }

}

.line {
  height: 1px;
  width: 87vw;
  background-color: #85b8dd88;
  margin: auto;
}

/* Second Section  */
.features {
  display: flex;
  justify-content: space-between;
  width: max-content;

}

.features .gridlist .gridrow .body-text{
  display: block;
}

.features-img-container {
  height: 500px;
  width: 450px;
  background-color: #85b9dd;
}

.features-fr {
  width: 500px;
  padding-left: 50px;
}

.features-fr b {
  color: #00a9c7;
  font-weight: 600;
}

.features-fr h1,
.features-fr h2 {
  text-align: left;
  width: fit-content !important;
  margin: 0;
  padding: 10px 0;
}

.gridlist {
  display: flex;
  flex-direction: column;
  height: 500px;
  padding: 0;
  margin: 0;
}

.gridrow {
  display: grid;
  grid-template-areas:
    'icon heading'
    'icon para';
  width: 500px;
  align-items: center;
  margin: 15px 0;
  justify-content: left;
  column-gap: 20px;
}

.gridrow .item1 {
  grid-area: icon;
}

.gridrow .item1 i {
  font-size: 35px;
  color: #00a9c7;
}


.gridrow .item2 {
  grid-area: heading;
}

.gridrow p,
.gridrow h2 {
  margin: 0;
  width: 65vw;
}

.gridrow .item3 {
  grid-area: para;
}

.body-heading {
  font-weight: 600;
  font-size: 1.9rem;
  color: aliceblue;
}


.intersecting-section {
  padding: 100px 0;
  background-color: #031d28;
  margin-top: 400px;
}

.dual-box {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  width: 90vw;
  height: 530px;
  overflow: hidden;
  margin-top: -400px;
  margin-bottom: 150px;
}

@media (min-width:1300px) {
  .dual-box {
    width: 1200px;
  }

}


.dual-box img {
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.facility-container {
  display: flex;
  flex-direction: column;
  width: 40%;
  padding: 8% 5%;
  background-color: #1d98c8;
  height: 84%;
}

.facility-container h1 {
  color: #153948;
  text-shadow: 1px 1px 100px #ffffff;
  text-align: left;
  margin: 0;
  padding: 10px 0;
  font-weight: 600;
}

.facility-container .sub-heading {
  text-align: left;
  margin: 0;
  padding: 10px 0;
}

.facility-container .body-text {
  font-weight: 500;
  color: white;
  margin-top: 35px;
}

ul.progress-line,
ul.progress-line li>* {
  padding: 0;
  margin: 0;
}

ul.progress-line li {
  display: grid;
  padding: 20px 0;
  grid-template-areas:
    'h5 h6'
    'line line';
  row-gap: 13px;
  width: 95%;
  justify-content: space-between;
}

ul.progress-line h5 {
  grid-area: h5;
  font-size: 1.7rem;
}

ul.progress-line .h6 {
  grid-area: h6;
}

ul.progress-line .h6 h6,
ul.progress-line .h6 p {
  font-size: 1.7rem;
  font-weight: 500;
  display: inline;
  margin: 0;
  padding: 0;
}


ul.progress-line .pr-line {
  grid-area: line;
  width: 100%;
  height: 5px;
  background-color: rgb(255, 255, 255);
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 1px 1px 100px #00000077;
}

.progress {
  background-color: #00ff6a;
  height: 100%;
  border-radius: 25px;
}


#positive {
  width: 92%;
}

#customer {
  width: 67%;
  animation-name: customer;
}


@media (max-width:1000px) {
  .features {
    flex-direction: column;
    width: 87vw;
  }

  .features-img-container {
    width: 100%;
  }

  .features-fr {
    padding: 0;
    margin: 0 5vw;
    padding-top: 80px;
    width: 80vw;
  }

  .dual-box {
    flex-direction: column;
    height: max-content;
    margin-top: -400px;
    width: 85vw;
  }

  .facility-container {
    padding: 8%;
    width: 85%;
    height: 50%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .dual-box img {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    width: 100%;
    height: 50%;
  }

}

@media (max-width:600px) {

  p.logot{
    font-size: 20px;
  }


  .facility-container h1 {
    font-size: 1.5rem;
  }

  #myBtn {
    padding: 10px;
    right: 20px;
    font-size: 13px;
  }


  .facility-container .sub-heading {
    font-size: 2.5rem;
  }

  .facility-container .body-text {
    margin-top: 10px;
  }

  ul.progress-line li h5,
  ul.progress-line li h6 {
    font-size: 1.5rem;
  }

  ul.progress-line li {
    padding-top: 15px;
  }

}


/* Third Section  */

.about-us-box {
  display: flex;
  width: 1150px;
  margin: auto;
  justify-content: space-between;
}

.about-us-images-container {
  display: flex;
  flex-wrap: wrap;
  width: 45%;
  position: relative;
  justify-content: space-between;
  align-items: center;
}

.person,
.team {
  border-radius: 15px;
  margin: 15px;
}


.person {
  width: 35%;
  height: max-content;
}

.team {
  width: 50%;
}

.mid-circle {
  width: 100px;
  height: 100px;
  padding: 50px;
  border-radius: 100%;
  background-color: #00a9c7;
  position: absolute;
  right: -90px;
  top: 25%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9;

}

.mid-circle>* {
  margin: 0px;
  padding: 7px;
  font-size: 28px;
  font-weight: 600;
}

.mid-circle sup {
  color: #222222;
  font-size: 29px;
}


#circle-text {
  font-size: 18px !important;
}

.about-us-fr {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
}

.about-us-fr>* {
  text-align: left !important;
  margin-left: 50px;
}

.about-us-fr li {
  width: 230px;
  float: left;
  margin-right: 30px;
}

ul {
  padding: 0;
  margin: 0;
}

.about-us-fr i {
  font-size: 35px;
  color: #00a9c7;
}

.about-us-details {
  display: flex;
  justify-content: space-between;
  width: 85%;
  margin: auto;
}

.about-us-details p.body-heading {
  display: block;
}


.about-us-details>* {
  width: 45%;
  margin: auto;
}

@media (max-width:1200px) {
  .about-us-box {
    flex-direction: column;
    width: 85vw;
    margin: auto;
    justify-content: center;
    align-items: center;
  }

  .about-us-images-container {
    width: 90vw;
    margin-bottom: 65px;
  }



  .mid-circle {
    width: 15%;
    height: 15%;
    padding: 50px;
    position: absolute;
    right: 30%;
    top: 35%;

  }


  .about-us-fr {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 85vw;
    margin: auto;
  }

  .about-us-fr>* {
    text-align: left !important;
    margin-left: 20px;
  }

  .about-us-fr li {
    width: 230px;
    float: left;
    margin-right: 30px;
  }

  ul {
    padding: 0;
    margin: 0;
  }

  .about-us-fr i {
    font-size: 35px;
    color: #00a9c7;
  }

  .about-us-details {
    width: 90vw;
    margin: auto;
    margin-left: 10px;

  }

  #mag1{
    float: left;
  }
  #mag2{
    float: right;
  }


  .about-us-details>* {
    width: 45%;
    margin: auto;
  }


}

@media (max-width:500px) {

  .team {
    margin: 5px 8px 0 0;

  }


  .mid-circle {
    width: 70px;
    height: 70px;
    padding: 30px;
    position: absolute;
    right: 30%;
    top: 30%;

  }

  .mid-circle h6 {
    font-size: 20px;
  }

  .mid-circle sup {
    font-size: 22px;
  }

  .about-us-images-container{
    justify-content: center;
  }


  .mid-circle>* {
    margin: 0px;
    padding: 7px;
    font-size: 25px;
    font-weight: 700;
  }

  #circle-text {
    font-size: 13px !important;
  }



  .person {
    margin: 5px 8px 0 0;
  }
}

/* Solution Section */

.section-fr{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1150px;
  margin: auto;
  margin-top: 100px;
}

.solutions{
  width: max-content;
  position: relative;
}

.solutions h2{
  text-align: left;
  margin-bottom: 35px;
}

.solutions-list i,p{
  display: inline;
}

.solutions-list i{
  color: #00ff6a;
  font-size: 20px;
  margin-right: 10px;
  font-weight: 400;
}


.solutions-list li{
  margin-bottom: 25px;
}

.solution-images{
  width: 100%;
  position: relative;
}

.solution-images img{
  width: 85%;
  padding-left: 15%;
}

#gradient-blob{
  position: absolute;
  right: -50px;
  width: 125px;
  height: max-content;
  animation: MoveUpDown 3.5s linear infinite;
  top: -100px;
}

@keyframes MoveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
}

#penduline{
  position: absolute;
  left: -50px;
  height: 175px;
  animation: MoveUpDown 3.5s linear infinite;
  bottom: 50px;
  animation-delay: .5s;

}
@media (max-width:1300px) {
  .section-fr{
    width: 1100px;
  }
  
  .solutions{
    width: 40%;
    padding-left: 25px;
  }
  
  .solutions h2{
    text-align: left;
    margin-bottom: 35px;
  }
  
  .solutions-list i,p{
    display: inline;
  }
  
  .solutions-list i{
    color: #00ff6a;
    font-size: 20px;
    margin-right: 10px;
    font-weight: 400;
  }
  
  
  .solutions-list li{
    margin-bottom: 25px;
  }
  
  .solution-images{
    width: 540px ;
  }
  
  .solution-images img{
    width: 540px;
    padding: 0;
    }
  
}

@media (max-width:1020px) {
  .section-fr{
    width: 80vw;
    flex-direction: column;
    margin: auto;
  }

  
#gradient-blob{
  position: absolute;
  right: -40px;
  width: 20vw;
  height: max-content;
  animation: MoveUpDown 3.5s linear infinite;
  top: -100px;
}

  
  .solutions{
    width: 100%;
    margin: auto;
  }
  
  .solutions h2{
    text-align: left;
    margin: 0;
    margin-bottom: 35px;
  }

  .solution-images{
    width: 75vw;
    margin: auto;
  }
  
  .solution-images img{
    width: 75vw;
    margin-top: 75px;
    }
  
}

/* Testimonials */

.testimonials{
  width: 1100px;
  margin: auto;
  position:relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials h2{
  margin-bottom: 45px;
}

.swiper11{
  width: 1100px;
  margin: auto;
  overflow: hidden;
}

.review{
  width: 270px;
  padding: 30px;
  border: 2px #00a9c7 solid;
  border-radius: 12px;
  margin-bottom: 50px !important;
  margin: auto;
  height: 210px !important;
  position: relative;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}

.review-head{
  display: flex;
  height: 100px;
}

.review-dp img{
  height: 75px;
  width: 75px;
  border-radius: 100%;
}

.review-specs{
display: flex;
flex-direction: column;
justify-content: space-around;
margin-left: 20px;
margin-bottom: 35px;
height: 80px
}

.review .stars > *{
  color: goldenrod;
  font-size: 12px;
  margin-right: 3px;
}


.review-specs > *{
  margin: 0;
  font-weight: 300;
  font-size: 1.5rem;
}

.review-fr p{
  font-weight: 300;
}

.swiper11 .swiper-pagination-bullets-dynamic{
  bottom: -20px !important;
}

@media (max-width:1150px){
  .testimonials{
    width: 85vw;
  }
  
  .swiper11{
    width: 85vw;
  }
  
}
@media (max-width:450px){
  .review{
    width: 65vw;
    padding: 30px 25px;
    border: 2px #00a9c7 solid;
    border-radius: 12px;
    margin-bottom: 50px !important;
    margin: auto;
    height: 200px;
    position: relative;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
  }
  
  .review-head{
    display: flex;
    height: 100px;
  }
  
  .review-dp img{
    height: 70px;
    width: 70px;
  }
  
  .solutions{
    margin: 0;
  }

  .review-specs{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-left: 30px;
  margin-bottom: 35px;
  height: 80px
  }
  
  .review .stars > *{
    color: goldenrod;
    font-size: 12px;
    margin-right: 3px;
  }
  
  
  .review-specs > *{
    margin: 0;
    font-weight: 300;
    font-size: 1.5rem;
  }
  
  .review-fr p{
    font-weight: 300;
  }
  
}

.team-container{
  max-width: 85vw;
  min-width: 80vw;
  margin: auto;
  height: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.team-members-fr{
  display: flex;
  position: relative;
  z-index: 2;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  position: absolute;
  padding-top: 50px;
  margin-top: 75px;
  top: 100px;
  flex-wrap: wrap;
  background-color: #0a1014;
}
.strip{
  background-color: #031d28;
  padding: 100px;
  width: 100vw;
  margin-top: 100px;
}
.member{
  width: 40%;
  height: 300px;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.member-details > *{
  margin: 0;
}

.member-details .heading{
  margin: 10px 0;
}
.member-details .social{
  margin-top: 10px;
  font-size: 17px;
  
}

.member-details .social i{
  color: #c5c5c5;
  margin-right: 5px;
  transition: all 1s;
  padding: 8px;
}

.member-details .social i:hover{
color: #00a9c7;
}



.member-img img{
  width: 165px;
  height: 165px;
  border-radius: 100%;
  margin-right: 35px;
}


.member-details{
  display: flex;
  flex-direction: column;
}
.team-heading{
  position: absolute;
  top: 0;
  text-align: center;
}

@media (max-width:1010px){
  .team-members-fr{
    flex-direction: column;
  }

  .strip{
    display: none;
  }

  .team-container{
  
    height: 1500px;}

  .member{
    width: 85%;
    margin: auto;
    height: 300px;
  }
  
}

@media (max-width:550px){
  .member-img img{
    width: 100px;
    height: 100px;
    border-radius: 100%;
    margin-right: 20px;
  }
  
}
@media (max-width:450px){
  .member-img img{
    width: 150px;
    height: 150px;
    border-radius: 100%;
    margin-right: 0px;
  }
  .member> *{
    text-align: center;
  }
  .member .body-heading{
    margin-top: 15px;
  }

  .team-container{
  
    height: 1800px;}


  .team-members-fr{
    padding-top: 100px !important;
  }

  .member{
    flex-direction: column;
    margin-bottom: 90px;
  }

  
}

/* PORTFOLIO SECTION */

.portfolio-container{
  display: flex;
  margin: 0 5vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.portfolio-fr{
  width: 1100px;
  height: 600px;
}
/* Style the tab */
.tab {
  overflow: hidden;
  width: 1100px;
  background-color: #031d28;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 20px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #153948;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #00a9c7;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
  color: #000000 !important;
}

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

.portfolio-grid{
  width: 100%;
  display: grid;
  grid-template-columns: 32% 32% 32%;
  grid-gap: 15px;
  margin: auto;
  position: relative;
}

.grid-item{
  background-color: #090c0f;
  height: 250px;
  position: relative;
  overflow: hidden;
  object-fit: contain;
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid-item img{
  object-fit: cover;
  transition: all 0.35s ease-out;
}

.grid-item .grid-text{
  position: absolute;
  width: 80%;
  height: 75%;
  border: 2px solid #00a9c7;
  font-weight: 500;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.35s ease-out;
  flex-direction: column;
}
.grid-item .grid-text p{
  color: aliceblue;
  font-size: 1.75rem;
  margin: 15px 0;
  z-index: 9999;
}

.grid-item:hover > .grid-text{
  opacity: 1;
  z-index: 9999;
}

.grid-item:hover img{
  transform: scale(1.1);
}


.tab{
  margin: 18px 0;
}

#case-Study{
  display: block;
}

 .grid-item::before{
  content: '';
  overflow: hidden;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  background-color: #252525;
  opacity: .3;
  transition: all .35s ease-out;
}

.grid-item:hover:before{
  opacity: 0.7;
}

@media (max-width:1150px){
  .portfolio-fr{
    width: 1000px;
    height: 600px;
  }
  .tab{
    width: 1000px;
  }
  
}
@media (max-width:1000px){
  .portfolio-fr{
    width: 83vw;
    height: max-content;
  }
 
  .tab{
    width: 83vw;
  }


  .portfolio-grid{
    width: 100%;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-gap: 15px;
    margin: auto;
    position: relative;
  }
  
}

@media (max-width:660px){
  .portfolio-grid{
    width: 100%;
    display: grid;
    grid-template-columns: 100%;
    grid-gap: 15px;
    margin: auto;
    position: relative;
  }
.grid-item{
  height: 300px;
}

.tab button{
  width: 50%;
  box-shadow: 1px 1px 100px #00000077;
}
}

@media (max-width:450px){
.grid-item{
  height: 235px;
}
.tab button{
  width: 50%;
  height: 80px;
}

.grid-item .grid-text p{
  color: aliceblue;
  font-size: 1.6rem;
  margin: 15px 0;
  z-index: 9999;
}


}


#visual-1{
  position: absolute;
  bottom: -150px;
  width: 250px;
  left: 230px;
  transform: rotate(18deg);
}

#visual-2{
  position: absolute;
  top: -50px;
  width: 200px;
  right: 30px;
  transform: rotate(-18deg);
  transform: scaleX(-1);

}


@media (max-width:1500px)
{#visual-1{
  bottom: -120px;
  width: 200px;
  left: 100px;}

  #visual-2{
    position: absolute;
    top: -50px;
    width: 180px;
    right: 30px;
    transform: rotate(-18deg);
    transform: scaleX(-1);
  
  }
  
}
@media (max-width:870px)
{#visual-1{
  bottom: -50px;
  width: 130px;
  left: -5px;}

  #visual-2{
    position: absolute;
    top: -50px;
    width: 135px;
    right: 30px;
    transform: rotate(-18deg);
    transform: scaleX(-1);
  
  }
  
}
@media (max-width:450px)
{
  #visual-2{
    position: absolute;
    top: -50px;
    width: 115px;
    right: -15px;
    transform: rotate(-18deg);
    transform: scaleX(-1);
  
  }
  
}
.why-us-cont{
  text-align: center;
  padding-bottom: 20px;
}

.why-us-cards-cont{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 1150px;
  margin-top: 100px;
}

.why-us-card{
  width: 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-us-card p{
  margin-bottom: 5px;
}


.why-us-card i{
  color: #00a9c7;
  font-size: 4rem;
}
@media (max-width:1200px){
  .why-us-cards-cont{
    width: 85vw;
    margin: auto;
    justify-content: space-around;
  }
  
}
@media (max-width:1080px){
  .why-us-card{
    width: 35%;
    margin: 50px 0;
  }  
  
}

@media (max-width:400px){
  .why-us-cards-cont{
    flex-direction: column;
  }
  .why-us-card{
    width: 80%;
    margin: 25px 0;
  }  

}
.companies-logos-cont{
  width: 100vw;
  background-color: #031d28;
  padding: 75px;
}

.swiper22{
  width: 80vw;
  margin: auto;
  overflow: hidden;
}

.swiper22 .swiper-slide{
  display: flex;
  width: 15vw;
  justify-content: center;
  align-items: center;
}

.swiper22 img{
  width: 135px;
  height: fit-content;
  margin: auto;
  object-fit: contain;
}

#fax{
  padding: 35px 0;
}

@media (max-width:700px){
  .swiper22 img{
    width: 90px;
  }
}
@media (max-width:550px){
  .swiper22 img{
    width: 75px;
  }
}
@media (max-width:350px){
  .swiper22 img{
    width: 60px;
  }
}