@font-face {
  font-family: "Gotham Medium Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Gotham Medium Regular"),
    url("../fonts/Gotham\ Medium\ Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Gotham Light";
  font-style: normal;
  font-weight: normal;
  src: local("Gotham Light"), url("../fonts/GothamLight.ttf") format("truetype");
}

@font-face {
  font-family: "Gotham Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Gotham Bold"), url("../fonts/Gotham-Bold.otf") format("truetype");
}

:root {
  --main-color: #005580;
  --main-secondary: #2c898a;
  --main-light: #a8c6c8;
  --main-light-dark: #565656;
  --main-white: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Gotham Medium Regular", Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  font-family: 14px;
}

.banner-sect {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.opacity-sect {
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 80%;
  background-image: url(../images/opacity-logo.png);
  height: 100%;
}

.color-1 {
  color: var(--main-color);
}

.color-2 {
  color: var(--main-secondary);
}

.color-3 {
  color: var(--main-light);
}

.bg-white {
  background-color: var(--main-white);
}

.letter-space {
  letter-spacing: 0.2rem;
}

.card-view-sect {
  background-color: transparent;
  border: transparent;
}
.bg-color-3 {
  background-color: var(--main-light);
}

.services-sect .card {
  height: 100%;
}

.banner-sect::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  height: 100%;
}

.navbar-light .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: transparent;
}

.make-bold {
  font-family: "Gotham Bold";
}

.text-white {
  color: var(--main-white);
}

.banner-content h2 {
  font-size: 3.5rem;
}

.banner-content p {
  font-size: 1.7rem;
  font-family: "Gotham Light";
}

.h-100v {
  height: 100vh;
}

.about-sect p {
  font-family: "Gotham Light";
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.border-radius {
  border-radius: 50px;
}

.z-index {
  z-index: 99;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 1);
}

.ft-4 {
  font-size: 4rem;
}

.ft-14 {
  font-size: 14px;
}

.contact-nav {
  order: 1;
}

.logo {
  width: 150px;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #555;
}

/***Footer***/
section .section-title {
  text-align: center;
  color: #007b5e;
  margin-bottom: 50px;
  text-transform: uppercase;
}
#footer {
  background: rgb(3, 3, 73) !important;
}
#footer h5 {
  padding-left: 10px;
  border-left: 3px solid #eeeeee;
  padding-bottom: 6px;
  margin-bottom: 20px;
  color: #ffffff;
}
#footer a {
  color: #ffffff;
  text-decoration: none !important;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
#footer ul.social li {
  padding: 3px 0;
}
#footer ul.social li a i {
  margin-right: 5px;
  font-size: 15px;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
#footer ul.social li:hover a i {
  font-size: 30px;
  margin-top: -10px;
}
#footer ul.social li a,
#footer ul.quick-links li a {
  color: #ffffff;
}
#footer ul.social li a:hover {
  color: #eeeeee;
}
#footer ul.quick-links li {
  padding: 3px 0;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
#footer ul.quick-links li:hover {
  padding: 3px 0;
  margin-left: 5px;
  font-weight: 700;
}
#footer ul.quick-links li a i {
  margin-right: 5px;
}
#footer ul.quick-links li:hover a i {
  font-weight: 700;
}

@media (max-width: 767px) {
  #footer h5 {
    padding-left: 0;
    border-left: transparent;
    padding-bottom: 0px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  .banner-content h2 {
    font-size: 2.5rem;
  }

  .contact-nav {
    order: 0;
  }

  .h-100v {
    height: 100%;
    padding: 100px 0;
  }

  .navbar-dark-sm {
    color: #000;
  }

  .bg-light-sm {
    background-color: rgba(0, 0, 0, 0.5);
  }

  /* .bg-light-green-sm {
    background-color: var(--main-light);
    padding: 100px 0;
    height: 100% !important;
  } */
  .services-sect .banner-sect {
    height: 400px;
  }

  .split-grid {
    display: block;
  }

  .card-view-sect h6 {
    font-size: 10px;
  }
}

@media screen and (max-width: 375px) {
  .logo {
    width: 90px;
  }
}
