/* Fonts */
:root {
  --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Lato", sans-serif;
}



/* Global Colors */
:root {
  --background-color: #ffffff;
  --background-color-rgb: 255, 255, 255;
  --default-color: #212529;
  --default-color-rgb: 33, 37, 41;
  --primary-color: #66C5F0;
  --primary-color-rgb: 54, 168, 221;
  --secondary-color: #224563;
  --secondary-color-rgb: 50, 53, 58;
  --contrast-color: #ffffff;
  --contrast-color-rgb: 255, 255, 255;
  --primary-hover: #fff;
  --secondary-hover: rgb(180, 180, 180);
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    /*  font-family: var(--default-font);*/
    font-family: 'Poppins', sans-serif !important;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: rgba(var(--primary-color-rgb), 0.7);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--contrast-color);
  font-family: var(--heading-font);
}

section {
  color: var(--default-color);
  background-color: var(--background-color);
/*  padding: 60px 0;*/
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  padding: 15px 20px;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--contrast-color);
}

.header .logo span {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}

.header .choose-lang,
.header .choose-lang:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  transition: 0.3s;
}

.header .choose-lang:hover,
.header .choose-lang:focus:hover {
  color: var(--contrast-color);
}

.header .choose-lang .active {
  color: #66C5F0;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .choose-lang {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

}

/* Global Scroll Margin Top
------------------------------*/
section {
  scroll-margin-top: 90px;
}

@media (max-width: 1199px) {
  section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

    /*--------------------------------------------------------------
    # Footer
    --------------------------------------------------------------*/
.footer {
    color: var(--contrast-color);
    font-size: 14px;
    /*margin-top: 30px;*/
    /*padding-bottom: 10px;*/
    bottom: 0;
    width: 100%;
/*    position: fixed; */   
}

    @media screen and (max-width: 768px) {
        .footer {
            position: relative;
        }
    }

    .footer .footer-top {
      padding-top: 20px;
    }

    .footer .footer-about p {
      font-size: 14px;
      font-family: var(--heading-font);
      text-align: center;
    }

/*--------------------------------------------------------------
# Change image background
--------------------------------------------------------------*/
.gallery-thumbnails img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  cursor: pointer;
  filter: grayscale(1);
  border-radius: 5px;
  transition: all 1s ease;
}

.img-selected {
  width: 40px !important;
  height: 40px !important;
  border: 2px solid #fff;
}

@media (min-width: 576px) {
  .gallery-thumbnails img {
      width: 50px;
      height: 50px;
      border-radius: 10px;
  }

  .gallery-thumbnails img:hover {
    width: 60px;
    height: 60px;
    box-shadow: 0px 0px 20px 0 rgba(255,255,255,.5);
  }
  
  .img-selected {
    width: 60px !important;
    height: 60px !important;
    border: 2px solid #fff;
  }
}

@media (min-width: 992px) {
  .gallery-thumbnails img {
      width: 70px;
      height: 70px;
  }

  .gallery-thumbnails img:hover {
      width: 90px;
      height: 90px;
  }

  .img-selected {
      width: 90px !important;
      height: 90px !important;
      border: 4px solid #fff;
  }
}

@media (min-width: 1200px) {
  .gallery-thumbnails img {
      width: 80px;
      height: 80px;
  }

  .gallery-thumbnails img:hover {
      width: 100px;
      height: 100px;
  }

  .img-selected {
      width: 100px !important;
      height: 100px !important;
      border: 4px solid #fff;
  }
}

/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
/* Hero Section - Home Page
------------------------------*/

#main {
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}

#hero {
    flex: 1; 
    display: flex;
    flex-direction: column;
}


 .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.logo h1 {
    font-size: 24px;
    margin: 0;
    font-weight: 600;
    color: var(--contrast-color);
}

.logo span {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    padding-left: 3px;
}
.hero {
    /*background: linear-gradient(90deg,rgba(55, 120, 161, 1) 0%, rgba(46, 142, 201, 1) 50%, rgba(38, 115, 166, 1) 40%), url(../images/Bg9.jpg);*/
    background: linear-gradient(to bottom, rgba(57, 173, 219, .25) 0%, rgba(42, 60, 87, .4) 100%), linear-gradient(135deg, rgb(20 144 139 / 40%) 0%, rgba(9, 39, 86, .5) 100%), url(../images/Bg5.png);
    /*background: white;*/
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
    position: relative;
    /*padding: 160px 0 80px 0;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
.title-text {
    display: flex;
    font-size:30px;
    font-weight: 600;
}
.hero .container {
  position: relative;
  z-index: 3;
}


/*--------------------------------------------------------------
# Login Form
--------------------------------------------------------------*/
.login_wrapper {
    margin-top: 20px;
    overflow: hidden;
    max-width: 500px;
    background: rgba(255, 255, 255,1);
    padding: 20px 60px;
    border-radius: 5px 5px 0px 0px;
    box-shadow: 0px 15px 20px rgba(0,0,0,0.2);
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    margin-bottom: 20px;
}
.login_wrapper .title-text{
  display: flex;
  width: 200%;
}
.login_wrapper .title {
    width: 50%;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
    margin-top: 20px;
}
.login_wrapper .slide-controls{
  position: relative;
  display: flex;
  height: 50px;
  width: 100%;
  overflow: hidden;
  margin: 30px 0 10px 0;
  justify-content: space-between;
  border: 1px solid lightgrey;
  border-radius: 5px;
}
.slide-controls .slide{
  height: 100%;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 48px;
  cursor: pointer;
  z-index: 1;
  transition: all 0.6s ease;
}
.slide-controls label.frgtpswd{
  color: #000;
}
.slide-controls .slider-tab {
    position: absolute;
    height: 100%;
    width: 50%;
    left: 0;
    z-index: 0;
    border-radius: 5px;
    /* background: -webkit-linear-gradient(left, #224563, #66C5F0);*/
    background: linear-gradient(90deg,rgba(55, 120, 161, 1) 0%, rgba(46, 142, 201, 1) 50%, rgba(38, 115, 166, 1) 100%);
    transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
}
input[type="radio"]{
  display: none;
}
#frgtpswd:checked ~ .slider-tab{
  left: 50%;
}
#frgtpswd:checked ~ label.frgtpswd{
  color: #fff;
  cursor: default;
  user-select: none;
}
#frgtpswd:checked ~ label.login{
  color: #000;
}
#login:checked ~ label.frgtpswd{
  color: #000;
}
#login:checked ~ label.login{
  cursor: default;
  user-select: none;
}
.login_wrapper .form-container{
  width: 100%;
  overflow: hidden;
}
.form-container .form-inner{
  display: flex;
  width: 200%;
}
.form-container .form-inner .div-form {
  width: 50%;
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
}
.form-inner .div-form .field{
  height: 50px;
  width: 100%;
  margin-top: 20px;
}
.form-inner .div-form .field input{
  height: 100%;
  width: 100%;
  outline: none;
  padding-left: 15px;
  border-radius: 5px;
  border: 1px solid lightgrey;
  border-bottom-width: 2px;
  font-size: 17px;
  transition: all 0.3s ease;
}
.form-inner .div-form .field input:focus{
  border-color: #71d2ff;
  box-shadow: inset 0 0 3px #71d2ff; 
}
.form-inner .div-form .field input::placeholder{
  color: #999;
  transition: all 0.3s ease;
}
.div-form .field input:focus::placeholder {
    color: #b3b3b3;
}
.form-inner .div-form .pass-link{
  margin-top: 5px;
}
.form-inner .div-form .frgtpswd-link{
  text-align: center;
  margin-top: 30px;
}
.form-inner .div-form .pass-link a,
.form-inner .div-form .frgtpswd-link a{
  color: #66C5F0;
  text-decoration: none;
}
.form-inner .div-form .pass-link a:hover,
.form-inner .div-form .frgtpswd-link a:hover{
  text-decoration: underline;
}

.form-inner .div-form .wrap-pass {
    position: relative;
}

.form-inner .div-form .wrap-pass span {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #71d2ff;
    cursor: pointer;
    display: none;
}

.form-inner .div-form .wrap-pass input:valid ~ span {
    display: block;
}

.div-form .btn{
  height: 50px;
  width: 100%;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
    .div-form .btn .btn-layer {
        height: 100%;
        width: 300%;
        position: absolute;
        left: -100%;
        background: linear-gradient(90deg,rgba(55, 120, 161, 1) 0%, rgba(46, 142, 201, 1) 50%, rgba(38, 115, 166, 1) 100%);
        border-radius: 5px;
        transition: all 0.4s ease;
    }
.div-form .btn:hover .btn-layer{
  left: 0;
}
.div-form .btn input[type="submit"],
.div-form .btn input[type="button"]{
  height: 100%;
  width: 100%;
  z-index: 1;
  position: relative;
  background: none;
  border: none;
  color: #fff;
  padding-left: 0;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}

.info_bar {
  padding: 20px;
  overflow: hidden;
  /*max-width: 500px;*/
  border: solid #fff 3px;
  border-radius: 30px;
  box-shadow: 0px 15px 20px rgba(0,0,0,0.1);
  margin-left: auto;
  margin-right: auto;
  color: black !important;
  /*background: -webkit-linear-gradient(-45deg,#66C5F0, #224563);*/
}

/*--------------------------------------------------------------
# Left Container
--------------------------------------------------------------*/
.left_wrapper {
    position: relative;
    overflow: hidden;
    /* max-width: 550px;*/
    max-width: 550px;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 30px;
    z-index: 0;
}

    .left_wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        background: transparent;
        filter: blur(8px); 
        z-index: -2;
    }

        .left_wrapper::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.1); /* or 0 if you want fully transparent */
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px); /* For Safari */
            border: 1px solid rgba(255, 255, 255, 0.2);
            /*background: linear-gradient(90deg,rgba(55, 120, 161, 1) 0%, rgba(46, 142, 201, 1) 50%, rgba(38, 115, 166, 1) 100%);*/
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: scroll;
            background-size: cover;
            z-index: -1;
        }


@media screen and (max-width: 768px) {
    .left_wrapper {
        width: 100vw;
    }
}

.info-box {
    background: transparent !important;
    border: solid 1px #fff;
    max-width: 20%;
    text-align: center;
    color: white !important;
}

.info-box .info-box-icon {
    width: 100%;
}

.info-box .info-box-content a, .info-box a {
  color: var(--primary-hover);
}

.info-box .info-box-content a:hover, .info-box a:hover {
  color: var(--secondary-hover) !important;
}

.annoucement_box h4 {
  text-transform: uppercase;
  color: #fff;
}

.annoucement_box p {
  color: #fff;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/poppins/poppins-v5-latin-300.woff2') format('woff2'), url('fonts/poppins/poppins-v5-latin-300.woff') format('woff'), url('fonts/poppins/poppins-v5-latin-300.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/poppins/poppins-v5-latin-regular.woff2') format('woff2'), url('fonts/poppins/poppins-v5-latin-regular.woff') format('woff'), url('fonts/poppins/poppins-v5-latin-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/poppins/poppins-v5-latin-500.woff2') format('woff2'), url('fonts/poppins/poppins-v5-latin-500.woff') format('woff'), url('fonts/poppins/poppins-v5-latin-500.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/poppins/poppins-v5-latin-600.woff2') format('woff2'), url('fonts/poppins/poppins-v5-latin-600.woff') format('woff'), url('fonts/poppins/poppins-v5-latin-600.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/poppins/poppins-v5-latin-700.woff2') format('woff2'), url('fonts/poppins/poppins-v5-latin-700.woff') format('woff'), url('fonts/poppins/poppins-v5-latin-700.ttf') format('truetype');
}
