/*------------------------------------
	General
------------------------------------*/

@font-face {
  font-family: "Skvt";
  src: local("Sukhumvit Set");
  unicode-range: U+0E00-0E7F;
}

body {
  font-family: "Skvt", "Montserrat", "Kanit", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  color: #868f9b;
  position: relative;
  display: none;
  background: white;
}

/*h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 20px;
  color: #10161a;
}
/*
h1 {
  font-size: 54px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 21px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}*/

button a{
  color: white;
}

.header-detail{
  font-size:25px;
}

@media (max-width: 700px){
  .header-detail{
    font-size:15px;
  }
}

button a:hover{
  color: #FECB31;
}

h1 {
  font-size: 2.5rem;
  font-weight: 500;
  color: #092539;
}

h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #10161a;
}

h3 {
  font-size: 1.6rem;
  font-weight: 400;
  color: #747474;
}

h4 {
  font-size: 20;
  font-weight: 600;
  color: #6f6f6f;
}

h5 {
  font-size: 20;
  font-weight: 400;
  color: #727272;
}

p {
  font-size: 15px;
  font-weight: 400;
  color: #747474;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #3c4b80;
  opacity: 0.95;
  color: #fff;
  padding: 6px 16px;
  font-size: 16px;
  border-radius: 5px;
  right: 15px;
  bottom: 15px;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.back-to-top:hover,
.back-to-top:focus,
.back-to-top:active {
  color: #f8be00;
}

.back-to-top .icon {
  font-size: 20px;
}
.go-to-about {
  font-size: 20px;
}

/*--------
# Header
---------*/

#header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; 
  /* padding: 12px 0; */
  /* height: 64px; */
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  background-color: white;
  color: black;
  z-index: 997;
  box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.2);
}

#header a{
  color: #022539;
  transition: all 0.08s ease-in;
 
}

#header .nav-item{
   margin-left: 1rem ;
}

#header a:hover{
  color: #FECB31;
}

#header .contact{
  border: solid 1px #022539;
  border-radius: 5px;
  background-color: #ffffff;
  color: #022539;
  padding: .4rem 1rem;
  cursor: pointer;
  transition: all .1s ease-in;
}

#header .contact:hover{
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.3);
}

@media only screen and (max-width: 576px) {
  #header  {
    border-radius: 0 0 10px 10px;
  }
  #header .nav-item .dropdown-menu{
  border:none
}
}



/*--------
# Navigation Menu
---------*/

/* Nav Menu Essentials */

/* Nav Menu Container */

#nav-menu-container {
  margin-right: -20px;
}

@media (max-width: 992px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */

.nav-menu a {
  padding: 0 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  outline: none;
}

.th .switch-locale a {
  margin-top: -10px;
}

.nav-menu > li {
  margin-left: 3px;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  background: #fff;
}

.nav-menu ul li {
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.nav-menu ul li a {
  font-weight: 500;
  padding: 10px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: block;
  font-size: 15px;
  text-transform: none;
}

.nav-menu .lang-sw {
  cursor: pointer;
}

.en .nav-menu .lang-sw.eng {
  color: #f8be00 !important;
}

.th .nav-menu .lang-sw.thai {
  color: #f8be00 !important;
}

/* @media (max-width: 992px) {
  .switch-locale {
    display: none;
  }
} */

.nav-menu .sep {
  color: #fff;
}

.header-fixed .nav-menu .sep {
  color: #000;
}

.nav-menu a.nav-link.active {
  color: #f8be00 !important;
}

.home-button{
  display: none;
}

@media (max-width: 700px){
  .home-button{
    display: block;
  }
}



/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 12.5px 15px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle .icon {
  margin-top: 6.5px;
  color: black;
}

#mobile-nav-toggle.header-fixed .icon {
  color: #000;
}

@media (max-width: 992px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */

#mobile-nav {
  position: fixed;
  top: 84px;
  height: 0px;
  left: 22px;
  right: 22px;
  z-index: 998;
  background: white;
  opacity: 0.95;
  overflow-y: hidden;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  border-radius: 10px;
  -webkit-box-shadow: 0px 1px 10px -2px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 10px -2px rgba(0, 0, 0, 0.3);
}

#mobile-nav.header-fixed {
  background: #fcfcfc;
}

#mobile-nav ul {
  padding: 10px 15px;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: black;
  font-size: 15px;
  overflow: hidden;
  margin: 2px 0px 2px 0;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  -webkit-transition: all 0.18s;
  -o-transition: all 0.18s;
  transition: all 0.18s;
}

#mobile-nav.header-fixed ul li a {
  color: #111;
}

#mobile-nav ul li a:hover {
  color: #f8be00;
}

#mobile-nav ul li li {
  padding-left: 20px;
}
#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #f8be00;
}

#mobile-nav ul li a.active {
  color: #f8be00;
}

/* Mobile Nav body classes */

body.mobile-nav-active {
  position: auto;
  overflow-y: scroll;
  width: 100%;
}

body.mobile-nav-active #mobile-nav {
  height: 360px;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #3333;
}

.nav-button {
  margin-top: -15px;
  border-radius: 8px;
  border-color: #163043;
  background-color: #ffffff;
  padding-top: 5px;
  height: 45px;
  width: 125px;
}

.banner-title{
  color:white;
  font-size: 62px;
  font-weight: 700; 
  line-height: 75px; 
}

.banner-subtitle{
  color:white; 
  font-size: 36px;
  font-weight: 500;
  line-height: 40px; 
  width: 40%;
}

#journey .title-container{
 /*  width: 300px; */
  
}
/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  /*width: 100%;
  height: 100vh;
  background-image: url("C:\\Users\\EarthCom\\Desktop\\Work\\iepage\\placeholder1.png");
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  border-radius: 0 0 10px 10px;
  display: flex;
  justify-content: center;*/
}

/*@media (min-width: 1024px) {
  #intro {
    background-attachment: fixed;
  }
}*/
/*#intro_sub1{
  width: 100%;
  height: 100vh;
  background-image: url("C:\\Users\\EarthCom\\Desktop\\Work\\edvisory-web\\public\\img\\Banner\\01banner_landing.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size:contain;
  position: relative;
}
#intro_sub2{
  width: 100%;
  height: 100vh;
  background-image: url("C:\\Users\\EarthCom\\Desktop\\Work\\edvisory-web\\public\\img\\Banner\\01banner_landing.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}*/
#intro .intro-text,
.intro-text {
  /*left: 0;
  right: 0;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;*/
}

#intro h2,
#recruit_header h2,
#contact_header h2 {
  margin: 30px 0 10px 0;
  padding: 0 15px;
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  color: #fff;
}

#intro p,
#recruit_header p,
#contact_header p {
  color: #fff;
  margin-bottom: 20px;
  padding: 0 15px;
  font-size: 16px;
}

@media (max-width: 576px) {
  #intro h2 {
    font-size: 32px;
    line-height: 36px;
  }

  #intro p {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}

#intro .btn {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  margin: 10px;
  border: 2px solid #fca72e;
  color: #fff;
}

#intro .btn:hover {
  color: #fca72e;
  background: #fff;
  border: 2px solid #fff;
}

#intro-sub {
  height: 50px;

  position: absolute;
  bottom: 40px;
  left: 50%;
}

#intro-sub.intro-down i {
  width: 1rem;
  height: 2rem;
  margin-bottom: 20px;
  color: #fff;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  font-size: 3em;
}
.scrollto {
  padding-bottom: 20px;
}

#intro-sub:hover.intro-down i {
  color: #fca72e;
}

@media screen and (max-height: 768px) {
  #intro .or {
    display: block;
  }
}

@media screen and (max-height: 400px) {
  #intro {
    min-height: 100vh;
  }

  .intro_sub {
    display: none;
  }
}

/* About Us Section
--------------------------------*/

#separator {
  height: 3em;
  width: 100vw;
  background-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(24, 31, 55, 0.93)),
      to(rgba(6, 16, 53, 0.93))
    ),
    url("../img/intro-bg.jpeg");
  background-image: -webkit-linear-gradient(
      bottom,
      rgba(24, 31, 55, 0.93),
      rgba(6, 16, 53, 0.93)
    ),
    url("../img/intro-bg.jpeg");
  background-image: -o-linear-gradient(
      bottom,
      rgba(24, 31, 55, 0.93),
      rgba(6, 16, 53, 0.93)
    ),
    url("../img/intro-bg.jpeg");
  background-image: linear-gradient(
      0deg,
      rgba(24, 31, 55, 0.93),
      rgba(6, 16, 53, 0.93)
    ),
    url("../img/intro-bg.jpeg");
  background-image: -webkit-linear-gradient(
      0deg,
      rgba(24, 31, 55, 0.93),
      rgba(6, 16, 53, 0.93)
    ),
    url("../img/intro-bg.jpeg");
  background-image: linear-gradient(
      0deg,
      rgba(24, 31, 55, 0.93),
      rgba(6, 16, 53, 0.93)
    ),
    url("../img/intro-bg.jpeg");
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#separator-2 {
  height: 1.8em;
  width: 100vw;
  background-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(24, 31, 55, 0.93)),
      to(rgba(6, 16, 53, 0.93))
    ),
    url("../img/intro-bg.jpeg");
  background-image: -webkit-linear-gradient(
      bottom,
      rgba(24, 31, 55, 0.93),
      rgba(6, 16, 53, 0.93)
    ),
    url("../img/intro-bg.jpeg");
  background-image: -o-linear-gradient(
      bottom,
      rgba(24, 31, 55, 0.93),
      rgba(6, 16, 53, 0.93)
    ),
    url("../img/intro-bg.jpeg");
  background-image: linear-gradient(
      0deg,
      rgba(24, 31, 55, 0.93),
      rgba(6, 16, 53, 0.93)
    ),
    url("../img/intro-bg.jpeg");
  background-image: -webkit-linear-gradient(
      0deg,
      rgba(24, 31, 55, 0.93),
      rgba(6, 16, 53, 0.93)
    ),
    url("../img/intro-bg.jpeg");
  background-image: linear-gradient(
      0deg,
      rgba(24, 31, 55, 0.93),
      rgba(6, 16, 53, 0.93)
    ),
    url("../img/intro-bg.jpeg");
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.divider {
  display: inline-block;
  width: 120px;
  height: 4px;
  background: #f8ca24;
  margin-bottom: 10px;
}

.title {
  font-size: 32px;
  color: #022539;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .title {
    font-size: 24px;
  }
}
.rect-sym {
  position:relative;
  height:30px; 
  width:30px; 
  border: 3px solid #F8CA24;
}
.circle-sym {
  position:relative;
  height:30px; 
  width:30px; 
  border: 3px solid #F8CA24;
  border-radius: 24px;
}
.description {
  font-family: "kanit", sans-serif;
  padding-bottom: 10px;
  font-size: 25px;
  font-weight: 400;
  color: #707070;
  letter-spacing: 0.3px;
  line-height: 1.4em;
}
@media only screen and (max-width: 768px) {
  .description {
    font-size: 14px;
  }
}
/* Who Are We */

#about {
  padding-top: 25px;
  background: #fff;
}

#about .title {
  color: #111;
}

/* Vision */

#vision {
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#f3f3f3),
    to(#fff)
  );
  background: -webkit-linear-gradient(bottom, #f3f3f3, #fff);
  background: -o-linear-gradient(bottom, #f3f3f3, #fff);
  background: linear-gradient(0deg, #f3f3f3, #fff);
}

#vision .title {
  color: #111;
}

#vision h3.description {
  padding-bottom: 0px;
  margin-bottom: 0px;
}

/* Mission */

/*#mission {
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#f3f3f3),
    to(#fff)
  );
  background: -webkit-linear-gradient(bottom, #f3f3f3, #fff);
  background: -o-linear-gradient(bottom, #f3f3f3, #fff);
  background: linear-gradient(0deg, #f3f3f3, #fff);
}*/

#mission {
  background-color: white;
}

#mission .description {
  color: #022539;
  font-size: 36px;
  font-weight: 400;
}

@media only screen and (max-width: 768px) {
  #mission .description {
    font-size: 14px;
  }
}

#ourProduct {
  background-color: white;
}

#weassess {
  background-color: white;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
  padding: 0;
}

#weassess a:hover {
  color: #f8be00;
}

#weassess .product-img {
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#wespace {
  background-color: white;
  border-radius: 0 10px 10px 0;
  padding: 0;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
}

#wespace .product-img {
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#weassess .description, #wespace .description {
  font-size: 20px;
  font-weight: 300;
  color: #022539;
}
@media only screen and (max-width: 768px) {
  #weassess .description, #wespace .description {
    font-size: 14px;
  }
}
/* Service */
#service {
  background-color: white;
}

.button {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.7em 2.5em;
  border-radius: 10px;
  border: none;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.1s linear;
}

.button.dark-blue {
  background-color: #022539;
  color: #ffffff;
}

.button.white {
  background-color: #ffffff;
  border: 1px solid #fecb31;
  color: #022539;
}

.button:hover {
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
}

.button.border-yellow {
  border: 1px solid #fecb31;
}

.button.border-yellow:hover {
  border: 1px solid #fecb31;
  box-shadow: 0 0 10px 1px rgba(254, 203, 49, 0.5);
}

#service .title {
  padding-top: 20px;
  color: black;
}

#service .description {
  padding-bottom: 0px;
}

#service .content {
  padding-bottom: 16px;
}

#service .divider {
  margin-bottom: 10px;
}

#service .card {
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  border-radius: 10px;
  transition: all 0.2s linear;
  height: 100%;
}

#service .card:hover {
  transform: scale(1.02);
}

#service img {
  width: 70px;
}

#service ul li::before {
  content: "\25A0"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #fecb31; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em;
}

/* usercount */

#usercount .item {
  text-align: center;
}

#usercount .item div:first-child {
  color: #022539;
  font-weight: 500;
  font-size: 2rem;
}

@media only screen and (max-width: 576px) {
  #usercount .item div:first-child {
    font-size: 1.2rem;
  }
}

/* whyUs */
#whyUs {
  background-color: white;
}

#whyUs .head {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5em;
  padding-top: 5px;
}

#whyUs .name {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
}

@media only screen and (max-width: 576px) {
  #whyUs .head {
    font-size: 1.2rem;
  }

  #whyUs .name,
  #whyUs .decription,
  #whyUs .position {
    font-size: 0.75rem;
  }
}

#whyUs .head,
#whyUs .name {
  color: #022539;
}

#knowUs {
  background-color: rgb(36, 33, 51);
}

#feedback {
  background-color: white;
}

#feedback .title {
  color: #022539;
  font-weight: 500;
}

#feedback input[type="text"] {
  width: 65%;
  border: solid 1px #022539;
  border-radius: 3px;
  padding: 0.2rem;
}

/*#service .btn-goto {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  margin: 0 30px 20px 30px;
  padding: 10px 40px;
  border-radius: 50px;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  color: #1d243f;
  background: #fff;
  border: 2px solid #fff;
  text-align: center;
}

#service .btn-goto:hover {
  background: #fca72e;
  border: 2px solid #fca72e;
}*/

@media screen and (max-width: 768px) {
  #service .btn-goto {
    margin-bottom: 60px;
  }
}

/* journey */
#journey h4 {
  color: #092539;
}

#journey hr {
  border-top: solid 2px #092539;
  width: 90%;
}

@media screen and (max-width: 766px) {
  #journey .item {
    border: solid 1px #fecb31;
    border-radius: 10px;
  }
}

#journey .year {
  background-color: #fae080;
  height: 60px;
  width: 60px;
  min-height: 60px;
  min-width: 60px;
  border-style: solid #fae080;
  border-radius: 50px;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  padding-top: 15px;
  color: #092539;
  margin-right: 1rem;
}

#journey .journey-description {
  display: flex;
  flex-direction: row;
}

#journey .journey-description h5 {
  font-size: 1rem;
  color: #092539;
}

#journey .journey-en, #journey .journey-th {
  display: none;
}

#journey .journey-first-left {
  margin-left: 0;
}

#journey .journey-second-left {
  margin-left: 0;
}

#journey .journey-second-right {
  margin-left: 0;
}

@media only screen and (max-width: 1200px) {
  #journey .journey-first-left, #journey .journey-second-left, #journey .journey-second-right {
    margin-left: 0;
  }
}
/* success */

#success img {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 10px;
  margin: auto;
  margin-bottom: 1rem;
}

#success .success-slick h3 {
  line-height: 1em;
}

#success .success-slick h3:nth-child(2) {
  color: #022539;
  font-weight: 500;
}

#success .success-slick p {
  font-size: 0.8rem;
}

/* Partner */

#partner {
  padding-top: 40px;
  padding-bottom: 10px;
  background: #fff;
  text-align: center;
}

#partner .title {
  margin-top: -25px;
}

#partner img {
  width: 100%;
  opacity: 1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin: 0;
}

#partner img :hover {
  opacity: 1;
}

#partner .btn-partner {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  margin: -60px 0 50px 0;
  padding: 10px 50px;
  border-radius: 50px;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  color: #fff;
  background: #2b365e;
  border: 2px solid #2b365e;
}

#partner .btn-partner:hover {
  background: #fca72e;
  border: 2px solid #fca72e;
}

#partner .content.part {
  padding-bottom: 36px;
}

@media screen and (max-width: 1280px) {
  #partner img {
    width: 100%;
  }

  .col-md-2 {
    padding: 0 5px;
  }
}

@media screen and (max-width: 768px) {
  #partner img {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  /* .partner {
    height: 400px;
  } */
  #partner .btn-partner {
    margin: -10px 0 60px 0;
  }
}

/* advisor */

#advisors {
  margin: 0;
  padding: 40px 40px;
  background-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(24, 31, 55, 0.93)),
      to(rgba(6, 16, 53, 0.93))
    ),
    url("../img/intro-bg.jpeg");
  background-image: -webkit-linear-gradient(
      bottom,
      rgba(24, 31, 55, 0.93),
      rgba(6, 16, 53, 0.93)
    ),
    url("../img/intro-bg.jpeg");
  background-image: -o-linear-gradient(
      bottom,
      rgba(24, 31, 55, 0.93),
      rgba(6, 16, 53, 0.93)
    ),
    url("../img/intro-bg.jpeg");
  background-image: linear-gradient(
      0deg,
      rgba(24, 31, 55, 0.93),
      rgba(6, 16, 53, 0.93)
    ),
    url("../img/intro-bg.jpeg");
  text-align: center;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

#advisors .title {
  padding-top: 20px;
  color: #fff;
}

#advisors .inner {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  padding: 0 20px;
}

#advisors .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#advisors .col {
  flex: 33.3%;
  max-width: 33.33%;
  box-sizing: border-box;
  padding: 15px;
}

#advisors img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

#advisors .advisor {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
}

#advisors .name {
  font-size: 20px;
  margin: 20px 0;
}

@media screen and (max-width: 960px) {
  #advisors .col {
    flex: 100%;
    max-width: 80%;
  }
}
@media screen and (max-width: 600px) {
  #advisors .col {
    flex: 100%;
    max-width: 100%;
  }
}

/* Who Are We */

#medium {
  background: #fff;
  padding-top: 10vh;
}

#medium .title {
  color: #111;
}

#medium .content.part {
  padding: 0px 150px 40px 150px;
}

@media screen and (max-width: 960px) {
  #medium .content.part {
    padding: 0 32px 20px 32px;
  }
}
@media screen and (max-width: 600px) {
  #medium .content.part {
    padding: 0 32px 20px 32px;
  }
}

/* Contact */

#contact {
  margin: 0;
  padding: 0px 0px;
  /*background-color:yellow;*/
  text-align: center;
}

#contact .title {
  padding-top: 20px;
}

#contact .divider {
  margin-bottom: 30px;
}

#contact .description span {
  padding-top: 10px;
}

#contact .description {
  padding-top: 20px;
  margin-top: -5px;
  font-size: 16px;
  font-weight: 300;
  color: #777;
  letter-spacing: 0.75px;
}

#contact .description span {
  padding-top: 10px;
}

#contact .description .blacker a {
  color: #111 !important;
  font-weight: 400;
}

#contact .description .blacker a :hover {
  color: #fca72e !important;
}

#contact .btn-partner {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  margin: 15px 0 10px 0;
  padding: 10px 50px;
  border-radius: 50px;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  color: #fff;
  background: #2b365e;
  border: 2px solid #2b365e;
}

#contact .btn-partner:hover {
  background: #fca72e;
  border: 2px solid #fca72e;
}

/* Footer */

#footer {
  padding: 3em 0 2em 0;
  /*background-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(24, 31, 55, 0.93)),
      to(rgba(6, 16, 53, 0.93))
    ),
    url('../img/intro-bg.jpeg');
  background-image: -webkit-linear-gradient(
      bottom,
      rgba(24, 31, 55, 0.93),
      rgba(6, 16, 53, 0.93)
    ),
    url('../img/intro-bg.jpeg');
  background-image: -o-linear-gradient(
      bottom,
      rgba(24, 31, 55, 0.93),
      rgba(6, 16, 53, 0.93)
    ),
    url('../img/intro-bg.jpeg');
  background-image: linear-gradient(
      0deg,
      rgba(24, 31, 55, 0.93),
      rgba(6, 16, 53, 0.93)
    ),
    url('../img/intro-bg.jpeg');
  background-image: -webkit-linear-gradient(
      0deg,
      rgba(24, 31, 55, 0.93),
      rgba(6, 16, 53, 0.93)
    ),
    url('../img/intro-bg.jpeg');
  background-image: linear-gradient(
      0deg,
      rgba(24, 31, 55, 0.93),
      rgba(6, 16, 53, 0.93)
    ),
    url('../img/intro-bg.jpeg');*/
  background-color: #f2f2f2;
  /* padding-left: 50px; */
  text-align: left;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}

#footer .icon {
  font-size: 1.6em;
  margin-right: 20px;
}

/*#footer .icons {
  font-size: 1.6em;
  letter-spacing: 4px;
  -webkit-transition: 0.15s !important;
  -o-transition: 0.15s !important;
  transition: 0.15s !important;
}

#footer .icons a {
  color: rgba(255, 255, 255, 0.5);
}*/

/*#footer .icons a:hover {
  color: #f8be00;
}*/

#footer .copyright {
  /*color: rgba(255, 255, 255, 0.5);*/
  font-size: 0.9em;
  letter-spacing: 0.1em;
  list-style: none;
  padding: 0;
}

#footer .copyright li {
  border-left: solid 1px rgba(255, 255, 255, 0.5);
  display: inline-block;
  line-height: 1em;
  margin-left: 1em;
  padding-left: 1em;
}

#footer .copyright li:first-child {
  border-left: 0;
  margin-left: 0;
  padding-left: 0;
}

#footer .copyright li a {
  color: inherit;
}

#footer .copyright li a:hover {
  color: #f8be00;
}
#footer li {
  margin-top: 10px;
}
#footer a,
#footer p {
  color: #6f6f6f;
}

#footer a:hover {
  color: #f7cc22;
}

#footer .edv-logo {
  max-height: 26px;
  margin: -3px 3px 0 0;
}

#footer h1 {
  font-size: 21px;
  line-height: 1;
  padding-top: 1px;
  display: inline-block;
  font-weight: 400;
  letter-spacing: 2px;
}

@media screen and (max-width: 576px) {
  #footer {
    background-color: #022539;
    padding: 1rem;
  }

  #footer div,
  #footer h1,
  #footer p,
  #footer a {
    color: #ffffff;
  }

  #footer .contact .icon{
    margin-right: 0;
    margin-left: 5px;
  }

  #footer .logo {
    display: inline;
  }

  #footer .edv-logo {
    margin: 0;
  }

  #footer .edv-txt {
    margin-bottom: 0;
  }
  
  #footer .link-group {
    line-height: 1.9rem;
  }
}

/*=====================================*/
/*                 ETC                 */
/*=====================================*/

/* Image */

.image {
  border-radius: 3px;
  border: 0;
  display: inline-block;
  position: relative;
}

.image img {
  border-radius: 3px;
  display: block;
}

.image.left {
  float: left;
  margin: 0 2em 2em 0;
  top: 0.25em;
}

.image.right {
  float: right;
  margin: 0 0 2em 2em;
  top: 0.25em;
}

.image.left,
.image.right {
  max-width: 45%;
}

.image.left img,
.image.right img {
  width: 100%;
}

.image.fit {
  display: block;
  margin: 0 0 2em 0;
  width: 100%;
}

.image.fit img {
  width: 100%;
}

/* Icon */

.icon {
  text-decoration: none;
  border-bottom: none;
  position: relative;
}

.icon:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-transform: none !important;
}

.icon > .label {
  display: none;
}

.icon.major {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-radius: 3px;
  border: solid 2px #fff;
  display: inline-block;
  font-size: 1.35em;
  height: calc(3em + 2px);
  line-height: 3em;
  text-align: center;
  width: calc(3em + 2px);
}

.icon.major:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: inline-block;
  font-size: 1.5em;
}

@media screen and (max-width: 736px) {
  .icon.major {
    font-size: 1em;
  }
}

/* Icons */

ul.icons {
  margin-top: 0;
  margin-bottom: 1rem;
  cursor: default;
  list-style: none;
  padding-left: 0;
}

ul.icons li {
  display: inline-block;
  padding: 0 1em 0 0;
}

ul.icons li:last-child {
  padding-right: 0 !important;
}

ul.icons.major {
  padding: 1em 0;
}

ul.icons.major li {
  padding-right: 3.5em;
}

@media screen and (max-width: 768px) {
  ul.icons {
    margin-bottom: 0.5rem;
  }

  ul.icons.major li {
    padding: 0 1em !important;
  }
}

/* Spotlight */

.spotlight-pre {
  display: block;
}

/* .spotlight-pre br,
.spotlight-dim br {
  display: none;
} */

.spotlight-pre .content,
.spotlight-dim .content {
  -moz-order: 2;
  -ms-order: 2;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  padding: 2.5em 5em 3em 5em;
  max-width: none;
  text-align: center;
  width: 100%;
}

.spotlight-dim {
  /*background-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(24, 31, 55, 0.93)),
      to(rgba(6, 16, 53, 0.93))
    ),
    url('../img/intro-bg.jpeg');
  background-image: -webkit-linear-gradient(
      bottom,
      rgba(24, 31, 55, 0.93),
      rgba(6, 16, 53, 0.93)
    ),
    url('../img/intro-bg.jpeg');
  background-image: -o-linear-gradient(
      bottom,
      rgba(24, 31, 55, 0.93),
      rgba(6, 16, 53, 0.93)
    ),
    url('../img/intro-bg.jpeg');
  background-image: linear-gradient(
      0deg,
      rgba(24, 31, 55, 0.93),
      rgba(6, 16, 53, 0.93)
    ),
    url('../img/intro-bg.jpeg');
  background-image: -webkit-linear-gradient(
      0deg,
      rgba(24, 31, 55, 0.93),
      rgba(6, 16, 53, 0.93)
    ),
    url('../img/intro-bg.jpeg');
  background-image: linear-gradient(
      0deg,
      rgba(24, 31, 55, 0.93),
      rgba(6, 16, 53, 0.93)
    ),
    url('../img/intro-bg.jpeg');*/
  text-align: center;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

@media screen and (max-width: 1280px) {
  .spotlight-pre .content,
  .spotlight-dim .content {
    padding: 2.5em 10em 3em 10em;
  }
}

@media screen and (max-width: 980px) {
  .spotlight-pre .content,
  .spotlight-dim .content {
    padding: 2.5em 5em 3em 5em;
  }
}

@media screen and (max-width: 678px) {
  .spotlight-pre .content,
  .spotlight-dim .content {
    padding: 2.5em 2em 3em 2em;
  }
}

.spotlight {
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -moz-flex;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.spotlight .image {
  -moz-order: 1;
  -ms-order: 1;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  border-radius: 0;
  width: 40%;
}
.spotlight .image img {
  border-radius: 0;
  width: 100%;
}

.spotlight .content {
  padding: 2em 4em 2em 4em;
  -moz-order: 2;
  -ms-order: 2;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  max-width: 48em;
  width: 60%;
}

.spotlight:nth-child(2n) {
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 1280px) {
  .spotlight .image {
    width: 45%;
  }
  .spotlight .content {
    width: 55%;
  }
}

@media screen and (max-width: 980px) {
  .spotlight {
    display: block;
  }

  .spotlight br {
    display: none;
  }

  .spotlight .image {
    width: 100%;
  }

  .spotlight .content {
    padding: 3em 5em 3em 5em;
    max-width: none;
    text-align: center;
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .spotlight .content {
    padding: 3em 2em 3em 2em;
  }
}

/* Media */
.media {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: top !important;
}

.media .b-icon {
  height: 60px;
  width: 60px;
  padding-bottom: 20px;
}

.media .bbb-icon {
  height: 100px;
  width: 100px;
  padding-bottom: 20px;
}

.media .bigger {
  font-size: 26px !important;
  margin-bottom: 5px;
}

.media .svg-logo-we {
  width: 90%;
  padding-top: 18%;
}

.media .svg-logo-1 {
  width: 53%;
  padding-top: 22%;
}

.media .svg-logo-2 {
  width: 47%;
  padding-top: 25%;
}

.media .svg-logo-3 {
  width: 45%;
  padding-top: 27%;
}

.media .svg-logo-4 {
  width: 50%;
  padding-top: 22%;
}

.media .svg-logo-5 {
  width: 50%;
  padding-top: 22%;
}

.media .svg-logo path {
  fill: #fff;
}

.media .media-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 14px;
  text-align: left;
}

.media .media-body {
  width: 100%;
  /* padding-left: 20px; */
}

.media .media-body.product {
  width: 100%;
  padding-left: 25px;
}

.media .media-body h3 {
  font-size: 17px;
  font-weight: 400;
  color: black;
}

.media .media-body p {
  display: none;
}

.media .border {
  border: 1.5px solid #f8be00 !important;
}

.opt-1 {
  display: block;
}

.opt-2 {
  display: none;
}

.opt-3 {
  display: block;
}

@media (max-width: 768px) {
  .media {
    display: block !important;
  }

  .media b-icon {
    margin: 0 auto 20px auto !important;
    display: block;
    padding-bottom: 5px;
  }

  .media .media-body,
  .media .media-body.product {
    padding-left: 0px;
  }

  .media .media-body.product {
    margin-bottom: 15px;
  }

  .media .media-body h3 {
    width: 100%;
    text-align: center !important;
  }
}

@media (max-width: 1200px) {
  .opt-1 {
    display: none;
  }

  .opt-2 {
    display: block;
  }
}

@media screen and (max-width: 980px) {
  .spotlight {
    display: block;
  }

  .spotlight br {
    display: none;
  }

  .spotlight .image {
    width: 100%;
  }

  .spotlight-dim .contentz {
    padding: 3em 5em 1em 5em;
    max-width: none;
  }

  .opt-3 {
    display: none;
  }
}

#loader {
  position: fixed;
  width: 96px;
  height: 96px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
  box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease-out, visibility 0s linear 0.2s;
  -o-transition: opacity 0.2s ease-out, visibility 0s linear 0.2s;
  transition: opacity 0.2s ease-out, visibility 0s linear 0.2s;
  z-index: 1000;
}

#loader.fullscreen {
  padding: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  background-color: #fff;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#loader.show {
  -webkit-transition: opacity 0.4s ease-out, visibility 0s linear 0s;
  -o-transition: opacity 0.4s ease-out, visibility 0s linear 0s;
  transition: opacity 0.4s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

#loader .circular {
  -webkit-animation: loader-rotate 2s linear infinite;
  animation: loader-rotate 2s linear infinite;
  position: absolute;
  left: calc(50% - 24px);
  top: calc(50% - 24px);
  display: block;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

#loader .path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: loader-dash 1.5s ease-in-out infinite;
  animation: loader-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
}

@-webkit-keyframes loader-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes loader-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -136px;
  }
}

@keyframes loader-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -136px;
  }
}

.prev {
  left: -2.25rem;
}

.next {
  right: -2.25rem;
}

.whitedropdown {
  background-color: #fafafa;
}

.blackdropdown {
  background-color: #1d243f;
}

#recruit_header {
  width: 100%;
  background-color: yellow;
  height: 50vh;
  position: relative;
  display: flex;
}
#contact_header {
  width: 100%;
  height: 50vh;
  background-image: linear-gradient(
      0deg,
      rgba(24, 31, 55, 0.93),
      rgba(6, 16, 53, 0.93)
    ),
    url("../img/intro-bg.jpeg");

  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  border-radius: 0 0 10px 10px;
  display: flex;
  justify-content: center;
}

.dropright .dropdown-menu {
  margin-left: 110px;
}

.item-container {
  margin-left: 30px;
  margin-right: 30px;
}

.partner {
  min-height: 100px;
}

@media (min-width: 2000px) {
  .partner {
    height: 20vw;
  }
}
