:root {
    --font: "Montserrat", Sans-serif;
    --fontRaleway:'Raleway', sans-serif;
    --TitilliumWeb:'Titillium Web', sans-serif;
    --white: #fff;
    --black: #000;
    --lightBlack: #232323;
    --blue:#203F5B;
    --grey:#A5A08F;
  }
  a{font-family:var(--font);}
 .mainactive{color:var(--white) !important;}
 .nav-link:hover:not(p){
    color:var(--white) !important;
}
p.nav-link{
    /* font-size:14px !important; */
    text-transform: unset;
    padding:0 !important;
}

p.nav-link:hover{
    color:var(--grey) !important;
}
  .alert-success
  {

    color: #0f5132 !important;
  }
  .btn-warning
  {
    background: var(--grey) !important;
    border-color: var(--grey) !important;
    color: var(--white) !important;
  }
  .btn-warning:hover
  {
    background: var(--grey) !important;
    border-color: var(--grey) !important;
    color: var(--white) !important;
  }
  .btn-warning:active
  {
    background: var(--grey) !important;
    border-color: var(--grey) !important;
    color: var(--white) !important;
  }
  .btn-warning:focus
  {
    background: var(--grey) !important;
    border-color: var(--grey) !important;
    color: var(--white) !important;
    box-shadow:unset !important;
  }
  .btn-success
  {
    background: var(--blue) !important;
    border-color: var(--blue) !important;

    color: var(--white) !important;
  }
  .btn-success:hover
  {
    background: var(--blue) !important;
    border-color: var(--blue) !important;

    color: var(--white) !important;
  }

  .btn-success:focus
  {
    background: var(--blue) !important;
    border-color: var(--blue) !important;
    box-shadow:unset !important;
    color: var(--white) !important;
  }

  .btn-success:active
  {
    background: var(--blue) !important;
    border-color: var(--blue) !important;

    color: var(--white) !important;
  }
  .bootstrap-table .fixed-table-container .table thead th {
    vertical-align: top !important;
}
   /* BACK TO TOP BUTTON STYLE */
   #back_to_top {
    display: inline-block;
    background-color: var(--grey);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 0px;
    position: fixed;
    bottom: 90px;
    right: 30px;
    transition: background-color .3s,
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    color:#fff !important;
    display: grid;
    place-items: center;
  }

  #back_to_top.show {
    opacity: 1;
    visibility: visible;
  }
  /* END SECTION */

/* FORM'S Basic SETTINGS */
label{
    font-family: var(--font);
    margin:1rem 0 0.2rem;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
textarea{
    font-family: var(--font);
    width:100%;
}

#manager-settings input[type="text"],input[type="text"]:focus{
    font-family: var(--font);
    font-size:15px;
    height:40px;
    padding-left:0.5rem;
    outline:none;
}

input[type="submit"],input[type="button"],button[type="submit"]{
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white) !important;
    outline: none;
    text-transform: capitalize !important;
    font-family: "Montserrat";
    max-width:130px;
    width:100%;
    margin-top:1.5rem;
    margin-left:0.8rem;
}
input[type="submit"]:hover,input[type="button"],button[type="submit"]:hover{
    background: var(--grey);
    border-color: var(--grey);
}
 .note-btn-primary:disabled{
     background: var(--grey) !important;
     border-color: var(--grey) !important;
     opacity:0.5;
 }
 .note-btn-primary:disabled:hover{
    background: var(--blue) !important;
    border-color: var(--blue) !important;
    opacity:0.5;
}
/******* NAVIGATION STYLE *******/
.bg-dark{
    background:var(--blue)!important;
    overflow-y: scroll;
    overflow-x: hidden;
    max-width: 265px!important;
    width:100%;
    height: 100% !important;
    z-index:999;
}

 .nav-link{
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 11px 20px !important;
    color:var(--grey) !important;
    text-align: center;
 }
 .nav-link:hover span,.nav-link:active span,.nav-link:focus span{
    border-bottom:3px solid var(--grey);
    padding-bottom:0.6rem;
 }

 .mob-nav{display:none;}

  a.navbar-brand img {
    margin-top: -20px !important;
}
.social-icons-wrapper{text-align:center;padding-top:1.5rem;}

.social-icons-wrapper a{text-decoration:none;}

.social-icons-wrapper i{
    background:var(--grey);
    font-size:13px;
    color:var(--white);
    padding:8px;
    border-radius:50%;
}

.social-icons-wrapper i:hover{ background:var(--white);color:var(--grey);}

.horizontal-menu li:after {
    display:block;
    content: '';
    border-bottom: solid 2px var(--blue);
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
  }
  .horizontal-menu li:hover:after { transform: scaleX(1); }
  .horizontal-menu li:after{  transform-origin:  0% 50%; }
  .horizontal-menu li .slideIn li:after{display: none;}
/*Scrollbar Design*/
.bg-dark::-webkit-scrollbar, #recActivities::-webkit-scrollbar,.dash-board-box ul::-webkit-scrollbar {
    width: 6px;
}
.bg-dark::-webkit-scrollbar-track, #recActivities::-webkit-scrollbar-track,.dash-board-box ul::-webkit-scrollbar-track  {
    box-shadow: inset 0 0 6px var(--blue);
    border-radius: 2px;
}
.bg-dark::-webkit-scrollbar-thumb,#recActivities::-webkit-scrollbar-thumb,.dash-board-box ul::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px var(--blue);
	background-color: var(--grey);
}
/*End*/

/******* END OF NAVIGATION STYLE *******/

/* ALL SETTINGS PAGE */
.btn-check:active+.btn-outline-primary,
.btn-check:checked+.btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active{
    background-color: var(--blue) !important;
    border-color: var(--blue);
}
.btn-outline-primary,
.btn-outline-primary:hover,
.btn-outline-primary:focus{
    background-color: var(--grey) !important;
    border-color: var(--grey);
    color:var(--white);
    box-shadow: none !important;
    outline:none;
    padding:0.1rem 0.5rem !important;
}

.fa-eye,.fa-eye-slash{font-size:14px;}
/* END SETTING PAGE */

/******* CONTENT AREA *******/
.content{
    margin-left:265px;
}
/* hero section */
.hero-section{position:relative;}
.hero-section .carousel-item{height:100vh;}
.hero-section img{height:100%;}
.hero-text{
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    z-index: 99;
    text-align:center;
    width:100%;
}
.hero-text h2{
    color: #FFFFFF;
    font-family: var(--font);
    font-size: 55px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 70px;
    padding:4rem 0;
}
.hero-button-link{
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background-color: var(--grey);
    color:var(--white);
    padding:18px 42px;
    text-decoration: none;
    border-radius: 0px 0px 0px 0px;
    transition: 1s;
    position: relative;
}
a.hero-button-link::before {
    content: "";
    position: absolute;
    top: 110%;
    left: 5%;
    width: 103%;
    height: 0.1px;
    background-color: var(--grey);
    transition: 1s;
}

a.hero-button-link::after {
    content: "";
    position: absolute;
    top: 18%;
    right: -4%;
    width: 0.1px;
    height: 103%;
    background-color: var(--grey);
    transition: 1s;
}
.hero-button-link:hover{
    background-color: var(--blue);
    color:var(--white);
    transition: 1s;
}
.hero-button-link:hover::after{
    transition: 2s;
    background-color: transparent !important;
    height:5%;
}
.hero-button-link:hover::before{
    transition: 2s;
    background-color: transparent !important;
    width:5%
}
.scrollDiv{padding-top:4rem;}
.scrollDiv a{
    color: var(--white) !important;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 72px;
    letter-spacing: 0.5px;
    text-decoration: none;
}
.scrollDiv i{
    color: var(--white) !important;
    /* font-size: 13px; */
}
.bounce-arrow {
    animation: bounce2 2s ease infinite;
  }
  @keyframes bounce2 {
      0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
      40% {transform: translateY(-30px);}
      60% {transform: translateY(-15px);}
  }
/* End section */

/* About Section */
#about{padding:120px 81px;}
.about-video{
    display:grid;
    place-items: center;
}
#about h2,.philosophy-section h2,.corsair-contact h2,.team-section h2,.executive-section h2,#thailandpage h2{
    color: var(--blue);
    font-family: var(--font);
    font-size: 42px;
    font-weight: 600;
    line-height: 1em;
}
#about p,#thailandpage p{
    color: var(--blue);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.875em;
}
#about p.small-head, .philosophy-section p.small-head,.corsair-contact p.small-head,.team-section p.small-head,#thailandpage p.small-head{
    color: var(--grey);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.about-text{padding-right:60px;}
#about-us-page .about-text{padding-right:0px;}
#about-us-page .corsair-contact h2{
    font-size: 23px;
    font-weight: 600;
    line-height: 1.3em;
    padding-right:10rem;
}
#about-us-page .contact-col-1{margin-top:0;}

#about-us-page .corsair-contact{padding:4rem 0;}
.border-bottom{border-bottom:2px dotted var(--blue) !important;width:70px;margin-top:1.5rem;}
/* End Section */

/* Counter Section */
.counter-section{
    background-position: center left;
    background-size: cover;
    text-align:center;
    padding:50px 15px;
}
.count{
    color: var(--grey);
    font-family: var(--font);
    font-size: 38px;
    font-weight: 600;
    line-height: 1em;
}
.counter h6{
    font-family: var(--font);
    color:var(--white);
    margin-top:2rem;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4em;
    letter-spacing: 1px;
}
/* End Section */

/* Philosophy Section */
.philosophy-section{text-align:center;padding:120px 45px;}
.divider{
    display: grid;
    place-items: center;
    padding-bottom:1rem;
}
.philosophy-row h3, .executive-row h3{
    color: var(--blue);
    font-family: var(--font);
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
    margin:2rem 0;
}
.philosophy-row p, .executive-row h6{
    color: var(--blue);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.875em;
}
/* End Section */

/* Contact Section */
.corsair-contact h2{
    color:var(--white)!important;
}
.contact-col-1 .border-bottom{
    border-color:var(--white)!important;
}
.contact-col-1 p{
    /* color:var(--white)!important; */
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
}
.corsair-contact{background:#e9e6db;}
.corsair-contact .divider{place-items: unset;}
.corsair-contact input, .corsair-contact textarea{
    font-family: var(--fontRaleway);
    color: #555555 !important;
    border: none !important;
    background: var(--white) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding: 8px 10px!important;
    box-sizing: border-box !important;
    outline: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.875 !important;

}
.corsair-contact .btn-primary, form#enquiries .btn-primary{
    border-radius: 0;
    padding: 18px 41px;
    line-height: 1.42857143;
    display: inline-block;
    margin-bottom: 0;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    vertical-align: middle;
    font-family: var(--TitilliumWeb);
    font-weight: 600;
    text-align: center;
    background: #1a1a1a;
    cursor: pointer;
    border: 1px solid transparent;
    color: var(--white);
    outline: none;
}
.corsair-contact .btn-primary:hover, form#enquiries .btn-primary:hover{
    background: var(--white) !important;
    color: #1a1a1a !important;
    border-color: #1a1a1a !important;
}
.corsair-contact input:focus, .corsair-contact textarea:focus{box-shadow: none;}
.contact-col-1{padding:100px 60px;margin-top:-5%;}
.contact-col-1 .social-icons-wrapper{text-align: left;padding-top:0;}
.contact-col-2{padding:80px 40px 80px 80px;}
.contact-col-2 h2,.contact-col-2 .border-bottom{color:var(--blue) !important;}
.corsair-contact p.small-head{font-size:16px;}
span.phoneIcon {color: var(--white);font-size: 24px;}
span.phoneIcon .fas{margin-top:1rem;}
.callNo{margin-left:2.5rem;}

/* End Section */

/* Map section */
.map-col-1,.map-col-2{position:absolute;}
.map-col-1{left:0;}
.map-col-2{right:0;}
.map-section h1{
    color:#7A7A7A;
    text-align: center;
    font-family: var(--font);
    padding:1.5rem 0;
}
/* End of Map Section */

/* Team Section */
.team-section .team-row{text-align:left;}
.team-row h4, .executive-row h4{
    color: var(--blue);
    font-family: var(--font);
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    padding:1rem 0 0.5rem;
}

.executive-row h4{font-size: 21px;}

.team-row h6, .executive-row h6{
    color: var(--grey);
    font-family: var(--font);
    font-size: 19px;
    font-weight: 500;
    padding:0 0 5rem;
}

.executive-row h6{font-size: 17px;}

.team-row .col-xl-4{position:relative;}

.team-row .hero-button-link{position:absolute;bottom:0;}

.team-col-1,.team-col-2,.team-col-3{margin-top:3rem;}

.team-col-4,.team-col-5,.team-col-6,.team-col-7,.team-col-8,.team-col-9,.team-col-10,.team-col-11{margin-top: 5.5rem;}

.team-section{padding:0 45px 50px;text-align:center;}

.executive-section{padding-top:140px;}
/* End of Team Section */

/* thailand */
#thailandpage .container-fluid{
    padding: 0px;
}
#thailandpage .row{
    margin-left: 0px;
    margin-right: 0px;
}
#thailandpage .corsair-contact {
    padding: 4rem 0;
}
#thailandpage .contact-col-1,#thailandpage #footer {
    margin-top: 0;
}
.thailand-col h6{
    color: var(--grey);
    font-family: var(--font);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.thailand-innerrow{
    margin: 130px 0px;
}
.thailand-innerrow1{
    background: var(--grey);
                    height: 100%;
                    margin: 0px 120px 0 80px;
}
.thailand-innerrow2{
    margin-left: 30px;
                        width: 100%;
                        height: inherit;
                        display: -webkit-box;
                        -webkit-box-pack: center;
                        -webkit-box-align: center;
}
.thailand-text{
    padding: 62px 0px;
}
/* end thailand */

/* About Us Bios Page */
#about-us-bios-page .team-section{
    padding:95px 120px;
}

#about-us-bios-page img{width:100%;}

#about-us-bios-page .team-single-row .col-xl-6{display: grid;place-items: center left;margin-top:9rem;}

#about-us-bios-page .team-single-row{text-align: left;}

#about-us-bios-page .team-single-row h4{
    color: var(--blue);
    font-family: var(--font);
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
}

#about-us-bios-page .team-single-row h6{
    color: var(--grey);
    font-family: var(--font);
    font-size: 22px;
    font-weight: 500;
    padding-bottom:1rem;
}

#about-us-bios-page .team-single-row p{
    color: var(--blue);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.875em;
}

#about-us-bios-page .divider{margin-bottom:3rem;}
/* End of Page */

/* Press Page */
#press-page .download-btn{margin-top:5rem;}

#press-page .philosophy-section{padding: 120px 0;}

#press-page .counter-section h2{
    color: var(--white);
    font-family: var(--font);
    font-size: 42px;
    font-weight: 600;
    text-transform: uppercase;
}

#press-page #about .about-text{
    background:var(--grey);
    padding:60px 60px 80px;
    position: absolute;
    left: -.25%;
}

#press-page .about-video img{
    position: absolute;
    right: 0%;
    z-index: -1;
    top: -50px;
    width:55%;
}

#press-page #about p,#press-page #about h2{color:var(--white);}

#press-page .border-bottom{border-bottom:2px dotted var(--white) !important;}

#press-page #about {
    padding: 160px 15px;
}
#press-page .counter-section {
    margin-top:25rem;
}

/* End Page Style */

/* Login Page */
#login-page .content{
    background-size: cover !important;
    background-repeat: no-repeat !important;
    padding:110px 0;
    text-align: center;
}

#test-login-page #login-page .content{
    padding:0px 0 110px;
}
.switch .login-section{
    margin: 200px auto 130px !important;
}
#login-page .login-section{
    background:var(--white);
    padding:45px 50px 90px;
    margin: 0 auto;
    max-width: 740px;
}

#test-login-page #login-page .login-section{
box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
margin-top:19rem;}

#login-page .login-section h2{
    color: #000;
    font-size: 1.7rem;
    font-weight: 600;
    font-family: var(--font);
    margin-bottom:2.5rem;
}
#login-page .login-section p{
    font-family: var(--font);
    font-size: 18px;
}

#login-page #user_email {
    box-sizing: border-box;
    height: 45px;
    width: 94%;
    font-size: 14px;
    border: 1px solid #666 !important;
    border-radius: 2px;
    color: var(--blue);
    padding: 9px 10px 8px;
    line-height: 0.9em;
    display: inline-block;
    outline: none;
    font-family: var(--font);
}

#login-page #wpa-submit {
    box-sizing: border-box;
    height: 40px;
    width: 100%;
    max-width:150px;
    font-size: 14px;
    background-color: var(--blue);
    border:none;
    outline: none;
    color: var(--white);
    border-radius: 2px;
    font-weight: 600;
    padding: 9px 2px 9px 2px;
    line-height: 1em;
    margin:2rem 0 1.2rem;
}
@media(max-width:420px){
    #login-page .login-section {
        padding: 45px 20px 45px;
    }
    }
#login-page #reset-btn {
    box-sizing: border-box;
    height: 40px;
    width: 100%;
    max-width:250px;
    font-size: 14px;
    background-color: var(--blue);
    border:none;
    outline: none;
    color: var(--white);
    border-radius: 2px;
    font-weight: 600;
    padding: 0px !important;
    text-transform: uppercase;
    line-height: 1em;
    margin:2rem 0 1.2rem;
}

#login-page .policy-div p,.register-div a{
    color: var(--black);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 300;
}
#login-page #custom-errors-email{
    margin-bottom: 1rem;
    color: red;
    text-align: left;
}

#login-page .policy-div a,.register-div a,#terms .content a{text-decoration: none; color:#c36;}

.register-div a{margin-top:2rem;display:block;}

#login-page .policy-div a:hover,.register-div a:hover,#terms .content a:hover{color:var(--blue);}
/* End Page Style */

/* Terms & Policy Page */
#terms .content{padding:40px 60px;}

#terms h4{
    color: var(--grey);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}
#terms h2{
    color: var(--blue);
    font-family: var(--font);
    font-size: 42px;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 1rem;
}
#terms h3{
    color: var(--blue);
    font-family: var(--font);
    font-size: 2rem;
}
#terms h5{
    color: var(--blue);
    font-family: var(--font);
    font-size: 1.75rem;
}
#terms .divider{place-items: flex-start;}

#terms p,#terms ul li{
    color: var(--blue);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.875em;
}
/* End Page Style */

.btn-info,.btn-primary.disabled, .btn-primary:disabled,.btn-danger:hover{
    background:var(--grey) !important;
    border-color: var(--grey) !important;
    color:#fff !important;
}
.btn-info:hover,.btn-danger{
    background:var(--blue) !important;
    border-color: var(--blue) !important;
    color:#fff !important;
}
.modal-header button.close {
    border: none;
    background: transparent;
    font-size:25px;
}
#terms ul{overflow-x: hidden;}
/******* END OF CONTENT AREA *******/

/******* FOOTER SECTION *******/
#footer{
    background: var(--blue);
    margin-top:35.5rem;
    padding:0 0 0 15.3rem !important;
}
#about-us-page #footer,#about-us-bios-page #footer,#press-page #footer,#login-page #footer,#terms #footer,#dashboard #footer,#investment-page #footer,#manage-projects-page #footer,#investor-register #footer{margin-top:0;}
#footer .social-icons-wrapper{text-align: left;padding-left:1rem;}
.copyright{
    padding:23px 0 23px 16.5rem;
    background: var(--grey);
}
.foot-text{
    font-family: var(--font);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5em;
    padding-top:1.6rem;
    padding-right: 2rem;
    padding-left:1rem;
}
.foot-head{
    color: var(--grey);
    font-family: var(--font);
    font-size: 17px;
    font-weight: 600;
    line-height: 1em;
    margin-top:1rem;
}
.foot-subhead{
    color: var(--white);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5em;
}
.link-div a{
    color:var(--white);
    text-decoration: none;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.875em;
}
.link-div span{
    color:var(--grey);
    font-size: 16px;
    padding-right: 7px;
}

.subscribe-form input[type="email"]{
    background: transparent;
    border:none;
    outline:none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width:98%;
    padding: 0 0.4em;
    margin: 0 4% 10px 0;
    min-height: 40px;
}

.subscribe-form input[type="submit"]{
    background: #1a1a1a;
    color: var(--white);
    border: 1px solid transparent;
    padding: 10px 30px;
    font-size: 1rem;
    border-radius: 3px;
    font-family: var(--font);
    font-size: 1rem;
    margin-bottom:1.8rem;
    transition: 1s;
}
.subscribe-form input[type="submit"]:hover{
    background: var(--white);
    color: #1a1a1a;
    transition: 1s;
}
.copyright span{
    color:var(--white);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.2px;
}
.copyright-links a{
    font-family: var(--fontRaleway);
    color:var(--white);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.2px;
    text-decoration: none;
    padding:0 1rem;
    border-right:1px solid var(--white);
}
.copyright-links a:last-child{border-color: transparent;}
/******* END OF FOOTER SECTION *******/
.blue-btn-color{color:var(--blue) !important;}
.gold-btn-color{color:#8e8771 !important;}
table{font-size:0.9rem !important;}
.fixed-table-toolbar {
    display: flex;
    place-items: end;
    place-content: end;
}
/* MEDIA QUERY */
@media(min-width:769px){
    /* .content,.scroll{ */
.content{
    min-height: calc(100vh - 220px);
}
}
@media(min-width:1441px){
    #press-page #about .about-text{height:550px;}
    #press-page .counter-section {margin-top: 36rem;}
}

@media(max-width:1280px) and (min-width:993px){
    #footer .gjs-cell{
        display:inline-block;
        width:50%;
        height:100% !important;
        padding-bottom:2rem;
    }
}
@media(max-width:450px){
    #login-page .login-section h2{
        font-size:1.2rem !important;
    }
}
@media(max-width: 1199px){
    .about-video{margin-top:4rem;}
    #press-page .about-video,#press-page .counter-section{margin-top: 0;}
    .about-text{padding-right:15px;}
    .foot-head-2,.foot-head-3{margin-top:4rem;}
    .foot-head,.foot-subhead,.link-div{padding-left: 1rem;}
    .team-col-3{margin-top:5.5rem;}
    #press-page .about-video img, #press-page #about .about-text{position:unset;width:100%;}
    #press-page .about-video{padding:0;}
    #press-page #about{padding: 140px 15px 100px;}
    .thailand-innerrow1{
        margin: unset;
        padding: 40px;
    }
    .thailand-innerrow2{margin-left:0;}
    .thailand-innerrow{
        padding: 0px;
        margin:80px 0 20px;
    }
    .thailand-text{
        padding:20px;
    }
}

@media(max-width:1025px){
    .hero-text h2{font-size:46px;}
    .philosophy-row .col-xl-4{width:100% !important;}
    .contact-banner{display:none;}
    #login-page .login-section{max-width:80%;}
    /* .thailand-innerrow {
        margin: 80px 20px 20px;
    } */
    #thailandpage .container {
        padding-right: 0px !important;
    }
    .thailand-innerrow1{
        /* padding: 80px 60px; */
        margin: 0px;
    }
    .thailand-innerrow2 {
        margin-left: 0px
    }
    .thailand-container{
        padding: 0px;
    }
    .thailand-text {
        padding: 62px 30px;
    }
}
@media (max-width: 991px){
    .map-col-1, .map-col-2{position:unset;}
    #footer,.copyright{margin-top:0;}
    .copyright-links{margin-top:2rem;}
    .copyright-links a{padding:0 0.5rem;}
    .copyright span{display:block;}
    .team-row img{width:100%;}
    #about-us-bios-page .team-section{padding:95px 50px;}
    .mob-nav{display:block !important;}
    .content{margin-left:0 !important;}
    .nav-link { text-align: left;}
    a.navbar-brand img{margin-top:-10px !important;}
    .nav-item hr{
        margin:0.8rem 0 !important;
        color:var(--grey);
    }
    .navbar-light .navbar-toggler{border:none;box-shadow:none;}

    .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;}
    .bg-light{
        background:var(--blue) !important;
        padding: 0.6rem 0;
        position: fixed;
        width: 100%;
        z-index: 9999;
    }
    .contact-col-2{padding: 80px 0px;}
    #footer{padding:0 0 0 0rem !important;position:absolute;left:0;}
}
@media (max-width: 769px){
    #about{padding:80px 20px;}
    .philosophy-section{padding:50px 0px;}
}
@media(max-width:767px){
    .border-bottom{
        /* width: unset; */

    max-width: 70px;
    margin: 20px auto;
    }
    .contact-col-2 .border-bottom{
        max-width: 100%;
        margin: 20px 0;
    }
    .thailand-col {
        margin-top: 20px;
    }
    .thailand-text{
        padding:30px 20px 0px 20px;
        text-align: center;
    }
    .thailand-col.pe-5 {
        padding-right: 0px !important;
        padding-left: 0px;
    }
    .thailand-text .border-bottom{
        text-align:center;
    }
    .thailand-innerrow {
        padding-right: 0px;
    }
    .thailand-container {
        padding: 60px 0px 0px 0px;
    }
    .thailand-innerrow1 {
        padding: 30px 15px;
    }
    .thailand-innerrow2 {
        margin-left: 0px;
    }
    #thailandpage .container-fluid {
        padding: 0px;
    }
    .thailand-innerrow {
        padding-left: 0px !important;
    }
    #thailandpage .row{
        margin-right: 0px !important;
        margin-left: 0px !important;
    }

    .hero-text{top:80%;transform: translate(-50%,-80%);}

    .hero-text img{width:80px;}

    .hero-text h2{font-size:26px;line-height:36px;padding:2rem 0;}

    .hero-section .carousel-item{height:565px;}

    #about h2, .philosophy-section h2,.team-section h2, .executive-section h2{font-size:40px;}

    .contact-col-2{padding:120px 10px 50px 25px;}

    #contact-page .contact-col-2{padding:100px 35px 70px;}
    .contact-col-1{padding:100px 35px;}
    .map-col-1{padding-right:0rem !important;}
    .map-col-2{padding-left:0rem !important;}
    .philosophy-section,.executive-section {
        text-align: center;
        padding: 50px 0px;}
    .team-section{padding:0;}
    .executive-row h6 {padding: 0 0 2rem;}
    .executive-section {padding-top:100px;}
    #footer,.copyright{padding:50px 15px;}
    .foot-head,.foot-subhead,.link-div,.foot-text,.social-icons-wrapper{padding-left: 0rem !important;}
    .foot-head-1{margin-top:4rem;}
    #about-us-bios-page .team-section {padding: 120px 0px;}
    #about-us-bios-page .divider {margin-bottom: 0rem;}
    #about-us-bios-page .team-single-row .col-xl-6 {margin-top: 4rem;}
    #login-page .login-section {max-width: 90%;}
    #login-page .content{padding:150px 0 80px;}
    .sticky-header-container.fixed-table-container.fix-sticky {
        position: unset !important;
    }
}

@media(max-width:603px){
    input[type="submit"], input[type="button"],button[type="submit"]{max-width:145px;}
}

@media (max-width: 376px){
    #about h2, .philosophy-section h2, .team-section h2, .executive-section h2 ,#thailandpage h2{font-size: 33px;}
}
/* END OF MEDIA QUERY */

  /*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#site_preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
  }

  #site_preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #a5a08f;
    border-top-color: #203f5b;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
  }
  #site_preloader_editor {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    background-color: #fff;
    z-index: 5;
}

#site_preloader_editor:before {
    content: "";
    z-index: 100;

    border: 6px solid #a5a08f;
    border-top-color: #203f5b;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

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

  @keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
  }
  .note-editor.note-frame.panel.panel-default.fullscreen {
    background: #fff;
}
  /* #footer{display:none;} */

/* CONTENT MANAGER DASHBOARD */

.dash-grid-box {
    background: #203f5b;
    padding: 25px 20px;
    border-radius: 5px;
    color: #fff;
    height: 122px;
}

.dash-grid-box p {
    margin-bottom: 0;
}

.dash-grid-box i {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.6rem;
}

.dash-board-box {
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 5%);
    padding: 20px 25px;
    border-radius: 5px;
}

@media(min-width:992px) {
    .dash-board-box ul {
        height: 180px;
        overflow-y: auto;
    }
    .custom_padding{padding:20px 0px 10px;}
}

@media(min-width:1200px) {
    .dash-board-box ul {
        height: 180px;
    }
}
@media(max-width:390px){
    .g-recaptcha {
        overflow-x: scroll;
        overflow-y: hidden;
    }
}
.dash-board-box ul {
    padding-left: 20px;
}

.dash-board-box ul li {
    margin-bottom: 0.1rem;
}

/* END */

.bootstrap-table .fixed-table-toolbar .columns .dropdown-menu, .page-list .dropdown-menu{
    z-index: 1 !important;
  }
.page-list .dropdown-item.active{
    background: #203f5b !important;
}
.form-control:focus{
    box-shadow: none !important;
    border:1px solid #ced4da;
}
span.rounded-end.rounded-0.input-group-text.bg-transparent{
    padding: 0 !important;
    border: none !important;
}
.input-group-prepend.passwordToText{
    padding: 0.375rem 0.75rem;
    border:1px solid #ced4da;
}
input[name="subscribe"]{
    padding: 10px 18px !important;
    margin-top:0rem;
    margin-left:0 !important;
}
input#mce-EMAIL {
    color:#fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
input#mce-EMAIL:focus {
    outline: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

#news_radios .form-check{
    display:inline-block !important;
    margin-right:1rem;
    margin-top:0.5rem;
}
#news_radios .form-check-input{
    margin-top:1.25rem !important;
}
#news_radios .form-check-input:focus{
    box-shadow: none !important;
}
.note-editable img {
    width: 100%;
}
/* EXPORT TABLE FILES DROPDOWN STYLE */
  .user_tables #custom_toolbar_user .dropdown-menu{z-index: 1 !important;}
  .user_tables #custom_toolbar_user a:last-child{margin-right:61px;}
  .user_tables .columns.columns-right.btn-group.float-right{position:absolute;margin-right:57px;}
/* END STYLE */

.corsair-contact .contact-col-2 iframe{height:650px !important;}

table i.eye.fa.fa-eye{color: #203f5b !important}
.daterangepicker{z-index: 11 !important;}

#profile-labels label{height:unset !important}
.nav-link{position:relative;}
.col-auto.position-fixed .mainactive:after {
    content: "";
    position: absolute;
    color: var(--white) !important;
    border-bottom: 2.5px solid #a5a08f;
    width: 38%;
    left: 50%;
    top: 90%;
    transform: translateX(-50%);
}
.mar-right{margin-right:61px !important;}
#investorDiv {
    display:none;
}
.mt-1rem {
    margin-top: 1rem !important;
}
.table-responsive, .user_tables{overflow-y: hidden;}
@media(max-width:420px){
    #login-page .login-section {
        padding: 45px 20px 45px;
    }
    }
.display-flex{
display: flex;
}
#login-page #wpa-submit:focus {
    background-color: var(--grey) !important;
    color: #000 !important;
}
#partner_heading1 {
    padding: 10px;
    text-align: center;
    color: #a5a08f !important;
    font-weight: 600;
    font-family: "Montserrat", Sans-serif;
    font-size: 14px;
}
#partner_heading2 {
    padding: 10px 10px 0 10px;
    text-align: center;
}
#partner_heading2 h2 {
    font-family: "Montserrat", Sans-serif;
    color: #203f5b;
    font-weight: 600;
    padding: 0 0 0 0;
}
.doted_line {
    display: grid;
    place-items: center;
}
.img-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.mt-90px {
    margin-top: 90px;
}
ul.partner-list li{
    display: inline-block;
    width:12.1%;
    padding: 0 6px 0 6px;
    margin: 10px 0 10px 0;
    height: 75px
}
ul.plastic-neutral-list li{
    display: inline-block;
    width:19.5%;
    padding: 10px;
    margin: 10px 0 10px 0;
    height: 75px
}
ul.plastic-neutral-list li{
    display: inline-block;
    width:19.5%;
    padding: 0 10px 0 10px;
    margin: 10px 0 10px 0;
    height: 75px
}
.partner-img {
    width: 100%;
    position: relative;
    left: 10px;
    vertical-align: middle
}
@media (max-width: 767px) {
    ul.partner-list li{
        width:23%;
    }
    ul.plastic-neutral-list li{
        width:32%;
    }
}
@media (max-width: 786px) {
    ul.partner-list li{
        width:24%;
    }
    ul.plastic-neutral-list li{
        width:32.5%;
    }
}

