* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    font-family: "Poppins", Helvetica, sans-serif;
    background-color: #222222;
}

img {
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
    border: 0;
}

.flexer {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.col-gap-1rem {
    column-gap: 1rem;
}

.col-gap-2rem {
    column-gap: 2rem;
}

ol, ul {
    padding: 0 0 0 40px;
    margin: 1em 0;
    color: #d5d5d5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", Helvetica, sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #f5f5f5;
}

h2 {
    font-size: 1.5em;
    margin: 0.83em 0;
}

h4 {
    font-size: 16px;
    color: #f5f5f5;
}

p {
    font-family: "Poppins", Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 0;
    font-style: normal;
    line-height: 1.75em;
    color: #d5d5d5;
    margin: 0 0 10px;
}

a {
    color: #6b6b6b;
    outline: none;
    transition: all .3s ease-in-out;
}

.pt-50px {
    padding-top: 50px;
}

.clearfix:after {
    clear: both;
}

.clearfix::before {
    clear: both;
}

/* Header */
.header {
    display: block;
    padding-bottom: 40px;
    position: relative;
    padding: 40px 40px 40px;
    background-color: #222222;
}

.header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-image img {
    height: auto;
    max-height: 100px;
    width: auto;
    max-width: 600px;
}

@media only screen and (max-width: 992px) {
    .header-image img {
        max-height: 30px;
    }
}

.site-main-menu li {
    display: inline-block;
    position: relative;
    color: #333;
    text-decoration: none;
    margin-right: 40px;
}

.site-main-menu > li > a {
    line-height: 3.3em;
}

.site-main-menu li a {
    font-family: "Poppins", Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 0;
    font-style: normal;
    color: #f5f5f5;
    letter-spacing: 0px;
    text-decoration: none;
    opacity: .55;
}

.menu-toggle {
    color: #FFF;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    .header {
        padding: 20px 40px 20px;
        position: sticky;
        top: 0;
        z-index: 30;
    }

    .mobile-visible {
        display: block !important;
    }

    .mobile-menu-hide {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    .mobile-visible {
        display: none !important;
    }

    .mobile-menu-hide {
        display: block !important;
    }
}

@media only screen and (max-width: 991px) {
    
    .header.show .mobile-menu-hide {
        display: block !important;
    }
    
    .header.show .site-main-menu {
        position: fixed;
        width: 100%;
        max-width: 320px;
        height: 100%;
        min-height: 100vh;
        bottom: 0;
        right: 0;
        left: auto;
        top: 52px;
        height: calc(100% - 52px);
        box-shadow: 0px 0px 70px 0px rgba(0, 0, 0, .08);
        background-color: #222;
    }
    
    .header.show .site-main-menu li {
        display: block;
    } 

    .site-nav.animate{
        transition: all 0.44s ease-in-out;
    }
}

/* Contact-section */
.contact-section {
    padding: 0 60px;
}

.contact-section .inner {
    display: flex;
}

@media only screen and (max-width: 768px) {
    .contact-section {
        padding: 0 20px;
    }

    .contact-section .inner {
        flex-direction: column;
    }
}

.contact-section .detail-box {
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 576px) {
    .contact-section .detail-box {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

.info-block-w-icon {
    position: relative;
    text-align: left;
    width: 100%;
    display: table;
    margin: 0;
    padding: 0 10px 30px 0;
}

.info-block-w-icon .ci-icon {
    position: relative;
    display: table-cell;
    padding: 0 10px 5px 0;
    width: 44px;
}

.info-block-w-icon i {
    color: #606060;
    font-size: 33px;
}

.info-block-w-icon .ci-text {
    position: relative;
    display: table-cell;
    padding: 0 0 0 15px;
    vertical-align: middle;
}

.info-block-w-icon .ci-text h4 {
    margin: 7px 0;
}

.contact-section .form-box {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 576px) {
    .contact-section .form-box {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
}

.block-title h2 {
    font-size: 21px;
    margin: 0 0 30px;
    z-index: 1;
    padding-bottom: 7px;
}

.field-holder {
    margin-bottom: 20px;
    width: 100%;
}

.field-holder label {
    display: block;
    max-width: 100%;
    font-size: 15px;
    color: #fff;
    font-weight: normal;
    text-align: left;
    padding: 0 0 3px 0;
    margin: 0;
}

.field-holder label .required {
    color: #B94A48;
    font-weight: bold;
}

.field-holder input[type=text],
.field-holder input[type=password],
.field-holder input[type=email],
.field-holder textarea,
.field-holder select {
    min-height: 32px;
    line-height: 1.3;
    color: #555555;
    background-color: #fff;
    border-color: #BFC3C8;
    border-width: 1px;
    border-style: solid;
    border-radius: 4px;
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    padding: 6px 10px;
    outline: none;
    font-weight: normal;
}

.field-holder textarea{
    height: auto;
}

.field-holder .desc {
    margin-top: 6px;
    padding: 0;
    font-size: 12px;
    color: #666666;
    font-weight: normal;
    text-align: left;
    font-style: normal;
    max-width: 100%;
}

.field-holder button {
    width: auto;
    font-size: 15px;
    height: auto;
    line-height: normal;
    text-align: center;
    background: #dd9933;
    border-width: 1px;
    border-color: #dd9933;
    border-style: solid;
    color: #ffffff;
    cursor: pointer;
    font-weight: normal;
    border-radius: 4px;
    text-shadow: none;
    padding: 10px 20px;
    box-sizing: border-box;
    box-shadow: 0 1px 1px #141414;
    margin: 10px;
    margin-left: 0;
    margin-right: 0;
    vertical-align: middle;
}

/* Book-section */
.book-section {
    padding: 0 60px;
}

/* Double-side */
.double-side {
    display: flex;
}

.double-side .writeup-box,
.double-side .image-box {
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 576px) {
    .double-side .writeup-box,
    .double-side .image-box {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.book-section .form-box {
    margin-top: 15px;
    padding-right: 15px;
    padding-left: 15px;
}

@media only screen and (max-width: 768px) {
    .book-section {
        padding: 0 5px;
    }

    .double-side {
        flex-direction: column;
    }

    .book-section .flexer {
        flex-direction: column;
    }
}

.carousel-container {
    width: 100%;
    max-width: 600px;
    position: relative;
}

/* Hide nav arrows initially */
.owl-nav {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show nav arrows on hover */
.carousel-container:hover .owl-nav {
    opacity: 1;
}

/* Position nav buttons inside image */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white  !important;
    color:  rgba(0,0,0,0.4) !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px !important;
    border: none;
}

.owl-nav .owl-prev {
    left: 10px;
}

.owl-nav .owl-next {
    right: 10px;
}

/* Dots at bottom-right */
.owl-dots {
    position: absolute;
    bottom: 10px;
    right: 15px;
}

.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    margin: 3px;
    display: block;
    border-radius: 50%;
    transition: background 0.3s;
}

.owl-dots .owl-dot.active span {
    background: #fff;
}

/* Image styling */
.owl-carousel img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

/* Page-Title */
.page-title {
    background-color: #252525;
    color: #777;

    border-top: 2px solid #333333;
    border-bottom: 2px solid #333333;
    padding: 65px 70px;
    margin-bottom: 65px;
}

.page-title .inner {
    display: flex;
    justify-content: space-between;
}

.page-title h1 {
    color: #f5f5f5;
    font-size: 44px;
    font-family: Poppins, Helvetica, sans-serif;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0px;
}

@media only screen and (max-width: 991px) {
    .page-title .inner  {
        flex-direction: column;
    }

    .page-title h1 {
        font-size: 35.2px;
    }
}

@media only screen and (max-width: 768px) {
    .page-title {
        padding: 15px 20px;
    }
}


.page-title .page-subtitle h4 {
    color: #aaaaaa;
    font-size: 14px;
    font-family: Poppins, Helvetica, sans-serif;
    font-weight: 300;
    font-style: normal;
    letter-spacing: 0px;
}


.two-way .image-box .virtual {
    background-image: url('../img/Jake-Claver-Headshot-Jake-Claver-Official-Website.jpg');
    position: relative;
    height: 100%;
    min-height: 300px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.two-way .writeup-box .content {
    background-color: #333;
    position: relative;
    padding: 70px 15%;
    height: 100%;
    min-height: 100px;
}

.two-way .image-box .inner {
    height: 100%;
    min-height: 100%;
}

@media screen and (min-width: 768px) {
    .two-way {
        padding: 0 20px;
    }

    .two-way .inner {
        display: flex;
    }

    .two-way .writeup-box .inner {
        position: relative;
        padding: 50px 70px 50px 0;
        margin-left: -70px;
        z-index: 1;
    }

    .two-way .writeup-box .content {
        box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, .11);
    }
}

@media (min-width: 992px) {
    .two-way .image-box,
    .two-way .writeup-box {
        position: relative;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.hp-main-title {
    color: #f5f5f5;
    font-size: 48px;
    line-height: 1.2em;
    margin-top: 5px;
    margin-bottom: 15px;
}

.two-way .writeup-box p {
    color: #d5d5d5;
}

.special-title {
    text-align: center;
    margin-bottom: 1em;
}

@media (min-width: 576px) {
    .company-links {
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.maxbutton {
    position: relative;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    height: 50px;
    border: 2px solid #efbe60;
    border-radius: 26px 26px 26px 26px;
    background: linear-gradient(#efbe60 45%, #dbac52);
    box-shadow: 0px 0px 2px 0px #333333;
}

.maxbutton .mb-text {
    color: #0a0a0a;
    font-family: Tahoma;
    font-size: 15px;
    text-align: center;
    font-style: normal;
    font-weight: bold;
    line-height: 1em;
    box-sizing: border-box;
    display: block;
    background-color: unset;
    padding: 15px 37px 18px 37px;
    text-shadow: 0px 0px 0px #0a0000;
}

/* Footer */
.site-footer {
    background-color: #252525;
    margin: 60px 0 0;
    padding: 15px 45px;
    border-top: 2px solid #f2f2f2;

    border-color: #333333;

}

@media screen and (min-width: 768px) {
    .site-footer  {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media only screen and (max-width: 768px) {
    .footer-social, .footer-copyrights {
        float: none;
        display: block;
        text-align: center;
        margin: 12px 0;
    }
}

.site-footer .footer-social-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer .footer-social-links li {
    display: inline-block;
    margin-right: 25px;
}

.site-footer .footer-social-links li a {
    color: #dddddd;
    text-decoration: none;
    line-height: 21px;
    font-size: 13px;
    opacity: .6;
}

.footer-copyrights p {
    color: #dddddd;
    line-height: 21px;
    font-size: 13px;
    margin: 0;
}