@charset "utf-8";

/*-----------------------------------
#   Fonts 
------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/*-----------------------------------
#   Common Variables 
------------------------------------*/
:root {
    --selection-bg:  #454545;
    --selection-text: #fff;
    --placeholder-text:  #E2E8F0;
    --font-regular: "Poppins", sans-serif;
    --black-1: #2C2C2C;
    --yellow-1: #FFCE00;
    --white-1: #FFFFFF;
}

/*-----------------------------------
#   Common Css 
------------------------------------*/

body {
    height: 100%;
    font-size: 14px;
    font-family: var(--font-regular);
    line-height: 1;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #222;
    background-color: #f6f6f6;
    overflow-x: hidden;
}

body.theme--color--dark{
    background-color: #121212;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    outline: none !important;
    color: inherit;
    transition: 0.3s ease;
}

@media(hover: hover){
    a:hover{
        color: inherit;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 400;
}

p {
    font-size: 16px;
    line-height: 24px;
    color: #000;
    margin: 0;
}

/*---------------------------
# Selection
----------------------------*/

::selection {
    background: var(--selection-bg);
    color: var(--selection-text);
}

::-webkit-selection {
    background: var(--selection-bg);
    color: var(--selection-text);
}

::-moz-selection {
    background: var(--selection-bg);
    color: var(--selection-text);
}

::-o-selection {
    background: var(--selection-bg);
    color: var(--selection-text);
}

::-ms-selection {
    background: var(--selection-bg);
    color: var(--selection-text);
}

/*---------------------------
# PlaceHolder
----------------------------*/

::-webkit-input-placeholder {
    color: var(--placeholder-text);
    opacity: 1;
}

::-moz-placeholder {
    color: var(--placeholder-text);
    opacity: 1;
}

:-ms-input-placeholder {
    color: var(--placeholder-text);
    opacity: 1;
}

:-moz-placeholder {
    color: var(--placeholder-text);
    opacity: 1;
}

/*---------------------------
# Button CSS
----------------------------*/
.button {
    display: inline-block;
    font-size: 18px;
    font-family: var(--font-regular);
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 6px 15px;
    outline: none;
    border-radius: 4px;
    transition: all 500ms ease;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/*---------------------------
# Button Varients
----------------------------*/

.button-red {
    background-color: #BD3120;
    color: #fff;
    border-color: #BD3120;
}

/*---------------------------
# Button Hover CSS
----------------------------*/

@media(hover: hover) {
    .button.button-red:hover {
        background-color: #172127;
        color: #FFF;
        border-color: #172127;
    }
}

/*---------------------------
# Form CSS
----------------------------*/

.form-group {
    margin-bottom: 25px;
}

.form-control {
    font-size: 16px;
    font-family: var(--font-regular);
    line-height: 20px;
    padding: 14px 16px;
    height: 48px;
    border-radius: 4px;
    border-color: #ECECEC;
    color: #100F0F;
    background-color: #FFF;
}

.form-control:focus {
    color: #100F0F;
    background-color: #fff;
    border-color: #BD3120;
    outline: 0;
    box-shadow: none;
}

.custom-select {
    background: #FFF url("../images/icons/dropdown.svg") right .75rem center/8px 10px no-repeat;
    background-size: 14px;
    padding: 14px 16px;
    height: 48px;
    line-height: 0;
    font-size: 16px;
    font-family: var(--font-regular);
    border-radius: 4px;
    border-color: #ECECEC;
    color: #100F0F;
    background-color: #FFF;
}

.custom-select:focus {
    color: #100F0F;
    background-color: #fff;
    border-color: #BD3120;
    outline: 0;
    box-shadow: none;
}

textarea.form-control {
    height: 120px;
    resize: none;
}

/*---------------------------
# Global Container CSS
----------------------------*/

@media only screen and (min-width: 1600px){
    .container{
        width: 100%;
        max-width: 1800px;
    }
}

@media only screen and (min-width: 1680px){
    .container-fluid{
        max-width: 1360px;
    }
}
@media only screen and (min-width: 1366px){
    .container-fluid{
        padding-left: 35px;
        padding-right: 35px;
    }
}

/*----------------------------------
#   Header CSS Start Here
----------------------------------*/

header{
    background-color: var(--black-1);
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 9;
}

header::before{
    content: '';
    width: 100vw;
    height: 100vh;
    background: rgba(0, 24, 33, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    opacity: 0;
    transition: all .5s ease-in-out;
    cursor: pointer;
    display: none;
}

header.mobile-menu--open::before{
    display: block;
    opacity: 1;
}

header > .container-fluid{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .brand-logo{
    margin-right: auto;
}
header .brand-logo img{
    width: 65%;
}
header .brand-logo > a{
    display: inline-block;
}
header > .container-fluid .main-navigation nav{
    display: flex;
    align-items: center;
}

header .close-menu{
    display: none;
    position: absolute;
    left: 20px;
    top: 15px;
}

header .main-menu{
    display: inline-flex;
    vertical-align: middle;
    margin-right: 20px;
}
header .main-menu > li{
    padding: 30px 20px;
}

header .main-menu > li > a{
    display: inline-block;
    font-size: 16px;
    color: #fff;
    padding: 0 10px;
    position: relative;
}
header .main-menu > li > a:hover{
    color: var(--yellow-1)
}

@media only screen and (min-width: 1024px){
        header .main-menu > li > a::before{
        content: "";
        display: block;
        width: 0;
        height: 5px;
        background-color: #FFCE00;
        position: absolute;
        bottom: -31px;
        left: 50%;
        transform: translateX(-50%);
        transition: 0.3s all ease;
    }

    header .main-menu > li:hover a::before{
        width: 80%;
    }

    header .main-menu > li:hover a.drop-toggle::before{
        display: none;
    }

}

.open-menu-btn{
    display: none;
}
.open-menu-btn a{
    display: inline-block;
}
header .sub-menu li{
    padding: 5px 0;
}
header .sub-menu li a{
    display: block;
    font-size: 16px;
    color: #001821;
    padding: 0.25rem 1rem;
}

header .sub-menu li a:hover,
header .sub-menu li a:focus{
    color: var(--yellow-1);
}

header .sub-menu{
    display: none;
    background-color: #fff;
    padding: 10px 0;
}

header .sub-sub-menu{
    display: none;
}

/*header .main-menu > li.has-children{
    position: relative;
}*/
header .main-menu li.has-children > a{
    position: relative;
}

header .main-menu li.has-children > a.drop-toggle{
    padding: 0;
    z-index: 2;
}

header .main-menu > li.has-children > a > .title{
    display: inline-block;
    margin-right: 5px;
}
header .main-menu li.has-children > a > i{
    display: inline-block;
    transition: 0.3s all ease;
}
header .main-menu > li.has-children > a:hover{
    color: #fff !important;
}

header .main-menu li.has-children:hover > a.drop-toggle i,
header .main-menu li.has-children.open > a.drop-toggle i{
    transform: rotate(180deg);
}


/*header .sub-menu li.has-children{
    position: relative;
}*/


@media only screen and (min-width: 1200px) {

    header .sub-menu,
    header .sub-sub-menu{
        display: block;
        visibility: hidden;
        opacity: 0;
        width: 100%;
        padding: 10px 0;
        margin: 0;
        border: 0;
        border-radius: 0;
        -webkit-transition: all.3s ease-in-out;
        transition: all .3s ease-in-out;
        background: #FFF;
        -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
        box-shadow: 0 5px 12px rgba(0, 0, 0, .175);
        position: absolute;
        top: 77px;
        left: 0;
        z-index: 11;
        display: flex;
        justify-content: center;
    }

   /* header .sub-sub-menu {
        left: 100%;
        top: 60px;
        z-index: 9;
    }*/

    header .main-menu li:hover>ul {
        opacity: 1;
        visibility: visible;
    }

    header .main-menu li .sub-menu li:hover .sub-sub-menu {
        opacity: 1;
        visibility: visible;
        top: calc(0% + 0px);
    }
}


@media screen and (max-width: 1023px) {  

    header{
        overflow: hidden;
        padding: 15px 0;
    }
    .main-navigation{
        position: fixed;
        z-index: 999;
        height: 100%;
        overflow-y: auto;
        width: 250px;
        top: 0;
        right: -250px;
        background-color: var(--black-1);
        padding-top: 40px;
        transition: 0.4s ease;
    }
    header.mobile-menu--open .main-navigation{
        right: 0;
    }
    
    header .main-menu{
        flex: 1;
        flex-direction: column;
        margin-right: 0;
    }
    header .main-menu > li{
        padding: 0 10px;
    }
    header .main-menu > li > a{
        padding: 10px 0;
    }
    header .main-menu > li.has-children > a.drop-toggle{
        padding: 10px 0;
    }

    header .close-menu{
        display: block;
    }

    .open-menu-btn{
        display: block;
    }
}


/*-----------------------------
# Footer CSS
------------------------------*/

footer{
    background-color: var(--black-1);
}

.footer-top{
    padding: 30px 0;
}
.footer-social ul{
    display: flex;
    max-width: 100%;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-social ul li a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid #fff;
    border-radius: 10px;
}

.footer-social ul li a img{
    max-width: 24px;
}

.footer-social ul li a:hover{
    background-color: var(--yellow-1);
    border-color: var(--yellow-1);
}

.subscribe-form h4{
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}
.subscribe-form p{
    font-size: 12px;
    color: #EDEDED;
}

.square-icon{
    all: unset;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    min-width: 52px;
    height: 52px;
    border: 1px solid #fff;
    border-radius: 10px;  
    background-color: #fff; 
}

.subscribe-form-content .form-control{
    flex: 1;
    font-size: 16px;
    line-height: 20px;
    padding: 14px 16px;
    height: 52px;
    border-radius: 6px;
    border-color: #E2E8F0;
    color: #E2E8F0;
    background-color: transparent;
}

.subscribe-form-content .form-control:focus{
    border-color: #E2E8F0;
    background-color: transparent;
}


.footer-logo{
    padding-bottom: 60px;
    padding-top: 40px;
}

.footer-meta p{
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
}
.footer-meta p a{
    color: #fff;
}
.footer-meta p:first-child{
    padding-bottom: 5px;
}
.footer-meta i{
    position: relative;
    top: 4px;
    min-width: 32px;
}

.copyright-text-wrapper p{
    font-size: 18px;
    color: #fff;
    text-align: center;
}

.copyright-text-wrapper ul{
    display: inline-flex;
}
.copyright-text-wrapper ul li{
    padding: 0 10px;
}
.copyright-text-wrapper ul li a{
    font-size: 16px;
    color: #fff;
    text-decoration: underline;
}
.footer-main .footer-main-border{
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

.copyright-text-wrapper{
    padding: 20px 0;
}
@media only screen and (max-width: 1199px){
    .copyright-text-wrapper{
        text-align: center;
    }
    .copyright-text-wrapper ul{
        margin: 0 auto;
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 575px){
    .footer-meta p,
    .copyright-text-wrapper p{
        font-size: 16px;
    }
    
    .copyright-text-wrapper ul{
        flex-direction: column;
    }
    .copyright-text-wrapper ul li{
        padding: 5px 10px;
    }
    .certificates-list ul li{
        width: 33%;
    }
}


/*----------------------------------
#   Landing Page CSS Start Here
----------------------------------*/
.hero-banner{
    position: relative;
    width: 100%;
    min-height: calc(100vh - 85px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 150px;
    z-index: -1;
}

.hero-banner-content-wrap{
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -100px;
}
.hero-banner-content{
    padding: 50px;
    background-color: rgba(18, 18, 18, 0.85);
    width: 100%;
    max-width: 1526px;
    margin: 0 auto;
}

.hero-banner-content h1{
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    padding-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

.hero-banner-content p{
    font-size: 20px;
    color: #fff;
    line-height: 1.6;
}

.meet-the-team{
    padding-top: 50px;
    padding-bottom: 100px;
}
.teammate-box{
    height: 100%;
    /*background-color: var(--black-1);*/
    border-radius: 30px;
}
.teammate-info{
    background: #2c2c2c;
    padding: 35px 50px;
    margin-top: 20px;
    border-radius: 30px;
}
.teammate-info p{
    color:#fff;
    text-align: justify;
}
.teammate-box .t_logo{
    right: -10px;
    position: absolute;
    top: -30px;
    width: 50px;
}
.teammate-box .t_vector{
    position: absolute;
    bottom: -5%;
    width: 230px;
    left: 9%;
}
.t_pic{
    height:300px;
}
.teammate-box .teammate-name{
    bottom: -2%;
    font-size: 15px;
    font-weight: bold;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
}
.teammate-desig{
    padding-left: 50px;
}
.teammate-box .teammate-info p{
    font-size: 16px;
    line-height: 2;
    color: #F6F6F6;
    text-align: justify;
}
.teammate-box .teammate-img{
/*    background: #2c2c2c;
    border-radius: 30px;
    height: 300px;*/
}
.teammate-box .teammate-img img{
    width: 100%;
/*    height: 294px;
    object-fit: contain;
    padding: 5px;*/
}
.teammate-box .teammate-info .footer-social ul{
    justify-content: center;
    margin-bottom: 15px;
}
.teammate-box .teammate-info .footer-social ul li a{
    width: 40px;
    height: 40px;
}
.margin-bottom-100{
    margin-bottom: 50px;
}
.margin-left-160{
    margin-left: 160px;
}
.about-text-img{
    position: absolute;
    max-width: 200px;
}
.about-text-img img{
    max-width: 100%;
}

.about-text-img .dark-varient{
    display: none;
}
.global .dark-varient{
    display: none;
}
.aboutus .section-title{
    text-align:left;
}
.aboutus .section-title h4{
    font-weight: 500;
    margin-bottom: 10px;
}
.aboutus .section-title p{
    margin-bottom: 10px;
}
body.theme--color--dark .about-text-img .light-varient{
    display: none;
}

body.theme--color--dark .about-text-img .dark-varient{
    display: inline-block;
}
body.theme--color--dark h3.teammate-desig{
    color:#fff;
}

/*-------------------------------------
# ESS Page CSS
---------------------------------------*/
.section-info-content .section-title{
    max-width: 80%;
    margin: 0 auto;
    padding: 50px 0;
}

.section-title{
    text-align: center;
}
.section-title h2{
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000000;
    padding-bottom: 15px;
}

.section-title p{
    font-size: 20px;
    line-height: 1.6;
    color: #2C2C2C;
}

body.theme--color--dark .section-title h2,
body.theme--color--dark .section-title p,
body.theme--color--dark .section-title h3,body.theme--color--dark .section-title h4{
    color: #fff;
}

.black-alpha-box{
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 4px 4px 4px 0px #00000080;
    border-radius: 20px;
    padding: 20px 15px;
    height: 100%;
}

.black-alpha-box .media{
    display: block;
    margin-bottom: 30px;
    text-align: center;
}
.black-alpha-box h4{
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
    padding-bottom: 10px;
    text-align: center;
}

.black-alpha-box p{
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    text-align: center;
}

.overlay-boxes-wrapper{
    margin: 0 25px;
    position: relative;
    top: -330px;
}

.our-approach{
    margin-bottom: -330px;
}
.our-approach-media{
    position: relative;
}
.our-approach-media .media-overlay{
    position: absolute;
    right: 50px;
    top: 50px;
}
.our-approach-media .media-overlay h4{
    font-size: 100px;
    font-weight: 700;
    color: #000;
    text-align: right;
}

.our-approach-media .media-overlay h4 span{
    display: block;
    font-size: 75px;
}

.why-trex-energy{
    padding: 150px 0;
}

.why-choose-us-list{
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}
.why-choose-box{
    background-color: #404040;
    border-radius: 40px;
    padding: 50px 0;
    display: flex;
    margin-bottom: 70px;
}
.why-choose-box:last-child{
    margin-bottom: 0;
}
.why-choose-box .left{
    flex: 0 0 480px;
    max-width: 480px;
    padding: 0 44px;
    border-right: 2px solid #F6F6F6;
    text-align: center;
}

body.theme--color--dark .why-choose-box .left{
    border-color: #000;
}
.why-choose-box .title{
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: #F6F6F6;
    padding-top: 20px;
}
.why-choose-box .desc{
    flex: 1;
    padding: 0 50px;
    display: flex;
    align-items: center;
}
.why-choose-box .desc p{
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
}


/*-------------------------------
Telecome Page CSS
--------------------------------*/

.advantages{
    padding: 50px 0;
    background-color: var(--black-1);
}
.advantage-box{
    display: flex;
    margin-bottom: 45px;
}
.advantage-box:last-child{
    margin-bottom: 0;
}
.advantage-box .icon{
    width: 110px;
    min-width: 110px;
}

.advantage-box .info{
    flex: 1;
    padding-left: 50px;
}
.advantage-box h4{
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
    padding-bottom: 10px;
}

.advantage-box p{
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
}
.advantages-media{
    position:relative;
}
.advantages .media-overlay{
    position: absolute;
    left: 50px;
    top: 30px;
}
.advantages .media-overlay h4{
    font-size: 40px;
    font-weight: 600;
    color: #fff;
}
.advantages .media-overlay h4 span{
    display: block;
    font-size: 20px;
    color: #fff;
}
/*-------------------------------
Electrical Page CSS
--------------------------------*/
.electrical-phase1{
    padding-bottom: 50px;
}
.electrical-phase1 .electrical-box img{
    width: 100%;
    height:250px;
    margin-bottom:20px;
}
.electrical-phase1 .electrical-box h4{
    font-weight: 600;
}
.electrical-phase1 .electrical-box p{
    font-size: 14px;
    padding: 0px 0px 30px 15px;
}
.mt-30{
    margin-top: 30px;
}
.electrical-phase2{
    padding: 50px 0px;
}
.beige{
    background: #f6f6f6;
}
.electrical-phase2 h4{
    font-weight: 600;
    padding-bottom: 5px;
}
.electrical-phase2 p{
    font-size: 14px;
}
.whychooseus{
    padding: 50px 0;
    background-color: var(--white-1);
}
body.theme--color--dark .electrical-phase1 .electrical-box h4,
body.theme--color--dark .electrical-phase1 .electrical-box p,
body.theme--color--dark .advantage-box h4,
body.theme--color--dark .key-area-box h4,
body.theme--color--dark .facility-box h4,
body.theme--color--dark .facility-box p,
body.theme--color--dark .key-area-box p,
body.theme--color--dark .info-box h4,
body.theme--color--dark .advantage-box p{
    color: #fff!important;
}
body.theme--color--dark .beige,
body.theme--color--dark .whychooseus,
body.theme--color--dark .advantages
{
    background: #121212;
}
body.theme--color--dark .electrical-phase2 h4,
body.theme--color--dark .electrical-phase2 p{
    color: #fff;
}
/*-------------------------------
Contact US Page CSS
--------------------------------*/

.info-box-wrapper{
    max-width: 1400px;
    margin: 0 auto;
}

.info-box{
    padding: 20px;
    border: 2px solid #2C2C2C;
    height: 100%;
}

.info-box .icon{
    display: inline-block;
    padding-bottom: 20px;
}

.info-box h4{
    font-size: 20px;
    font-weight: 600;
    color: #2C2C2C;
}

.office-locations{
    padding: 100px 0;
    overflow: hidden;
}

.office-location-box{
    background-color: var(--black-1);
    padding: 20px;
    border-radius: 40px;
    height: 100%;
}

.office-location-box h4{
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #fff;
    text-align: center;
}
.office-location-box .meta-infos{
    padding: 30px 0;
}
.office-location-box .meta-info{
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}
.office-location-box .meta-info:last-child{
    margin-bottom: 0;
}

.office-location-box .meta-info i{
    position: absolute;
    left: 0;
    top: 3px;
}

.office-location-box .meta-info p{
    font-size: 16px;
    color: #fff;
}

.contact-form-wrapper{
    background-color: var(--black-1);
    border-radius: 8px;
    padding: 50px;
    padding-left: 200px;
    position: relative;
    z-index: 1;
    height: 100%;
}

.contact-form-wrapper::before{
    content: '';
    width: 206px;
    height: 247px;
    display: block;
    background: url("../images/icons/bubble.png") center/cover no-repeat;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.form-title{
    margin-bottom: 40px;
}
.form-title h4{
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    padding-bottom: 10px;
}

.form-title p{
    font-size: 16px;
    color: #C9C9C9;
}

.form-label{
    font-size: 14px;
    color: #fff;
}

.contact-form-wrapper .form-control{
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    color: #fff;
    padding: 0;
    height: auto;
    line-height: 24px;
}

.contact-form-wrapper textarea.form-control{
    border: 1px solid #fff;
    padding: 10px;
    height: 100px;
}
.contact-button{
    background: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 20px;
    border-radius: 4px;
}
.text-right{
    text-align:right;
}
.address-map iframe{
    height: 620px;
}
.info-box .dark-varient {
    display: none;
}
body.theme--color--dark .info-box .light-varient {
    display: none;
}
body.theme--color--dark .info-box .dark-varient {
    display: inline-block;
}
/*---------------------------
#   Checkbox CSS
----------------------------*/

.theme-checkbox {
    position: relative;
}

.theme-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    cursor: pointer;
}

.theme-checkbox input[type="checkbox"]~.label {
    position: relative;
    padding-left: 30px;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    cursor: pointer;
}

.theme-checkbox input[type="checkbox"]~.label::before {
    content: "";
    width: 20px;
    height: 20px;
    border: 1px solid #E0E0E0;
    background-color: #E0E0E0;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 2px;
}

.theme-checkbox input[type="checkbox"]~.label::after {
    content: "";
    width: 6px;
    height: 12px;
    border: solid #000;
    border-width: 0 2.5px 2.5px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    left: 7px;
    top: 5px;
    display: none;
}

.theme-checkbox input[type="checkbox"]:checked~.label::after {
    display: inline-block;
}


.subjects-options{
    display: flex;
}

.subjects-options > div{
    margin-right: 50px;
}

.contact-us{
    padding-bottom: 100px;
}


/*---------------------------------------
Research and Development Page
----------------------------------------*/

.certificates-list{
    background-color: #F0F0F0;
    padding: 20px 0;
    margin-bottom: 50px;
}
.certificates-list ul{
    width: 100%;
    max-width: 1320px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

.certificates-list ul li{
    padding: 5px 10px;
}

.inner-border{
    border: 6px solid #2C2C2C;
    padding: 60px 30px;
}

.inner-border-card{
    padding: 60px 30px;
}
.inner-border-card::before, .inner-border-card::after {
    display: block;
    content: "";
    width: 620px;
    height: 540px;
    position: absolute;
}

.inner-border-card::before {
    top: -2px;
    left: -2px;
    border-top: 6px solid #2C2C2C;
    border-left: 6px solid #2C2C2C;
    transition: 0.5s all;
}

.inner-border-card::after {
    bottom: -2px;
    right: -2px;
    border-bottom: 6px solid #2C2C2C;
    border-right: 6px solid #2C2C2C;
    transition: 0.5s all;
}

.facility-box{
    padding: 30px;
    border: 1px solid #2C2C2C;
    border-radius: 80px;
    text-align: center;
    height: 100%;
}

.facility-box .facility-box-icon{
    display: block;
}

.facility-box h4{
    font-size: 22px;
    font-weight: 700;
    color: #000;
    padding: 40px 0;
}

.key-focus-areas,
.our-facilities{
    margin: 100px 0;
}

.key-area-box{
    margin-bottom: 70px;
}

.key-area-box:last-child{
    margin-bottom: 0;
}

.key-area-box h4{
    font-size: 24px;
    font-weight: 700;
    text-decoration: underline;
    text-align: center;
    margin-bottom: 40px;
}

.key-area-box p{
    font-size: 18px;
    color: #2C2C2C;
    display: flex;
    margin-bottom: 30px;
}

.key-area-box p:last-child{
    margin-bottom: 0;
}

.key-area-box p span{
    max-width: 310px;
    flex: 0 0 310px;
    font-size: 20px;
    font-weight: 700;

}