﻿@import url("/assets/fonts/Roboto/font-roboto.css");
@media only screen and (min-width: 1200px) {
  .container {
    min-width: 80%;
  }
}
/******* RESPONSIVE ********/
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope/Manrope-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "elmessiri-regular";
  src: url("../../fonts/el-messiri/elmessiri-regular.otf") format("opentype");
}
* {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

body {
  box-sizing: border-box;
  font-size: 14px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-family: Manrope, Roboto, Helvetica, Arial, sans-serif;
}

p {
  margin: 0 auto;
}

a:hover {
  text-decoration: none;
}

a:any-link:hover {
  cursor: pointer;
}

ul li {
  list-style: none;
}

img {
  max-width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: cover;
}

/*.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
[class*="col-"] {
    float: left;
    padding-left: 0;
    padding-right:0;
}*/
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
}

body.overlay-active::before {
  opacity: 1;
  visibility: visible;
}

header {
  width: 100%;
  position: relative;
}
header .header-content {
  display: block;
  padding: 10px 0;
}
header .page-title {
  display: block;
  align-items: center;
}
header .head-g1 {
  display: none;
  padding-left: 30px;
}
header .head-g2 {
  padding-left: 10px;
  padding-right: 10px;
}
header .head-g2 .title {
  margin-top: 10px;
}
header .head-g2 .title h1 {
  padding-right: 40px;
}
header .head-g2 .title h2 {
  width: 100%;
  text-align: center;
}
header .head-g1 img, header .head-g2 img {
  width: auto;
  height: 50px;
  margin-right: 10px;
  object-fit: contain;
}
header .head-g1 .title, header .head-g2 .title {
  color: #2155ce;
  text-transform: uppercase;
}
header .head-g1 .title h1, header .head-g2 .title h1 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}
header .head-g1 .title h2, header .head-g2 .title h2 {
  font-size: 14px;
  margin: 0;
}
header .head-g1 .title h2:last-child, header .head-g2 .title h2:last-child {
  color: #d26711;
  font-weight: 500;
}
header .menu-pc {
  display: none;
}
header .menu-pc .menu {
  display: flex;
  justify-content: center;
  height: 100%;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin-left: 0;
}
header .menu-pc .menu .active {
  color: #2155ce;
}
header .menu-pc .menu li {
  position: relative;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
header .menu-pc .menu li a {
  color: #021639;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0px 5px 0px 5px;
}
header .menu-pc .menu li a:hover, header .menu-pc .menu li a.active {
  color: #2155ce;
}
header .menu-pc .menu .login .dropdown-menu {
  right: 0 !important;
  left: auto !important;
}
header .menu-pc .menu .login .dropdown-menu a {
  cursor: pointer;
}
header .menu-pc .menu .login .nav-item .nav-link {
  background-color: #2155ce;
  color: #fff;
  padding: 7px !important;
  border-radius: 15px;
  cursor: pointer;
}

/*** Mobile **/
#overlay-button {
  position: fixed;
  right: 10px;
  top: 10px;
  padding: 15px 5px;
  z-index: 11;
  cursor: pointer;
  user-select: none;
  border-radius: 3px;
  background: rgba(33, 85, 206, 0.5);
}
#overlay-button span {
  height: 3px;
  width: 24px;
  border-radius: 2px;
  background-color: white;
  position: relative;
  display: block;
  transition: all 0.2s ease-in-out;
}
#overlay-button span:before {
  top: -7px;
  visibility: visible;
}
#overlay-button span:after {
  top: 7px;
}
#overlay-button span:before, #overlay-button span:after {
  height: 3px;
  width: 24px;
  border-radius: 2px;
  background-color: white;
  position: absolute;
  content: "";
  transition: all 0.2s ease-in-out;
}
#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
  background: #fff;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox]:checked ~ #overlay {
  visibility: visible;
}

input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
  background: transparent;
}
input[type=checkbox]:checked ~ #overlay-button span:before {
  transform: rotate(45deg) translate(5px, 5px);
  opacity: 1;
}
input[type=checkbox]:checked ~ #overlay-button span:after {
  transform: rotate(-45deg) translate(5px, -5px);
}

#overlay {
  height: 100vh;
  width: 75%;
  top: 0;
  right: 0;
  background: #004085;
  visibility: hidden;
  position: fixed;
  z-index: 10;
}
#overlay.active {
  visibility: visible;
}
#overlay ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  text-align: center;
  height: 100%;
  padding-left: 6%;
  list-style-type: none;
  margin-top: 75px;
}
#overlay ul li {
  padding: 1em;
}
#overlay ul li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}
#overlay ul li a:hover {
  color: #d26711;
  filter: brightness(1.5);
}
#overlay ul li .dropdown-toggle {
  font-size: 1rem;
  background-color: #fff;
  color: #232323;
  padding: 6px;
  border-radius: 24px;
  cursor: pointer;
  margin-left: 85px;
}
#overlay ul li .dropdown-menu .dropdown-item {
  font-size: 17px;
  cursor: pointer;
}
#overlay ul .mnu-line {
  border-bottom: dotted 2px #fff;
  margin-bottom: 10px;
  margin-top: 10px;
  width: 92%;
}
#overlay ul .mnu a {
  color: #fff;
  cursor: pointer;
}
#overlay .head-g2 {
  position: absolute;
  top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#overlay .head-g2 img {
  width: auto;
  height: 50px;
  object-fit: contain;
}
#overlay .head-g2 a {
  height: 100%;
}
#overlay .head-g2 .title {
  height: 100%;
  justify-content: center;
  gap: 10px;
  color: #2155ce;
  text-transform: uppercase;
  padding: 0 15px;
}
#overlay .head-g2 .title h1 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}
#overlay .head-g2 .title h2 {
  font-size: 14px;
  margin: 0;
  color: #fff;
}
#overlay .head-g2 .title h2:last-child {
  color: #d26711;
  font-weight: 500;
  filter: brightness(1.5);
}

/******** RESPONSIVE **********/
@media only screen and (min-width: 1200px) {
  .header-content {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
  .menu-pc {
    margin-top: 0px !important;
    width: auto !important;
  }
  .menu {
    border: none !important;
  }
  .menu li a {
    font-size: 1vw !important;
    padding: 7px 20px 7px 20px !important;
  }
}
@media only screen and (min-width: 992px) {
  header .header-content .head-g1 .title h1 {
    font-size: 1.2vw;
  }
  header .header-content .head-g1 .title h2 {
    font-size: 0.8vw;
  }
}
@media only screen and (min-width: 768px) {
  header .header-content {
    max-width: 100%;
  }
  header .page-title {
    display: flex !important;
  }
  header .head-g1 {
    display: block !important;
  }
  header .head-g1 img {
    height: 50px;
  }
  header .head-g1 .title h1 {
    font-size: 1rem;
  }
  header .head-g1 .title h2 {
    font-size: 0.8rem;
  }
  header .head-g2 {
    display: none;
  }
  header .menu-pc {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
    margin-top: 10px;
  }
  header .menu {
    width: 100%;
    border-bottom: solid 1px #2155ce;
    border-top: solid 1px #2155ce;
  }
  header .menu li a {
    font-size: 0.8rem;
    padding: 10px 20px 10px 20px;
  }
  header .menu_mobile, header #overlay-button {
    display: none;
  }
}
@media only screen and (max-width: 376px) {
  .modal-dialog {
    width: 100% !important;
  }
}
