@font-face {
    font-family: 'Khmer';
    src: url(../fonts/khmer.ttf)
}

@font-face {
    font-family: 'Sofiapro';
    src: url(../fonts/sofiapro.ttf)
}

:root {
    --primary: #a7867b;
    --white: #fff;
    --black: #111;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Khmer';
    font-family: 'Sofiapro';
    scroll-behavior: smooth;
    overflow: inherit !important;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea, select {
    background: none;
    border: solid 1px var(--primary);
    color: var(--primary);
    font-size: 16px;
    line-height: normal;
    margin: 0 0 22px;
    padding: 16px 20px;
    width: 100%;
    outline: 0;
    font-family:
        'Sofiapro';
}

input[type="text"]::placeholder, input[type="email"]::placeholder, input[type="tel"]::placeholder, textarea::placeholder, select::placeholder {
    color: var(--primary);
}

select, input[type="date"] {
    padding: 14px 17px;
}

input[type="submit"] {
    color: var(--white);
    background: var(--primary);
    border: none;
    padding: 17px 25px;
    font-size: 16px;
    border: 0;
    letter-spacing: 0.8px;
    cursor: pointer;
    outline: none;
    font-weight: 500;
    font-family: 'Sofiapro';
}

input[type="submit"]:hover {
    background: var(--secondary);
    color: var(--white);
    transition: 0.8s;
}

textarea {
    height: 100px;
    margin-bottom: 5px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 15px 0;
    font-family: 'Khmer';
    color: #050A15;
    font-weight: 500;
    text-transform: inherit;
}

h1 {
    font-size: 28px
}

h2 {
    font-size: 24px
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px
}

h6 {
    font-size: 16px
}

p {
    padding: 0;
    margin: 0 0 10px 0;
    font-family: 'Sofiapro';
    color: #333;
    font-size: 18px;
    line-height: 22px;
    font-weight: 300;
}

ul, li, a {
    list-style-type: none;
    font-family: 'Sofiapro';
    color: #222;
    line-height: 26px;
    font-size: 16px;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

a:hover {
    transition: 0.8s;
    text-decoration: none;
}

.heading, .leftheading {
    margin-bottom: 30px;
    font-size: 80px;
    position: relative;
    font-weight: 500;
    line-height: 80px;
}

.heading {
    text-align: center;
}

.subheading {
    width: 80%;
    margin: 0 auto 30px;
    text-align: center;
    font-size: 17px;
    color: #121212;
    font-family: 'Sofiapro';
}

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
}

.animate__fadeInUp {
   
    animation-timing-function: ease-in;
}
/* HEADER SECTION CSS */

header {
    padding: 25px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

header ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header ul li a {
    color: var(--white);
  
    font-weight: 200;
    letter-spacing: .5px;
    font-size: 18px;
}

header ul li a img {
    display: block;
    width: 300px;
}


/* MOBILE HEADER SECTION */


.header {
    position: absolute;
    width: 100%;
    z-index: 3;
    padding: 15px 20px;
    display: none;
}

.header a.logo img {
    width: 180px;
}

.header ul {
    margin: 0;
    list-style: none;
    overflow: hidden;
    background-color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header ul.menu li a {
    color: #333;
    border: none;
    font-size: 16px;
    font-weight: 400;
    padding: 12px;
}

.header li a {
    display: block;
    color: #333;
    border: none;
    font-size: 16px;
    font-weight: 400;
    padding: 12px;
}

.header li a:hover,
.header .menu-btn:hover {
    background-color: #f4f4f4;
}

.header .logo {
    display: block;
    float: left;
}

/* menu */

.header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 20px 0;
    position: relative;
    user-select: none;
}

.header .menu-icon .navicon {
    background: #fff;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 22px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
    background: #fff;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.header .menu-icon .navicon:before {
    top: 7px;
}

.header .menu-icon .navicon:after {
    top: -8px;
}

/* menu btn */

.header .menu-btn {
    display: none;
}

.header .menu-btn:checked~.menu {
    min-height: 280px;
}

.header .menu-btn:checked~.menu-icon .navicon {
    background: transparent;
}

.header .menu-btn:checked~.menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.header .menu-btn:checked~.menu-icon .navicon:after {
    transform: rotate(45deg);
}

.header .menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
    top: 0;
}

/* 48em = 768px */

@media (min-width: 48em) {
    .header li {
        float: left;
    }

    .header li a {
        padding: 20px 30px;
    }

    .header .menu {
        clear: none;
        float: right;
        max-height: none;
    }

    .header .menu-icon {
        display: none;
    }
}

/* BANNER SECTION CSS */


.banner {
    background: #000 url(../images/banner-bg.png)no-repeat center center;
    padding: 300px 0 250px;
}

.banner-content h2 {
    font-size: 50px;
    margin: 0 15px 0 0;
    font-weight: 400;
    color: var(--white);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content ul {
    width: 230px;
    mask: linear-gradient(#0000002e 0, #000000 50%, #0000002e 100%, #00000000 0) 100% 100% / 100% 100% repeat-x;
}

.banner-content ul li {
    font-family: 'Khmer';
    font-size: 50px;
    margin: 0;
    color: var(--white);
    line-height: 52px;
}

/* OUR STORY SECTION CSS */

.ourstory {
    padding: 140px 0 260px;
    background: #1c1a1a;
    position: relative;
    overflow: hidden;
}

.ourstory-content {
    width: 38%;
    position: relative;
    z-index: 4;
}

.ourstory-content p {
    text-align: justify;
    color: #a8867b;
    margin: 0;
}

.ourstory-content h2.leftheading {
    color: var(--primary);
}

.ourstory .line1, .ourstory .line2 {
    position: absolute;
    background: var(--primary);
    z-index: 1;
}

.ourstory .line1 {
    top: 0;
    right: 25%;
    height: 0;
    width: 2px;
}

.ourstory .line2 {
    bottom: 0;
    width: 0;
    height: 2px;
}




.ourstory-vdo {
    position: absolute;
    right: 0;
    width: auto;
    height: 100%;
    top: 0;
    /* transform: translateY(-50%); */
    /* rotate: 90deg; */
    /* transform: scaleY(-1); */
    /* object-fit: contain; */
}
.ourstory-vdo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* OFFERING SECTION CSS */

.ourofferings {
    background: #1c1a1a;
    padding: 120px 0;
}

.ourofferings h2.heading {
    color: var(--white);
}

.ourofferingslist p {
    margin: 0 auto;
    width: 80%;
    color: #a7867b;
    font-size: 18px;
    min-height: 45px;
    line-height: 22px;
    position: relative;
    z-index: 1;
    background: #1c1a1a;
}

.offerings-wrapper {
    display: flex;
    flex-wrap: wrap;
    row-gap: 100px;
}

.ourofferingslist {
    width: 33.3%;
    text-align: center;
    overflow: hidden;
}

.ourofferingslist figure {
    margin: 0 0 25px;
}

.ourofferingslist figure img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

/* OUR USPS SECTION CSS */

.ourusps {
    padding: 120px 0;
    position: relative;
    background: url(../images/ourusps-wave.png)no-repeat center bottom/contain;
    overflow: hidden;
}

.ourusps video {
    /* position: absolute; */
    /* left: 50%; */
    /* width: 100%; */
    /* top: 45%; */
    /* mix-blend-mode: inherit; */
    /* z-index: -1; */
    /* transform: translate(-50%, -55%); */
    position: absolute;
    top: 27%;
    left: 0;
    width: 120%;
    object-fit: cover;
    mix-blend-mode: inherit;
    z-index: -1;
    
}
.ourusps:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 55%;
   
    z-index: -1;
}

.ourusps .leftheading {
    margin: 0;
}

.ourusps-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.ourusps-wrapper figure {
    width: 35%;
    margin: 0;
}

.ouruspslist-content {
    width: 65%;
    padding: 60px 100px 60px 80px;
    position: relative;
}

.ouruspslist-content:before {
    position: absolute;
    content: '';
    top: 65px;
    left: 0;
    width: 50px;
    height: 50px;
    background: url(../images/usps-header-icon.png)no-repeat center center/contain;
}

.ourusps-wrapper .ouruspslist-content:nth-child(8) {
    padding-left: 175px;
    padding-right: 0;
}

.ourusps-wrapper .ouruspslist-content:nth-child(8):before {
    left: 100px;
}

.ourusps-wrapper figure img {
    width: 100%;
}

.ouruspslist-content h3 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 25px;
}

.ouruspslist-content p {
    font-size: 18px;
    line-height: 24px;
    margin: 0;
    color: var(--primary);
}


/* PRODUCT SERVICES SECTION CSS */


.product-services {
    border-top: 2px solid #a8867b;
    border-bottom: 2px solid #a8867b;
    background: #f3f2f3;
}

.product-tab {
    display: flex;
}

.producttabnav, .producttab-content {
    width: 50%;
}

.producttab-content {
    padding: 50px 80px;
    background: url(../images/products-services.png)no-repeat center center/cover;
}

.producttab-content .producttab-content {
    display: flex;
}

.producttabnav {
    padding: 100px 0 100px 100px;
}

.producttabnav h2.leftheading {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 50px;
}

.producttabnav ul {
    padding-left: 60px;
}

.producttabnav li {
    display: block;
    font-size: 26px;
    font-weight: 300;
    padding-bottom: 20px;
    border-bottom: 2px solid transparent;
    margin-bottom: 25px;
    margin-left: 70px;
    position: relative;
    cursor: pointer;
}

.producttabnav li.tab-btn.tab-btn-active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    transition: border 1.2s;
}

.producttabnav li:last-child {
    margin-bottom: 0;
}

.producttabnav li.tab-btn:before {
    position: absolute;
    content: '';
    top: -6px;
    left: -68px;
    height: 42px;
    width: 42px;
    background: url(../images/product-navicon.png)no-repeat center center/contain;
    opacity: 0;
}

.producttabnav li.tab-btn-active:before {
    opacity: 1;
    transition: 1s;
}

.producttab-content ul li {
    color: var(--white);
    font-size: 26px;
    font-weight: 300;
    margin: 18px 0;
}

.tab-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    display: none;
}

.tab-content-active {
    display: flex;
}

.producttab-content ul {
    width: 50%;
}

.producttab-content ul:first-child {
    margin-top: 100px;
}


/* INDUSTRY EXPERTISE SECTION CSS */

.industry-expertise figure {
    margin: 0;
}

.industry-expertise figure img {
    width: 100%;
    height: auto;
}

.industry-expertise {
    padding: 100px 0 120px;
}

.industry-expertise h4 {
    font-size: 34px;
    margin-bottom: 60px;
    line-height: 40px;
}


/* FOOTER SECTION CSS */

footer {
    background: #1c1a1a;
    border-bottom: 100px solid #a8867b;
}

.footer-wrapper {
    display: flex;
}

.footer-content, .footer-form {
    width: 50%;
}

.footer-content {
    padding: 60px 120px 60px 0;
    border-right: 1px solid var(--primary);
}

.footer-content.footer-content .footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-form {
    padding: 80px 0 80px 80px;
}

.footer-content a.footer-logo img {
    width: 340px;
}

.footer-content h4 {
    font-family: 'Sofiapro';
    color: var(--white);
    font-weight: 300;
    font-size: 22px;
    margin: 20px 0;
}

.footer-content p {
    margin: 0;
    color: var(--primary);
    text-align: justify;
}

.footer-content ul {
    display: flex;
    align-items: center;
    margin-top: 40px;
    margin-left: -16px;
}

.footer-content ul li a img {
    width: 58px;
    margin-right: 40px;
}

.footer-form h3 {
    color: var(--primary);
    font-size: 36px;
    margin-bottom: 20px;
}

.footerform-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footerform-btn .joinlist-checkbox {
    display: flex;
    align-items: center;
    column-gap: 8px;
}

.footerform-btn .joinlist-checkbox input[type="checkbox"] {
    height: 20px;
    width: 20px;
}

.footerform-btn label {
    color: var(--white);
    font-family: 'Sofiapro';
    font-weight: 200;
}

.footerform-btn input[type="submit"] {
    width: 50%;
}

@media only screen and (max-width: 992px) {
    .banner-content h2, .banner-content ul li {
        font-size: 35px;
    }

    .ourstory {
        padding: 100px 0 200px;
    }

    .ourstory-content {
        width: 60%;
    }

    .heading, .leftheading {
        margin-bottom: 40px;
        font-size: 60px;
    }

    .ourstory-content h2.leftheading {
        margin-bottom: 40px;
    }

    .ourofferingslist figure img {
        width: 100px;
        height: 100px;
    }

    .producttabnav {
        padding: 40px 0 40px 40px;
    }

    .producttab-content {
        padding: 50px;
    }

    .producttabnav h2.leftheading {
        font-size: 40px;
    }

    .footer-content {
        padding: 50px 40px 50px 0;
    }

    .footer-form {
        padding: 40px;
    }

    .footer-content a.footer-logo img {
        width: 280px;
    }

    .footer-content ul li a img {
        width: 40px;
        margin-right: 20px;
    }

    .footerform-btn input[type="submit"] {
        width: fit-content;
    }

    footer {
        border-bottom: 50px solid #a8867b;
    }
}

@media only screen and (max-width: 768px) {
    header ul li a img {
        width: 220px;
    }

    header ul li a {
        font-size: 14px;
    }

    header.desktop-menu {
        display: none;
    }

    .header {
        display: block;
    }

    .banner {
        padding: 220px 0 180px;
    }

    .banner-content h2, .banner-content ul li {
        font-size: 30px;
        line-height: 35px;
    }

    .banner-content ul {
        width: 132px;
    }

    .ourstory {
        padding: 60px 0 120px;
    }

    .heading, .leftheading {
        margin-bottom: 30px;
        font-size: 42px;
        line-height: 40px;
    }

    .ourstory-content h2.leftheading {
        margin-bottom: 30px;
    }

    .ourofferingslist p {
        font-size: 15px;
    }


    .ouruspslist-content {
        padding: 60px 60px 60px 50px;
    }

    .ourusps-wrapper .ouruspslist-content:nth-child(8) {
        padding-left: 80px;
    }

    .ouruspslist-content h3 {
        font-size: 30px;
        margin-bottom: 20px;
        line-height: 29px;
    }

    .ouruspslist-content p {
        font-size: 16px;
    }

    .ouruspslist-content:before {
        top: 61px;
        left: 0;
        width: 30px;
        height: 30px;
    }

    .ourusps-wrapper .ouruspslist-content:nth-child(8):before {
        left: 35px;
    }



    .producttabnav {
        padding: 40px 0 40px 30px;
    }

    .producttabnav h2.leftheading {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .producttabnav li {
        font-size: 18px;
        padding-bottom: 15px;
        margin-bottom: 20px;
        margin-left: 50px;
    }

    .producttabnav li.tab-btn-active:before {
        top: 0px;
        left: -50px;
        height: 32px;
        width: 32px;
    }

    .producttab-content {
        padding: 20px;
    }

    .producttab-content ul li {
        font-size: 17px;
        margin: 8px 0;
    }

    .industry-expertise {
        padding: 50px 0;
    }

    .industry-expertise h4 {
        font-size: 28px;
        margin-bottom: 30px;
        line-height: 34px;
    }

    .footer-wrapper {
        flex-wrap: wrap;
    }

    .footer-content, .footer-form {
        width: 100%;
    }

    .footer-content {
        padding: 40px 0;
        border-right: 0;
        border-bottom: 1px solid var(--primary);
        text-align: center;
    }

    .footer-content p {
        text-align: center;
    }

    .footer-content ul {
        margin-left: 0;
        justify-content: center;
    }

    .footer-form {
        padding: 40px 0;
    }


    .ourstory-content {
        width: 100%;
        z-index: 1;
        position: relative;
    }

    .ourstory-vdo {
        width: 100%;
    }
}

@media only screen and (max-width: 668px) {
    .banner-content ul {
        width: 130px;
    }

    .ourofferings {
        padding: 50px 0;
    }

    .offerings-wrapper {
        row-gap: 40px;
    }

    .ourofferingslist {
        width: 50%;
    }

    .ourofferingslist figure img {
        width: 60px;
        height: 60px;
    }

    .ourusps {
        padding: 40px 0;
    }
}

@media only screen and (max-width: 568px) {
    header ul li a img {
        width: 180px;
    }

    .banner-content h2, .banner-content ul li {
        font-size: 22px;
        line-height: 28px;
    }

    .banner {
        padding: 160px 0 120px;
    }

    .ourstory {
        padding: 40px 0 120px;
    }

    .ourusps-wrapper {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        row-gap: 20px;
    }

    .ourusps .leftheading {
        margin: 0 0 30px;
    }

    .ouruspslist-content {
        padding: 0 20px 0 50px;
        width: 100%;
    }

    .ourusps-wrapper .ouruspslist-content:nth-child(8) {
        padding-left: 50px;
    }

    .ourusps-wrapper figure {
        width: 100%;
    }

    .ouruspslist-content:before {
        top: 2px;
        left: 0;
        width: 30px;
        height: 30px;
    }

    .ourusps-wrapper .ouruspslist-content:nth-child(8):before {
        left: 0;
    }

    .ourusps-wrapper figure img {
        width: 100%;
        height: auto;
    }

    .product-tab {
        display: flex;
        flex-wrap: wrap;
    }

    .producttabnav, .producttab-content {
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .banner-content h2 {
        margin-right: 10px;
    }

    .banner-content h2, .banner-content ul li {
        font-size: 18px;
        line-height: 27px;
    }

    .banner-content ul {
        width: 80px;
    }

    .heading, .leftheading {
        margin-bottom: 20px;
        font-size: 32px;
    }

    .ouruspslist-content h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .ourstory-content h2.leftheading {
        margin-bottom: 20px;
    }

    p {
        font-size: 16px;
    }

    .industry-expertise h4 {
        font-size: 21px;
        margin-bottom: 30px;
        line-height: 25px;
    }

    .footer-content a.footer-logo img {
        width: 260px;
    }
}

@media only screen and (max-width: 415px) {
    .ourofferingslist {
        width: 100%;
    }

    .ourofferings h2.heading {
        margin-bottom: 40px;
    }
}