@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */ /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

::-moz-placeholder {
  color: #808080;
  opacity: 1; /* Firefox */
  text-transform: none;
}

::placeholder {
  color: #808080;
  opacity: 1; /* Firefox */
  text-transform: none;
}

::-ms-input-placeholder { /* Edge 12 -18 */
  text-transform: none;
}

/* width */
::-webkit-scrollbar {
  height: 0;
  width: 0;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: #CFE6E8;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #287377;
  border-radius: 0.25vw;
}

input {
  outline: none;
  border: none;
  background-color: transparent;
}

textarea {
  outline: none;
  border: none;
  resize: none;
}

a {
  text-decoration: none;
  font-style: unset;
}

img {
  /* user-drag: none; */
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: auto;
  position: relative;
}

.bg_white {
  background-color: #FFFFFF;
}

.bg_gray {
  background-color: #FAFAFA;
}

.bg_cyan {
  background-color: #F5FFFF;
}

.bg_dark {
  background-color: #287377;
}

.loading {
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100dvh;
  position: fixed;
  z-index: 999999999;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}
.loading .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.loading .wrapper .logo_wrap {
  width: 120px;
  display: flex;
}
.loading .wrapper .logo_wrap .logo {
  width: 100%;
}
.loading .wrapper .line_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  position: relative;
  overflow: hidden;
  height: 6px;
  border-radius: 6px;
}
.loading .wrapper .line_wrap .line_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background-color: #9FB6B7;
}
.loading .wrapper .line_wrap .animate_line {
  width: 40px;
  border-radius: 3px;
  position: absolute;
  height: 100%;
  background-color: #1D6363;
  animation: loading 0.8s linear infinite;
  left: 0;
}

.loading_show {
  display: flex;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .navigation {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    z-index: 999999;
    background-color: #FFFFFF;
  }
  .navigation .nav_child {
    height: 48px;
    width: 100%;
    max-width: 600px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navigation .nav_child .logo_wrap {
    height: 70%;
    display: flex;
  }
  .navigation .nav_child .logo_wrap .logo {
    height: 100%;
  }
  .navigation .nav_child .links_wrapper {
    display: none;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    top: 48px;
    background-color: #FFFFFF;
    left: 0;
    width: 100%;
    height: 100dvh;
  }
  .navigation .nav_child .links_wrapper .link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #B8B8B8;
    position: relative;
    padding: 0 5%;
    padding-top: 16px;
  }
  .navigation .nav_child .links_wrapper .link .rot {
    transform: rotate(180deg);
  }
  .navigation .nav_child .links_wrapper .link .dropdown {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(0, 100%);
    left: 0;
    display: none;
    z-index: 99999;
    padding: 16px;
    padding-left: 5%;
  }
  .navigation .nav_child .links_wrapper .link .dropdown .a_wrap {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    box-shadow: 0 0 34px rgba(70, 74, 85, 0.1);
    padding: 8px 32px;
    border-radius: 8px;
    gap: 8px;
  }
  .navigation .nav_child .links_wrapper .link .dropdown .a_wrap .a {
    width: -moz-max-content;
    width: max-content;
    height: 32px;
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: #B8B8B8;
    border-radius: 4px;
    position: relative;
  }
  .navigation .nav_child .links_wrapper .link .dropdown .a_wrap .a::before {
    content: "";
    width: 0;
    height: 2px;
    background-color: transparent;
    border-radius: 1px;
    position: absolute;
    bottom: 0;
    transition: all 0.4s linear;
  }
  .navigation .nav_child .links_wrapper .link .dropdown .a_wrap .a:hover::before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #287377;
    border-radius: 1px;
    position: absolute;
    bottom: 0;
  }
  .navigation .nav_child .links_wrapper .link .dropdown .a_wrap .active {
    color: #1D6363;
  }
  .navigation .nav_child .links_wrapper .link .show {
    display: flex;
  }
  .navigation .nav_child .links_wrapper .active {
    color: #1D6363;
  }
  .navigation .nav_child .show {
    display: flex;
  }
  .navigation .nav_child .btn_wrap {
    background-color: rgba(0, 0, 0, 0.25);
    display: none;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
  }
  .navigation .nav_child .btn_wrap .head_btn {
    height: 48px;
    background-color: #287377;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    padding: 0 32px;
    border-radius: 10px;
    transition: all 0.3s linear;
  }
  .navigation .nav_child .btn_wrap .head_btn:hover {
    transform: translateY(-2px);
  }
  .navigation .nav_child .phone_menu {
    display: flex;
  }
  .footer {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #287377;
  }
  .footer .footer_child {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    padding: 64px 5%;
    gap: 32px;
  }
  .footer .footer_child .wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: space-between;
  }
  .footer .footer_child .wrapper .row1 {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .footer .footer_child .wrapper .row1 .wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer .footer_child .wrapper .row1 .wrap .logo {
    width: 80px;
  }
  .footer .footer_child .wrapper .row1 .wrap .w {
    color: #FFFFFF;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 12px;
  }
  .footer .footer_child .wrapper .row1 .wrap .w svg {
    width: 16px;
  }
  .footer .footer_child .wrapper .row1 .w_a {
    gap: 8px;
    width: 100%;
  }
  .footer .footer_child .wrapper .row1 .w_a .w {
    color: #9FB6B7;
  }
  .footer .footer_child .wrapper .row_2 {
    display: flex;
    flex-direction: row;
    gap: 32px;
  }
  .footer .footer_child .wrapper .row_2 .col {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer .footer_child .wrapper .row_2 .col .lbl {
    font-size: 10px;
    font-weight: 600;
    color: #9FB6B7;
  }
  .footer .footer_child .wrapper .row_2 .col .link {
    font-size: 12px;
    color: #FFFFFF;
    font-weight: 600;
  }
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .navigation {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    z-index: 999999;
    background-color: #FFFFFF;
  }
  .navigation .nav_child {
    height: 48px;
    width: 100%;
    max-width: 767px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navigation .nav_child .logo_wrap {
    height: 70%;
    display: flex;
  }
  .navigation .nav_child .logo_wrap .logo {
    height: 100%;
  }
  .navigation .nav_child .links_wrapper {
    display: none;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    top: 48px;
    background-color: #FFFFFF;
    left: 0;
    width: 100%;
    height: 100dvh;
  }
  .navigation .nav_child .links_wrapper .link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #B8B8B8;
    position: relative;
    padding: 0 5%;
    padding-top: 16px;
  }
  .navigation .nav_child .links_wrapper .link .rot {
    transform: rotate(180deg);
  }
  .navigation .nav_child .links_wrapper .link .dropdown {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(0, 100%);
    left: 0;
    display: none;
    z-index: 99999;
    padding: 16px;
    padding-left: 5%;
  }
  .navigation .nav_child .links_wrapper .link .dropdown .a_wrap {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    box-shadow: 0 0 34px rgba(70, 74, 85, 0.1);
    padding: 8px 32px;
    border-radius: 8px;
    gap: 8px;
  }
  .navigation .nav_child .links_wrapper .link .dropdown .a_wrap .a {
    width: -moz-max-content;
    width: max-content;
    height: 32px;
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: #B8B8B8;
    border-radius: 4px;
    position: relative;
  }
  .navigation .nav_child .links_wrapper .link .dropdown .a_wrap .a::before {
    content: "";
    width: 0;
    height: 2px;
    background-color: transparent;
    border-radius: 1px;
    position: absolute;
    bottom: 0;
    transition: all 0.4s linear;
  }
  .navigation .nav_child .links_wrapper .link .dropdown .a_wrap .a:hover::before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #287377;
    border-radius: 1px;
    position: absolute;
    bottom: 0;
  }
  .navigation .nav_child .links_wrapper .link .dropdown .a_wrap .active {
    color: #1D6363;
  }
  .navigation .nav_child .links_wrapper .link .show {
    display: flex;
  }
  .navigation .nav_child .links_wrapper .active {
    color: #1D6363;
  }
  .navigation .nav_child .show {
    display: flex;
  }
  .navigation .nav_child .btn_wrap {
    background-color: rgba(0, 0, 0, 0.25);
    display: none;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
  }
  .navigation .nav_child .btn_wrap .head_btn {
    height: 48px;
    background-color: #287377;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    padding: 0 32px;
    border-radius: 10px;
    transition: all 0.3s linear;
  }
  .navigation .nav_child .btn_wrap .head_btn:hover {
    transform: translateY(-2px);
  }
  .navigation .nav_child .phone_menu {
    display: flex;
  }
  .footer {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #287377;
  }
  .footer .footer_child {
    width: 100%;
    max-width: 767px;
    display: flex;
    flex-direction: column;
    padding: 64px 5%;
    gap: 32px;
  }
  .footer .footer_child .wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: space-between;
  }
  .footer .footer_child .wrapper .row1 {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .footer .footer_child .wrapper .row1 .wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer .footer_child .wrapper .row1 .wrap .logo {
    width: 80px;
  }
  .footer .footer_child .wrapper .row1 .wrap .w {
    color: #F5FFFF;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 14px;
  }
  .footer .footer_child .wrapper .row1 .wrap .w svg {
    width: 16px;
  }
  .footer .footer_child .wrapper .row1 .w_a {
    gap: 8px;
    width: 100%;
  }
  .footer .footer_child .wrapper .row1 .w_a .w {
    color: #9FB6B7;
  }
  .footer .footer_child .wrapper .row_2 {
    display: flex;
    flex-direction: row;
    gap: 32px;
  }
  .footer .footer_child .wrapper .row_2 .col {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer .footer_child .wrapper .row_2 .col .lbl {
    font-size: 12px;
    font-weight: 600;
    color: #9FB6B7;
  }
  .footer .footer_child .wrapper .row_2 .col .link {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 600;
  }
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navigation {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    z-index: 999999;
    background-color: #FFFFFF;
  }
  .navigation .nav_child {
    height: 64px;
    width: 100%;
    max-width: 991px;
    padding: 0 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navigation .nav_child .logo_wrap {
    height: 70%;
    display: flex;
  }
  .navigation .nav_child .logo_wrap .logo {
    height: 100%;
  }
  .navigation .nav_child .links_wrapper {
    display: none;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    top: 64px;
    background-color: #FFFFFF;
    left: 0;
    width: 100%;
    height: 100dvh;
  }
  .navigation .nav_child .links_wrapper .link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #B8B8B8;
    position: relative;
    padding: 0 10%;
    padding-top: 16px;
  }
  .navigation .nav_child .links_wrapper .link .rot {
    transform: rotate(180deg);
  }
  .navigation .nav_child .links_wrapper .link .dropdown {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(0, 100%);
    left: 0;
    display: none;
    z-index: 99999;
    padding: 16px;
    padding-left: 10%;
  }
  .navigation .nav_child .links_wrapper .link .dropdown .a_wrap {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    box-shadow: 0 0 34px rgba(70, 74, 85, 0.1);
    padding: 8px 32px;
    border-radius: 8px;
    gap: 8px;
  }
  .navigation .nav_child .links_wrapper .link .dropdown .a_wrap .a {
    width: -moz-max-content;
    width: max-content;
    height: 32px;
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: #B8B8B8;
    border-radius: 4px;
    position: relative;
  }
  .navigation .nav_child .links_wrapper .link .dropdown .a_wrap .a::before {
    content: "";
    width: 0;
    height: 2px;
    background-color: transparent;
    border-radius: 1px;
    position: absolute;
    bottom: 0;
    transition: all 0.4s linear;
  }
  .navigation .nav_child .links_wrapper .link .dropdown .a_wrap .a:hover::before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #287377;
    border-radius: 1px;
    position: absolute;
    bottom: 0;
  }
  .navigation .nav_child .links_wrapper .link .dropdown .a_wrap .active {
    color: #1D6363;
  }
  .navigation .nav_child .links_wrapper .link .show {
    display: flex;
  }
  .navigation .nav_child .links_wrapper .active {
    color: #1D6363;
  }
  .navigation .nav_child .show {
    display: flex;
  }
  .navigation .nav_child .btn_wrap {
    background-color: rgba(0, 0, 0, 0.25);
    display: none;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
  }
  .navigation .nav_child .btn_wrap .head_btn {
    height: 48px;
    background-color: #287377;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    padding: 0 32px;
    border-radius: 10px;
    transition: all 0.3s linear;
  }
  .navigation .nav_child .btn_wrap .head_btn:hover {
    transform: translateY(-2px);
  }
  .navigation .nav_child .phone_menu {
    display: flex;
  }
  .footer {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #287377;
  }
  .footer .footer_child {
    width: 100%;
    max-width: 991px;
    display: flex;
    flex-direction: column;
    padding: 80px 10%;
    gap: 64px;
  }
  .footer .footer_child .wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 64px;
    justify-content: space-between;
  }
  .footer .footer_child .wrapper .row1 {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .footer .footer_child .wrapper .row1 .wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .footer .footer_child .wrapper .row1 .wrap .logo {
    width: 120px;
  }
  .footer .footer_child .wrapper .row1 .wrap .w {
    color: #FFFFFF;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
  }
  .footer .footer_child .wrapper .row1 .w_a {
    gap: 8px;
  }
  .footer .footer_child .wrapper .row1 .w_a .w {
    color: #9FB6B7;
  }
  .footer .footer_child .wrapper .row_2 {
    display: flex;
    flex-direction: row;
    gap: 32px;
  }
  .footer .footer_child .wrapper .row_2 .col {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .footer .footer_child .wrapper .row_2 .col .lbl {
    font-size: 14px;
    font-weight: 600;
    color: #9FB6B7;
  }
  .footer .footer_child .wrapper .row_2 .col .link {
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 600;
  }
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navigation {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    z-index: 99999;
    background-color: #FFFFFF;
  }
  .navigation .nav_child {
    height: 64px;
    width: 100%;
    max-width: 1440px;
    padding: 0 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navigation .nav_child .logo_wrap {
    height: 80%;
    display: flex;
  }
  .navigation .nav_child .logo_wrap .logo {
    height: 100%;
  }
  .navigation .nav_child .links_wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
  .navigation .nav_child .links_wrapper .link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #B8B8B8;
    position: relative;
  }
  .navigation .nav_child .links_wrapper .link .rot {
    transform: rotate(180deg);
  }
  .navigation .nav_child .links_wrapper .link .dropdown {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(0, 100%);
    left: -32px;
    display: none;
    z-index: 99999;
    padding: 16px;
    padding-left: 0;
  }
  .navigation .nav_child .links_wrapper .link .dropdown .a_wrap {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    box-shadow: 0 0 34px rgba(70, 74, 85, 0.1);
    padding: 8px 32px;
    border-radius: 8px;
    gap: 8px;
  }
  .navigation .nav_child .links_wrapper .link .dropdown .a_wrap .a {
    width: -moz-max-content;
    width: max-content;
    height: 32px;
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: #B8B8B8;
    border-radius: 4px;
    position: relative;
  }
  .navigation .nav_child .links_wrapper .link .dropdown .a_wrap .a::before {
    content: "";
    width: 0;
    height: 2px;
    background-color: transparent;
    border-radius: 1px;
    position: absolute;
    bottom: 0;
    transition: all 0.4s linear;
  }
  .navigation .nav_child .links_wrapper .link .dropdown .a_wrap .a:hover::before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #287377;
    border-radius: 1px;
    position: absolute;
    bottom: 0;
  }
  .navigation .nav_child .links_wrapper .link .dropdown .a_wrap .active {
    color: #1D6363;
  }
  .navigation .nav_child .links_wrapper .link .show {
    display: flex;
  }
  .navigation .nav_child .links_wrapper .phone_cont {
    display: none;
  }
  .navigation .nav_child .links_wrapper .active {
    color: #1D6363;
  }
  .navigation .nav_child .btn_wrap {
    background-color: rgba(0, 0, 0, 0.25);
    display: flex;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
  }
  .navigation .nav_child .btn_wrap .head_btn {
    height: 48px;
    background-color: #287377;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    padding: 0 32px;
    border-radius: 10px;
    transition: all 0.3s linear;
  }
  .navigation .nav_child .btn_wrap .head_btn:hover {
    transform: translateY(-2px);
  }
  .navigation .phone_menu {
    display: none;
  }
  .footer {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #287377;
  }
  .footer .footer_child {
    width: 100%;
    max-width: 1199px;
    display: flex;
    flex-direction: column;
    padding: 80px 10%;
    gap: 64px;
  }
  .footer .footer_child .wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 64px;
    justify-content: space-between;
  }
  .footer .footer_child .wrapper .row1 {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .footer .footer_child .wrapper .row1 .wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .footer .footer_child .wrapper .row1 .wrap .logo {
    width: 120px;
  }
  .footer .footer_child .wrapper .row1 .wrap .w {
    color: #FFFFFF;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
  }
  .footer .footer_child .wrapper .row1 .w_a {
    gap: 8px;
  }
  .footer .footer_child .wrapper .row1 .w_a .w {
    color: #9FB6B7;
  }
  .footer .footer_child .wrapper .row_2 {
    display: flex;
    flex-direction: row;
    gap: 32px;
  }
  .footer .footer_child .wrapper .row_2 .col {
    width: 160px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .footer .footer_child .wrapper .row_2 .col .lbl {
    font-size: 0.8rem;
    font-weight: 600;
    color: #9FB6B7;
  }
  .footer .footer_child .wrapper .row_2 .col .link {
    font-size: 1.2rem;
    color: #FFFFFF;
    font-weight: 600;
  }
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .navigation {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    z-index: 99999;
    background-color: #FFFFFF;
  }
  .navigation .nav_child {
    height: 64px;
    width: 100%;
    max-width: 1440px;
    padding: 0 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navigation .nav_child .logo_wrap {
    height: 80%;
    display: flex;
  }
  .navigation .nav_child .logo_wrap .logo {
    height: 100%;
  }
  .navigation .nav_child .links_wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }
  .navigation .nav_child .links_wrapper .link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #B8B8B8;
    position: relative;
  }
  .navigation .nav_child .links_wrapper .link .rot {
    transform: rotate(180deg);
  }
  .navigation .nav_child .links_wrapper .link .dropdown {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(0, 100%);
    left: -32px;
    display: none;
    z-index: 99999;
    padding: 16px;
    padding-left: 0;
  }
  .navigation .nav_child .links_wrapper .link .dropdown .a_wrap {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    box-shadow: 0 0 34px rgba(70, 74, 85, 0.1);
    padding: 8px 32px;
    border-radius: 8px;
    gap: 8px;
  }
  .navigation .nav_child .links_wrapper .link .dropdown .a_wrap .a {
    width: -moz-max-content;
    width: max-content;
    height: 32px;
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: #B8B8B8;
    border-radius: 4px;
    position: relative;
  }
  .navigation .nav_child .links_wrapper .link .dropdown .a_wrap .a::before {
    content: "";
    width: 0;
    height: 2px;
    background-color: transparent;
    border-radius: 1px;
    position: absolute;
    bottom: 0;
    transition: all 0.4s linear;
  }
  .navigation .nav_child .links_wrapper .link .dropdown .a_wrap .a:hover::before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #287377;
    border-radius: 1px;
    position: absolute;
    bottom: 0;
  }
  .navigation .nav_child .links_wrapper .link .dropdown .a_wrap .active {
    color: #1D6363;
  }
  .navigation .nav_child .links_wrapper .link .show {
    display: flex;
  }
  .navigation .nav_child .links_wrapper .phone_cont {
    display: none;
  }
  .navigation .nav_child .links_wrapper .active {
    color: #1D6363;
  }
  .navigation .nav_child .btn_wrap {
    background-color: rgba(0, 0, 0, 0.25);
    display: flex;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
  }
  .navigation .nav_child .btn_wrap .head_btn {
    height: 48px;
    background-color: #287377;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    padding: 0 32px;
    border-radius: 10px;
    transition: all 0.3s linear;
  }
  .navigation .nav_child .btn_wrap .head_btn:hover {
    transform: translateY(-2px);
  }
  .navigation .phone_menu {
    display: none;
  }
  .footer {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #287377;
  }
  .footer .footer_child {
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    padding: 80px 10%;
    gap: 64px;
  }
  .footer .footer_child .wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 64px;
    justify-content: space-between;
  }
  .footer .footer_child .wrapper .row1 {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .footer .footer_child .wrapper .row1 .wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .footer .footer_child .wrapper .row1 .wrap .logo {
    width: 120px;
  }
  .footer .footer_child .wrapper .row1 .wrap .w {
    color: #FFFFFF;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
  }
  .footer .footer_child .wrapper .row1 .w_a {
    gap: 8px;
  }
  .footer .footer_child .wrapper .row1 .w_a .w {
    color: #9FB6B7;
  }
  .footer .footer_child .wrapper .row_2 {
    display: flex;
    flex-direction: row;
    gap: 32px;
  }
  .footer .footer_child .wrapper .row_2 .col {
    width: 160px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .footer .footer_child .wrapper .row_2 .col .lbl {
    font-size: 0.8rem;
    font-weight: 600;
    color: #9FB6B7;
  }
  .footer .footer_child .wrapper .row_2 .col .link {
    font-size: 1.2rem;
    color: #FFFFFF;
    font-weight: 600;
  }
}/*# sourceMappingURL=all.css.map */