/*
Theme Name: Chomok
Theme URI: http://themewar.com/html/chomok/
Author: ThemeWar
Author URI: http://themewar.com/
Description: Chomok - Modern Architecture & Interior Responsive HTML5 Template
Version: 1.0
License:
License URI:
*/

/*==================================
    [Table of contents]
===================================
    01. Theme Fonts
    02. Basic Typography
    03. Links & Buttons
    04. Section Titles
    05. Section Notes
    06. Sub Headings
    07. Column Padding Margin Custom Define
    08. Share Details On Social
    09. Preloader
*/

/*------------------------------------------------------
/  01. Theme Fonts
/------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

/*------------------------------------------------------
/  02. Basic Typography
/------------------------------------------------------*/
body,html{
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #adabab;
    letter-spacing: 1.6px;
    font-style: normal;
}
p{
    margin: 0 0 15px;
	color: #585858;
}
.text-white{
    margin: 0 0 15px;
	color: #ffffff;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'Bebas Neue';
    color: #141414;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 1px;
    margin: 0 0 15px;
}
h7{
    font-family: 'Bebas Neue';
    color: #ffffff;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 1px;
    margin: 0 0 15px;
}
.bebas{
    font-family: 'Bebas Neue';
}
ul li{
    list-style: none;
}
a{
    color: #4e6c54;
    text-decoration: none;
    transition: all ease 350ms;
}
a:hover {
    color: #141414;
    text-decoration: none;
}
a:focus,
.button:focus, input:focus, select:focus, textarea:focus{
    text-decoration: none;
    outline: none;
}
a,
button {
    color: #1696e7;
    outline: none;
    font-family: 'Bebas Neue';
    font-weight: 400;
    transition: all ease 300ms;
    -moz-transition: all ease 300ms;
    -webkit-transition: all ease 300ms;
}
button:focus,input:focus,input:focus,textarea,textarea:focus{
    outline: 0;
}

/*------------------------------------------------------
/  03. Links & Buttons
/------------------------------------------------------*/
.chmk-link{
    font-size: 16px;
    color: #141414;
    line-height: 1;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}
.chmkl-grey{
	color: #777777;
}
.chmk-link i{
    padding-left: 8px;
    font-size: 14px;
    position: relative;
    top: 1px;
    right: 0;
    transition: right ease 300ms;
    -moz-transition: right ease 300ms;
    -webkit-transition: right ease 300ms;
}
.chmk-link:hover i{
    right: -5px;
}
.chmk-link:hover, .chmkl-grey:hover{
    color: #4e6c54;
}
.chmk-btn{
    font-size: 16px;
    background: #141414;
    color: #fff;
    line-height: 1;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    height: 59px;
    padding: 20px 28px 16px 29px;
    display: inline-flex;
    align-items: center;
    position: relative;
}
.chmk-btnReverse{
    background: #4e6c54;
}
.chmk-btn-02{
    background: #141414;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    height: 57px;
    padding: 12px 32px 11px 34px;
    display: inline-flex;
    align-items: center;
    border: 0;
}
.chmk-btn i{
    padding-left: 8px;
    font-size: 14px;
    position: relative;
    top: 0;
}
.chmk-btn-02 i{
    padding-left: 8px;
    font-size: 14px;
    position: relative;
    top: 0;
}
.chmk-btn::before{
    position: absolute;
    content: '';
    height: calc(100% - 10px);
    width: 50px;
    background: transparent;
    border: 1px solid #4e6c54;
    border-right: 0;
    top: 5px;
    left: 5px;
    transition: all ease 300ms;
    -moz-transition: all ease 300ms;
    -webkit-transition: all ease 300ms;
}
.chmk-btnReverse::before{
    border: 1px solid #fff;
    border-right: 0;
}
.chmk-btn::after{
    position: absolute;
    content: '';
    height: calc(100% - 10px);
    width: 50px;
    background: transparent;
    border: 1px solid #4e6c54;
    border-left: 0;
    top: 5px;
    right: 5px;
    transition: all ease 300ms;
    -moz-transition: all ease 300ms;
    -webkit-transition: all ease 300ms;
}
.chmk-btnReverse::after{
    border: 1px solid #fff;
    border-left: 0;
}
.chmk-btn:hover{
    background: #4e6c54;
    color: #fff;
}
.chmk-btnReverse:hover{
    background: #141414;
    color: #fff;
}
.chmk-btn-02:hover{
    background: #4e6c54;
    color: #fff;
}
.chmk-btn:hover::after,
.chmk-btn:hover::before{
    width: 25px;
    border-color: #fff;
}
.chmk-btnReverse:hover::after,
.chmk-btnReverse:hover::before{
    width: 25px;
    border-color: #4e6c54;
}
.chmk-video-btn {
    background: #4e6c54;
    padding: 0;
    width: 120px;
    height: 120px;
    display: inline-flex;
    border-radius: 50%;
    align-items: center;
    line-height: 120px;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    
    transition: all ease 300ms;
    -moz-transition: all ease 300ms;
    -webkit-transition: all ease 300ms;
    
    animation: video_shadows 1s linear infinite;
}
.chmk-video-btn-02 {
    background: #FFF;
    padding: 0;
    width: 120px;
    height: 120px;
    display: inline-flex;
    border-radius: 50%;
    align-items: center;
    line-height: 120px;
    justify-content: center;
    color: #4e6c54;
    font-size: 24px;

    transition: all ease 300ms;
    -moz-transition: all ease 300ms;
    -webkit-transition: all ease 300ms;

    animation: video_shadows 1s linear infinite;

    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
a.chmk-video-btn:hover{
    background: #FFF;
    color: #4e6c54;
}
a.chmk-video-btn-02:hover{
    background: #4e6c54;
    color: #FFF;
}
@keyframes video_shadows {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .14), 0 0 0 20px rgba(255, 255, 255, .14), 0 0 0 40px rgba(255, 255, 255, .14);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, .14), 0 0 0 40px rgba(255, 255, 255, .14), 0 0 0 60px rgba(255, 255, 255, 0);
    }
}

/*------------------------------------------------------
/  04. Section Titles
/------------------------------------------------------*/
.section-title{
    position: relative;
    margin-bottom: 65px;
}
.section-title-dark{
    position: relative;
    margin-bottom: 68px;
}
.section-title h2{
    color: #141414;
    font-size: 48px;
    line-height: 1;
    letter-spacing: 4.8px;
    margin-bottom: 19px;
}
.section-title-dark h2{
    color: #ffffff;
    font-size: 48px;
    line-height: 1;
    letter-spacing: 4.8px;
    margin: 0 0 18px;
}
.section-title p{
    font-size: 14px;
    color: #777777;
    line-height: 1;
    letter-spacing: 1.4px;
    margin-bottom: 18px;
}
.section-title-dark p{
    font-size: 14px;
    color: #777777;
    line-height: 1;
    letter-spacing: 1.4px;
    margin-bottom: 18px;
}
.section-title i{
    color: #4e6c54;
    font-size: 44px;
}
.section-title-dark i{
    color: #4e6c54;
    font-size: 44px;
}
.sectionDarkService{
    position: relative;
    margin-bottom: 45px;
}
.sectionDarkAbout{
    margin-bottom: 51px;
}

/*------------------------------------------------------
/  05. Section Notes
/------------------------------------------------------*/
.section-note{
    margin-top: 62px;
}
.section-note-dark{
    margin-top: 54px;
}
.section-note p{
    font-family: 'Bebas Neue';
    color: #777777;
    line-height: 30px;
    margin: 0;
}
.section-note-dark p{
    font-family: 'Bebas Neue';
    color: #777777;
    line-height: 30px;
    margin: 0;
}
.section-note p a{
    color: #4e6c54;
}
.section-note-dark p a{
    color: #4e6c54;
}
.section-note p a:hover{
    color: #141414;
}
.section-note-dark p a:hover{
    color: #ffffff;
}
.section-note-darkService{
    margin-top: 51px;
}
.projectSectionNote{
    margin-top: 31px;
}

/*------------------------------------------------------
/  06. Sub Headings
/------------------------------------------------------*/
.sub-heading{
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.6px;
    margin: 0;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}
.sub-heading i{
    color: #4e6c54;
    font-size: 38px;
    margin-right: 7px;
}
.sub-heading-des{
    font-size: 36px;
    line-height: 1.33;
    letter-spacing: 3.6px;
    margin: 21px 75px 28px 0;
}
.sub-heading-des2{
    font-size: 36px;
    line-height: 1.33;
    letter-spacing: 3.6px;
    margin: 0px 0px 0px 0;
}
.sub-heading-des3{
    font-size: 56px;
    line-height: 1.33;
    letter-spacing: 3.6px;
    margin: 0px 0px 0px 0;
}
.sub-heading-des4{
    font-size: 36px;
    letter-spacing: 3.6px;
    margin: 0px 0px 0px 0;
}
/*------------------------------------------------------
/  07. Column Padding Margin Custom Define
/------------------------------------------------------*/
.abTC-Pr {
    padding-right: 0;
    z-index: 2;
}
.abTC-Pl {
    padding-left: 0;
    z-index: 1;
}
.CW01{
    flex: 0 0 57%;
    -ms-flex: 0 0 57%;
    max-width: 57%;
}
.CW02{
    flex: 0 0 43%;
    -ms-flex: 0 0 43%;
    max-width: 43%;
}

/*------------------------------------------------------
/  08. Share Details On Social
/------------------------------------------------------*/
.shareDetailsOnSocial{
    display: flex;
    flex-wrap: wrap;
    margin-top: 23px;
}
.shareDetailsOnSocial a{
    font-size: 15px;
    color: #000000;
    margin-right: 21px;
}
.shareDetailsOnSocial a.shareDetailsOnSocialFaceBook{
    color: #45619d;
    margin-left: 19px;
}
.shareDetailsOnSocial a.shareDetailsOnSocialGooglePlus{
    color: #cf4539;
}
.shareDetailsOnSocial a.shareDetailsOnSocialTwitter{
    color: #42c0fb;
}
.shareDetailsOnSocial a.shareDetailsOnSocialSkype{
    color: #009ee5;
}
.shareDetailsOnSocial a.shareDetailsOnSocialRSS{
    color: #ec9f21;
    margin-right: 0;
}

/*------------------------------------------------------------------
/ 09. Preloader
/-------------------------------------------------------------------*/
.preloader {
    background: #141414;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 99999;
}
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
.twLoader{
    width: 209px;
    height: 200px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.twLoader:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/loader2.png) no-repeat center center;
    opacity: .7;
    animation: rotate 15s infinite linear;
}
.loaderO {
    position: absolute;
    top: 52%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
    z-index: 1;
    line-height: 18px;
}
.loaderO span {
    font-family: 'Bebas Neue';
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    color: aliceblue;
    display: inline-block;
    transition: all 0.5s;
    animation: animate 2s infinite;
}
.loaderO span:nth-child(1) {
    animation-delay: 0.1s;
}
.loaderO span:nth-child(2) {
    animation-delay: 0.2s;
}
.loaderO span:nth-child(3) {
    animation-delay: 0.3s;
}
.loaderO span:nth-child(4) {
    animation-delay: 0.4s;
}
.loaderO span:nth-child(5) {
    animation-delay: 0.5s;
}
.loaderO span:nth-child(6) {
    animation-delay: 0.6s;
}
.loaderO span:nth-child(7) {
    animation-delay: 0.7s;
}
@keyframes animate {
    0% {
        color: aliceblue;
        transform: translateY(0);
        margin-left: 0;
    }
    25% {
        color: aliceblue;
        transform: translateY(-15px);
        margin-left: 5px;
        text-shadow: 0 15px 5px rgba(0, 0, 0, 1);
    }
    100% {
        color: aliceblue;
        transform: translateY(0);
        margin-left: 0;
    }
}