﻿.header {
  background: #002442;
  color: white;
  display: flex;
  align-items: center;
  padding: 20px 4.6%;
  border-top: 0px solid white;
  transition: all 0.15s ease-in;
  font-size: 1.6rem;
}
.header .header-title {
  flex: 1;
  font-size: 2rem;
}
.header .header-title .logo-title {
  text-decoration: none;
  color: white;
}
.header .header-lang {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: right;
}
.header .header-lang .search-wrap {
  position: relative;
  margin-right: 12%;
  display: none !important;
  cursor: pointer;
}
.header .header-lang .search-wrap .search-box .form-control {
  display: inline-block;
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid white;
  height: 25px;
  color: white;
}
.header .header-lang .search-wrap .search-box .form-control-feedback {
  vertical-align: bottom;
  display: inline-block;
  pointer-events: none;
  color: white;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}
.header .header-lang .search-wrap .search-box input {
  box-shadow: 2px 3px 10px rgba(55, 52, 52, 0.45);
  width: auto;
}
.header .header-lang .search-wrap .search-item-container {
  display: none;
  top: 30px;
  border: 1px solid #eee;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
  border-radius: 5px;
  background: white;
  text-align: right;
  max-height: 250px;
  overflow: auto;
  text-align: left;
}
.header .header-lang .search-wrap .search-item-container .item .search-item {
  background: #002442;
  padding: 5px 15px;
  text-decoration: none;
  color: white;
}
.header .header-lang .search-wrap .search-item-container .item .search-item:hover {
  background: white;
  color: black;
}
.header .header-lang .languages {
  display: inline-block;
  margin-right: 10px;
}
.header .header-lang .languages a {
  text-decoration: none;
  color: white;
  text-transform: capitalize;
  padding: 0 10px;
  border-right: 1px solid;
}
.header .header-lang .languages a:last-child {
  border-right: none;
}
.header .header-lang .toggle-menu svg {
  transform: rotate(0);
  transition: 0.5s all;
  cursor: pointer;
}
.header .header-lang .toggle-menu svg:hover {
  transform: rotate(45deg);
}
.header .header-lang .toggle-menu svg:hover .svg-menu-icon {
  stroke: var(--bs-primary);
}
.header .header-lang .toggle-menu svg.active {
  transform: rotate(45deg);
}
.header .header-lang .toggle-menu svg.active .svg-menu-icon {
  stroke: var(--bs-primary);
}
.header.open {
  right: 0;
}

.menu-section {
  position: fixed;
  left: 20px;
  right: 20px;
  top: 20px;
  bottom: 20px;
  background: white;
  z-index: 5;
  padding: 20px 4.6%;
  flex-direction: column;
  overflow: hidden;
}
.menu-section.active {
  display: flex !important;
}
.menu-section .menu-section-header {
  text-align: right;
  flex: 0 0 70px;
}
.menu-section .menu-section-header .toggle-menu {
  display: inline-block;
}
.menu-section .menu-section-header .toggle-menu svg {
  transform: rotate(0);
  transition: 0.5s all;
  cursor: pointer;
}
.menu-section .menu-section-header .toggle-menu svg.active {
  transform: rotate(45deg);
}
.menu-section .menu-section-header .toggle-menu svg.active .svg-menu-icon {
  stroke: var(--bs-primary);
}
.menu-section .menu-section-header .toggle-menu svg:hover {
  transform: rotate(0);
}
.menu-section .menu-section-header .search-box-icon {
  display: inline-block;
  margin-right: 20px;
  font-size: 2rem;
  vertical-align: middle;
  cursor: pointer;
}
.menu-section .menu-section-header .search-box-icon .fa-search {
  font-size: 2rem;
}
.menu-section .menu-section-header .search-box-icon:hover {
  color: var(--bs-primary);
}
.menu-section .menu-section-header .menu-title {
  display: inline-block;
  float: left;
  font-size: 2.3rem;
  font-weight: bold;
  padding-left: 20px;
}
.menu-section .menu-section-body {
  flex: 1;
  overflow: auto;
}
.menu-section .menu-section-body ul {
  list-style: none;
  padding: 0;
}
.menu-section .menu-section-body .items.level-1 {
  display: flex;
  flex-wrap: wrap;
  font-size: 2.3rem;
  height: 100%;
  gap: 30px 0;
}
.menu-section .menu-section-body .items.level-1 > .item {
  flex: 0 0 calc(50% - 30px);
  border-left: 1px solid #dedddb;
  padding-left: 20px; /* &:nth-child(1), &:nth-child(2) { border-left: 0; }*/
}
.menu-section .menu-section-body .items.level-1 > .item a {
  font-weight: bold;
}
.menu-section .menu-section-body .items.level-1 > .item:nth-child(5) .items {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 400px;
}
.menu-section .menu-section-body .items.level-1 > .item:nth-child(6) .items {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 400px;
}
.menu-section .menu-section-body .items.level-1 .level-2 {
  margin-top: 10px;
}
.menu-section .menu-section-body .items.level-1 .level-2 .item {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.menu-section .menu-section-body .items.level-1 a {
  text-decoration: none;
  color: black;
}
.menu-section .menu-section-body .items.level-1 a:hover {
  color: var(--bs-primary);
}
.menu-section .menu-section-body .items.level-1:last-child {
  margin-top: 30px;
}
.menu-section .menu-section-body .search-wrap {
  position: relative;
  cursor: pointer;
}
.menu-section .menu-section-body .search-wrap .search-box {
  display: flex;
  align-items: center;
  width: 50%;
  margin: 0 auto;
  position: relative;
}
.menu-section .menu-section-body .search-wrap .search-box .form-control {
  width: 100%;
  border-radius: 5px;
  font-size: 2.5rem;
  padding: 10px 10px;
  border: 3px solid var(--bs-secondary);
}
.menu-section .menu-section-body .search-wrap .search-box .form-control::placeholder {
  color: var(--bs-secondary);
}
.menu-section .menu-section-body .search-wrap .search-box .form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 46, 80, 0.5) !important;
}
.menu-section .menu-section-body .search-wrap .search-box .form-control-feedback {
  vertical-align: bottom;
  display: inline-block;
  pointer-events: none;
  color: white;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}
.menu-section .menu-section-body .search-wrap .search-box .fa-search {
  pointer-events: none;
  font-size: 2rem;
  margin-left: -40px;
  color: var(--bs-secondary);
}
.menu-section .menu-section-body .search-wrap .search-item-container {
  display: none;
  top: 55px;
  border: 1px solid #acacac;
  border-top: none;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
  border-radius: 5px;
  background: white;
  text-align: right;
  max-height: 250px;
  overflow: auto;
  text-align: left;
  font-size: 1.5rem;
}
.menu-section .menu-section-body .search-wrap .search-item-container .item .search-item {
  background: #ffffff;
  padding: 10px 15px;
  text-decoration: none;
  color: black;
}
.menu-section .menu-section-body .search-wrap .search-item-container .item .search-item:nth-child(2n+1) {
  background: #eaeaea;
}
.menu-section .menu-section-body .search-wrap .search-item-container .item .search-item:hover {
  background: var(--bs-primary);
  color: white;
}
.menu-section .menu-section-footer {
  flex: 0 0 70px;
  text-align: right;
  padding: 20px 0;
  font-size: 2.5rem;
  display: flex;
  flex-wrap: wrap;
}
.menu-section .menu-section-footer .footer-item {
  flex: 1;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: left;
  padding-left: 20px;
}
.menu-section .menu-section-footer .footer-item a {
  margin-right: 15px;
}
.menu-section .menu-section-footer .social-media {
  flex: 1;
}
.menu-section .menu-section-footer a {
  text-decoration: none;
  color: black;
}

.second-color .menu-section {
  padding: 30px 4.6%;
}

@media (max-width: 1200px) {
  .menu-section .menu-section-body .items.level-1 {
    font-size: 1.8rem;
  }
  .menu-section .menu-section-body .items.level-1 .level-2 .item {
    font-size: 1rem;
  }
}
@media (max-width: 992px) {
  .menu-section .menu-section-body .search-wrap .search-box {
    width: 100%;
  }
  .menu-section .menu-section-body .items.level-1 {
    height: auto;
    flex-direction: column;
  }
  .menu-section .menu-section-body .items.level-1 .level-2 {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .header .header-lang {
    flex: auto;
  }
  .header .header-lang .toggle-menu svg {
    width: 35px;
  }
  .header .header-lang .languages {
    font-size: 1.4rem;
  }
  .header .header-lang .search-wrap {
    display: none !important;
  }
  .menu-section {
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
  }
  .menu-section .menu-section-header .toggle-menu svg {
    width: 35px;
  }
  .menu-section .menu-section-footer {
    text-align: center;
  }
  .menu-section .menu-section-footer .footer-item {
    flex: 0 0 100%;
    margin-bottom: 10px;
    text-align: center;
    padding-left: 0;
  }
  body.second-color .header .search-wrap * {
    display: none !important;
  }
}
.navigation-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  overflow: hidden;
}
.navigation-left .menu-nav {
  flex: 0 0 81%;
  display: flex;
  align-items: center;
}
.navigation-left .menu-nav ul {
  list-style: none;
  padding: 0;
  text-align: left;
}
.navigation-left .menu-nav ul .item {
  font-size: 1.6rem;
  font-weight: 700;
  left: -200%;
  transition: 1s all;
  position: relative;
}
.navigation-left .menu-nav ul .item.animate {
  left: 0;
}
.navigation-left .menu-nav ul .item + .item {
  margin-top: 15px;
}
.navigation-left .menu-nav ul .item.active {
  position: relative;
}
.navigation-left .menu-nav ul .item.active a {
  color: var(--bs-primary);
}
.navigation-left .menu-nav ul .item.active:before {
  content: "";
  border-top: 1px solid var(--bs-primary);
  left: -35px;
  top: 12px;
  position: absolute;
  width: 20px;
}
.navigation-left .menu-nav ul .item.active:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bs-primary);
  position: absolute;
  left: -15px;
  top: 10px;
}
.navigation-left .menu-nav .footer-menu-container {
  display: none;
}
.navigation-left .contact-information {
  color: white;
  font-weight: bold;
  font-size: 1.4rem;
}
.navigation-left .contact-information .content {
  background: transparent;
  transition: background 0.3s ease-in;
}
.navigation-left .contact-information .content .telephone a {
  font-size: 1.4rem;
}
.navigation-left .contact-information .content .telephone img {
  width: 24px;
  height: 24px;
}
.navigation-left .contact-information p {
  margin: 0;
}
.navigation-left a {
  color: white;
  text-decoration: none;
}

@media (max-width: 1600px) {
  .navigation-left .menu-nav ul .item {
    font-size: 1.4rem;
  }
}
@media (max-width: 1200px) {
  .navigation-left {
    display: none;
  }
}
.navigation-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  overflow: hidden;
}
.navigation-right .menu-nav {
  display: flex;
  align-items: center;
  flex: 0 0 81%;
}
.navigation-right .menu-nav .items {
  list-style: none;
  padding: 0;
  text-align: right;
}
.navigation-right .menu-nav .items .item {
  font-size: 1.6rem;
  font-weight: 700;
  right: -200%;
  transition: 1s all;
  position: relative;
}
.navigation-right .menu-nav .items .item.animate {
  right: 0;
}
.navigation-right .menu-nav .items .item + .item {
  margin-top: 15px;
}
.navigation-right .menu-nav .items .item.active {
  position: relative;
}
.navigation-right .menu-nav .items .item.active a {
  color: var(--bs-primary) !important;
}
.navigation-right .menu-nav .items .item.active:before {
  content: "";
  border-top: 1px solid var(--bs-primary);
  right: -46px;
  top: 12px;
  position: absolute;
  width: 30px;
}
.navigation-right .menu-nav .items .item.active:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bs-primary);
  position: absolute;
  right: -22px;
  top: 10px;
}
.navigation-right a {
  text-decoration: none;
  color: white;
}
.navigation-right .follow-us {
  color: white;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  width: 100%;
  gap: 10px;
  justify-content: center;
  background: transparent;
  transition: background 0.3s ease-in;
}
.navigation-right .follow-us .title {
  margin: 0;
}
.navigation-right .follow-us .logo img {
  width: 24px;
  height: 24px;
}
.navigation-right .follow-us .content {
  text-align: center;
}
.navigation-right.open {
  right: 0;
}

@media (max-width: 1600px) {
  .navigation-right .menu-nav .items .item {
    font-size: 1.4rem;
  }
}
@media (max-width: 1200px) {
  .navigation-right {
    display: none;
  }
}
html {
  font-size: 10px;
}

body {
  transition: all 0.3s ease-in;
  height: 100vh;
  overflow: hidden;
  padding: 20px;
  background: white;
}
body .bg-img {
  background: rgb(2, 19, 34) url("/UserFiles/DefaultPage/Vector%20(1).png");
  height: 100%;
  transition: all 0.3s ease-in;
}
body .bg-background-black {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}
body .content-wrapper-container {
  display: flex;
  height: calc(100vh - 126px);
}
body .content-wrapper-container .content-wrapper {
  flex: 4;
  height: 100%;
  overflow: auto;
  scroll-behavior: smooth;
}
body .content-wrapper-container .content-wrapper::-webkit-scrollbar {
  display: none;
}
body .content-wrapper-container .content-wrapper .mobile-logo {
  display: none;
}
body .section {
  padding: 0 50px;
}
body .section .container-fluid {
  padding: 0;
}
body .section .section-title {
  background: #1c424f;
  text-align: left;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  font-size: 2rem;
}
body .section .section-dscp {
  border: 1px solid var(--bs-secondary);
  padding: 15px;
  color: var(--bs-secondary);
  font-size: 1.6rem;
  line-height: 2;
  text-align: justify;
}
body .section .btn-section {
  background: #4D908E;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  display: block;
  font-size: 1.8rem;
  text-align: center;
}
body .section .btn-section:after {
  content: "\f30b";
  font-size: 20px;
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
  margin-left: 20px;
  vertical-align: middle;
}
body .section .img-container img {
  width: 100%;
}
body.second-color {
  background: #02335c;
}
body.second-color .bg-img {
  background: white;
}
body.second-color .header {
  padding: 10px 4.6%;
  border-top: 20px solid white;
}
body.second-color .header .search-wrap {
  display: block !important;
}
body.second-color .navigation-left {
  border-right: 1px solid var(--bs-secondary);
}
body.second-color .navigation-left .contact-information {
  width: 100%;
  text-align: center;
}
body.second-color .navigation-left .contact-information .content {
  background: #022643;
  padding: 10px 0;
}
body.second-color .navigation-left .contact-information .content a {
  color: white;
}
body.second-color .navigation-left a {
  color: var(--bs-secondary);
}
body.second-color .navigation-right {
  border-left: 1px solid var(--bs-secondary);
}
body.second-color .navigation-right .follow-us {
  width: 100%;
  background: #022643;
  padding: 10px 0;
}
body.second-color .navigation-right a {
  color: var(--bs-secondary);
}
body.nav-open {
  background: #02335c;
}
body .show-mobile {
  display: none;
}

@media (max-width: 1600px) {
  body .section .btn-section {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  body {
    padding: 0;
  }
  body.second-color .header {
    border: none;
  }
  body .section {
    padding: 0 14px;
  }
  body .section .btn-section {
    font-size: 1.6rem;
  }
  body .section .section {
    padding: 0 24px;
  }
  body .section .section .btn-section {
    font-size: 1.6rem;
  }
  body .content-wrapper-container {
    height: calc(100dvh - 64px);
  }
  body .show-mobile {
    display: block;
  }
  body .hide-mobile {
    display: none;
  }
}
