
html{height: 100%;}
body {
  font-family: "SCoreDream", sans-serif;
  color: #444444;
  display: flex;
  flex-direction: column;
  height: 100%;
}
body > .wrapper{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body > .wrapper > main#main{
  flex: 1;
}
a {
  color: #673f97;
  text-decoration: none;
}
a:hover {
  color: #73c5eb;
  text-decoration: none;
}
h1,h2,h3,h4,h5,h6 {
  font-family: "SCoreDream", sans-serif;
  font-weight: 700;
}
.under_720px{display: none;}
@media (max-width: 720px) {
  .under_720px{display: inline-block;}
  body{font-size: 0.8em;}
}
h3 img{
  max-width: 200px;
  margin-top: 30px;
  width: 100%;
}
img{
  width: 100%;
}
p{
  padding: 0;
}
li, ul, ol{
  list-style: none;
  padding: 0;
  margin: 0;
}
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #673f97;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.section-title p{font-size: 1.2rem; text-align: left; margin: 50px 0 20px;}
ul.gbic_li_marker {list-style-type: none; padding: 0; margin: 0 0 0 2rem; font-size: 1.2rem}
ul.gbic_li_marker li{text-align: left;}
/* ul.gbic_li_marker li:before {content: "▹ "; padding-right: 0;  margin: 0 0 0 -1.6rem;} */
ul.gbic_li_marker li:before {content: "> "; padding-right: 0;  margin: 0 0 0 -1.6rem;}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.align-items-center{
  max-width: 1620px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 0;
}
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 6px 0;
  background-color: black;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(16, 36, 71, 1);
}

#header .logo {
  width: 30%;
  font-size: 18px;
  margin: 0;
  padding: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  min-width: 400px;
}

#header .logo img {
  max-height: 50px;
  width: 100%;
  max-width: 100px;
}
#header .logo a{
  color: #fff;
  display: flex;
  align-items: center;
}
#header .logo a p{
  width: 100%;
}
#header .leng{}
#header .leng > a{
  display: block;
  border-radius: 30px;
  border: 1px solid white;
  width: 100px;
  text-align: center;
  font-size: 14px;
  padding: 2px 10px;
  margin: 5px auto;
}
#header .leng > a.on{
  background-color: white;
  color: black;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  width: 70%;
}

.navbar ul {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  width: 20%;
  text-align: center;
}
.navbar li.dropdown > a{
  line-height: 3;
}
.navbar li.dropdown:hover {
  background-color: #673f97;
}

.navbar a,
.navbar a:focus {
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  /* color: #673f97; */
}
.navbar .active span{
  color: #97d8ff;
}
.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #673f97;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #3d4970;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  /* min-width: 200px; */
  width: 100%;
  text-align: left;
}

.navbar .dropdown ul a {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  padding: 16px 10px;
  line-height: 1.5;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #673f97;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
#navbar ul.mobile{
  display: block;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  ol, ul{
    padding-left: 0.5rem;
  }
  .d-flex{
    flex-wrap: wrap;
  }
  .mobile-nav-toggle {
    display: block;
  }


  .navbar ul {
    display: none;
    position: absolute;
    top: -9999px;
    left: -9999px;
    transition: all .3s;
  }
  #header .logo{
    margin: 10px 0;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 40px;
  right: 20px;
}

.mobile-nav-toggle {
  position: absolute;
  top: 40px;
  right: 20px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #673f97;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #673f97;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #673f97;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #673f97;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  visibility: visible !important;
}

/* main */
#main.bgBox{
  background: url(./../images/main_bg.jpg) no-repeat 100% 100% / cover;
  padding: 100px 0;
}
#main .inn{
  padding: 120px 0 50px;
  max-width: 1620px;
  width: 100%;
  margin: 0 auto;
}

#main .mainTitle{
  width: 100%;
  padding: 100px 20px 50px;
  max-width: 800px;
}

#main .mainMenu {
  display: flex;
  gap: 20px;
  padding: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}
#main .mainMenu .gradient-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right, #c629b8, #8642e5 50%, #4943f0);
  color: white;
  font-size: 1.3rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0 0 0 30px;
  border-radius: 50px;
  height: 70px;
  min-width: calc(25% - 40px);
  width: calc(25% - 40px);
  position: relative;
  transition: transform 0.2s;
}

#main .mainMenu .gradient-button::after {
  content: "→";
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #7a59ff, #3f41ff); 
  border-radius: 50%;
  width: 70px;
  height: 70px;
  font-size: 1.6rem;
  font-weight: bold;
  margin-left: 20px;
  flex-shrink: 0;
}
#main .mainMenu .gradient-button:hover {
  transform: scale(1.03);
}
.menuContent::after:hover{
  transform: scale(1.03);
}
.menuContent a{
  font-weight: bold;
}
.mainMenu2{
  background: linear-gradient(to right, #c629b8, #8642e5 50%, #4943f0);
  border-radius: 50px;
  color: white;
  text-align: center;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mainMenu2 .menuContent,
.mainMenu2 .menuContent input{
  color: white;
}

/*--------------------------------------------------------------
# subbar
--------------------------------------------------------------*/


@keyframes up-down {
  0% {
    transform: translateY(8px);
  }

  100% {
    transform: translateY(-12px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/


.toggle-buttons{display: flex; flex-wrap: wrap; justify-content: space-between; max-width: 1300px; margin: 0 auto; text-align: center;}
.toggle-buttons button{border: 2px solid #046e98; width: calc(50% - 6px); margin: 3px; text-align: center; padding: 10px; font-size: 1.2em; transition: all 0.3s; border-radius: 12px; text-transform: uppercase; font-weight: bold; box-shadow: 1px 1px 8px 1px #9e9e9e;}
.toggle-buttons button.on{background-color: skyblue; color: white;}
.toggle-buttons button:hover,
.toggle-buttons button.on:hover{background-color: darkblue; color: white;}

.btnBox{text-align: center;}
.btnBox > a{
  border: 2px solid #046e98;
  box-shadow: 1px 1px 8px 1px #9e9e9e;
  max-width: 500px;
  width: 100%;
  font-weight: bold;
  font-size: 1.3em;
  letter-spacing: 1px;
  display: block;
  padding: 10px 22px;
  border-radius: 6px;
  transition: all .3s;
  margin: 10px auto;
  background-color: #673f97;
  text-align: center;
}
.btnBox > a:hover{background-color: darkblue; color: white;}

section {
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}
#main{
  flex: 1;
}
.container.contact{
  margin: 200px auto 100px;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 2em;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: 0;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #673f97;
  bottom: 0;
  left: 0;
}

table{
  width: 100%;
}
table th{
  padding: 10px;
  min-width: 120px;
  background-color: #673f97;
  color: white;
  text-align: center;
  border: 1px solid white;
}
table td{
  padding: 10px;
}
.patners th,
.patners td{
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}
/* overview */
.overview .tableArea{
  display: flex;
  flex-wrap: wrap;
}
.overview .tableArea > div{
  margin: 5px;
}
.overview .tableArea > div:nth-child(1){width: calc(50% - 10px);}
.overview .tableArea > div:nth-child(2){width: calc(50% - 10px);}

@media (max-width : 750px) {
  .overview .tableArea > div:nth-child(1),
  .overview .tableArea > div:nth-child(2){
    width: 100%;
  }
  .section-title h2{
    font-size: 1.5em;
  }
}
/* //overview */

/* contact */
  .contactBox{}
  .contactBox table{
    text-align: center;
  }
  .contactBox table td,
  .contactBox table th{
    padding: 30px;
    border: 1px solid #fff;
  }
  .contactBox table th{
    background-color: #ececec;
    color: #673f97;
    font-size: 2.5rem;
  }
  .contactBox table td{
    background-color: #f2f2f2;
  }
/* //contact */


/* Partners */
.Partners .PartnersBox{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.Partners .PartnersBox > div{
  width: calc(16.6666% - 10px);
  height: 120px;
  margin: 5px;
  padding: 5px;
  text-align: center;
  padding: 20px;
}
.Partners .PartnersBox > div > img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* //Partners */

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  color: #fff;
  font-size: 14px;
  padding: 20px;
  word-break: keep-all;
}
#footer .inn{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1520px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}
.fa-solid.fa-bars.mobile-nav-toggle{
  line-height: 1;
  display: none;
}


@media (max-width: 1050px) {
  
  #main .inn{
    padding-top: 50px;
  }
  #main .mainTitle{
    padding: 20px;
  }
  #main .mainMenu{
    gap: 20px 8px;
    padding: 4px;
    justify-content: space-around;
  }
  #main .mainMenu .gradient-button{
    font-size: 0.9rem;
    padding: 0 0 0 10px;
    height: 44px;
    min-width: calc(50% - 16px);
    width: calc(50% - 16px);
    
  }
  #main .mainMenu .gradient-button::after{
    width: 30px;
    height: 30px;
    font-size: 1rem;
    margin-left: 6px;
  }
  .Partners .PartnersBox > div{
    width: calc(25% - 10px);
    padding: 6px;
    height: 100px;
  }

}

@media (max-width: 991px) {
  #header .logo a p{
    max-width: 170px;
    font-size: 0.7em;
  }
  .navbar{
    width: 100%;
  }
  .navbar li{
    width: 100%;
    text-align: left;
  }
  .navbar li.dropdown{
    background-color: #673f97;
    line-height: 1.5;
  }
  .navbar .dropdown > ul,
  .navbar ul.mobile{
    background: #3d4970;
    color: white;
    top: 0;
    left: 0;
  }
  .navbar a, .navbar a:focus{
    display: block;
    font-size: 16px;
  }
  .navbar .dropdown ul{
    position: unset;
    visibility: unset;
    opacity: 1;
  }
  .navbar .dropdown ul a{
    font-size: 14px;
    padding: 8px 10px;
  }
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
  #header .leng{
    display: flex;
    justify-content: end;
    background-color: black;
    padding: 10px;
  }
  #header .leng > a{
    margin-left: 10px;
  }
  .section-title p{
    font-size: 1em;
  }
    .toggle-buttons button{
    width: 100%;
  }
  .fa-solid.fa-bars.mobile-nav-toggle{
    display: block;
  }
  .team .member .pic {
    width: 100px;
    height: 100px;
  }
  .team .member{
    min-height: 200px;
  }
  #footer{
    font-size: 12px;
    padding: 10px;
  }
}
@media (max-width: 650px) {
  .Partners .PartnersBox > div{
    width: calc(33.3333% - 10px);
    height: 80px;
  }
  .container, .container-sm{
    max-width: 650px;
  }
  .container.contact{
    margin: 150px auto 100px;
  }
  #main .mainMenu > div{
    max-width: 160px;
  }
}