.clr {
    clear:both;
}

.text-center {
    text-align:center;
}

.text-left {
    text-align:left;
}

.text-right {
    text-align:right;
}

.float-left {
    float:left;
}

.float-right {
    float:right;
}

.width-full {
    width: 100%;
}

.min-width {
    min-width: 180px;
}

.pos_fixed, .fixed {
    position: fixed;
}

.pos_absolute, .absolute {
    position: absolute;
}

.pos_relative, .relative {
    position: relative;
}

body {
    font-family:"Century Gothic", Arial, Helvetica, sans-serif;
}

.ovrflw_hd {
    overflow: hidden;
}

.empty_scroll {
    height: 100vh;
}

.empty_scroll_2 {
    height: 50vh;
}

/*Header*/
.header {
    width: 100%;
    padding: 24px 0;
    top: 0;
    left: 0;
}

.header_bg, .inner_header_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background:url(../images/pattern.png) #ffffff;
}

.header_bg {
    z-index: 3;
}

.inner_header_bg {
    z-index: 2;
}

.inner_header {
    
}

.header_container {
    position: relative;
    z-index: 3;
}

.logo {
    
}

.logo img {
    width: 140px;
}

/*Main Menu*/
.main-menu {
    margin-left: 30px;
}

.main-menu ul {
    margin:0;
    padding:0;
}

.main-menu li {
    list-style:none;
    display:inline-block;
    margin-right:18px;
}

.main-menu li a {
    display:inline-block;
    position:relative;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

.main-menu li a:hover {
    text-decoration: none;
}

.main-menu li .link:after, .main-menu li .link.active:after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.main-menu li .link:hover:after, .main-menu li .link.active:after {
    width: 100%;
}

.transparent {
    background:none !important;
}

.transparent.btn-white:hover, .transparent.btn-white:active, .transparent.btn-white:focus {
    border: 1px solid #ffffff !important;
    background:#ffffff !important;
    color: #000000 !important;
    box-shadow:none;
}

.btn-white {
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #000000;
}

.btn-black-hvr:hover, .btn-black-hvr:active, .btn-black-hvr:focus {
    background: #000000 !important;
    border: 1px solid #000000 !important;
    color: #ffffff !important;
    box-shadow:none;
}

.btn-white-bdr-hvr:hover, .btn-white-bdr-hvr:active, .btn-white-bdr-hvr:focus {
    border: 1px solid #ffffff !important;
    background: none !important;
    box-shadow:none !important;
}

.header-right a {
    font-weight: bold;
    font-size: 18px;
}

.social_icons {
    margin-right:9px;
}

.social_icons img {
    width: 30px;
}

/*Slideshow*/
.empty_scroll, .slideshow_scroll {
    position: relative;
}

.empty_scroll {
    height: 100vh;
}

.slideshow, .cd_slideshow {
    overflow: hidden;
    z-index: -1;
    width: 100%;
    top: 0;
}

.slideshow {
    height: 100vh;
}

.banner {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index: 0;
    opacity:0;
}

.banner_actv {
    z-index: 1;
}

.slideshow .banner {
    transition: transform 1s ease-in-out;
    transform: scale(1.5);
}

.slideshow .banner_actv {
    opacity:1;
    transform: scale(1);
}

.banner img {
    width: 100%;
    max-width: inherit !important;
    max-height: inherit !important;
}

/*Services*/
.fixed_scroll_c {
    position: relative;
}

.fixed_scroll_c .absolute, .fixed_scroll_c .fixed {
    top: 0;
    width: 100%;
}

.dummy_scroll_1, .dummy_scroll_2, .dummy_scroll_3 {
    height: 50vh;
}

.section_services {
}

.section_services .row {
    height: 100vh;
}

.section_services .container {
    padding:24px 0;
}

.services_left {
    overflow: hidden;
    width: 80%;
    position: relative;
    right: -10%;
}

.services_img_c {
    position: relative;
    z-index: 1;
}

.services_img {
    position: relative;
    display: none;
    z-index: 0;
    opacity:0;
    right: -100%;
}

.services_img_actv {
    display: block;
    z-index: 1;
    opacity:1;
    animation: right 0.5s normal forwards ease-in-out;
}

@keyframes right {
    from {
        right: -100%;
    }
    to {
        right: 0;
    }
}

.services_img img {
    width: 100%;
    max-width: inherit !important;
    max-height: inherit !important;
}

.services_right {
    padding: 24px 24px 24px 54px;
    background: #000000;
    color: #ffffff;
    margin-left: -60px;
    position: relative;
    left: -10%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services_right h1 {
    font-size: 85px;
    font-weight: bold;
}

.services_right h2 {
    position: relative;
    font-size: 52px;
    display: inline-block;
    cursor: pointer;
}

.services_desc_actv h2:after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: -60px;
    width: 0;
    height: 2px;
    background: #fff;
    animation: width 1s normal forwards ease-in-out;
}

@keyframes width {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.services_desc {
    margin: 10px 0;
}

.services_desc .services_desc_text {
    display: none;
    font-size: 18px;
    opacity:0;
}

.services_desc_actv .services_desc_text {
    display: block;
    padding-top: 10px;
    animation: opacity 1s normal forwards ease-in-out;
}

@keyframes opacity {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

.services_right a {
    font-size: 18px;
    font-weight: bold;
    background: none;
    border: 1px solid #ffffff;
    color: #ffffff;
}
.services_right a:hover, .services_right a:active, .services_right a:focus {
    background: #ffffff !important;
    border: 1px solid #ffffff !important;
    color: #000000 !important;
    box-shadow:none;
}

/*Notifier*/
.footer_notifier {
    position: fixed;
    background: #ffffff;
    text-align: center;
    bottom: 0;
    z-index: 1;
    width: 100%;
    left: 0;
    padding: 20px;
    display: none;
}

.sp {
    display: none;
}

/*Contact*/
.btn-black {
    background: #552c01;
    border: 1px solid #552c01;
    color: #D1B34D;
}

.btn-ghost {
    background: none;
    border: 1px solid #552c01;
    color: #552c01;
}

.btn-white-hvr:hover, .btn-white-hvr:active, .btn-white-hvr:focus {
    background: #ffffff !important;
    border: 1px solid #552c01 !important;
    color: #552c01 !important;
    box-shadow:none;
}

.btn-white-hvr:focus {
    box-shadow:none !important;
}

.section_contact {
    color: #552c01;
    padding:20px 0;
    font-size: 16px;
    border-top: 2px solid #552c01;
}

.section_contact h1 {
    text-align: center;
    font-weight: bold;
    font-size: 38px;
    margin-bottom: 20px;
}

.form-control::placeholder {
    color: #D1B34D;
}

.form-control:hover::placeholder, .form-control:active::placeholder, .form-control:focus::placeholder {
    color: #552c01;
}

.section_contact input, .section_contact textarea {
    background: #552c01;
    border: 1px solid #552c01;
    color: #ffffff;
    resize:none;
    transition: background 0.3s ease;
    border-radius:0;
}

.section_contact input:hover, .section_contact input:active, .section_contact input:focus, .section_contact textarea:hover, .section_contact textarea:active, .section_contact textarea:focus {
    background: #ffffff !important;
    border: 1px solid #552c01 !important;
    color: #D1B34D !important;
    box-shadow:none;
}

.section_contact .btn-black {
    font-weight: bold;
}

.google_map {
    border: 2px solid #552c01;
    width: 100%;
}

/*Footer*/
.section_footer {
    font-size: 16px;
    background: #ffffff;
    color:#552c01;
    padding: 20px 0;
    position: relative;
    z-index: 3;
}

.dd_by {
    text-align: right;
}

.section_footer a {
    color: #552c01;
}

/*Client Diaries*/
.inner_scroll {
    overflow: hidden;
}

.inner_header {
    color: #ffffff;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 50px 0;
}

.inner_header h1 {
    font-size: 90px;
    font-weight: bold;
    line-height: 60px;
    color:#D1B34D;
}

.inner_header h2 {
    font-size: 35px;
    margin: 20px 0px;
}

.inner_header a {
    font-weight: bold;
}

.bg_black {
    background: #000000;
}

.fixed_scroll {
    background:url(../images/pattern2.png) #D1B34D;
}

.section_cd {
    position: relative;
    padding:0 10%;
}

.cd_inner-menu {
    padding:0 10%;
    left: 0;
    width: 100%;
    z-index: 1;
}

.inner-menu-c {
    padding: 24px 0;
}

.inner-menu {
}

.inner-menu ul, .inner-menu-ul ul {
    margin:0;
    padding:0;
}

.inner-menu li, .inner-menu-ul li {
    list-style:none;
    display:inline-block;
    margin-right:18px;
}

.inner-menu li a, .inner-menu-ul li a {
    display:inline-block;
    position:relative;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

.inner-menu li a:hover, .inner-menu-ul li a:hover {
    text-decoration: none;
}

.inner-menu li .link:after, .inner-menu li .link.active:after, .inner-menu-ul li .link:after, .inner-menu-ul li .link.active:after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.inner-menu li .link.active:after, .inner-menu-ul li .link.active:after {
    width: 100%;
}

.cd_items_c {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.cd_items {
    position: absolute;
    display: none;
    left: 0;
    width: 100%;
}

.cd_items.cd_active {
    display: block;
}

.cd_items.cd_scroll_hd {
    opacity:0 !important;
}

.cd_items .row {
    height: 100vh;
}

.cd_left, .cd_right {
    
}

.cd_left {
    font-size: 18px;
    color: #ffffff;
}

.cd_left .date {
    font-weight: bold;
    padding-bottom: 20px;
    display: block;
}

.cd_left h1 {
    font-weight: bold;
    font-size: 38px;
    padding-bottom: 20px;
}

.cd_left p {
    margin: 0;
    padding-bottom: 20px;
}

.cd_left button {
    font-weight: bold;
}

.cd_right img {
    width: 100%;
    max-width: inherit !important;
    max-height: inherit !important;
}

.dummy_cd_scroll {
    height: 100vh;
}

.cd_fixed .pos_absolute, .cd_fixed .pos_fixed {
    top: 0;
    left: 0;
    width: 100%;
}

.section_cd_view {
    background: #000000;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    display: none;
}

.hd_bdy_scrll {
    overflow: hidden;
}

/*body {
    overflow: hidden;
}*/


.section_cd_view .cd_inner-menu {
    background: #000000;
    position: fixed;
    top: 0;
    padding: 0;
}

.section_cd_view .inner-menu-c {
    padding: 24px 10%;
}

.cd_bottom {
    background: #000000;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 24px 0;
    font-size: 18px;
    text-align: center;
}

.cd_scrll {
    overflow: scroll;
    height: 100vh;
}

/*Gallery*/

.gallery_catgs_indv {
    border: 1px solid #ffffff;
    padding: 10px;
    position: relative;
}

.gallery_catgs_indv a {
    display: block;
    color: #ffffff;
}

.gallery_catgs_indv img {
    max-width: 100%;
    opacity:0.1;
    transition: opacity 0.3s ease;
}

.gallery_catgs_indv:hover img {
    opacity:1;
}

.gallery_catgs_indv h3 {
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
}

.gallery_catgs_indv:hover h3 {
    opacity:0.5;
}

.cd_gallery {
    /*column-count: 3;
    column-gap: 20px;
    margin: 0 20px;*/
}

.opacity_0 {
    /*opacity:0;*/
}

.cd_gallery .cd_img_item {
    position: relative;
    margin-bottom: 20px;
}

.cd_gallery .cd_img_txt {
    position: absolute;
    width: 100%;
    bottom:0;
    left: 0;
}

.cd_gallery .cd_img_item:hover .cd_img_txt {
    
}

.cd_gallery .cd_img_txt_inner_c {
    position: relative;
    z-index: 1;
}

.cd_gallery .opaque_white {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffffff;
    opacity:0.5;
}

.cd_gallery .cd_img_txt_inner {
    padding: 10px;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
     background:#D1B34D;
     border: #D1B34D solid 1px !important;
}
.custom-checkbox .custom-control-input:focus ~ .custom-control-label::before {
     box-shadow:none;
     border: #552c01 solid 1px;
}
.custom-checkbox .custom-control-input:active ~ .custom-control-label::before {
     box-shadow:none;
     background:#D1B34D;
     border-color: #D1B34D;
}

.custom-checkbox .custom-control-label::before {
    border: #552c01 solid 1px;
    transform: scale(1.3);
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    transform: scale(1.3);
}

.custom-checkbox .custom-control-label {
    color: #552c01;
    cursor: pointer;
}

.cd_gallery img {
  width: 100% !important;
  height: auto !important;
  cursor: pointer;
}

.bdy_gallery .section_contact  {
    position: relative;
    z-index: 3;
    background:url(../images/pattern2.png) #D1B34D;
}

.bdy_gallery .cd_inner-menu .main-menu {
    margin:0;
}

.bdy_gallery .cd_inner-menu .main-menu ul {
    margin:0;
    padding:0;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .snd_btn_c {
        flex:auto;
        max-width: 100%;
        margin:10px 0;
    }

    .snd_btn_c .float-right {
        float:none !important;
    }
}

@media (min-width: 100px) and (max-width: 991px) {
    .inner_header h1 {
        font-size: 60px;
    }
    .section_contact .col-md-3, .section_contact .col-md-6 {
        max-width: 100%;
        flex: auto;
    }
}

@media (min-width: 100px) and (max-width: 767px) {
    .inner_header h1 {
        font-size: 40px;
    }
    .snd_btn_c {
        margin:10px 0;
    }
    .snd_btn_c .float-right {
        float:none !important;
    }
    .section_footer {
        text-align:center;
    }
    .dd_by {
        text-align:center;
    }
}

@media (min-width: 100px) and (max-width: 1199px) {
    .section_contact, .section_footer {
        font-size: 15px;
    }
}
