@font-face {
    font-family: 'Merriweather-Black';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/Merriweather-Black.ttf) format('truetype');
}

@font-face {
    font-family: 'Merriweather-Bold';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/Merriweather-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'Merriweather-Regular';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/Merriweather-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'JosefinSans-Bold';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/JosefinSans-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'JosefinSans-SemiBold';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/JosefinSans-SemiBold.ttf) format('truetype');
}

@font-face {
    font-family: 'JosefinSans-Medium';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/JosefinSans-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'JosefinSans-Regular';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/JosefinSans-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'JosefinSans-Italic';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/JosefinSans-Italic.ttf) format('truetype');
}

@font-face {
    font-family: 'SourceSansPro-Black';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/SourceSansPro-Black.ttf) format('truetype');
}

@font-face {
    font-family: 'SourceSansPro-Bold';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/SourceSansPro-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'SourceSansPro-SemiBold';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/SourceSansPro-SemiBold.ttf) format('truetype');
}

@font-face {
    font-family: 'SourceSansPro-Regular';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/SourceSansPro-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'SourceSansPro-Italic';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/SourceSansPro-Italic.ttf) format('truetype');
}

@font-face {
    font-family: 'RobotoSlab-Medium';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/RobotoSlab-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'RobotoSlab-Regular';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/RobotoSlab-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'RobotoSlab-Thin';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/RobotoSlab-Thin.ttf) format('truetype');
}

@font-face {
    font-family: 'Kanit-Regular';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/Kanit-Regular.ttf) format('truetype');
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "SourceSansPro-Regular", sans-serif;
}

a {
    text-decoration: none;
    color: #fff;
    transition: all 0.5s ease-in-out;
}

a:hover {
    color: #FC4517;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "JosefinSans-Regular", sans-serif;
    transition: all 0.3s ease-in-out;
}

p {
    font-family: 'SourceSansPro-Regular', sans-serif;
    font-size: 16px;
}

#main {
    margin-top: 90px;
}

.border-line {
    width: 57px;
    height: 2px;
    background-color: #C4B47C;
    display: inline-block;
}

@media (min-width:1200px) {
    .container.inside-container {
        max-width: 1140px;
    }
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1240px;
    }
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/


/* .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 3px 0;
    right: 15px;
    bottom: 15px;
    z-index: 998;
    background: #000;
    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: #193D4D;
    color: #fff;
}

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


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


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

#header {
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    padding: 6px 0;
    background: #FAF9F5;
    min-height: 40px;
}

#header.header-transparent {
    background: transparent;
}

#header.header-scrolled {
    background: #FAF9F5;
}

#header .logo h1 {
    margin: 0;
    color: #E23E14;
    font-family: 'Merriweather-Bold', sans-serif;
    font-size: 22px;
    text-align: left;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #E23E14;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
}

@media (max-width: 480px) {
    #header .logo h1 a {
        font-size: 18px;
    }
}


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


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

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

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    margin-left: 10px;
    color: #000000;
    font-family: 'JosefinSans-Medium', sans-serif;
    font-size: 16px;
    text-align: center;
    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 {
    background: transparent;
    color: #FC4517;
}

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

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

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: normal;
    color: #2f4d5a;
}

.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: #67b0d1;
}

.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;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

@media (max-width:991px) {
    .navbar a,
    .navbar a:focus {
        padding: 0 8px;
        font-size: 18px;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #000000;
    font-size: 28px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    line-height: 0;
    transition: 0.5s ease-in-out;
}

@media (max-width: 767px) {
    .mobile-nav-toggle {
        opacity: 1;
        visibility: visible;
        transition: 0.5s ease-in-out;
    }
    .navbar ul {
        opacity: 0;
        visibility: hidden;
        width: 0;
        height: 0;
        right: -100%;
        transition: 0.3s;
        position: absolute;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgb(44 44 44 / 90%);
    transition: 0.3s;
}

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

.navbar-mobile ul {
    opacity: 1;
    visibility: visible;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    padding: 50px 0 20px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
}

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.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: #67b0d1;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 683px;
    background: url("../img/hero-bg.jpg") top center;
    background-size: cover;
    position: relative;
    margin-bottom: -90px;
    transition: all 0.5s ease-in-out;
}

#hero .hero-container {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: left;
    background-position: center right;
    background-repeat: no-repeat;
    width: 754px;
    max-width: 100%;
    min-height: 276px;
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#hero .hero-container::after {
    content: '';
    background: linear-gradient(to right, rgba(19, 47, 67, 0.8), rgba(5, 21, 33, 0.8));
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#hero h1 {
    max-width: 526px;
    width: 100%;
    color: #FFFFFF;
    font-family: 'JosefinSans-Regular', sans-serif;
    font-size: 46px;
    text-align: left;
}

.learn-more-link {
    color: #FFFFFF;
    font-family: 'SourceSansPro-SemiBold', sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.learn-more-link:hover {
    color: #FC4517;
}

.learn-more-link .fa {
    font-size: 24px;
    font-weight: normal;
    margin-left: 10px;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (min-width: 1600px) {
    #hero {
        height: 800px;
    }
}

@media (min-width: 1920px) {
    #hero {
        height: 990px;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
}

@media (max-width: 575px) {
    #hero {
        height: 420px;
        transition: all 0.5s ease-in-out;
    }
    #hero .hero-container {
        padding: 20px;
        min-height: 176px;
    }
}

@media (max-width: 480px) {
    #hero h1 {
        font-size: 24px;
        line-height: 32px;
    }
}


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

section {
    padding: 50px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f4f9fc;
}

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

.section-title h2 {
    position: relative;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #000000;
    font-size: 20px;
    z-index: 2;
}

.section-title p {
    margin-bottom: 0;
}

@media (max-width:575px) {
    .section-title {
        padding-bottom: 20px;
    }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 15px 0;
    background-color: #f8fbfd;
    min-height: 40px;
}

.breadcrumbs h2 {
    font-size: 24px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }
    .breadcrumbs ol {
        display: block;
    }
    .breadcrumbs ol li {
        display: inline-block;
    }
}


/*--------------------------------------------------------------
# Company Strategy 
--------------------------------------------------------------*/

.strategy {
    position: relative;
}

.strategy .strategy-box {
    position: relative;
    background: #F3F0E9;
    padding: 50px;
    height: 100%;
}

.strategy .strategy-box.even {
    background-color: #FAF9F5;
}

.strategy .strategy-box.odd {
    background-color: #F3F0E9;
}

.strategy .strategy-box span {
    color: #C4B47C;
    font-family: 'RobotoSlab-Thin', sans-serif;
    font-size: 60px;
    font-weight: normal;
    font-style: normal;
    text-align: left;
    position: relative;
    margin-bottom: 15px;
    display: inline-block;
}

.strategy .strategy-box span::after {
    content: '';
    width: 57px;
    height: 2px;
    background-color: #C4B47C;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 100%;
    margin-left: 20px;
}

.strategy .strategy-box h2 {
    color: #FC4517;
    font-family: 'JosefinSans-Regular', sans-serif;
    font-size: 30px;
    text-align: left;
}

.strategy .strategy-box p {
    color: #333333;
    font-family: 'SourceSansPro-Regular', sans-serif;
    font-size: 16px;
    text-align: left;
}

@media (max-width:575px) {
    .strategy .strategy-box {
        padding: 20px 12px;
    }
    .strategy .strategy-box span {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .strategy .strategy-box h2 {
        font-size: 26px;
    }
}


/*--------------------------------------------------------------
# Your Team Section
--------------------------------------------------------------*/

#teams {
    width: 100%;
    background-color: #F2F2F2;
    margin-top: -20px;
}

#teams .teams-wrapper {
    background-size: cover;
    background-position: top center;
    position: relative;
    width: 100%;
    height: 510px;
}

#teams .teams-container {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: left;
    background-position: center right;
    background-repeat: no-repeat;
    width: 590px;
    max-width: 100%;
    min-height: 276px;
    background: #193D4D;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#teams h1 {
    width: 100%;
    color: #FFFFFF;
    font-family: 'JosefinSans-Regular', sans-serif;
    font-size: 30px;
    text-align: left;
    margin-top: 20px;
}

#teams p {
    color: #FAFAFA;
    font-family: 'SourceSansPro-Regular', sans-serif;
    font-size: 16px;
    text-align: left;
}

@media (max-width: 575px) {
    #teams {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    #teams h1 {
        font-size: 26px;
    }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
    position: relative;
    z-index: 1;
}

.about .content h3 {
    color: #000000;
    font-family: 'JosefinSans-Regular', sans-serif;
    font-size: 23px;
    text-align: left;
    margin-bottom: 0;
}

.about .content h2 {
    color: #FC4517;
    font-family: 'JosefinSans-Regular', sans-serif;
    font-size: 30px;
    text-align: left;
    margin-top: 15px;
}

.about .content p {
    color: #333333;
    font-size: 16px;
    width: 100%;
    max-width: 400px;
}

.about .content .learn-more-link {
    color: #000000;
}

.about .content .about-btn:hover {
    background: #7bbad7;
}

.about .about-boxes .about-info {
    padding: 20px;
    max-width: 100%;
    min-height: 180px;
}

.about .about-boxes .about-info h4 {
    color: #000000;
    font-size: 23px;
    margin-bottom: 24px;
}

.about .about-boxes .creativity {
    background: #DDDBDE;
}

.about .about-boxes .visionary {
    background: #656E77;
    color: white;
}

.about .about-boxes .visionary h4 {
    color: white;
}

.about .about-boxes .technologists {
    background: #CAD4DF;
}

.about .about-boxes .research {
    background: #3B373B;
    color: white;
}

.about .about-boxes .research h4 {
    color: white;
}

@media (max-width: 991px) {
    .about .content {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .about .about-boxes .about-info {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .about .content h2 {
        font-size: 26px;
    }
}


/*--------------------------------------------------------------
# Doing Prepare
--------------------------------------------------------------*/

.prepare {
    background-color: #193D4D;
    min-height: 510px;
    overflow: visible;
}

.prepare .prepare-thumb {
    width: 701px;
    height: 471px;
    max-width: 100%;
    overflow: hidden;
    margin-top: -10px;
}

.prepare .prepare-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prepare .prepare-container h1 {
    color: #F3F0E9;
    font-size: 35px;
    text-align: left;
    margin-top: 15px;
}

@media (max-width: 767px) {
    .prepare {
        min-height: auto;
    }
    .prepare .prepare-thumb {
        height: 312px;
        margin-bottom: 20px;
    }
    .prepare .prepare-container {
        padding-bottom: 50px;
    }
    .prepare .prepare-container h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .prepare .prepare-container h1 {
        font-size: 24px;
    }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services {
    background: #F3F0E9;
    position: relative;
}

.services .services-box .title {
    color: #FC4517;
    font-family: 'Kanit-Regular', sans-serif;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: left;
    margin-bottom: 10px;
}

.services .services-box .description {
    max-width: 294px;
    width: 100%;
}

@media (max-width: 575px) {
    .services .services-box {
        margin-bottom: 20px;
    }
    .services .services-box .description {
        max-width: 100%;
    }
}


/*--------------------------------------------------------------
# Services page - Other Hero Section
--------------------------------------------------------------*/

#childHero {
    width: 100%;
    height: 683px;
    background: url("../img/hero-bg.jpg") top center;
    background-size: cover;
    background-position: top center;
    position: relative;
    margin-bottom: -90px;
    transition: all 0.5s ease-in-out;
}

#childHero .border-line {
    width: 130px;
    max-width: 100%;
}

#childHero .child-hero-container {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: left;
    background-position: center right;
    background-repeat: no-repeat;
    width: 763px;
    min-height: 309px;
    max-width: 100%;
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#childHero .child-hero-container::after {
    content: '';
    background: linear-gradient(#F7F7F7, #FFFFFF);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#childHero h1 {
    width: 100%;
    color: #132F43;
    font-family: 'JosefinSans-Regular', sans-serif;
    font-size: 46px;
    text-align: left;
    margin-top: 30px;
}

@media (min-width: 1024px) {
    #childHero {
        background-attachment: fixed;
    }
}

@media (min-width: 1600px) {
    #childHero {
        height: 800px;
    }
}

@media (min-width: 1920px) {
    #childHero {
        height: 990px;
    }
}

@media (max-width: 768px) {
    #childHero h1 {
        font-size: 28px;
        line-height: 36px;
    }
}

@media (max-width: 575px) {
    #childHero {
        height: 420px;
        transition: all 0.5s ease-in-out;
    }
    #childHero .child-hero-container {
        padding: 20px;
        min-height: 176px;
    }
}

@media (max-width: 480px) {
    #childHero h1 {
        font-size: 24px;
        line-height: 32px;
    }
}


/*--------------------------------------------------------------
# Services page - Our Services
--------------------------------------------------------------*/

.our-services {
    position: relative;
}

.our-services .section-title h2 {
    color: #C4B47C;
    font-family: 'RobotoSlab-Medium', sans-serif;
    font-size: 40px;
    font-weight: normal;
    font-style: normal;
    text-align: left;
    margin: 0;
}

.services-content-box {
    padding-top: 60px;
    min-height: 70vh;
}

.services-content-box .scb-title {
    width: 350px;
    max-width: 100%;
    position: relative;
    margin-right: 30px;
}

.services-content-box.box-odd .scb-title:after {
    content: '';
    width: 354px;
    height: 366px;
    background: #F9F7F4;
    position: absolute;
    top: 50%;
    left: -34%;
    transform: translateY(-50%);
    z-index: -1;
}

.services-content-box .scb-title h4 {
    color: #FC4517;
    font-family: 'JosefinSans-Regular', sans-serif;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: left;
    margin-bottom: 2px;
}

.services-content-box.box-even .scb-thumb-description {
    flex-direction: row-reverse;
}

.services-content-box .scb-thumb-description .scb-thumb {
    width: 350px;
    min-width: 350px;
    height: 264px;
    max-width: 100%;
    overflow: hidden;
    display: block;
}

.services-content-box .scb-thumb-description .scb-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.services-content-box .scb-thumb-description p {
    color: #333333;
    font-family: 'RobotoSlab-Regular', sans-serif;
    font-size: 14px;
    text-align: left;
    width: 100%;
    max-width: 442px;
    padding-right: 20px;
    padding-top: 28px;
}

#sidebarWrap {
    position: relative;
    box-shadow: none;
    border: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    transition: all 0.5s ease-in-out;
}

#sidebar {
    width: 350px;
    max-width: 100%;
    min-height: 275px;
    background: #F3F0E9;
    position: absolute;
    margin-top: 60px;
    padding: 20px 0;
    transition: all 0.5s ease-in-out;
}

#sidebar.fixed {
    position: fixed;
    top: 0;
    transition: all 0.5s ease-in-out;
}

#sidebar ul {
    margin: 0;
    padding: 0;
}

#sidebar ul li {
    list-style: none;
    padding: 4px 0;
}

#sidebar ul li a.nav-link {
    width: 330px;
    max-width: 100%;
    color: #000000;
    font-family: 'Kanit-Regular', sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: left;
    padding: 5px 20px;
    border: none;
    border-radius: 0;
}

#sidebar ul li a.nav-link.active {
    color: #FFFFFF;
    font-size: 16px;
    background: linear-gradient(to right, #193D4D, #051521);
    border: none;
    border-radius: 0px;
    box-shadow: 0 5px 5px -5px #333;
}

@media (max-width:1440px) {
    .services-content-box {
        min-height: 600px;
    }
}

@media (max-width:1199px) {
    #sidebar {
        width: 290px;
    }
    #sidebar ul li a.nav-link {
        width: 260px;
    }
}

@media (max-width:991px) {
    #sidebar {
        display: none;
    }
}

@media (max-width:767px) {
    .services-content-box .scb-title {
        width: 100%;
    }
    .services-content-box .scb-thumb-description .scb-thumb {
        width: 100%;
        min-width: 100%;
    }
    .services-content-box .scb-thumb-description {
        margin: 30px 0;
    }
    .services-content-box .scb-thumb-description p {
        max-width: 100%;
    }
    .our-services .section-title h2 {
        font-size: 26px;
    }
}

@media (max-width:575px) {
    .services-content-box.box-odd .scb-title:after {
        left: -24%;
    }
}


/*--------------------------------------------------------------
# AboutUs Page
--------------------------------------------------------------*/

#aboutPage {
    width: 100%;
    height: 100vh;
    background-size: cover;
    position: relative;
    margin-bottom: -90px;
}

#aboutPage .about-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

#aboutPage h1 {
    color: #333333;
    font-family: 'RobotoSlab-Regular', sans-serif;
    font-size: 30px;
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.scroll-down span {
    color: #FC4517;
    font-family: 'JosefinSans-Regular', sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    text-align: center;
    display: block;
    margin-bottom: 10px;
}

.scroll-down .fa {
    color: #444444;
    font-size: 59px;
    font-weight: normal;
    background: rgba(255, 255, 255, 0);
    position: relative;
    text-align: center;
}

.scroll-down .fa img {
    width: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.scroll-down .fa img {
    -webkit-animation-duration: 3.5s;
    animation-duration: 3.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name: goDown;
    animation-name: goDown;
}

@-webkit-keyframes goDown {
    0%,
    100% {
        -webkit-top: 24px;
    }
    25% {
        -webkit-top: 35px;
    }
    50% {
        -webkit-top: 24px;
    }
    75% {
        -webkit-top: 35px;
    }
}

@keyframes goDown {
    0%,
    100% {
        top: 24px;
    }
    25% {
        top: 32px;
    }
    50% {
        top: 24px;
    }
    75% {
        top: 32px;
    }
}

@media (min-width: 1024px) {
    #aboutPage {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #aboutPage h1 {
        font-size: 28px;
        line-height: 36px;
    }
}

@media (max-width: 480px) {
    #aboutPage h1 {
        font-size: 24px;
        line-height: 32px;
    }
}


/*--------------------------------------------------------------
# # AboutUs Page - Info
--------------------------------------------------------------*/

.little-info {
    position: relative;
    z-index: 1;
}

.little-info .info-thumb {
    width: 350px;
    max-width: 100%;
    height: 386px;
    box-shadow: 0 0 5px #333;
    display: block;
}

.little-info .info-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.little-info .info-content h2 {
    color: #333333;
    font-family: 'RobotoSlab-Medium', sans-serif;
    font-size: 30px;
    text-align: left;
    margin-bottom: 30px;
}

.little-info .info-content p {
    width: 84%;
    color: #333333;
    font-family: 'RobotoSlab-Regular', sans-serif;
    font-size: 14px;
    text-align: justify;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .little-info .info-content p {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .little-info .info-thumb {
        margin-bottom: 40px;
    }
}


/*--------------------------------------------------------------
# AboutUs Page - Provide
--------------------------------------------------------------*/

.provide {
    position: relative;
    background: #FAF9F5;
    margin-top: -75px;
    padding-top: 60px;
    z-index: 0;
}

.provide .provide-box .title {
    color: #FC4517;
    font-family: 'JosefinSans-Regular', sans-serif;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    margin-top: 15px;
    margin-bottom: 10px;
}

.provide .provide-box .description {
    max-width: 346px;
    width: 100%;
    color: #333333;
    font-family: 'RobotoSlab-Regular', sans-serif;
    font-size: 14px;
    text-align: justify;
}

@media (max-width: 991px) {
    .provide {
        margin-top: 0;
    }
}

@media (max-width: 575px) {
    .provide .provide-box .description {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .little-info .info-content h2 {
        font-size: 26px;
    }
}


/*--------------------------------------------------------------
# AboutUs Page - Supports
--------------------------------------------------------------*/

.supports {
    position: relative;
}

.supports .supports-thumb {
    width: 337px;
    max-width: 100%;
    height: 345px;
    box-shadow: 0 0 5px #333;
    display: block;
}

.supports .supports-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.supports .supports-content h2 {
    color: #333333;
    font-family: 'RobotoSlab-Regular', sans-serif;
    font-size: 30px;
    text-align: center;
    line-height: 1.5;
    width: 98%;
}

@media (max-width: 767px) {
    .supports .supports-thumb {
        margin: 0 auto 40px;
    }
    .supports .supports-content h2 {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .supports .supports-content h2 {
        font-size: 26px;
    }
}

@media (max-width: 375px) {
    .supports .supports-content h2 {
        font-size: 20px;
    }
}


/*--------------------------------------------------------------
# AboutUs Page - Converstion Contact
--------------------------------------------------------------*/

.converstion {
    position: relative;
    background: #FAF9F5;
    padding: 80px 0;
}

.converstion .converstion-content {
    text-align: center;
}

.converstion .converstion-content h4 {
    color: #FC4517;
    font-family: 'JosefinSans-SemiBold', sans-serif;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    margin-bottom: 30px;
}

.converstion .converstion-content a.start-here {
    width: 200px;
    height: 50px;
    line-height: 50px;
    padding: 0;
    color: #FFFFFF;
    font-family: 'JosefinSans-Regular', sans-serif;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: center;
    background: linear-gradient(to right, #132F43, #051521);
    border: none;
    border-radius: 0px;
    box-shadow: 0 5px 5px -5px #333;
    transition: all 0.4s;
}

.converstion .converstion-content a.start-here:hover {
    background: linear-gradient(to right, #051521, #132F43);
    transition: all 0.4s;
}

@media (max-width:575px) {
    .converstion {
        padding: 50px;
    }
}


/*--------------------------------------------------------------
# Contact Us Page
--------------------------------------------------------------*/


/* hide arrows
 Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}


/* Firefox */

input[type=number] {
    -moz-appearance: textfield !important;
}

.contact {
    position: relative;
    margin-top: -340px;
    margin-bottom: 50px
}

.contact .contact-wrapper {
    background: #F3F0E9;
    border-radius: 0px;
    box-shadow: 0 0 5px #333;
    width: 966px;
    max-width: 100%;
    margin: 0 auto;
    padding: 35px;
}

.contact .contact-wrapper .contact-head h1 {
    color: #C4B47C;
    font-family: 'RobotoSlab-Medium', sans-serif;
    font-size: 30px;
    font-weight: normal;
    font-style: normal;
    text-align: left;
    margin-bottom: 30px;
}

.contact .contact-wrapper .contact-head p {
    color: #333333;
    font-family: 'JosefinSans-Regular', sans-serif;
    font-size: 16px;
    text-align: left;
}

.contact-form {
    margin-top: 30px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    color: #000000;
    font-family: 'SourceSansPro-SemiBold', sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: left;
    line-height: normal;
}

.contact-form .form-group label span {
    margin-right: 5px;
}

.contact-form .form-group label p {
    color: #000000;
    font-family: 'SourceSansPro-Regular', sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: right;
}

.contact-form .form-group input {
    width: 300px;
    max-width: 100%;
    height: 30px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 0px;
}

.contact-form .form-group input:focus {
    outline: none;
    box-shadow: none;
}

.contact-info {
    width: 421px;
    min-height: 273px;
    background: #F7F6F1;
    border: none;
    border-radius: 0px;
    box-shadow: 5px 0 5px -5px #333;
    padding: 30px;
    margin-top: 20px;
}

.contact-info ul {
    margin: 0;
    padding: 0;
}

.contact-info ul li:first-child {
    margin-top: 0;
}

.contact-info ul li {
    list-style: none;
    margin-top: 20px;
}

.contact-info ul li label {
    color: #000000;
    font-family: 'SourceSansPro-SemiBold', sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    text-align: left;
    display: block;
    margin-bottom: 5px;
}

.contact-info ul li .fa {
    margin-right: 20px;
}

.contact-info ul li p {
    color: #000000;
    font-family: 'SourceSansPro-SemiBold', sans-serif;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: left;
    margin: 0;
}

.submit-btn {
    width: 200px;
    height: 50px;
    line-height: 50px;
    padding: 0;
    color: #FFFFFF;
    font-family: 'JosefinSans-Regular', sans-serif;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: center;
    background: linear-gradient(to right, #132F43, #051521);
    border: none;
    border-radius: 0px;
    box-shadow: 0 5px 5px -5px #333;
    transition: all 0.4s;
    margin-top: 50px;
}

.submit-btn:hover {
    background: linear-gradient(to right, #051521, #132F43);
    transition: all 0.4s;
}

.submit-btn:hover,
.submit-btn:focus {
    outline: none;
    box-shadow: none;
}

@media (max-width:1024px) {
    .contact-info {
        width: 130%;
    }
}

@media (max-width:991px) {
    .contact-info {
        width: 310px;
    }
}

@media (max-width:767px) {
    .contact-form .form-group input {
        width: 100%;
    }
    .contact-info {
        width: 100%;
    }
    .contact .contact-wrapper {
        padding: 20px;
    }
}

@media (max-width:575px) {
    .contact {
        margin-bottom: 0;
    }
    .submit-btn {
        margin-top: 20px
    }
}

@media (max-width:480px) {
    .contact .contact-wrapper .contact-head h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .contact-info {
        padding: 20px;
    }
    .contact-info ul li .fa {
        margin-right: 14px;
    }
    .contact-info ul li p {
        font-size: 18px;
    }
    .contact-form .form-group label {
        font-size: 14px;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: #39363D;
    padding: 0;
    color: #fff;
    font-size: 14px;
    clear: both;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    color: #fff;
    text-align: center;
}

#footer .footer-top .footer-info h3 {
    color: #FFFFFF;
    font-family: 'Kanit-Regular', sans-serif;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: left;
}

#footer .footer-top .footer-info p {
    text-align: left;
    width: 100%;
    max-width: 398px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#footer .footer-top .footer-links ul li a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    font-family: 'JosefinSans-Medium', sans-serif;
    font-size: 16px;
    text-align: center;
}

#footer .footer-top .footer-links ul a:hover,
#footer .footer-top .footer-links ul a.active {
    color: #FC4517;
}

#footer .footer-top .contacts-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#footer .footer-top .contacts-info ul li a {
    display: block;
}

@media (max-width: 767px) {
    #footer .footer-top .footer-info {
        margin-bottom: 30px;
    }
    #footer .footer-top .footer-info p {
        max-width: 100%;
    }
    #footer .footer-top .footer-links ul {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    #footer .footer-top .footer-links ul,
    #footer .footer-top .contacts-info ul {
        flex-direction: column;
        align-items: flex-start;
    }
    #footer .footer-top .footer-links ul li {
        padding: 5px 0;
    }
    #footer .footer-top .contacts-info ul li {
        margin-bottom: 10px;
    }
    #footer .footer-top .contacts-info ul:last-child {
        margin-bottom: 0;
    }
}

.error-message{
    display: none;
    color: red;
    font-size: 12px;
    font-family: inherit;
    margin-top: 5px;
}

.display-none{display: none;}

.error input{
    border: 1px solid red !important;
}

.error .form-label{
    color: red !important;
}

.error .error-message{
    display: block !important;
}
