:root {
  --neutral-black: #222222;
  --black-color: #000000;
  --white-color: #FFFFFF;
  --red-color: #004B74;
  --gray-color: #EEEEEE;
  --green-color: #00aea5;
}
body{
  font-size: 20px;
}
@font-face {
  font-family: 'Rota-Regular';
  src: url('fonts/Rota-Regular.otf') format('opentype');
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: 'Rota-Light';
  src: url('fonts/Rota-Light.otf') format('opentype');
  font-style: normal;
  font-weight: normal;
}
.font-rota{
  font-family: 'Rota-Regular';
}
.font-rota-light{
  font-family: 'Rota-Light';
}
.space-items-top{
  padding-top: 70px;
}
.space-items-bottom{
  padding-bottom: 70px;
}
.black-color{
  color: var(--black-color)!important;
}
.bg-black{
  background-color: var(--black-color)!important;
}
.green-color{
  color: var(--green-color)!important;
}
.white-color{
  color: var(--white-color)!important;
}
.bg-white{
  background-color: var(--white-color)!important;
}
.red-color{
  color: var(--red-color)!important;
}
.bg-red{
  background-color: var(--red-color)!important;
}
.gray-color{
  color: var(--gray-color)!important;
}
.bg-gray{
  background-color: var(--gray-color)!important;
}
.neutral-black{
  color: var(--neutral-black)!important;
}
.bg-neutral-black{
  background-color: var(--neutral-black)!important;
}
.bg-red-gradient{
  background: rgb(0,75,116);
  background: linear-gradient(90deg, rgba(0,75,116,1) 100%, rgba(28,36,72,1) 98%, rgba(70,127,247,1) 90%);
}
.text-justify{
  text-align: justify;
}
.fs-13 {
    font-size: 0.65em!important;
}
.fs-15{
  font-size: 0.9em!important;
}
.fs-20{
  font-size: 1em!important;
}
.fs-22{
  font-size: 1.1em!important;
}
.fs-25{
  font-size: 1.25em!important;
}
.fs-30{
  font-size: 1.5em!important;
}
.fs-35{
  font-size: 1.75em!important;
}
.fs-40{
  font-size: 2em!important;
}
.fs-50{
  font-size: 2.5em!important;
}
.fs-60{
  font-size: 3em!important;
}
.fw-100{
  font-weight: 100!important;
}
.fw-200{
  font-weight: 200!important;
}
.fw-300{
  font-weight: 300!important;
}
.fw-400{
  font-weight: 400!important;
}
.fw-500{
  font-weight: 500!important;
}
.fw-600{
  font-weight: 600!important;
}
.fw-700{
  font-weight: 700!important;
}
.fw-800{
  font-weight: 800!important;
}
.lh-0{
  line-height: 0!important;
}
.lh-10{
  line-height: .5em!important;
}
.lh-20{
  line-height: 1em!important;
}
.lh-30{
  line-height: 1.5em!important;
}
.lh-50{
  line-height: 2.5em!important;
}
.lh-60{
  line-height: 3em!important;
}
.h120{
  height: 120px;
}
.p100{
  padding: 0 100px;
}
.p200{
  padding: 0 200px;
}
.mauto{
  margin: 0 auto;
}
/* HEADER */

#header-wrap{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    justify-content: space-around;
    transition: 0.7s;
    z-index: 10;
    background-color: #222222c4;
}
.top-contact{
    background-color: #00AEA5;
    padding-bottom: 5px;
}
.down {
    transform: translateY(-100%);
    top: 0px;
    background-color: #00000082;
}
.navbar-expand-lg {
  padding: 0 50px;
  background-color: #fff;
}
.nav-link{
  font-family: 'Rota-Light';
  color: #004B74;
  font-size: 17px;
}
.nav-item{
  padding: 0 10px;
}
.link-header{
  font-size: 15px;
  text-decoration: none;
  padding: 0 50px;
  color: var(--white-color);
}
.link-header:hover{
  color: var(--red-color);
}

/* MAIN */
.main{
  height: 100vh;
  display: flex;
  align-items: center;
  padding-bottom: 50px;
  justify-content: end;
  flex-direction: column;
  background-size: cover;
  background-image: url("../images/Back-desktop.webp");
}
.main2{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: #004B74;
}
.logo-main{
  width: 150px;
  margin-bottom: 20px;
}
.img-region{
  width: 80%;
}
.img-issa{
  width: 50%;
}
/* HOME */
#home {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: end;
  position: relative;
  overflow: hidden;
  padding: 0;
  background-size: cover;
  background-position: center;
  flex-direction: column;
}
.button-red{
  background-color:  var(--red-color);
  padding: 6px 40px 8px 40px;
  color: var(--white-color);
  text-decoration: none;
  border-radius: 10px;
  text-align: center;
}
.button-red:hover{
  border: 1px solid var(--white-color);
  background-color: transparent;
  color: var(--white-color);
}
.buttonn{
  background-color:  var(--red-color);
  padding: 2px 60px 4px 60px;
  color: var(--white-color);
  text-decoration: none;
  border-radius: 3px;
  text-align: center;
}
.buttonn:hover{
  background-color: transparent;
  color: var(--red-color);
  border: 1px solid var(--red-color);
}
.transparent-white{
  border: 1px solid var(--white-color);
  background-color: transparent;
  padding: 2px 70px 4px 70px;
  color: var(--white-color);
  text-decoration: none;
  text-align: center;
}
.transparent-white:hover{
  background-color:  var(--white-color);
  color: var(--red-color);
  border: 1px solid var(--red-color);

}
.black-button{
  background-color: var(--red-color);
  padding: 8px 30px 10px 30px;
  color: var(--white-color);
  text-decoration: none;
  border-radius: 50px;
  text-align: center;
  font-weight: 100;
  font-size: 15px;
}
.black-button:hover{
  background-color: var(--white-color);
  color: var(--black-color);
}
.grid-container-3 {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  gap: 10px;
  line-height: 0;
}
.text-services {
    position: absolute;
    top: 65%;
    left: 10%;
    color: #000;
    opacity: 0;
    text-align: start;
    padding-right: 60px;
}
.grid-item {
    position: relative;
    display: inline-block;
    text-align: center;
    outline: 0;
    outline-width: 0;
    box-shadow: 0;
}
.grid-item {
    position: relative;
    display: inline-block;
    text-align: center;
    outline: 0;
    outline-width: 0;
    box-shadow: 0;
}
.grid-item {
    cursor: pointer;
    position: relative;
    z-index: 0;
}
.grid-item img{
    border-radius: 20px;
}
.grid-item .text-services {
    opacity: 1;
    transition: 150ms linear;
    z-index: 10;
}
.container-flex{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 150px;
}
.flex-end{
    display: flex;
    justify-content: end;
    align-items: center;
    padding-right: 40px;
    border-right: 1px solid var(--red-color);
}
.flex-star{
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    padding-left: 40px;
}
#footer{
  padding: 100px 70px;
}
#footer a{
  text-decoration: none;
}
.d-flex-icons{
  display: flex;
}

/* Apply */

.img-apply{
  width: 85%;
}
.text-shadow{
    text-shadow: 1px 0px 2px black;
}
.form-control {
    border-radius: 100px;
}
textarea.form-control {
    min-height: calc(1.5em + 0.75rem + 2px);
    border-radius: 10px;
}
label {
    display: inline-block;
    font-size: 15px;
    font-family: 'Rota-Light';
}
.btn-submit {
    cursor: pointer;
    border-radius: 50px;
    color: var(--white-color);
    background-color: var(--red-color);
    border: none;
    padding: 6px 50px 6px 50px;
    font-family: 'Rota-Regular';
    box-shadow: 1px 2px 3px #000000ba;

}
.btn-submit:hover {
    background-color: var(--white-color)!important;
    color: var(--red-color)!important;
}
.btn-submit-black {
    cursor: pointer;
    border-radius: 50px;
    color: var(--white-color);
    background-color: var(--red-color);
    border: none;
    padding: 8px 50px 8px 50px;
    font-family: 'Rota-Regular';
    box-shadow: 1px 2px 3px #000000ba;

}
.btn-submit-black:hover {
    background-color: #00aea5!important;
    color: var(--white-color)!important;
}

/*  SERVICES  */
.tab{
    padding: 20px 40px;
    background-color: #DEEEEE;
    border-radius: 20px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.tab_a{
    color: var(--red-color);
    text-decoration: none;
    padding: 40px;
    font-family: 'Rota-Regular';
    font-weight: 900;
}
.tab_a:hover{
  color: #00aea5;
}
.tab_a.active{
  text-decoration: underline;
}
.img-s1{
  width: 90%;
}
.content-s2{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.grid-5{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
  line-height: 0;
}
.circle{
  list-style: circle;
}
.img-icons{
  width: 100%;
}
.title{
    width: 25%;
}
.none-lg{
  display: none;
}
.none-xs{
  display: block;
}

/*************************** RESPONSIVE ********************************/
@media (max-width: 992px) {
  section {
    display: block;
    overflow-x: hidden;
}
body{
  font-size: 16px;
}
.navbar-expand-lg {
    padding: 0 10px;
}
  .none-lg{
    display: block;
  }
  .none-xs{
    display: none;
  }
  .link-header {
    padding: 0 12px;
}
.navbar-toggler:focus {
    box-shadow: none!important;
}
.navbar-toggler{
  border: none;
}
/*.navbar-toggler-icon {
    background-image: url("../images/icons/menu.svg")!important;
}*/
.text-center-xs{
  text-align: center;
}
.space-items-top{
 padding-top: 30px;
}
.space-items-bottom {
    padding-bottom: 30px;
}
.grid-container-3 {
    grid-template-columns: 1fr;
}
.text-services {
    opacity: 1;
}
.lg-pright0{
  padding-right: 0;
}
.p100{
  padding: 0;
}
.container-flex {
    padding-right: 30px;
    margin-top: 30px;
}
.img-content{
  width: 100%;
}
.p200 {
    padding: 0;
}
.flex-end {
    justify-content: start;
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--red-color);
}
.flex-star {
    padding-left: 10px;
    padding-top: 20px;
}
.fs-15 {
    font-size: 0.95em !important;
}
.fs-20 {
    font-size: 1.1em !important;
}
.fs-40 {
    font-size: 1.7em !important;
}
#footer {
    padding: 50px 70px;
    text-align: center;
}
.align-items-center-xs{
  align-items: center!important;
}
.apply {
    height: 60vh!important;
}
.contact {
    height: 60vh!important;
}
.img-apply{
  width: 100%;
}
.order-xs-1 {
    order: 1!important;
  }
.order-xs-2 {
    order: 2!important;
  }
  .tab {
      padding: 10px 0;
  }
  .tab_a {
    padding: 0;
    font-size: 15px;
}
.tab_center{
  padding: 0 10px;
}
.tab-content {
    padding: 0px 20px;
}
.grid-5{
  grid-template-columns: 1fr 1fr;
}
.title{
    width: 40%;
}
.img-s1{
  width: 100%;
}
.main {
  background-position: top;
  text-align: center;
  height: 30vh;
}
.main{
  background-image: url("../images/back-mobile.webp");
}
.main2 {
  padding: 20px 0;
}
.img-region {
  width: 100%;
}
.col-xs-3{
  flex: 0 0 auto;
  width: 25%;
}
.col-xs-6{
  flex: 0 0 auto;
  width: 50%;
}
.col-xs-9{
  flex: 0 0 auto;
  width: 75%;
}
.img-issa {
    width: 30%;
    margin-bottom: 30px;
}
}
