@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

@font-face {
    font-family: 'Niagara Solid';
    font-style: normal;
    font-weight: normal;
    src: local('Niagara Solid'), url('../fonts/niagara-solid.woff') format('woff');
}

/* @font-face {
    font-family: 'Brush ATF';
    src: url('../fonts/BrushATF.eot');
    src: url('../fonts/BrushATF.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BrushATF.woff2') format('woff2'),
        url('../fonts/BrushATF.woff') format('woff'),
        url('../fonts/BrushATF.svg#BrushATF') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} */

@font-face {
    font-family: 'EthnocentricRg-Regular';
    font-style: normal;
    font-weight: normal;
    src: local('EthnocentricRg-Regular'), url('../fonts/ethnocentric-rg.woff') format('woff');
}

/*     font-family: "Lexend", sans-serif;  font-family: "Anton", sans-serif; */
html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-size: 16px;
    color: #282828;
    line-height: 1.5;
    font-family: "Lexend", sans-serif;
    background-color: #fff;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: transparent !important;
    border: solid 3px #cccccc;
    color: #282828;
}

.dropdown-item.active:hover {
    background-color: #f15b4f !important;
}

iframe {
    border-radius: 20px;
}

#fixed-header {
    position: absolute;
    width: 100%;
    transition: all 0.5s;
    top: 0;
    z-index: 11;
    background-color: #ffffff00;
}

#fixed-header.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: none;
    z-index: 999 !important;
    padding: 0px 20px;
    min-height: 120px;
    background-color: transparent;
    display: flex;
    align-items: start;
    width: 100%;
}

.content-page {
    position: relative;
}

.logo img {
    max-width: 128px;
    height: auto;
}

/* button */

.action-btn {
    display: flex;
    gap: 10px;
}

/* Bounce To Right */
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #006494;
    --bs-btn-border-color: #006494;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #006494;
    --bs-btn-hover-border-color: #006494;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #006494;
    --bs-btn-active-border-color: #006494;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #006494;
    --bs-btn-disabled-border-color: #006494;
    letter-spacing: normal;
    font-weight: 400;
    text-transform: capitalize;
}

.btn-primary {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    overflow: hidden;
    background-color: #006494;
    text-transform: uppercase;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 400;
    text-transform: capitalize;
    font-family: EthnocentricRg-Regular;
}

.btn-primary:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #025175;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    color: white;
}

.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/*  */

.btn-secondary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #9f855b;
    --bs-btn-border-color: #9f855b;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #9f855b;
    --bs-btn-hover-border-color: #9f855b;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #9f855b;
    --bs-btn-active-border-color: #9f855b;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #9f855b;
    --bs-btn-disabled-border-color: #9f855b;
    letter-spacing: normal;
    font-weight: 400;
    text-transform: capitalize;
}

.btn-secondary {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    overflow: hidden;
    background-color: #9f855b;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 400;
    text-transform: capitalize;
}

.btn-secondary:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #6f5a38;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    color: white;
}

.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* btn outline secondary*/
.btn-outline-secondary {
    --bs-btn-color: #000;
    --bs-btn-border-color: #259ed7;
    --bs-btn-hover-color: #259ed7;
    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-border-color: #259ed7;
    --bs-btn-focus-shadow-rgb: 108, 117, 125;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #259ed7;
    --bs-btn-active-border-color: #259ed7;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #259ed7;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #259ed7;
    --bs-gradient: none;
    font-size: 20px;
    font-weight: normal;
    border: solid 2px #259ed7;
    font-family: "Instrument Serif", serif !important;
    font-style: italic;
    border-radius: 100px;
    min-height: 48px;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-secondary {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    overflow: hidden;
    font-family: "Instrument Serif", serif !important;
}

.btn-outline-secondary:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #259ed7;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active {
    color: white;
}

.btn-outline-secondary:hover:before,
.btn-outline-secondary:focus:before,
.btn-outline-secondary:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* End btn outline secondary */

/* btn outline primary*/
.btn-outline-primary {
    --bs-btn-color: #000;
    --bs-btn-border-color: #ff0000;
    --bs-btn-hover-color: #ff0000;
    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-border-color: #ff0000;
    --bs-btn-focus-shadow-rgb: 108, 117, 125;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #ff0000;
    --bs-btn-active-border-color: #ff0000;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #ff0000;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #ff0000;
    --bs-gradient: none;
    font-size: 20px;
    font-weight: normal;
    border: solid 2px #ff0000;
    font-family: "Instrument Serif", serif !important;
    font-style: italic;
    border-radius: 100px;
    min-height: 48px;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-primary {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    overflow: hidden;
    font-family: "Instrument Serif", serif !important;
}

.btn-outline-primary:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ff0000;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    color: white;
}

.btn-outline-primary:hover:before,
.btn-outline-primary:focus:before,
.btn-outline-primary:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* end btn outline primary */

/* btn outline defult*/
.btn-outline-defult {
    --bs-btn-color: #000;
    --bs-btn-border-color: #34617b;
    --bs-btn-hover-color: #34617b;
    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-border-color: #34617b;
    --bs-btn-focus-shadow-rgb: 108, 117, 125;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #34617b;
    --bs-btn-active-border-color: #34617b;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #34617b;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #34617b;
    --bs-gradient: none;
    font-size: 20px;
    font-weight: normal;
    border: solid 2px #34617b;
    font-family: "Instrument Serif", serif !important;
    font-style: italic;
    border-radius: 100px;
    min-height: 48px;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-defult {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    overflow: hidden;
    font-family: "Instrument Serif", serif !important;
}

.btn-outline-defult:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #34617b;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.btn-outline-defult:hover,
.btn-outline-defult:focus,
.btn-outline-defult:active {
    color: white;
}

.btn-outline-defult:hover:before,
.btn-outline-defult:focus:before,
.btn-outline-defult:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* End btn outline defult */

/* navigation */
.navbar-nav {
    display: flex;
    gap: 28px;
}

.down-icon svg {
    transition: transform 0.3s ease-in-out;
}

.navbar-expand-lg .navbar-nav>.nav-item:hover .down-icon svg {
    transform: rotate(180deg);
}

.fixed-header .nav-link {
    color: #ffffff !important;
}

.fixed-header .nav-link:hover {
    color: #e5e5e5 !important;
}

.nav-link {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    position: relative;
    text-transform: capitalize;
    font-family: 'EthnocentricRg-Regular';
    letter-spacing: 1px;
}

.nav-link.active {
    color: #fff !important;
    position: relative;
}

.nav-link {
    position: relative;
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link::after {
    content: "";
    position: absolute;
    background-color: #9f855c;
    height: 3px;
    width: 0;
    left: 0;
    bottom: -6px;
    transition: 0.3s;
}

/* .nav-link.active::after {
    content: "";
    height: 9px;
    width: 100%;
    position: absolute;
    bottom: -6px;
    left: 0;
    background-image: url(../images/menu-nav-bar.png);
    background-repeat: repeat-x;
    background-position: bottom;
} */

.nav-link:hover::after {
    content: "";
    height: 3px;
    width: 100%;
    position: absolute;
    bottom: -6px;
    left: 0;
    background-image: url(../images/menu-nav-bar.png);
    background-repeat: repeat-x;
    background-position: bottom;
}

.nav-link:focus,
.nav-link:hover {
    color: #fff;
}
.mobile-menu .nav-link:focus,
.mobile-menu .nav-link:hover {
    color: #000000;
}
/* header {
    padding: 20px 0;
} */

header .dropdown-toggle::after {
    top: 2px;
    position: relative;
}

header .dropdown-toggle::after {
    display: none;
}

.navbar-expand-lg .navbar-nav>.nav-item:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: -50%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    float: left;
    margin: 25px 0 0;
    font-size: 16px;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #f3f3f3;
    border: none;
    border-radius: 0;
    min-width: 280px;
    padding: 10px 20px;
    border: none;
    box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
    transition:
        opacity 0.3s ease-out,
        visibility 0.3s ease-out,
        margin 0.3s ease-out;
    display: inherit;
    border-radius: 12px;
    overflow: hidden;
}

ul.dropdown-menu li a {
    padding: 9px 14px;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    color: #282828;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
    border-radius: 10px;
    letter-spacing: -1px;
}

ul.dropdown-menu li a:hover {
    background-color: #f15b4f;
    color: #fff;
}

.list-unstyled {
    font-size: 16px;
    color: #282828;
    text-align: left;
    list-style: none;
    background-color: #f3f3f3;
    border: none;
    border-radius: 10px;
    min-width: 200px;
    padding: 20px;
    border: solid 3px #d4dcdc;
    box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
    transition:
        opacity 0.3s ease-out,
        visibility 0.3s ease-out,
        margin 0.3s ease-out;
}

.list-unstyled li a {
    padding: 9px 14px;
    position: relative;
    font-size: 16px;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
    border-radius: 50px;
}

.list-unstyled li a:hover {
    background-color: #f15b4f;
    color: #fff;
}

.header-inner {
    background: linear-gradient(90deg, #181e2a 20%, #BCA988 99%);
    padding: 20px 36px;
    border-radius: 20px;
    margin-top: 40px;
}

/* Hero Section */
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1360px;
}

/* mobile */
.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1111111;
}

.menu-close {
    padding: 1rem 2.5rem 1rem 2rem;
    font-size: 1.5rem;
    text-align: right;
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: -18px;
}

.mobile-content {
    overflow-y: auto;
    height: 96%;
}

.mobile-logo-container {
    text-align: center;
    padding: 20px 0;
}

.mobile-logo-container a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-navbar {
    padding: 0 30px;
}

.mobile-action {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding: 0 10px;
    flex-direction: column;
}

.mobile-action a {
    width: 96%;
    border-radius: 8px;
}

.powered-by-icon {
    justify-content: flex-start;
    margin-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
}

.askme-icon {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 11;
    cursor: pointer;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
}

.askme-icon span {
    text-align: center;
    font-size: 16px;
    line-height: 21px;
    max-width: 50px;
    display: flex;
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f062";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: #a0855c;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.lightScrollIcon::after {
    color: #ecedf3 !important;
}

.progress-wrap:hover::after {
    opacity: 0;
}

.progress-wrap::before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f062";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    opacity: 0;
    background-image: linear-gradient(298deg, #da2c4d, #f8ab37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #a0855c;
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/* modal-bg.png */
.modal-conversation .modal-content {
    border-radius: 40px 40px 40px 0;
    padding: 60px;
    background-color: #dddddd;
    background-image: url(../images/modal-bg.png);
    background-position: center center;
    background-size: cover;
}

.modal-conversation .modal-dialog {
    max-width: 1400px;
}

.modal-conversation .modal-header {
    border: none;
    display: flex;
    flex-direction: column;
}

.modal-conversation .modal-header h2 {
    font-family: "goldenhopes_personal";
    font-size: 72px;
    line-height: 70px;
    margin-bottom: 30px;
}

.modal-conversation .modal-header p {
    font-size: 20px;
    font-weight: 400;
}

.modal-conversation .modal-header {
    padding-bottom: 40px;
    position: relative;
    max-width: max-content;
    margin: 0 auto;
}

.modal-pg-icon {
    position: absolute;
    left: -148px;
    top: 20px;
}

.modal-pg-icon img {
    border: solid 5px #fff;
    border-radius: 100px;
}

.right-header {
    display: flex;
    gap: 15px;
}

.right-header a {
    font-size: 18px;
    font-weight: 300 !important;
    min-width: 240px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    border-radius: 8px;
}

/*================================================
 Hero Area CSS
=================================================*/

.hero-section {
    min-height: 800px;
    padding-top: 150px;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-image: url('../images/header-banner.png');
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: translateY(0);
  transition: transform 0.1s linear;
} */

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 2%, rgba(149, 120, 76, 0) 26%);
    top: 0;
    left: 0;
}

.hero-section::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgb(0 53 84 / 66%);
    top: 0;
    left: 0;
}

.hero-content {
    padding: 180px 0 180px;
}

.hero-content p {
    font-family: "Lexend", sans-serif;
    font-size: 20px;
    color: #fff;
    line-height: normal;
    font-weight: 300;
    max-width: 776px;
    margin: 0 auto;
    line-height: 34px;
}

.sun-cion {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.hero-content h1 {
    color: #fff;
    font-size: 80px;
    font-family: 'EthnocentricRg-Regular';
    font-weight: 500;
}

.bottom-bg {
    position: absolute !important;
    bottom: -2px;
    width: 100%;
    z-index: 1;
}

.bottom-bg img {
    width: 100%;
}

/*================================================
Hero Area CSS End
=================================================*/



/*================================================
image-box Start
=================================================*/
.image-box-container {
    display: grid;
    grid-template-columns: 2fr 2fr;
    grid-template-rows: 150px 220px 190px;
    gap: 12px;
    padding: 12px;
}

.image-box-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.image-box {
    overflow: hidden;
    border-radius: 12px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Layout positions */
.img1 {
    grid-row: 1 / 3;
    /* tall left image */
    grid-column: 1 / 2;
}

.img2 {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}

.img3 {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
}

.img4 {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
}

.img5 {
    grid-row: 3 / 4;
    grid-column: 2 / 3;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
    .image-box-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        width: 100%;
        margin-top: 30px;
    }

    .image-box-container img {
        height: auto;
    }

    .img1,
    .img2,
    .img3,
    .img4,
    .img5 {
        grid-column: auto;
        grid-row: auto;
    }
}

/*================================================
image-box end
=================================================*/



/*================================================
Step Section Start
=================================================*/


.step-section {
    position: relative;

}

.step-top-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    min-height: 300px;
    padding-top: 160px;
    padding-bottom: 220px;
    background-color: #fff;
}

.step-content h2 {
    font-family: 'EthnocentricRg-Regular';
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-size: 30px;
    color: #003554;
}

.step-banner {
    width: 100%;
    position: relative;
}

.step-banner img {
    width: 100%;
}

.step-content p {
    margin-bottom: 30px;
    max-width: 600px;
    font-size: 18px;
    font-weight: 300;
    font-family: "Lexend", sans-serif;
}

.logo-icon {
    margin-bottom: 15px;
}

.line-icon {
    margin-bottom: 20px;
}

.line-icon img {
    width: 100px;
}

.step-item {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
}

.step-icons {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
}

.step-number {
    color: #e1e1e1;
    font-size: 72px;
    font-weight: 400;
    font-family: "Anton", sans-serif;
    min-width: 80px;
}

.step-list ul li {
    padding-left: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.step-item {
    display: flex;
}

.step-list ul li:last-child {
    border-bottom: none;
}

.step-icon {
    min-width: 80px;
}

.step-name h3 {
    font-family: "Brush ATF";
    font-size: 60px;
    color: #9e845a;
    line-height: 60px;
}

.step-name a {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-size: 18px;
}

.step-line-bottom {
    position: absolute;
    bottom: 0;
}

.step-line-bottom {
    width: 100%;
}


.step-boxs {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 59px;
}

.step-box {
    background: linear-gradient(180deg, rgba(149, 120, 76, 1) 2%, rgba(188, 169, 136, 1) 99%);
    flex: 1;
    padding: 16px;
    min-height: 200px;
    min-width: 200px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.step-box:hover {
    background: linear-gradient(180deg, rgba(149, 120, 76, 1) 2%, rgba(188, 169, 136, 1) 99%);
}

.step-icon {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.step-box span {
    color: #fff;
    text-align: center;
    font-family: 'EthnocentricRg-Regular';
    font-size: 22px;
    line-height: 24px;
}

.step-box:hover {
    background: linear-gradient(180deg, rgba(0, 54, 85, 1) 2%, rgba(0, 97, 144, 1) 99%);
}

.about-img img {
    max-width: 590px;
    width: 100%;
}



/*================================================
Step Section End
=================================================*/


/*================================================
journey Section Start
=================================================*/

.journey-section {
    padding: 160px 0;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
        background-position: center bottom;
}

.journey-section::after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 53 84 / 65%);
}

.journey-section .container {
    position: relative;
    z-index: 1;
}

.journey-content h2 {
    color: #fff;
    font-size: 30px;
    font-family: EthnocentricRg-Regular;
    font-size: 400;
    margin-bottom: 20px;
}

.journey-content .line-icon {
    margin-bottom: 30px;
}

.journey-content p {
    font-size: 18px;
    font-weight: 300;
    font-family: "Lexend", sans-serif;
    color: #fff;
    max-width: 487px;
    letter-spacing: 1.2px;
    margin-bottom: 40px;
}

.action-icon {
    margin-bottom: 40px;
}

.action-icon h3 {
    font-size: 24px;
    font-family: EthnocentricRg-Regular;
    font-size: 400;
    line-height: 36px;
    color: #fff;
    letter-spacing: 1.2px;
}

.action-icon a {
    color: #fff;
    letter-spacing: 1.2px;
    font-size: 18px;
    font-weight: 300;
    font-family: "Lexend", sans-serif;
}

.form-journey {
    padding: 40px;
    border-radius: 30px;
    border: solid 3px #484946;
    background-color: #232a35;
}

.form-journey-action {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-journey-action .btn {
    min-width: 191px;
    margin: 0 auto;
    min-height: 44px;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 300;
}

.form-control {
    border-radius: 10px;
    background-color: #181e2a;
    border: 1px solid #5c5243;
    min-height: 50px;
    color: #fff;
}

.form-control:focus {
    border-color: #5c5243;
    box-shadow: none;
    background-color: #181e2a;
    color: #fff;
}

textarea.form-control {
    resize: none;
    height: 100px;
}

.form-container label {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 10px;
}

.form-journey .form-label {
    color: #fff;
    font-size: 18px;
    letter-spacing: 0;
    font-weight: 300;
}

/*================================================
Journey Section End
=================================================*/

.list-item{
    margin-bottom: 30px;
}

.list-item h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.list-item ul {
    margin-top: 5px;
}

.list-item li {
    font-size: 17px;
    font-weight: 300;
    font-family: "Lexend", sans-serif;
    color: #000;
    list-style: none; /* remove default bullets */
    position: relative;
    padding-left: 25px;
}

.list-item li::before {
    content: "✔"; /* check mark */
    position: absolute;
    left: 0;
    color: #bca988; /* change color if needed */
    font-weight: bold;
}

.rentals-btn .btn {
        background: linear-gradient(180deg, rgba(149, 120, 76, 1) 2%, rgba(188, 169, 136, 1) 99%);
    flex: 1;
    padding: 16px;
    border: none;
}


.rentals-btn .btn.btn-primary:before {
 background: linear-gradient(180deg, rgba(0, 54, 85, 1) 2%, rgba(0, 97, 144, 1) 99%);
}

/*================================================
Video Section Sart
=================================================*/

.video-bg img {
    width: 100%;
}

.about-values-img img {
    width: 100%;
}

.about-values-img img {
    border-radius: 20px;
}

/*================================================
Video Section End
=================================================*/


/*================================================
Footer Section Sart
=================================================*/

.footer-section {
    padding: 80px 0;
    background-image: url(../images/footer-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.footer-section::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
   background-color: rgb(0 53 84 / 75%);
    width: 100%;
    height: 100%;
}

.footer-section .container {
    position: relative;
    z-index: 1;
}

.powered-by-codeintel {
      position: relative;
    z-index: 1;
}

.social-icon ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.copyright {
    text-align: center;
    margin-top: 40px;
}

.copyright p {
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 300;
    line-height: 28px;
}

.footer-link li {
    text-align: center;
}

.footer-link li a {
    color: #fff;
    text-align: center;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 300;
    line-height:30px;

}


.footer-address p {
    color: #fff;
    text-align: center;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 300;
    line-height:30px;
}

.footer-address h3 {
    text-align: center;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
     font-family: 'EthnocentricRg-Regular';
}

.footer-link h3 {
     text-align: center;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
     font-family: 'EthnocentricRg-Regular';
}

.footer-address p a {
    color: #fff;
    text-align: center;
    font-size: 16px;
    line-height:30px;
    letter-spacing: 1px;
    font-weight: 300;
            word-wrap: break-word;
        overflow-wrap: break-word;
}


/*================================================
Footer Sectio End
=================================================*/


/*================================================
slider Sectio End
=================================================*/

.slider-section {
    padding:  0;
}


.owl-item.active.center .testimonial-card {
    background: #0f5f84 !important;
}

.owl-item.center .testimonial-card {
    background: #0f5f84 !important;
}

.testimonial-card {
    background: #fff;
    color: #fff;
    border-radius: 15px;
    padding: 30px;
    position: relative;
}

.owl-item.active.center .testimonial-card {
    background-color: #fff;
}

.owl-item.active.center .testimonial-card .text p {
    color: #fff;
}

.owl-item.active.center .testimonial-card .text p {
    color: #fff;
}

.owl-item.active.center .testimonial-card .text p {
    color: #fff;
}

.owl-item.active.center .testimonial-card .text h4 {
    color: #fff;
}

.owl-item.active.center .testimonial-card .text span {
    color: #fff;
}

/* center */

.owl-item.center .testimonial-card {
    background-color: #fff;
}

.owl-item.center .testimonial-card .text p {
    color: #fff;
}

.owl-item.center .testimonial-card .text p {
    color: #fff;
}

.owl-item.center .testimonial-card .text p {
    color: #fff;
}

.owl-item.center .testimonial-card .text h4 {
    color: #fff;
}

.owl-item.center .testimonial-card .text span {
    color: #fff;
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-img {
    width: 100%;
    max-width: 280px;
    min-width: 260px;
    height: 377px;
}

.testimonial-content img {
    width: 100%;
    max-width: 280px;
    border-radius: 20px;
    object-fit: cover;
}

.testimonial-card .text p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 38px;
    color: #000;
}

.testimonial-card .text h4 {
    margin-top: 15px;
    color: #000;
}

.testimonial-card .text h4 span {
    color: #000;
}

.testimonial-card .stars {
    color: gold;
    margin-top: 10px;
    display: flex;
    width: 100%;
    justify-content: end;
}

/* Center effect */
.owl-stage-outer {
    overflow: visible;
}

.owl-item {
    opacity: 0.5;
    transform: scale(0.9);
    transition: 0.3s;
}

.owl-item.center {
    opacity: 1;
    transform: scale(1);
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot span {
    width: 20px;
    height: 4px;
    background: #ddd;
    display: inline-block;
    margin: 5px;
}

.owl-dot.active span {
    background: #0f5f84;
}

.qoute-icon {
    position: absolute;
    top: 30px;
    right: 30px;
}

.breadcrumb-nav {
    color: #fff;
}

.breadcrumb-nav a {
    color: #fff;
    font-weight: 300;
    padding-left: 5px;
    padding-right: 5px;
}

/*================================================
slider Sectio End
=================================================*/

/*  */
.photos-grid-container {
  display: flex;
}

.img-box {
  width: 25%;
  padding: 8px;
}

.img-box img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.masonry-layout {
    margin-top: 60px;
}

/* Responsive */
@media (max-width: 992px) {
  .img-box { width: 33.33%; }
}

@media (max-width: 768px) {
  .img-box { width: 50%; }
}

@media (max-width: 480px) {
  .img-box { width: 100%; }
}
/*  */

/*================================================
About Page Section Start
=================================================*/

.about-page-section {
    padding-top: 160px;
    padding-bottom: 220px;
    background-color: #fff;
}

.section-title,
section .container h2 {
    font-family: 'EthnocentricRg-Regular';
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-size: 30px;
    color: #003554;
}

.section-title::after,
section .container h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 24px;
    margin-top: 15px;
    background: url("/website/images/line-icon.png") center / contain no-repeat;
}


section .container  h3 {
    margin-bottom: 10px;
    font-size: 24px;
}


section .container  ul {
    margin-top: 35px;
}


section .container  li {
    font-size: 17px;
    font-weight: 300;
    font-family: "Lexend", sans-serif;
    color: #000;
    list-style: none; /* remove default bullets */
    position: relative;
    padding-left: 25px;
}


section .container  li::before {
    content: "✔"; /* check mark */
    position: absolute;
    left: 0;
    color: #bca988; /* change color if needed */
    font-weight: bold;
}



.section-title + .line-icon,
section .container h2 + .line-icon {
    display: none;
}

.about-content p {
    font-size: 17px;
    font-weight: 300;
    font-family: "Lexend", sans-serif;
    color: #000;
}

.about-inner-content h3 {
    color: #181E2A;
    font-family: 'EthnocentricRg-Regular';
    letter-spacing: 1px;
    font-size: 24px;
    margin-bottom: 5px;
}

.about-inner-content p {
    font-size: 18px;
    font-weight: 300;
    font-family: "Lexend", sans-serif;
    color: #000;
}

.about-page-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.general-page-content {
    gap: 0;
}

.general-page-content > .about-content {
    display: block;
}

.general-page-content > .about-content > h2:not(:first-child) {
    margin-top: 80px;
}

.general-page-content > .about-content > h3 {
    margin-top: 35px;
}

.general-page-content > .about-content > ul,
.general-page-content > .about-content > ol {
    margin-bottom: 35px;
}

.general-page-content > .about-content > p:empty {
    min-height: 1em;
}

.about-page-content > .about-content:first-child > *:first-child {
    margin-top: 0;
}

.about-inner-content-box {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.step-boxs-container {
    max-width: 640px;
    margin: 60px auto 0;
}

.about-value-list .about-inner-content {
  padding-left: 35px;
  position: relative;
}
.about-value-list .about-inner-content::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #bca988;
    font-weight: bold;
    font-size: 25px;
}

/*================================================
About Page Section end
=================================================*/

.powered-by-codeintel {
    position: absolute;
    left: 30px;
    bottom: 30px;
}

.powered-by-codeintel img {
    max-width: 35px;
}

/*================================================
Gallery Page Section Start
=================================================*/
.gallery-page-section {
    padding-top: 160px;
    padding-bottom: 220px;
    background-color: #fff;
}

.gallery-page-content p {
    font-size: 17px;
    font-weight: 300;
    font-family: "Lexend", sans-serif;
    color: #000;
}

.gallery-items {
    margin-top: 60px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
}


.gallery-link {
    position: absolute;
    display: flex;
    align-items: center;
    bottom: 18px;
    justify-content: center;
    width: 100%;
    font-weight: 300;
}

.gallery-link a {
    background: linear-gradient(180deg, rgba(149, 120, 76, 1) 2%, rgba(188, 169, 136, 1) 99%);
    min-width: 200px;
    text-align: center;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #fff;
    font-family: 'EthnocentricRg-Regular';
    font-weight: 300;
    font-size: 18px;
}

.gallery-item:hover .gallery-link a {
    background: linear-gradient(180deg, rgba(0, 54, 85, 1) 2%, rgba(0, 97, 144, 1) 99%);
}

.gallery-action {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}


/*================================================
Gallery Page Section End
=================================================*/



/*================================================
Rentals Page Section Start
=================================================*/

.rentals-page-section {
    padding-top: 160px;
    padding-bottom: 220px;
    background-color: #fff;
}

.rentals-page-section .rentals-row {
    display: flex;
    gap: 100px;
    flex-direction: column;
}

.rentals-content p {
    font-size: 17px;
    font-weight: 300;
    font-family: "Lexend", sans-serif;
    color: #000;
}
.rentals-contents p {
    font-size: 17px;
    font-weight: 300;
    font-family: "Lexend", sans-serif;
    color: #000;
    margin-bottom: 20px;
}
.rentals-contents p:last-child {
    margin-bottom: 0;
}

.rentals-action {
    margin-top: 30px;
}

.rentals-img img {
    border-radius: 20px;
}

.owl-carousel .owl-item .qoute-icon img {
    max-width: 35px;
}

/*================================================
Rentals Page Section End
=================================================*/



.header-hamburger svg line {
    stroke: #fff;
}

.copyright-link {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.copyright-link a {
    color: #000;
}

.checkbox-row {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-top: 20px;
}

.checkbox-row h3 {
    font-size: 20px;
    font-weight: 600;
}

.checkbox-row  input {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.form-control {
        border-radius: 10px;
    background-color: #f2f2f2;
    border: 1px solid #5c5243;
    min-height: 50px;
    color: #000;
}
.form-control:focus {
   background-color: #f2f2f2;
    border: 1px solid #5c5243;
    color: #000;
}

.form-contact {
    margin-top: 40px;
}
.form-contact .btn-send {
  margin-bottom: 80px;
}

/* reponisve */
@media (max-width: 1490px) {
    .right-header a {
        min-width: auto;
    }

    .navbar-expand-lg .navbar-nav {
        gap: 12px;
    }
}

@media (max-width: 1390px) {
    .right-header a {
        min-width: auto;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 0 4px !important;
        font-size: 15px !important;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        gap: 5px;
    }

    .header-inner {
        padding: 15px;
    }

    .right-header a {
        font-size: 14px;
    }

    .testimonial-img {
        margin: 0 auto;
    }

    .testimonial-content {
        flex-wrap: wrap;
    }
}

@media (min-width: 1199px) {
    .hero-section {
        background-image: none !important;
    }
}

@media (max-width: 1199px) {

    .nav-link {
        color: #000;
    }

    .about-img img {
        max-width: 460px;
    }

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

    .gallery-items .row {
        --bs-gutter-y: 30px;
    }

    .testimonial-content img {
        max-width: 100%;
    }

    .right-header a {
        min-width: auto;
    }

    .image-box-container {
        margin-top: 30px;
    }


    .dzsparallaxer {
        height: auto !important;
    }

    .dzsparallaxer--target {
        height: auto !important;
    }

    .hero-background img {
        display: none;
    }

}


@media (max-width: 1224px) {

    .about-page-section {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .gallery-page-section {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .about-page-content {
        gap: 40px;
    }

    #fixed-header.fixed-header {
        padding: 0 10px;
    }

    .navbar-nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 18px;
        padding: 0;
    }

    .step-name h3 {
        font-size: 36px;
    }

    .step-number {
        font-size: 42px;
        min-width: auto;
    }

    .step-icon {
        min-width: 60px;
    }

    .step-icon img {
        max-width: 50px;
    }

    .step-name h3 {
        margin-bottom: 10px;

        line-height: normal;
    }

    .step-item {
        flex-wrap: wrap;
        gap: 10px;
    }

    .step-name a {
        font-size: 16px;
    }

    .hero-background img {
        height: 100%;
    }

}

@media (max-width: 1024px) {

    .qoute-icon {
        top: 10px;
        right: 10px;
    }

    .testimonial-content {
        flex-wrap: wrap;
    }

    .testimonial-card .text p {
        font-size: 16px;
        font-weight: 300;
    }

    .qoute-icon img {
        width: 20px !important;
    }

    .step-item {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .section-title {
        font-size: 24px;
    }

    .about-inner-content h3 {
        font-size: 20px;
    }


    .header-inner {
        margin-top: 30px;
        padding: 10px 20px;
    }


    .logo img {
        max-width: 100px;
    }

    .hero-section {
        min-height: auto;
        padding-bottom: 120px;
        padding-top: 180px;
    }

    .hero-content {
        padding: 0 0 0px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .journey-content h2 {
        font-size: 36px;
    }

    .step-content h2 {
        font-size: 28px;
    }

    .journey-content p {
        font-size: 18px;
    }

    .action-icon h3 {
        font-size: 28px;
    }

    .action-icon a {
        font-size: 18px;
    }

    .form-journey {
        padding: 20px;
    }

    .footer-section .row {
        --bs-gutter-y: 30px;
    }

    .footer-link li a {
        font-size: 16px;
    }

    .footer-address p {
        font-size: 16px;
    }

    .footer-address p a {
        font-size: 16px;
    }

    .form-journey .form-label {
        font-size: 16px;
    }

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        --bs-gutter-x: 50px;
    }

    .about-img {
        margin-top: 30px;
        max-width: 100%;
        width: 100%;
    }

    .about-img img {
        width: 100%;
        max-width: 100%;

    }

    .step-top-section {
        padding-top: 80px;
        padding-bottom: 120px;
    }

    .rentals-row .row {
        --bs-gutter-y: 30px;
    }

    .rentals-img img {
        width: 100%;
    }

}

@media (max-width: 990px) {}

@media (max-width: 1420px) {}


@media (max-width: 767px) {
    .footer-section .row {
        display: flex;
        flex-direction: column;
    }

    .footer-section .col-lg-3:nth-child(1) {
        order: 1;
    }

    .footer-section .col-lg-3:nth-child(3) {
        order: 2;
    }

    .footer-section .col-lg-6 {
        order: 3;
        /* move middle section to bottom */
    }

    .rentals-page-section {
            padding-top: 70px;
    padding-bottom: 120px;
    }

        .gallery-page-section {
         padding-top: 70px;
    padding-bottom: 120px;
    }
        .about-page-section {
         padding-top: 70px;
    padding-bottom: 120px;
    }
}

@media (max-width: 479px) {}

.contact-form{
    margin-bottom: 80px;
}
