/********** Template CSS **********/
:root {
  --primary: #06a3da;
  --secondary: #34ad54;
  --light: #eef9ff;
  --dark: #091e3e;
}

/*** Heading ***/
h1,
h2,
.u-a40ae357 {
  font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
  font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
  font-weight: 600 !important;
}

/*** Button ***/
.u-d4f5c2c9 {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}

.u-1436addd,
.btn-secondary {
  color: #ffffff;
  box-shadow: inset 0 0 0 50px transparent;
}

.u-1436addd:hover {
  box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
  box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 30px;
  height: 30px;
}

.u-64ff37c3 {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.u-64ff37c3 {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

/*** Navbar ***/
.u-8cf80afd .u-958ba859 .u-a5ccda2d {
  font-family: "Nunito", sans-serif;
  position: relative;
  margin-left: 25px;
  padding: 35px 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  transition: 0.5s;
}

.sticky-top.u-8cf80afd .u-958ba859 .u-a5ccda2d {
  padding: 20px 0;
  color: var(--dark);
}

.u-8cf80afd .u-958ba859 .u-a5ccda2d:hover,
.u-8cf80afd .u-958ba859 .u-a5ccda2d.u-c76a5e84 {
  color: var(--primary);
}

.u-8cf80afd .u-df19c756 h1 {
  color: #ffffff;
}

.u-8cf80afd .u-e5d5fda8 {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
  .sticky-top.u-8cf80afd {
    position: relative;
    background: #ffffff;
  }

  .u-8cf80afd .u-958ba859 .u-a5ccda2d,
  .u-8cf80afd .u-958ba859 .u-a5ccda2d.show,
  .sticky-top.u-8cf80afd .u-958ba859 .u-a5ccda2d {
    padding: 10px 0;
    color: var(--dark);
  }

  .u-8cf80afd .u-df19c756 h1 {
    color: var(--primary);
  }
}

@media (min-width: 992px) {
  .u-8cf80afd {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    z-index: 999;
  }

  .sticky-top.u-8cf80afd {
    position: fixed;
    background: #ffffff;
  }

  .u-8cf80afd .u-958ba859 .u-a5ccda2d::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }

  .u-8cf80afd .u-958ba859 .u-a5ccda2d:hover::before,
  .u-8cf80afd .u-958ba859 .u-a5ccda2d.u-c76a5e84::before {
    width: 100%;
    left: 0;
  }

  .u-8cf80afd .u-958ba859 .u-a5ccda2d.nav-contact::before {
    display: none;
  }

  .sticky-top.u-8cf80afd .u-df19c756 h1 {
    color: var(--primary);
  }
}

/*** Carousel ***/
.u-9fc487a2 {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 30, 62, 0.7);
  z-index: 1;
}

@media (max-width: 576px) {
  .u-9fc487a2 h5 {
    font-size: 14px;
    font-weight: 500 !important;
  }

  .u-9fc487a2 h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

/*** Section Title ***/
.u-fb0bd1a2::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--primary);
  border-radius: 2px;
}

.u-fb0bd1a2.u-70dfd132::before {
  left: 50%;
  margin-left: -75px;
}

.u-fb0bd1a2.u-64b63444::before {
  width: 90px;
  height: 3px;
}

.u-fb0bd1a2::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 5px;
  bottom: 0px;
  background: #ffffff;
  -webkit-animation: section-title-run 5s infinite linear;
  animation: section-title-run 5s infinite linear;
}

.u-fb0bd1a2.u-64b63444::after {
  width: 4px;
  height: 3px;
}

.u-fb0bd1a2.u-70dfd132::after {
  -webkit-animation: section-title-run-center 5s infinite linear;
  animation: section-title-run-center 5s infinite linear;
}

.u-fb0bd1a2.u-64b63444::after {
  -webkit-animation: section-title-run-sm 5s infinite linear;
  animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
  0% {
    left: 0;
  }
  50% {
    left: 145px;
  }
  100% {
    left: 0;
  }
}

@-webkit-keyframes section-title-run-center {
  0% {
    left: 50%;
    margin-left: -75px;
  }
  50% {
    left: 50%;
    margin-left: 45px;
  }
  100% {
    left: 50%;
    margin-left: -75px;
  }
}

@-webkit-keyframes section-title-run-sm {
  0% {
    left: 0;
  }
  50% {
    left: 85px;
  }
  100% {
    left: 0;
  }
}

/*** Service ***/
.u-fb05adaf {
  position: relative;
  height: 300px;
  padding: 0 30px;
  transition: 0.5s;
}

.u-fb05adaf .u-2b9759c8 {
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 2px;
  transform: rotate(-45deg);
}

.u-fb05adaf .u-2b9759c8 i {
  transform: rotate(45deg);
}

.u-fb05adaf a.u-d4f5c2c9 {
  position: absolute;
  width: 60px;
  bottom: -48px;
  left: 50%;
  margin-left: -30px;
  opacity: 0;
}

.u-fb05adaf:hover a.u-d4f5c2c9 {
  bottom: -24px;
  opacity: 1;
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
  .u-f1333231 {
    position: relative;
    margin-top: -75px;
    z-index: 1;
  }
}

.u-b1d1a91d {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

.bg-header {
  background: linear-gradient(rgba(9, 30, 62, 0.7), rgba(9, 30, 62, 0.7)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.u-b4beb091 a {
  transition: 0.5s;
}

.u-b4beb091 a:hover {
  padding-left: 10px;
}

@media (min-width: 767.98px) {
  .u-8a909c6b {
    margin-bottom: -75px;
  }
}

.u-297600da {
  min-height: 100vh;
}

.u-777a526d {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: 999;
  width: 100%;
  background: #fff;
}

.u-c3d48e95 {
  padding: 16px 38px 16px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  @media screen and (min-width: 1440px) {
    padding: 20px 34px;
    flex-direction: row;
    justify-content: space-between;
  }
}

.u-e8db0b7e {
  width: 100%;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  color: #191919;
  font-family: "Raleway", sans-serif;
  margin-bottom: 24px;
  @media screen and (min-width: 1440px) {
    width: 595px;
    margin-bottom: 0;
  }
}

.u-bd7868cb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  @media screen and (min-width: 1440px) {
    flex-direction: row;
    gap: 26px;
  }
}

.u-0f6a8efc {
  width: 200px;
  height: 50px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 300ms ease;
}

.u-0f6a8efc:hover {
  opacity: 0.8;
}

.u-e7698522 {
  background-color: #191919;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
  font-family: "Raleway", sans-serif;
}

.u-9c6667c6 {
  border: 1px solid #191919;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #191919;
  font-family: "Raleway", sans-serif;
}
