/* latin */
@font-face {
    font-family: 'Cormorant';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url(../fonts/cormorant.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300 800;
    font-stretch: 100%;
    font-display: swap;
    src: url(../fonts/open-sans.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

body {
    font-family: 'Open Sans';
    font-weight: 400;
    color: #818491;
}

header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 25px 0px;
    background-color: rgba(0, 0, 0, 0.25);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 38px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    transition: .3s;
    position: relative;
    text-transform: uppercase;
}

.nav-links li a:hover,
.header-sticky .nav-links li a:hover {
    color: #d7a95d;
}

.nav-links li a.active,
.header-sticky .nav-links li a.active {
    color: #d7a95d;
}

.nav-links li a.active::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 18px;
    height: 2px;
    background: #d7a95d;
}

.nav-links li a.active::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 6px;
    height: 6px;
    background: #d7a95d;
    border-radius: 50%;
}

.nav-links li a:hover::after {
    width: 100%;
}

img {
    display: block;
}

.logo img {
    height: 160px;
    width: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant';
    font-weight: 700;
    color: #121F38;
}

/* ===========================
   Fade Up
=========================== */
.fade-up {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(10px);
    transition: opacity .6s ease,
        transform .6s cubic-bezier(.22, 1, .36, 1),
        filter .6s ease;
    will-change: opacity, transform, filter;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* ===========================
   Fade Left
=========================== */
.fade-left {
    opacity: 0;
    transform: translateX(-80px);
    filter: blur(10px);
    transition: opacity .6s ease,
        transform .6s cubic-bezier(.22, 1, .36, 1),
        filter .6s ease;
    will-change: opacity, transform, filter;
}

.fade-left.show {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

/* ===========================
   Fade Right
=========================== */
.fade-right {
    opacity: 0;
    transform: translateX(80px);
    filter: blur(10px);
    transition: opacity .6s ease,
        transform .6s cubic-bezier(.22, 1, .36, 1),
        filter .6s ease;
    will-change: opacity, transform, filter;
}

.fade-right.show {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

/* ===========================
   Zoom In
=========================== */
.zoom-in {
    opacity: 0;
    transform: scale(1.15);
    transition: opacity .8s ease,
        transform .8s cubic-bezier(.22, 1, .36, 1),
        filter .8s ease;
    will-change: opacity, transform;
}

.zoom-in.show {
    opacity: 1;
    transform: scale(1);
}

header .logo:focus {
    outline: 0;
}

.btn {
    padding: 16px 34px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    border-radius: 4px;
    justify-content: center;
}

.btn-primary {
    background: #d7a95d;
    color: #121F38;
}

.btn-primary:hover {
    background: #ddb56b;
}

.btn-secondary:hover svg path {
    fill: #121F38;
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, .6);
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #121F38;
}

.page_wrapper {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0px 16px;
}

.main_menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

header .logo {
    margin-bottom: -90px;
}

.btn svg {
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.btn:hover svg {
    transform: rotate(45deg);
}

footer {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-color: #ecf5f6;
}

.first-footer {
    padding: 55px 0 35px;
}

.text-center {
    text-align: center;
}

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

.footer-logo img {
    max-height: 180px;
    width: auto;
    margin: 0 auto;
}

.first-footer .footer-box {
    padding-top: 30px;
    padding-bottom: 25px;
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
    display: flex;
    flex-wrap: wrap;
}

.first-footer .widget-area {
    position: relative;
    border-right: 1px solid #e3e3e3;
    padding: 0 25px;
    flex: 0 0 auto;
    width: 33.33333333%;
}

.first-footer .featured-title h3 {
    font-size: 23px;
    line-height: 28px;
    margin-bottom: 4px;
    text-transform: capitalize;
}

.under_subscription {
    position: relative;
    max-width: 635px;
    margin: 50px auto 0;
}

.under_subscription input[type="email"] {
    min-height: 60px;
    width: 100%;
    font-size: 16px;
    padding: 12px 15px 12px 15px;
    border: 1px solid transparent;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    border-radius: 3px;
}

.under_subscription form>p {
    display: flex;
    position: relative;
}

.under_subscription input[type="submit"] {
    min-width: 156px;
    display: flex;
    border: 1px solid #d7a95d;
    background-color: #d7a95d;
    color: #121F38;
    border-radius: 3px;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    cursor: pointer;
    position: absolute;
    top: 4px;
    bottom: 4px;
    right: 4px;
    font-weight: 500;
}

.under_subscription .wpcf7-spinner {
    position: absolute;
    right: 0;
    top: 0;
    margin: 0;
}

.wpcf7-form-control-wrap {
    position: relative;
    width: 100%;
}

.second-footer {
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
    padding: 0;
}

.row_area {
    display: flex;
    flex-wrap: wrap;
}

.second-footer .widget-area {
    flex: 0 0 auto;
    width: 25%;
}

.footer .widget {
    margin: 54px 0 45px;
}

.widget .widget-title {
    position: relative;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 23px;
    line-height: 28px;
    text-transform: capitalize;
}

.widget ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

footer .textwidget.widget-text {
    color: #818491;
    font-size: 15px;
    font-weight: 400;
    max-width: 413px;
    line-height: 24px;
}

.footer .social-icons li>a {
    width: 37px;
    height: 37px;
    line-height: 37px;
    border-radius: 3px;
    border: 1px solid #818491;
    text-align: center;
    display: block;
    background-color: transparent;
}

footer .social-icons li {
    display: inline-block;
    border: none;
}

.footer .social-icons li>a:hover {
    border: 1px solid #d7a95d;
    background-color: #d7a95d;
}

.footer .social-icons li>a:hover svg path {
    fill: #121F38;
}

.widget ul>li {
    padding: 0 0 12px 0;
    position: relative;
}

.widget ul.menu-footer-services li a {
    position: relative;
    text-decoration: none;
    line-height: 24px;
    font-size: 15px;
    display: flex;
}

.widget ul.menu-footer-services li a:before {
    content: "";
    margin-right: 10px;
    padding-left: 0;
    font-size: 1.3rem;
    position: relative;
    top: 12px;
    display: inline-block;
    width: 7px;
    height: 1px;
    background: #818491;
    transition: .3s;
}

.widget ul.menu-footer-services li a:not(:hover) {
    color: #818491;
}

.widget_media_gallery .gallery-item {
    overflow: hidden;
    width: 75px;
    height: 75px;
    display: inline-block;
    background: none;
    position: relative;
}

footer .widget.widget_nav_menu {
    padding-right: 20px;
}

.ttm-box-view-overlay,
.ttm-box-view-content-inner {
    position: relative;
    overflow: hidden;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.copyright {
    text-align: center;
    padding-top: 23px;
    padding-bottom: 23px;
    font-size: 16px;
}

.copyright a {
    color: #818491;
    text-decoration: none;
}

.copyright a:hover,
.widget ul.menu-footer-services li a:hover,
.widget-area a:hover {
    color: #d7a95d;
}

.second-footer .widget-area:nth-child(2) {
    padding-left: 40px;
}

.widget-area a {
    color: #818491;
    text-decoration: none;
    font-size: 16px;
}

footer .widget_media_gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.menu-button-container {
    display: none;
}

.second-footer .widget-area:nth-child(2) {
    padding-left: 40px;
}

header {
    transition: all 0.4s ease;
}

.header-sticky header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-sticky .nav-links li a {
    color: #121F38;
}

.floating_btns {
    position: fixed;
    top: 50%;
    right: 0;
    padding: 2px;
    margin: -89px 0 0;
    background-color: #fff;
    box-shadow: 0 6px 12px rgb(0 0 0 / 25%);
    z-index: 99999;
    width: 55px;
}

.floating_btns a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    position: relative;
}

.floating_btns a>span {
    display: flex;
    position: absolute;
    right: 100%;
    top: 0;
    background-color: #fff;
    box-shadow: 0 6px 12px rgb(0 0 0 / 25%);
    opacity: 0;
    visibility: hidden;
    font-size: 16px;
    color: #232323;
    transform: translateX(-5px);
    transition: 0.5s ease;
    padding: 0 20px;
    height: 50px;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
}

.floating_btns a:hover>span {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

#totop {
    position: fixed;
    left: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background: #d7a95d;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
}

#totop.active {
    opacity: 1;
    visibility: visible;
    animation: jump 2s infinite;
}

#totop:hover {
    background: #121F38;
}

#totop:hover svg path {
    stroke: #fff;
}

.menu_active .floating_btns,
.menu_active #totop {
    z-index: unset;
}





@keyframes jump {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.menu_active header {
    position: absolute;
    animation: unset;
}

.ttm-page-title-row .golden_icon {
    margin: 0 auto 20px;
}

.section-title {
    max-width: 720px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-title .golden_icon {
    max-width: 190px;
    height: auto;
    margin: 0 auto 20px;
}

.about-section .sub-title,
.section-title .sub-title {
    color: #c89b4b;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 3px;
    margin-bottom: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.about-content h2,
.section-title h2 {
    font-size: 48px;
    line-height: 1.1;
    margin: 18px 0 25px;
    color: #1b1b1b;
}

.services-section .section-title h2,
.our_gallery .section-title h2 {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.about-text,
.section-title p {
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 45px;
}

.services-section .section-title p,
.our_gallery .section-title p {
    max-width: 700px;
    margin: auto;
}

.about-content h2 span,
.section-title h2 span {
    color: #c89b4b;
}

footer .newsletter-response {
    position: absolute;
    left: 0;
    right: 0;
}

@media(max-width: 1439px) {
    .btn {
        font-size: 14px;
        padding: 14px 26px;
    }

    .logo img {
        height: 140px;
    }

    .nav-links li a,
    .widget-area a,
    .under_subscription input[type="email"],
    .under_subscription input[type="submit"],
    .widget ul.menu-footer-services li a {
        font-size: 14px;
    }

    .first-footer .featured-title h3 {
        font-size: 20px;
        line-height: 24px;
    }

    .under_subscription input[type="email"] {
        min-height: 52px;
    }

    .widget .widget-title {
        font-size: 21px;
        line-height: 24px;
        margin-bottom: 16px;
    }

    footer .textwidget.widget-text {
        font-size: 14px;
        max-width: 413px;
        line-height: 24px;
    }

    .copyright {
        font-size: 14px;
    }

    .footer-logo img {
        max-height: 140px;
    }

    .section-title .golden_icon {
        max-width: 160px;
    }

    .about-section .sub-title,
    .section-title .sub-title,
    .cta_section span {
        font-size: 14px;
    }

    .about-content h2,
    .section-title h2 {
        font-size: 40px;
        margin: 14px 0 20px;
    }

    .about-text,
    .section-title p {
        font-size: 14px;
        margin-bottom: 34px;
    }

    .services-section .section-title p,
    .our_gallery .section-title p {
        max-width: 600px;
    }
}

@media(max-width: 1200px) {
    .menu-button-container .dropdown-icon.close {
        display: none;
    }

    .menu-button-container {
        display: block;
    }

    #primary-mobile-menu {
        background-color: transparent;
        padding: 0px;
        border: 0;
        display: flex;
        align-items: center;
        align-content: center;
        vertical-align: middle;
        justify-content: center;
        border-radius: 2px;
        width: 30px;
        height: 30px;
    }

    body.menu_active .primary-menu-container {
        position: fixed;
        display: block;
        overflow: auto;
        background-color: #fff;
        top: 0;
        bottom: 0;
        left: 0;
        height: 100%;
        z-index: 10000;
        width: 80%;
    }

    body.menu_active::after {
        background-color: rgb(0 0 0 / 50%);
        content: '';
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        position: absolute;
        height: 100%;
    }

    body.menu_active {
        position: relative;
    }

    .primary-menu-container {
        display: none;
    }

    .dropdown-icon svg {
        display: block;
    }

    .logo img {
        height: 120px;
    }

    header .logo {
        margin-bottom: -70px;
    }

    .main_menu .btn-primary {
        display: none;
    }

    .nav-links li {
        border-bottom: 1px solid #ededed;
    }

    .nav-links li a {
        padding: 15px 20px;
        font-size: 16px;
        line-height: 26px;
        position: relative;
        color: #818491;
        display: block;
    }

    .primary-menu-container .nav-links {
        flex-direction: column;
        gap: 0;
    }

    .nav-links li a.active::before,
    .nav-links li a.active::after {
        display: none;
    }

    .header-sticky .dropdown-icon svg rect {
        fill: #121F38;
    }
}

@media(max-width: 991px) {
    .second-footer .widget-area {
        width: 50%;
    }

    .footer .widget {
        margin: 20px 0;
    }

    .second-footer {
        padding-top: 33px;
    }
}

@media(max-width: 767px) {
    .logo img {
        height: 93px;
    }

    .first-footer .widget-area {
        position: relative;
        border-right: 0;
        padding: 0;
        flex: 0 0 auto;
        width: 100%;
    }

    .first-footer .footer-box {
        gap: 30px;
    }

    .second-footer .widget-area:nth-child(2) {
        padding-left: 0;
    }

    .second-footer .widget-area {
        width: 100%;
    }

    header {
        padding: 16px 0px;
    }
}