/*
https://july.finestwp.com/newwp/metallic/home-page-03/
*/
:root {
    --color-primary: #001f9e;
    --color-title: #18191d;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-optical-sizing: auto;
}

.header-primary {
    padding: 15px 0;
    background: #F3F5F9;
}

.header-primary .container {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 60px;
    width: auto;
}

.header-infos {
    display: none;
    gap: 30px;
    margin-left: auto;
}

.header-info {
    display: flex;
    align-items: center;
}

.header-info-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: var(--color-primary);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.header-info-body {
    flex-grow: 1;
    margin-left: 14px;
}

.header-info-label {
    font-size: 15px;
    color: #6f7175;
}

.header-info-value {
    font-weight: 600;
    color: #18191d;
    font-family: "Red Rose", serif;
    text-decoration: none;
}

a.header-info-value:hover {
    text-decoration: underline;
}

.header-social {
    display: none;
    align-items: center;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 25px;
    border-left: 1px solid #DEE1E7;
    padding-left: 30px;
    margin-left: 30px;
}

.header-social>li>a {
    text-decoration: none;
    color: #a8a4b7;
    transition: all .2s ease-in-out;
}

.header-social>li>a:hover {
    color: var(--color-primary);
}

.header-collapse {
    display: none;
    position: relative;
    z-index: 111;
}

.header-collapse.open {
    display: block;
}

.header-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-direction: column;
}

.header-menu>li>a {
    padding: 8px 0;
    display: block;
    text-decoration: none;
    color: #18191d;
    font-weight: 600;
    font-size: 16px;
    font-family: "Red Rose", serif;
    transition: all .2s;
}

.header-menu>li:hover>a {
    color: var(--color-primary);
}

.header-menu>li>a .bi {
    margin-left: 4px;
    font-size: .74rem;
}

.header-has-submenu,
.dropdown {
    position: relative;
}

.header-submenu,
.dropdown-menu {
    background: #FFF;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-submenu>li+li,
.dropdown-menu>li+li {
    border-top: 1px solid #e4e9ec;
}

.header-submenu>li>a,
.dropdown-menu>li>a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #18191d;
    transition: all .2s;
}

.header-submenu>li>a:hover,
.dropdown-menu>li>a:hover {
    background: var(--color-primary);
    color: #FFF;
}

.header-has-submenu:hover .header-submenu,
.dropdown:hover .dropdown-menu {
    display: block;
}

.header-toggle {
    margin-left: auto;
    padding: 9px 10px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.header-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background-color: var(--color-primary);
}

.header-toggle span+span {
    margin-top: 4px;
}

@media (min-width: 992px) {
    .header-menu {
        flex-direction: row;
        gap: 16px;
    }

    .header-menu>li>a {
        padding: 18px 0;
    }

    .header-submenu {
        width: 300px;
    }

    .header-submenu,
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
    }

    .header-submenu>li>a,
    .dropdown-menu>li>a {
        padding: 18px 30px;
    }

    .header-social,
    .header-infos {
        display: flex;
    }

    .header-toggle {
        display: none;
    }

    .header-logo img {
        height: 90px;
    }

    .header-collapse {
        display: block;
    }
}

@media (min-width: 992px) and (max-width: 1199.99px) {
    .header-menu-homepage {
        display: none;
    }
}

@media (min-width: 1200px) {
    .header-menu {
        gap: 30px;
    }
}

@media (min-width: 1400px) {
    .header-menu>li>a {
        font-size: 18px;
    }
}

.btn {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 0.75rem 0.375rem;
    font-family: "Red Rose", serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    background-color: transparent;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.bi,
.iconbox-icon svg {
    display: inline-block;
    vertical-align: -.125em;
    fill: currentcolor;
    width: 1em;
    height: 1em;
}

section {
    padding: 90px 0;
}

.slider {
    padding: 0;
}

.swiper {
    width: 100%;
    height: 400px;
    --swiper-theme-color: #FFF
}

.swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 992px) {
    .swiper {
        height: 650px;
    }
}

@media (min-width: 1200px) {
    .slider {
        padding: 0 30px;
    }
}

@media (min-width: 1400px) {
    .slider {
        padding: 0 70px;
    }
}

footer {
    background-color: #18191d;
    color: #a8acb3;
}

footer a {
    color: inherit;
    text-decoration: none;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li+li {
    margin-top: 8px;
}

.footer-primary {
    padding: 90px 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-title {
    font-family: "Red Rose", serif;
    color: #FFF;
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 21px;
}


.hero {
    background: #F3F5F9;

}

.hero-title {
    font-family: "Red Rose", serif;
    font-weight: 600;
    font-size: 35px;
}

.blocks {
    line-height: 1.8;
    font-size: 17px;
}

.blocks h1,
.blocks h2,
.blocks h3,
.blocks h4,
.blocks h5,
.blocks h6 {
    font-family: "Red Rose", serif;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
}

.blocks *+h1,
.blocks *+h2,
.blocks *+h3,
.blocks *+h4,
.blocks *+h5,
.blocks *+h6 {
    margin-top: 50px;
}

.blocks blockquote {
    border-left: 2px solid var(--color-primary);
    background: #F3F5F9;
    padding: 20px 30px;
    font-family: "Red Rose", serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.6;
}

.blocks figure>img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.block-gallery {
    margin: 30px 0;
}

.block-gallery-image {
    background-color: #DDD;
    display: block;
}

.block-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.block-gallery[data-crop] .block-gallery-image img {
    object-fit: cover;
}

.ratio {
    position: relative;
    width: 100%
}

.ratio::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: ""
}

.ratio>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.ratio[data-ratio="auto"],
.ratio[data-ratio="1/1"] {
    --bs-aspect-ratio: 100%
}

.ratio[data-ratio="16/9"] {
    --bs-aspect-ratio: 56.25%
}

.ratio[data-ratio="10/8"] {
    --bs-aspect-ratio: 80%
}

.ratio[data-ratio="21/9"] {
    --bs-aspect-ratio: 42.8571428571%
}

.ratio[data-ratio="7/5"] {
    --bs-aspect-ratio: 71.4285714286%
}

.ratio[data-ratio="4/3"] {
    --bs-aspect-ratio: 75%
}

.ratio[data-ratio="5/3"] {
    --bs-aspect-ratio: 60%
}

.ratio[data-ratio="3/2"] {
    --bs-aspect-ratio: 66.66666666667%
}

.ratio[data-ratio="3/1"] {
    --bs-aspect-ratio: 33.33333333333%
}

.heading-title {
    font-family: "Red Rose", serif;
    font-weight: 600;
    font-size: 35px;
}

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

.heading {
    margin-bottom: 20px;
}

.heading-space {
    margin-bottom: 60px;
}

.team {
    text-align: center;
}

.team-image {
    margin-bottom: 16px;
}

.team-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.team-title,
.iconbox-title {
    font-family: "Red Rose", serif;
    font-weight: 600;
    font-size: 24px;
}

.team-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
}

.team-text ul li+li {
    margin-top: 6px;
}

.team-text .hidden {
    display: none;
}

.team-text button {
    border: 0;
    background: transparent;
    color: var(--color-primary);
    padding: 0;
    font-weight: 600;
    margin-top: 16px;
}

.team-text button:hover {
    text-decoration: underline;
}

.iconbox {
    text-align: center;
}

.iconbox-icon {
    color: var(--color-primary);
    font-size: 45px;
    line-height: 1;
    margin-bottom: 16px;
}

.placeholder-image {
    background: #DDD;
}

.listicon {
    list-style: none;
    padding: 0;
    margin: 0;
}

.listicon li {
    position: relative;
    display: flex;
    align-items: center;
}

.listicon li+li {
    margin-top: 10px;
}

.listicon-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 16px;
    background: #FFF;
    color: var(--color-primary);
    flex-shrink: 0;
}

.bg-light {
    background: #F3F5F9;
}

.widget {
    border: 1px solid #DDD;
    padding: 20px;
    text-align: center;
}

.widget+.widget {
    margin-top: 40px;
}

.widget-title {
    font-family: "Red Rose", serif;
    font-weight: 600;
    font-size: 20px;
}

.widget-contact {
    list-style: none;
    padding: 0;
}

.widget-contact a {
    color: inherit;
    text-decoration: none;
}

.widget-contact a:hover {
    text-decoration: underline;
}

.widget-social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 16px;
    justify-content: center;
    font-size: 25px;
}

.widget-social a {
    color: #a8a4b7;
    transition: all .2s ease-in-out;
}

.widget-social a:hover {
    color: var(--color-primary);
}

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

.heading-has-image{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.heading-image{
    margin-left: 20px;
}
.heading-image img{
    max-height: 109px;
    width: auto;
}