@charset "UTF-8";
/* Reset CSS */
/* Box Sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Typography */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}

html, body {
  min-height: 100vh;
  background-color: var(--white);
}

body {
  font-size: 16px;
  line-height: 17px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}
body::-webkit-scrollbar {
  background-color: transparent;
  width: 0;
}
body::-webkit-scrollbar-thumb {
  background-color: transparent;
  width: 0;
  /* Chrome, Safari, Edge ve Opera için */
}
body::-webkit-scrollbar-track {
  background-color: transparent;
  width: 0;
  /* Chrome, Safari, Edge ve Opera için */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  font-weight: normal;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Lists */
ul,
ol {
  list-style: none;
}

/* Forms */
input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* Reset Image */
img {
  max-width: 100%;
  height: auto;
  overflow: clip;
  overflow-clip-margin: content-box;
}

/* Reset Table */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Misc */
button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* Responsive Embeds */
embed,
iframe,
object,
video {
  max-width: 100%;
}

/* Clear Floats */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

@font-face {
  font-family: "okyanusFont";
  src: url("../../fonts/okyanusFont.eot?u0c48x");
  src: url("../../fonts/okyanusFont.eot?u0c48x#iefix") format("embedded-opentype"), url("../../fonts/okyanusFont.ttf?u0c48x") format("truetype"), url("../../fonts/okyanusFont.woff?u0c48x") format("woff"), url("../../fonts/okyanusFont.svg?u0c48x#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "okyanusFont" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-instagram:before {
  content: "\e904";
}

.icon-linkedin:before {
  content: "\e905";
}

.icon-arrow-right:before {
  content: "\e903";
}

.icon-arrow-circle:before {
  content: "\e902";
}

.icon-arrow-down:before {
  content: "\e900";
}

.icon-search:before {
  content: "\e901";
}

:root {
  --white: #fff;
  --white-2: #ecedf0;
  --black: #000000;
  --burgundy:#660000;
  --orange:#ff6e08;
  --yellow:#fe9615;
  --light-gray:#f2f2f2;
  --gray:#a3a397;
  --gray2:#808080;
  --gray3:#e6e6e6;
  --gray4:#F8F9FA;
  --gray6:#ADB5BD;
  --dark-gray:#333333;
  --indigo:#134563;
  --blue:#102694;
  --blue2:#2E3192;
  --blue3:#06337a;
  --swiper-theme-color: var(--orange);
  --swiper-navigation-color: #0f1c44;
  --swiper-navigation-size: 26px;
}

/*Custom Color ve background class*/
.bg-primary {
  background-color: #2E3192 !important;
}

.bg-secondary {
  background-color: #808080 !important;
}

.bg-tertiary {
  background-color: #ff6e08 !important;
}

.bg-gray {
  background-color: #f2f2f2 !important;
}

.text-primary {
  color: #2E3192 !important;
}

.text-secondary {
  color: #808080 !important;
}

.text-tertiary {
  color: #ff6e08 !important;
}

.text-gray {
  color: #f2f2f2 !important;
}

/*Custom container class*/
.container-sm {
  max-width: 570px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .container-sm:not(.noSpace) {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 370px) {
  .container-sm:not(.noSpace) {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (min-width: 992px) {
  .container-sm {
    padding-left: 6.718vw;
    padding-right: 6.718vw;
  }
}
@media screen and (min-width: 1921px) {
  .container-sm {
    padding-left: 129px;
    padding-right: 129px;
  }
}

.container-md {
  max-width: 768px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .container-md:not(.noSpace) {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 370px) {
  .container-md:not(.noSpace) {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (min-width: 992px) {
  .container-md {
    padding-left: 6.718vw;
    padding-right: 6.718vw;
  }
}
@media screen and (min-width: 1921px) {
  .container-md {
    padding-left: 129px;
    padding-right: 129px;
  }
}

.container-lg {
  max-width: 992px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .container-lg:not(.noSpace) {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 370px) {
  .container-lg:not(.noSpace) {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (min-width: 992px) {
  .container-lg {
    padding-left: 6.718vw;
    padding-right: 6.718vw;
  }
}
@media screen and (min-width: 1921px) {
  .container-lg {
    padding-left: 129px;
    padding-right: 129px;
  }
}

.container-xl {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .container-xl:not(.noSpace) {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 370px) {
  .container-xl:not(.noSpace) {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (min-width: 992px) {
  .container-xl {
    padding-left: 6.718vw;
    padding-right: 6.718vw;
  }
}
@media screen and (min-width: 1921px) {
  .container-xl {
    padding-left: 129px;
    padding-right: 129px;
  }
}

.container-2xl {
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .container-2xl:not(.noSpace) {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 370px) {
  .container-2xl:not(.noSpace) {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (min-width: 992px) {
  .container-2xl {
    padding-left: 6.718vw;
    padding-right: 6.718vw;
  }
}
@media screen and (min-width: 1921px) {
  .container-2xl {
    padding-left: 129px;
    padding-right: 129px;
  }
}

.container-3xl {
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .container-3xl:not(.noSpace) {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 370px) {
  .container-3xl:not(.noSpace) {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (min-width: 992px) {
  .container-3xl {
    padding-left: 6.718vw;
    padding-right: 6.718vw;
  }
}
@media screen and (min-width: 1921px) {
  .container-3xl {
    padding-left: 129px;
    padding-right: 129px;
  }
}

.pe-2, .pe-1, .pe-0 {
  padding-right: 0 !important;
}

@media (min-width: 576px) {
  .pe-sm-0 {
    padding-right: 0 !important;
  }
}
@media (min-width: 768px) {
  .pe-md-0 {
    padding-right: 0 !important;
  }
}
@media (min-width: 992px) {
  .pe-lg-0 {
    padding-right: 0 !important;
  }
}
@media (min-width: 1200px) {
  .pe-xl-0 {
    padding-right: 0 !important;
  }
}
@media (min-width: 1400px) {
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
}
@media (min-width: 576px) {
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
}
@media (min-width: 768px) {
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
}
@media (min-width: 992px) {
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
}
@media (min-width: 1200px) {
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
}
@media (min-width: 1400px) {
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
}
@media (min-width: 576px) {
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
}
@media (min-width: 768px) {
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
}
@media (min-width: 992px) {
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
}
@media (min-width: 1200px) {
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
}
@media (min-width: 1400px) {
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
}
/*Standart css style*/
.imageWrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.imageWrapper img {
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s linear;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.d-flex {
  display: flex;
  align-items: flex-start;
}
.d-flex.hstack {
  align-items: center;
}

.a-flex-end {
  align-items: flex-end !important;
}

.d-block {
  display: block !important;
}

.d-none {
  display: none !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-relative {
  position: relative !important;
}

.icon-instagram {
  font-size: 24px;
}
@media screen and (max-width: 570px) {
  .icon-instagram {
    font-size: 18px;
  }
}

.d-none {
  display: none !important;
}

@media screen and (min-width: 992px) {
  .d-lg-flex {
    display: flex !important;
    align-items: flex-start;
  }
  .d-lg-flex.hstack {
    align-items: center;
  }
}

@media screen and (min-width: 1280px) {
  .d-xl-flex {
    display: flex !important;
    align-items: flex-start;
  }
  .d-xl-flex.hstack {
    align-items: center;
  }
}

.d-inline-flex {
  display: inline-flex;
  align-items: flex-start;
}
.d-inline-flex.hstack {
  align-items: center;
}

@media screen and (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
}

@media screen and (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
}

.justify-content-end {
  justify-content: flex-end !important;
}

.ml-auto {
  margin-left: auto !important;
}

.icon-twitter {
  font-size: 22px;
}
@media screen and (max-width: 570px) {
  .icon-twitter {
    font-size: 18px;
  }
}

.icon-linkedin-2 {
  font-size: 25px;
}
@media screen and (max-width: 570px) {
  .icon-linkedin-2 {
    font-size: 18px;
  }
}

.preLine {
  white-space: pre-line;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #ffffff;
}

.loader {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.car__body {
  animation: shake 0.2s ease-in-out infinite alternate;
}
.car__line {
  transform-origin: center right;
  stroke-dasharray: 22;
  animation: line 0.8s ease-in-out infinite;
  animation-fill-mode: both;
}
.car__line--top {
  animation-delay: 0s;
}
.car__line--middle {
  animation-delay: 0.2s;
}
.car__line--bottom {
  animation-delay: 0.4s;
}

@keyframes shake {
  0% {
    transform: translateY(-1%);
  }
  100% {
    transform: translateY(3%);
  }
}
@keyframes line {
  0% {
    stroke-dashoffset: 22;
  }
  25% {
    stroke-dashoffset: 22;
  }
  50% {
    stroke-dashoffset: 0;
  }
  51% {
    stroke-dashoffset: 0;
  }
  80% {
    stroke-dashoffset: -22;
  }
  100% {
    stroke-dashoffset: -22;
  }
}
.navbar {
  height: 100%;
}
@media screen and (max-width: 991.98px) {
  .navbar .subMenu {
    padding-bottom: 30px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (min-width: 992px) {
  .navbar .subMenu {
    position: absolute;
    height: 0;
    opacity: 0;
    visibility: hidden;
    background-color: var(--white);
    padding: 20px 30px;
    margin-left: -20px;
    border-radius: 0 0 12px 12px;
    width: auto;
    min-width: 390px;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s linear;
    min-height: 100px;
    display: flex;
    flex-wrap: wrap;
  }
}
.navbar .subMenu li {
  border-bottom: 1px solid var(--gray3);
  height: 40px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .navbar .subMenu li {
    width: 50%;
    padding-left: 10px;
  }
}
.navbar .subMenu li:nth-child(2n+1) {
  padding-left: 0;
}
.navbar .subMenu li a {
  color: var(--gray2);
  transition: all 0.3s linear;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  padding: 1px 10px 1px 20px;
  height: 100%;
}
@media screen and (max-width: 991.98px) {
  .navbar .subMenu li a {
    padding-left: 0;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 992px) {
  .navbar .subMenu li a:before {
    content: "\e903";
    font-family: "okyanusFont" !important;
    position: absolute;
    left: 0;
    color: var(--orange);
    top: 50%;
    margin-top: -8.5px;
  }
  .navbar .subMenu li a:hover {
    color: var(--orange);
    transform: translateX(5px);
  }
}
.navbar .subMenu li a.active {
  color: var(--orange);
}
.navbar > ul {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 30px;
}
.navbar > ul > li {
  height: 100%;
  position: relative;
}
.navbar > ul > li .icon-arrow-right {
  display: flex;
  transition: all 0.3s linear;
}
.navbar > ul > li.active > a, .navbar > ul > li.active > span {
  color: var(--orange);
}
.navbar > ul > li.active > a:before, .navbar > ul > li.active > span:before {
  width: 100%;
}
.navbar > ul > li.active > span .icon-arrow-right {
  transform: rotate(90deg);
  color: var(--orange);
}
@media screen and (min-width: 992px) {
  .navbar > ul > li:hover .subMenu {
    opacity: 1;
    height: auto;
    visibility: visible;
  }
  .navbar > ul > li:hover .icon-arrow-right {
    transform: rotate(90deg);
    color: var(--orange);
  }
  .navbar > ul > li:hover > a, .navbar > ul > li:hover > span {
    color: var(--orange);
  }
  .navbar > ul > li:hover > a:before, .navbar > ul > li:hover > span:before {
    width: 100%;
  }
}
.navbar > ul > li > a, .navbar > ul > li > span {
  color: var(--gray2);
  transition: all 0.3s linear;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
}
@media screen and (max-width: 991.98px) {
  .navbar > ul > li > a, .navbar > ul > li > span {
    height: 45px;
  }
}
@media screen and (min-width: 992px) {
  .navbar > ul > li > a, .navbar > ul > li > span {
    height: 100%;
  }
  .navbar > ul > li > a:before, .navbar > ul > li > span:before {
    content: "";
    width: 0;
    height: 2px;
    background-color: var(--orange);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.3s linear;
  }
}
@media screen and (max-width: 991.98px) {
  .navbar {
    position: fixed;
    top: 0;
    height: 100vh;
    background: #ffffff;
    width: 100%;
    left: 0;
    top: 0;
    padding-top: 114px;
    z-index: -1;
    padding-bottom: 50px;
    transform: translatex(100%);
    transition: all 0.3s linear;
  }
  .navbar > ul > li {
    border-bottom: 1px solid var(--light-gray);
  }
  .navbar ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    height: auto;
  }
}
@media screen and (max-width: 991.98px) and (max-width: 370px) {
  .navbar ul {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 991.98px) {
  .navbar ul li {
    width: 100%;
  }
}
.navbar.active {
  transform: translatex(0);
}

@media screen and (max-width: 991.98px) {
  .navMenu {
    width: 24px;
    height: 16px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: column;
  }
  .navMenu:before, .navMenu:after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--orange);
    transition: all 0.3s linear;
    transform-origin: 0;
  }
  .navMenu span {
    height: 2px;
    background-color: var(--orange);
    width: 80%;
    transition: all 0.3s linear;
  }
  .navMenu.active span {
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
  }
  .navMenu.active:before {
    transform: rotate(45deg);
    top: -2px;
    position: relative;
  }
  .navMenu.active:after {
    transform: rotate(-45deg);
  }
}

header {
  width: 100%;
  position: absolute;
  z-index: 999;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
  background-color: var(--white);
}
header > .container-3xl {
  display: flex;
  align-items: stretch;
}
header .top {
  height: 35px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--light-gray);
  justify-content: flex-end;
  gap: 30px;
}
@media screen and (max-width: 991.98px) {
  header .top {
    gap: 8px;
  }
}
header .top div {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991.98px) {
  header .top svg {
    width: 24px;
    height: 24px;
  }
}
header .top a {
  color: var(--gray2);
  font-size: 12px;
  display: flex;
  align-items: center;
  transition: all 0.3s linear;
}
@media screen and (min-width: 992px) {
  header .top a:hover {
    color: var(--orange);
  }
  header .top a:hover span {
    color: var(--orange);
  }
}
header .top span {
  color: var(--gray2);
  font-size: 12px;
  display: flex;
  align-items: center;
  transition: all 0.3s linear;
}
header .top svg {
  margin-right: 5px;
  color: var(--gray2);
}
header .header {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
header .headerMenu {
  margin-left: auto;
  display: flex;
  align-items: center;
  height: calc(100% - 35px);
  gap: 20px;
}
@media screen and (max-width: 991.98px) {
  header .headerMenu {
    padding: 10px 0;
    width: 100%;
    margin: 0;
    background-color: var(--white);
  }
}
@media screen and (max-width: 991.98px) {
  header .logo {
    height: 60px;
    margin-top: 10px;
  }
}
header.fixed {
  position: fixed;
}

.logo {
  height: 80px;
  display: inline-flex;
  padding: 10px 0;
}
.logo img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s linear;
}
@media screen and (min-width: 992px) {
  .logo:hover img {
    transform: scale(1.05);
  }
}

.socialMedia {
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 1px solid var(--light-gray);
  padding-left: 14px;
}
@media screen and (max-width: 991.98px) {
  .socialMedia {
    border-left: none;
    margin-right: auto;
    padding-left: 0;
    gap: 16px;
  }
}
.socialMedia a {
  color: var(--gray2);
  transition: all 0.3s linear;
}
@media screen and (max-width: 991.98px) {
  .socialMedia a svg {
    width: 24px;
    height: 24px;
  }
}
@media screen and (min-width: 992px) {
  .socialMedia a:hover {
    color: var(--orange);
  }
}

footer {
  background-color: var(--dark-gray);
  padding-top: 100px;
}
footer .logo {
  height: 150px;
  margin-left: 14vw;
}
@media screen and (max-width: 1440px) {
  footer .logo {
    margin-left: 8vw;
  }
}
@media screen and (max-width: 991.98px) {
  footer .logo {
    margin-left: 0;
    height: 100px;
  }
}
footer .footer {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 991.98px) {
  footer .footer {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  footer .footer {
    gap: 50px;
  }
}
footer .footer .footerMenu {
  padding-left: 50px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  margin-left: auto;
  margin-bottom: 100px;
  padding-right: 15vw;
}
@media screen and (max-width: 1440px) {
  footer .footer .footerMenu {
    padding-right: 8vw;
  }
}
@media screen and (max-width: 991.98px) {
  footer .footer .footerMenu {
    padding-left: 0;
    border-left: none;
    padding-right: 0;
    margin-bottom: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 50px;
  }
}
footer .footer nav {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 991.98px) {
  footer .footer nav {
    display: block;
  }
}
footer .footer nav > ul {
  padding-bottom: 15px;
  padding-top: 30px;
}
@media screen and (max-width: 991.98px) {
  footer .footer nav > ul + ul {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
footer .footer nav ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 991.98px) {
  footer .footer nav ul li {
    display: block;
  }
}
footer .footer nav ul li > span {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
@media screen and (max-width: 991.98px) {
  footer .footer nav ul li > span {
    display: block;
    min-width: initial;
    margin-bottom: 20px;
  }
}
footer .footer nav ul li div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
}
footer .footer nav ul li a {
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  margin: 10px 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 991.98px) {
  footer .footer nav ul li a {
    margin: 15px 0;
  }
}
@media screen and (min-width: 992px) {
  footer .footer nav ul li a:before {
    content: "";
    width: 0;
    height: 1px;
    background-color: var(--white);
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: all 0.3s linear;
  }
  footer .footer nav ul li a:hover:before {
    width: 100%;
  }
}
footer .footer nav .grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
}
@media screen and (max-width: 991.98px) {
  footer .footer nav .grid {
    display: block;
  }
}
footer .footer nav .grid li {
  min-width: 150px;
}
@media screen and (max-width: 991.98px) {
  footer .footer nav .grid li a {
    display: block;
    min-width: initial;
  }
}
footer .bottom {
  background-color: var(--white);
  padding: 10px 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray2);
  text-align: center;
}
@media screen and (max-width: 991.98px) {
  footer .bottom {
    text-align: left;
  }
}

.invalid-message {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  bottom: 5px;
  left: 0;
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  left: 2px;
  padding-left: 13px;
  padding-right: 10px;
  padding-top: 12px;
}

.formControl.is-invalid ~ .invalid-message {
  opacity: 1;
  visibility: visible;
  position: relative;
  overflow: visible;
}

.container-check input.is-invalid ~ .checkmark {
  border-color: var(--burgundy);
}
.container-check .invalid-message {
  bottom: -17px;
  background: none;
  left: 18px;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 991.98px) {
  .buttons {
    flex-direction: column;
    gap: 20px;
  }
}

.fixBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  padding: 0 32px;
  border-radius: 15px;
  height: 55px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  color: var(--white);
  background-color: var(--blue);
  z-index: 1;
  transition: all 0.3s linear;
  min-width: 180px;
  will-change: transform;
}
.fixBtn.light {
  color: var(--blue);
  background-color: var(--white);
}
@media screen and (max-width: 1440px) {
  .fixBtn {
    font-size: 14px;
  }
}
@media screen and (max-width: 991.98px) {
  .fixBtn {
    height: 45px;
    font-size: 12px;
  }
}
@media screen and (min-width: 992px) {
  .fixBtn:before {
    content: "";
    width: 0;
    height: 100%;
    background-color: var(--white);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.3s linear;
  }
  .fixBtn.light:before {
    background-color: var(--orange);
  }
  .fixBtn:hover {
    color: var(--blue);
  }
  .fixBtn:hover:before {
    width: 100%;
  }
  .fixBtn:hover.light {
    color: var(--white);
  }
}

form {
  background-color: var(--gray4);
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
  border-radius: 15px;
  padding: 50px 30px;
}
form .inputColumn {
  position: relative;
}
form input {
  border: 1px solid var(--gray3);
  width: 100%;
  height: 54px;
  border-radius: 6px;
  padding-left: 24px;
  padding-right: 24px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: var(--dark-gray);
}
form textarea {
  border: 1px solid var(--gray3);
  width: 100%;
  border-radius: 6px;
  padding: 24px;
  max-height: 300px;
  resize: none;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: var(--dark-gray);
}
form .fixBtn {
  border-radius: 12px;
  max-width: 300px;
  margin-left: auto;
  font-weight: 600;
  margin-top: 30px;
}

.applyForm,
.contactForm {
  margin-left: auto;
  min-width: 400px;
  width: 60%;
  padding-left: 50px;
}
@media screen and (max-width: 991.98px) {
  .applyForm,
  .contactForm {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
    min-width: initial;
  }
}
.applyForm h2,
.contactForm h2 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 500;
  color: var(--blue3);
}

.addressInfo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.addressInfo a, .addressInfo > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.addressInfo a {
  transition: all 0.3s linear;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .addressInfo a:hover {
    color: var(--orange);
  }
}

.addressColumn h2 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 500;
  color: var(--blue3);
  margin-bottom: 30px;
}

.select2-container {
  width: 100% !important;
  height: 54px;
}

.select2-container--default .select2-selection--single {
  height: 54px;
  border-color: var(--gray3);
  border-radius: 6px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: var(--dark-gray);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 54px;
  padding-left: 24px;
  padding-right: 24px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--dark-gray);
  opacity: 0.8;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 15px;
  right: 10px;
}

.select2-dropdown {
  border-color: var(--gray3);
}

.select2-results__option {
  padding: 15px 24px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--blue3);
}

.select2-container--default .select2-results__option--selected {
  background-color: var(--blue3);
  color: var(--white);
}

.ui-widget-header .ui-icon {
  display: inline-block;
  background: none;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M15.41 16.58L10.83 12l4.58-4.59L14 6l-6 6l6 6z'/%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.ui-datepicker .ui-datepicker-next span {
  transform: rotate(180deg);
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  border: 1px solid var(--orange);
  background: var(--orange);
  color: var(--white) !important;
}

.ui-datepicker td span, .ui-datepicker td a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  border-color: var(--gray4) !important;
  color: var(--dark-gray) !important;
  border-radius: 6px;
  font-weight: 500 !important;
}

.ui-widget-header {
  background: var(--gray4);
  border-color: var(--gray4);
  border-radius: 6px !important;
}

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
  border-color: var(--gray4);
  padding: 20px;
  min-width: 300px;
}

/* Customize the label (the container-check) */
.container-check {
  display: flex !important;
  align-items: flex-start;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  padding-left: 0 !important;
}
.container-check .checkText {
  color: #747474;
  font-size: 13px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
.container-check a {
  color: var(--light-brown);
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  transition: all 0.3s linear;
}
@media screen and (min-width: 992px) {
  .container-check a:hover {
    border-color: var(--light-brown);
  }
}

/* Hide the browser's default checkbox */
.container-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: relative;
  top: 0;
  left: 0;
  height: 18px;
  width: 20px;
  border: 1px solid #bfbfbf;
  background-color: #f2f2f2;
  margin-right: 10px;
}

/* On mouse-over, add a grey background color */
/* When the checkbox is checked, add a blue background */
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container-check input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container-check .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid var(--light-brown);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.breadCrumbWrapper {
  position: absolute;
  left: 0;
  bottom: 30px;
}
@media screen and (max-width: 1200px) {
  .breadCrumbWrapper {
    margin-bottom: 20px;
  }
}
.breadCrumbWrapper .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.breadCrumbWrapper .breadcrumb a {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue3);
  transition: all 0.3s linear;
  padding-right: 20px;
}
@media screen and (max-width: 991.98px) {
  .breadCrumbWrapper .breadcrumb a {
    padding-right: 10px;
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.breadCrumbWrapper .breadcrumb a + a:before {
  content: "|";
  font-size: 13px;
  color: var(--blue3);
  font-family: "Roboto", sans-serif;
  display: inline-block;
  margin-right: 18px;
}
@media screen and (max-width: 991.98px) {
  .breadCrumbWrapper .breadcrumb a + a:before {
    margin-right: 10px;
  }
}
.breadCrumbWrapper .breadcrumb a.active {
  color: var(--white);
  font-weight: 600;
  text-decoration: line-through;
}
@media screen and (min-width: 992px) {
  .breadCrumbWrapper .breadcrumb a:hover {
    color: var(--blue3);
  }
}

.swiper.homeCarousel {
  height: 80vh;
}
.swiper.homeCarousel .swiper-slide .imageWrapper {
  position: absolute;
  top: 0;
  left: 0;
}
.swiper.homeCarousel .swiper-slide .slideContent {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: rgba(0, 0, 0, 0.4);
}
.swiper.homeCarousel .swiper-slide .desc {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  gap: 30px;
}
.swiper.homeCarousel .swiper-slide .desc .caption,
.swiper.homeCarousel .swiper-slide .desc h1 {
  font-size: 50px;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
  line-height: 60px;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 991.98px) {
  .swiper.homeCarousel .swiper-slide .desc .caption,
  .swiper.homeCarousel .swiper-slide .desc h1 {
    font-size: 34px;
    line-height: 46px;
  }
}
.swiper.homeCarousel .swiper-slide .desc .slideText {
  font-size: 24px;
  color: var(--white);
  line-height: 34px;
  text-align: center;
}
@media screen and (max-width: 991.98px) {
  .swiper.homeCarousel .swiper-slide .desc .slideText {
    font-size: 16px;
    line-height: 24px;
  }
}
.swiper.announcementsSlider {
  width: calc(100% - 70px);
  margin-left: auto;
  margin-right: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  height: 70%;
}
@media screen and (max-width: 991.98px) {
  .swiper.announcementsSlider {
    width: calc(100% - 40px);
  }
}
.swiper.announcementsSlider .desc {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 15px;
  line-height: 20px;
  color: var(--dark-gray);
  cursor: pointer;
}
@media screen and (max-width: 991.98px) {
  .swiper.announcementsSlider .desc {
    padding-left: 16px;
    padding-right: 0;
    font-size: 12px;
    line-height: 16px;
  }
}
.swiper.announcementsSlider .desc p {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.swiper.commentsSlider {
  margin-top: 40px;
}
.swiper.commentsSlider .desc {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.swiper.commentsSlider .desc .name {
  font-size: 24px;
  color: var(--blue2);
  font-weight: 500;
}
@media screen and (max-width: 991.98px) {
  .swiper.commentsSlider .desc .name {
    font-size: 16px;
  }
}
.swiper.commentsSlider .desc .comment {
  font-size: 14px;
  color: var(--gray2);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 991.98px) {
  .swiper.commentsSlider .desc .comment {
    font-size: 12px;
  }
}

.swiper-pagination {
  bottom: 60px !important;
}
@media screen and (max-width: 991.98px) {
  .swiper-pagination {
    bottom: 30px !important;
  }
}
.swiper-pagination .swiper-pagination-bullet {
  background-color: var(--white);
  width: 24px;
  height: 8px;
  border-radius: 12px;
  transition: all 0.3s linear;
}
@media screen and (min-width: 992px) {
  .swiper-pagination .swiper-pagination-bullet:hover {
    opacity: 1;
  }
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--orange);
  width: 43px;
}

.announcements {
  height: 60px;
  background-color: var(--light-gray);
}

.bellWrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 20px;
}
.bellWrapper span {
  font-weight: 600;
  font-size: 16px;
  color: var(--dark-gray);
}

.bell {
  display: block;
  width: 24px;
  height: 24px;
  font-size: 24px;
  margin: 0 auto 0;
  color: var(--dark-gray);
  -webkit-animation: ring 4s 0.7s ease-in-out infinite;
  -webkit-transform-origin: 50% 4px;
  -moz-animation: ring 4s 0.7s ease-in-out infinite;
  -moz-transform-origin: 50% 4px;
  animation: ring 4s 0.7s ease-in-out infinite;
  transform-origin: 50% 4px;
}
@media screen and (max-width: 991.98px) {
  .bell {
    width: 20px;
    height: 20px;
  }
}
@keyframes ring {
  0% {
    transform: rotate(0);
  }
  1% {
    transform: rotate(30deg);
  }
  3% {
    transform: rotate(-28deg);
  }
  5% {
    transform: rotate(34deg);
  }
  7% {
    transform: rotate(-32deg);
  }
  9% {
    transform: rotate(30deg);
  }
  11% {
    transform: rotate(-28deg);
  }
  13% {
    transform: rotate(26deg);
  }
  15% {
    transform: rotate(-24deg);
  }
  17% {
    transform: rotate(22deg);
  }
  19% {
    transform: rotate(-20deg);
  }
  21% {
    transform: rotate(18deg);
  }
  23% {
    transform: rotate(-16deg);
  }
  25% {
    transform: rotate(14deg);
  }
  27% {
    transform: rotate(-12deg);
  }
  29% {
    transform: rotate(10deg);
  }
  31% {
    transform: rotate(-8deg);
  }
  33% {
    transform: rotate(6deg);
  }
  35% {
    transform: rotate(-4deg);
  }
  37% {
    transform: rotate(2deg);
  }
  39% {
    transform: rotate(-1deg);
  }
  41% {
    transform: rotate(1deg);
  }
  43% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}
.cards {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin: 60px auto;
}
@media screen and (max-width: 1440px) {
  .cards {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .cards {
    gap: 16px;
  }
}
@media screen and (max-width: 570px) {
  .cards {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.cards .card {
  width: 33.3%;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
@media screen and (max-width: 570px) {
  .cards .card {
    width: 100%;
  }
}
.cards .card .imageWrapper {
  aspect-ratio: 4/3;
  border: 1px solid var(--light-gray);
}
.cards .card .card-overlay {
  position: absolute;
  bottom: 0;
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(16, 38, 148, 0.92);
  color: var(--white);
  gap: 20px;
  font-size: 16px;
  transition: all 0.3s linear;
}
@media screen and (max-width: 991.98px) {
  .cards .card .card-overlay {
    font-size: 12px;
    height: 40px;
  }
}
.cards .card .card-overlay svg,
.cards .card .card-overlay img {
  width: 42px;
  height: 42px;
}
@media screen and (max-width: 991.98px) {
  .cards .card .card-overlay svg,
  .cards .card .card-overlay img {
    width: 20px;
    height: 20px;
  }
}
.cards .card .card-body {
  padding: 15px;
}
.cards .card .card-body .name {
  font-size: 16px;
  color: var(--blue3);
  font-weight: 500;
  line-height: 20px;
  transition: all 0.3s linear;
}
.cards .card .card-body .type {
  font-size: 14px;
  color: var(--dark-gray);
  font-weight: 600;
  line-height: 18px;
}
@media screen and (min-width: 992px) {
  .cards .card:hover .card-overlay {
    height: 100%;
  }
}
.cards.type2 {
  flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
  .cards.type2 {
    gap: 30px;
  }
}
.cards.type2 .card {
  transition: all 0.3s linear;
  width: calc(33.3% - 40px);
}
@media screen and (max-width: 640px) {
  .cards.type2 .card {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 480px) {
  .cards.type2 .card {
    width: 100%;
  }
}
.cards.type2 .card .imageWrapper {
  border-radius: 6px;
  overflow: hidden;
}
.cards.type2 .card .imageWrapper img {
  transition: all 0.3s linear;
}
@media screen and (min-width: 992px) {
  .cards.type2 .card:hover {
    background-color: var(--gray3);
  }
  .cards.type2 .card:hover .imageWrapper img {
    transform: scale(1.05);
  }
  .cards.type2 .card:hover .name {
    color: var(--orange);
  }
}
.cards.quad {
  align-items: stretch;
}
@media screen and (max-width: 1280px) {
  .cards.quad {
    gap: 16px;
  }
}
@media screen and (max-width: 991.98px) {
  .cards.quad {
    flex-wrap: wrap;
    gap: 60px 30px;
  }
}
.cards.quad .card {
  width: 25%;
  border: 1px solid var(--gray3);
  background-color: var(--white);
  overflow: visible;
  aspect-ratio: 4/3;
}
@media screen and (max-width: 991.98px) {
  .cards.quad .card {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 570px) {
  .cards.quad .card {
    width: 100%;
    aspect-ratio: initial;
  }
}
.cards.quad .card .card-top {
  position: relative;
  width: 75px;
  height: 75px;
  margin: -37px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 1;
}
@media screen and (max-width: 991.98px) {
  .cards.quad .card .card-top {
    width: 50px;
    height: 50px;
    margin: -25px auto 0 auto;
  }
}
.cards.quad .card .card-top img {
  width: 42px;
  height: 42px;
}
@media screen and (max-width: 991.98px) {
  .cards.quad .card .card-top img {
    width: 24px;
    height: 24px;
  }
}
.cards.quad .card .card-top:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--blue2);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 6px;
  transform: rotate(45deg);
  z-index: -1;
}
.cards.quad .card .card-body {
  padding: 50px 30px 30px;
}
.cards.quad .card .card-body h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 22px;
  text-transform: uppercase;
  text-align: center;
}
.cards.quad .card .card-body .card-text {
  text-align: justify;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--gray2);
}
.cards.info {
  padding: 0 10vw;
  gap: unset;
}
@media screen and (max-width: 1366px) {
  .cards.info {
    padding: 0;
  }
}
@media screen and (max-width: 570px) {
  .cards.info {
    flex-wrap: wrap;
  }
}
.cards.info .card {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 570px) {
  .cards.info .card {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.cards.info .card + .card {
  border-left: 1px solid var(--gray3);
}
@media screen and (max-width: 570px) {
  .cards.info .card + .card {
    border-left: none;
    border-top: 1px solid var(--gray3);
  }
}
.cards.info .card .counter {
  font-weight: 600;
  font-size: 36px;
  line-height: 60px;
  color: var(--blue2);
  display: block;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .cards.info .card .counter {
    font-size: 24px;
    line-height: 40px;
  }
}
.cards.info .card .title {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray2);
  line-height: 18px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .cards.info .card .title {
    font-size: 12px;
    line-height: 18px;
  }
}
.cards.midBanner .card {
  aspect-ratio: 4/3;
}

.trainingsSection {
  padding: 80px 0;
}
@media screen and (max-width: 991.98px) {
  .trainingsSection {
    padding: 30px 0;
  }
}

.commentsSection {
  padding-top: 60px;
  padding-bottom: 60px;
  min-height: 360px;
}
.commentsSection .title {
  font-size: 32px;
  font-weight: 500;
  line-height: 26px;
  text-transform: uppercase;
  text-align: center;
  color: var(--gray);
}
@media screen and (max-width: 991.98px) {
  .commentsSection .title {
    font-size: 20px;
  }
}

#map {
  height: 450px;
}
@media screen and (max-width: 991.98px) {
  #map {
    height: 300px;
  }
}
#map iframe {
  width: 100%;
  height: 100%;
}

.iconList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.iconList .item {
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gray3);
  border-radius: 12px;
  justify-content: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (max-width: 640px) {
  .iconList .item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 480px) {
  .iconList .item {
    width: 100%;
  }
}
.iconList .item img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 90px;
  max-height: 90px;
}
.iconList.type2 .item {
  width: calc(50% - 10px);
  flex-direction: row;
  justify-content: flex-start;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 640px) {
  .iconList.type2 .item {
    width: 100%;
  }
}

.bannerWrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-top: 80px;
}
.bannerWrapper .bannerArea {
  height: 100%;
  background-color: rgba(51, 51, 51, 0.3);
  position: relative;
}
.bannerWrapper .bannerDesc {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding-bottom: 30px;
}
.bannerWrapper .bannerDesc h1 {
  font-size: 32px;
  color: var(--white);
  font-weight: 600;
  line-height: 38px;
  text-transform: uppercase;
}

.contentMain {
  display: flex;
  align-items: flex-start;
  padding-bottom: 100px;
}

.contentHead {
  padding-bottom: 30px;
}
@media screen and (max-width: 991.98px) {
  .contentHead {
    padding-bottom: 10px;
  }
}
.contentHead .title {
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
  color: var(--blue3);
}
@media screen and (max-width: 991.98px) {
  .contentHead .title {
    font-size: 24px;
    line-height: 30px;
  }
}
.contentHead.center {
  text-align: center;
}
.contentHead.center .title {
  text-align: center;
}

.contentColumn {
  padding-top: 50px;
  width: 100%;
}
@media screen and (max-width: 991.98px) {
  .contentColumn {
    padding-top: 30px;
  }
}
.contentColumn.rightContent {
  width: calc(100% - 240px);
  padding-left: 50px;
}
@media screen and (max-width: 991.98px) {
  .contentColumn.rightContent {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }
}

.sidebar {
  width: 240px;
  min-width: 240px;
  background-color: var(--gray4);
  min-height: 400px;
  border-radius: 0 0 30px 0;
  position: relative;
  z-index: 1;
  padding-top: 50px;
}
.sidebar:before {
  content: "";
  background-color: var(--gray4);
  width: 200%;
  height: 100%;
  top: 0;
  right: calc(100% - 1px);
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 991.98px) {
  .sidebar {
    display: none;
  }
}

.sidebarMenu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebarMenu a {
  font-size: 14px;
  color: var(--gray6);
  font-weight: 500;
  line-height: 17px;
  transition: all 0.3s linear;
}
@media screen and (min-width: 992px) {
  .sidebarMenu a:hover {
    color: var(--blue3);
  }
}
.sidebarMenu a.active {
  color: var(--blue3);
}

.acc {
  max-width: 1200px;
  margin: 0 auto;
}
.acc .accTitle {
  font-size: 17px;
  color: var(--dark-gray2);
  height: 65px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s linear;
  font-weight: 500;
  background-color: var(--gray4);
  border-radius: 10px;
  margin-top: 20px;
  padding-left: 27px;
  padding-right: 21px;
}
.acc .accTitle:first-child {
  margin-top: 0;
}
@media screen and (max-width: 1200px) {
  .acc .accTitle {
    font-size: 14px;
    height: 55px;
  }
}
.acc .accTitle .accButton {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 19px;
  height: 19px;
  margin-left: auto;
  cursor: pointer;
}
@media screen and (max-width: 991.98px) {
  .acc .accTitle .accButton {
    width: 14px;
    height: 14px;
  }
}
.acc .accTitle .accButton:before, .acc .accTitle .accButton:after {
  content: "";
  background-color: var(--black);
  position: absolute;
  transition: all 0.3s linear;
  border-radius: 6px;
}
.acc .accTitle .accButton:after {
  width: 100%;
  height: 3px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 991.98px) {
  .acc .accTitle .accButton:after {
    height: 2px;
  }
}
.acc .accTitle .accButton:before {
  height: 100%;
  width: 3px;
  transform: translateX(-50%);
  left: 50%;
  top: 0;
  margin-left: 1px;
}
@media screen and (max-width: 991.98px) {
  .acc .accTitle .accButton:before {
    width: 2px;
    margin-left: 0.5px;
  }
}
.acc .accTitle .accIcon {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray2);
  font-weight: 700;
  font-size: 20px;
}
.acc .accTitle.active {
  color: var(--orange);
  border-radius: 10px 10px 0 0;
}
.acc .accTitle.active .accButton:before {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.acc .accTitle.active .accButton:after {
  transform: translateY(-50%) rotate(180deg);
  background-color: var(--orange);
}
.acc .accTitle.active .accIcon {
  transform: rotate(180deg);
  color: var(--orange);
}
@media screen and (min-width: 992px) {
  .acc .accTitle:hover {
    color: var(--orange);
  }
  .acc .accTitle:hover .accButton:after, .acc .accTitle:hover .accButton:before {
    background-color: var(--orange);
  }
  .acc .accTitle:hover .accIcon {
    color: var(--orange);
  }
}
.acc .accContent {
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 20px;
  background-color: var(--gray4);
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 991.98px) {
  .acc .accContent {
    padding-right: 25px;
  }
}
.acc .accContent.active {
  display: block !important;
  border-bottom: none;
}
.acc .accContent .paragraph {
  font-size: 15px;
  line-height: 28px;
  font-weight: 400;
  color: #4a4a4a;
  margin-top: 0;
}
@media screen and (max-width: 991.98px) {
  .acc .accContent .paragraph {
    font-size: 12px;
    line-height: 22px;
  }
}
.acc .accContent .paragraph p {
  font-size: 15px;
  line-height: 28px;
  font-weight: 400;
  color: #4a4a4a;
}
@media screen and (max-width: 991.98px) {
  .acc .accContent .paragraph p {
    font-size: 12px;
    line-height: 22px;
  }
}
.acc .accContent .paragraph img {
  margin-left: 0;
  margin-right: 0;
  transform: none;
  left: initial;
}

#app {
  min-height: 100vh;
  overflow: hidden;
}

.bgImg {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: -1;
}
.bgImg img {
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0);
  top: 0;
  left: 0;
  right: 0;
  display: none;
  z-index: 9;
}

.bg-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  position: relative;
}

.fancybox__content {
  max-width: 600px;
  border-radius: 15px;
}

.fancybox__content > .f-button.is-close-btn {
  background-color: var(--orange);
  color: var(--white);
  opacity: 1;
  border: none;
  outline: 0;
}

.f-button:focus-visible {
  outline: none;
  box-shadow: none;
}

.modalContent .modalTitle {
  font-size: 24px;
  line-height: 30px;
  color: var(--blue3);
  font-weight: 500;
  margin-bottom: 20px;
}
.modalContent .paragraph {
  font-size: 14px;
  color: var(--dark-gray);
  line-height: 20px;
  font-weight: 500;
}

.paragraph {
  color: var(--gray);
  font-size: 17px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 30px;
}
@media screen and (max-width: 991.98px) {
  .paragraph {
    text-align: justify;
    font-size: 14px;
    line-height: 24px;
  }
}
.paragraph img {
  border-radius: 6px;
  margin-bottom: 20px;
  margin-top: 20px;
  max-height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: auto !important;
  transform: translateX(-50%);
  left: 50%;
}
.paragraph img.note-float-left {
  left: 0;
  margin-left: 0;
  margin-right: 0;
  transform: none;
  margin-right: 50px;
}
.paragraph img .note-float-right {
  left: 0;
  margin-left: 0;
  margin-right: 0;
  transform: none;
  margin-left: 50px;
}
.paragraph ul {
  list-style-type: disc;
  padding-left: 20px;
}
.paragraph ol {
  list-style-type: decimal;
  padding-left: 15px;
  padding-bottom: 20px;
}
.paragraph ol li::marker {
  color: var(--orange);
  font-weight: 500;
}

.hide {
  animation: filterHide 0.3s ease 0s 1 normal forwards;
  transform-origin: center;
  display: none !important;
}

.show {
  animation: filterShow 0.3s ease 0s 1 normal forwards;
  transform-origin: center;
  display: flex !important;
}

.WidgetTitle__Header-sc-ruy1gu-2 {
  display: none !important;
}

.WidgetBackground__Content-sc-1ho7q3r-2.ciCnpO > a {
  display: none !important;
}/*# sourceMappingURL=app.css.map */