/* Custom Font */
@font-face {
    font-family: "Gotham";
    src: url('../font/Gotham//Gotham-Light.otf') format("opentype");
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: "Gotham";
    src: url('../font/Gotham/Gotham-Thin.otf') format("opentype");
    font-style: normal;
    font-weight: 200;
}

@font-face {
    font-family: "Gotham";
    src: url('../font/Gotham/Gotham-Regular.otf') format("opentype");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Gotham";
    src: url('../font/Gotham/Gotham-Medium.otf') format("opentype");
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: "Gotham";
    src: url('../font/Gotham/Gotham-Bold.otf') format("opentype");
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "Gotham";
    src: url('../font/Gotham/Gotham-Black.otf') format("opentype");
    font-style: normal;
    font-weight: 900;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .site-header {
    background: #fff;
    border-bottom: 1px solid #3F3F3F;
}

.site-header {
    width: 100%;
    padding: 30px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10000;
}

.logo img {
    width: 70px;
    display: block;
}

.desktop-nav {
    flex: 1;
    display: flex;
    gap: 14px;
    position: relative;

    justify-content: center;
}

.nav-item {
    position: static;
    display: flex;
    align-items: center;
}

.nav-item>a {
    color: #000;
    font-family: "Playfair Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 17px;
    /* 121.429% */
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.nav-item>a>img {
    width: 16px;
}

/* desktop hover mega */
.mega-menu {
    position: absolute;
    left: 0;
    top: 88px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: 0.25s ease;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-item a img {
    transition: ease all 0.3s;
}

.nav-item:hover a img {
    transform: rotate(180deg);
}

.mega-box {
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    position: relative;
    min-height: var(--mega-height, auto);
}

.mega-left {
    width: 344px;
    padding: 30px 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.39);
    min-height: var(--mega-height, auto);
}

.mega-left-item {
    padding: 12px 30px 12px 16px;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    color: #000;
    font-family: "Playfair Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
    align-items: center;
}



.mega-left-item.active {
    background: #bd8b16;
    color: #fff;
}

.mega-left-item.active svg path {
    fill: #fff;
}

.mega-left-item.active .mega-right {
    opacity: 1;
    visibility: visible;
}

.mega-right {
    position: absolute;
    left: 344px;
    top: 0;
    width: calc(100% - 344px);
    padding: 30px;
    gap: 80px;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    color: #111;
}

.mega-left-item.active .mega-right,
.mega-left-item:hover .mega-right {
    opacity: 1;
    visibility: visible;
}

.mega-right ul,
.mega-box.simple ul {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
}

.mega-right li,
.mega-box.simple li {
    margin-bottom: 12px;
}

.mega-right li a {
    color: #000;
    font-family: "Playfair Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.mega-box.simple {
    padding: 28px;
    min-height: auto;
}

/* burger button */
.burger-btn {
    position: relative;
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    margin: auto 0;
}

.burger-btn img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .3s ease;
}

.burger-btn img:last-child {
    opacity: 0;
    transform: scale(.7) rotate(-90deg);
}

.burger-btn.active img:first-child {
    opacity: 0;
    transform: scale(.7) rotate(90deg);
}

.burger-btn.active img:last-child {
    opacity: 1;
    transform: none;
}

/* burger wrapper */
.burger-menu {
    position: fixed;
    left: 0;
    top: 150px;
    width: 100%;
    height: calc(100vh - 125px);
    background: #fff;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .3s ease;
    overflow-y: auto;
}

.burger-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* desktop separate burger */
.desktop-burger {
    display: flex;
    min-height: 100%;
}

.desktop-burger-left {
    width: 100%;
    max-width: 320px;
    border-right: 1px solid #9F9F9F;
    padding: 30px;
}

.desktop-burger-tab {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 0;
    margin-bottom: 20px;
    cursor: pointer;
    color: #000;
    font-family: "Playfair Display";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 140% */
    text-transform: uppercase;
}

.desktop-burger-tab.active {
    color: #bd8b16;
}

.desktop-burger-right {
    padding: 30px;
    width: 100%;
    position: relative;
}

.burger-icon {
    position: absolute;
    right: 70px;
    bottom: 120px;
}

.burger-icon img {
    width: 292px;
}

.desktop-burger-panel {
    display: none;
    gap: 60px;
    align-items: flex-start;
}

.desktop-burger-panel img {
    border-radius: 8px;
    width: 535px;
    height: auto;
}

.desktop-burger-panel.active {
    display: flex;
}

.desktop-burger-panel a {
    display: block;
    color: #000;
    font-family: "Playfair Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 125% */
    text-transform: uppercase;
    margin-bottom: 20px;
}

.desktop-burger-panel img {
    width: 430px;
    max-width: 100%;
    border-radius: 6px;
}

.mobile-menu {
    display: none;
}


.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .btn {
    position: relative;
    z-index: 8;
    margin-top: 100px;
}

.hero>video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
}

.hero::before {

    content: "";
    position: absolute;
    width: 100%;
    height: 200px;
    left: 0;
    top: -30px;
    filter: blur(20px);
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.95) 55%,
            rgba(255, 255, 255, 0.75) 85%,
            rgba(255, 255, 255, 0.55) 100%);
    z-index: 6;
}

.hero img {
    height: 100%;
    object-fit: cover;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 10px 20px;
    border-radius: 4px;
    background: #B68921;
    border: 0.5px solid #B68921;
    color: #FFF;
    font-family: "Playfair Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    transition: all .35s ease;
}

.btn-arrow {
    width: 0;
    opacity: 0;
    margin-left: 0;
    overflow: hidden;
    transition: all .35s ease;
}

/* Hover = second button style */
.btn:hover {
    gap: 12px;
    padding-right: 26px;
}

.btn:hover .btn-arrow {
    width: 14px;
    opacity: 1;
    margin-left: 4px;
}

.btn-outline {
    border-color: #000;
    color: #000;
    background: transparent;
}

.btn-outline-white {
    border-color: #fff;
    background: transparent;
}

.btn-outline:hover {
    border-color: #B68921;
    background: #B68921;
    color: #fff;
}

.btn-outline-white:hover {
    border-color: #fff;
    background: #fff;
    color: #B68921;
}



.btn-outline-white svg path {
    fill: #B68921;
}


.features {
    padding: 50px 60px;
    background: rgba(182, 137, 33, 0.12);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    position: relative;
    z-index: 5;
}

.feature-card {
    border-radius: 4px;
    background: #FFF;
    padding: 30px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 7px solid #B68921;
}

.feature-card div {
    width: 61px;
    height: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F6F1E4;
    border-radius: 50%;
}

.feature-card>div>p {
    color: #B68921;
    text-align: center;
    font-family: "Playfair Display";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 128.125% */
    text-transform: uppercase;
    margin-bottom: 8px;
}

.feature-card h3 {
    color: #B68921;
    font-family: "Playfair Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    text-transform: uppercase;
    text-align: center;
    margin: 16px 0 10px;
}

.feature-card p {
    color: rgba(0, 0, 0, 0.70);
    text-align: center;
    font-family: Gotham;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 17px;
    /* 121.429% */
    max-width: 248px;
}

.feature-card:first-of-type p {
    max-width: 220px;
}

.about {
    width: 100%;
    padding: 70px 0 70px 70px;
    display: flex;
    gap: 70px;
    justify-content: space-between;
}

.about>div {
    width: 100%;
}

.about-content {
    max-width: 587px;
}

.small-title {
    display: block;
    color: rgba(0, 0, 0, 0.70);
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 34px;
    /* 212.5% */
    margin-bottom: 2px;
    text-transform: uppercase;
}

.common-title {
    color: #B68921;
    font-family: "Playfair Display";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 47px;
    /* 146.875% */
    text-transform: uppercase;
}

.about p {
    color: #000;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
    margin-bottom: 22px;
}

.about p:last-of-type {
    margin-bottom: 30px;
}

.about-image-slider {
    max-width: 712px;
}

.about-image-slider img {
    width: 100%;
}

.about-image-slider .splide__pagination {
    position: static;
    padding: 0;
    width: calc(100% - 48px);
    margin-left: auto;
    background: #F6F1E4;
    padding: 24px 20px;
    gap: 12px;
}

.about-image-slider .splide__pagination li button {
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.08);
    margin: 0;
}

.about-image-slider .splide__pagination__page.is-active {
    border: 1px solid #B68921;
    background: transparent;
    transform: scale(1.5);
}

.signature {
    padding: 50px 0;
    text-align: center;
    background: #F6F1E4;
}

.signature .common-title {
    margin: 4px 0 32px;
}

.treatment-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-right: 5px solid #B68921;
}

.treatment-arrows .splide__arrow {
    width: auto;
    height: auto;
    opacity: 1;
    border: none;
    background: transparent;
}

.treatment-arrows .splide__arrow img {
    width: 44px;
    height: 44px;
}

.treatment-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: ease all 0.5s;
}

.treatment-card:hover img {
    transform: scale(1.1);
}

.treatment-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 180px;
    left: 0;
    bottom: -40px;
    background: rgba(0, 0, 0, 0.62);
    filter: blur(25px);
    z-index: 5;
}

.treatment-card div {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #fff;
    z-index: 9;
    text-align: left;
    padding: 30px;
    transition: ease all 0.3s;
    transform: translateY(50px);
}

.treatment-card:hover div {
    transform: translateY(0);
}

.treatment-card::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 180px;
    left: 0;
    bottom: -40px;
    background: rgba(182, 137, 33, 0.40);
    filter: blur(25px);
    opacity: 0;
    transform: translateY(100%);
    transition: ease all 0.3s;
    z-index: 6;
}

.treatment-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.treatment-card h3 {
    color: rgba(255, 255, 255, 0.62);
    font-family: Gotham;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.treatment-card p {
    color: #FFF;
    font-family: "Playfair Display";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin: 10px 0 22px;
}

.treatment-card a {
    color: #FFF;
    text-align: center;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
    display: flex;
    align-items: center;
    gap: 8px;
}

.treatment-card a img {
    width: auto;
    height: 14px;
}

.quote {
    padding: 70px 24px 24px;
    text-align: center;
}

.quote h2 {
    color: #000;
    text-align: center;
    font-family: "Playfair Display";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 47px;
    /* 130.556% */
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
}

.quote h2 span {
    color: #B68921;
    font-family: "Playfair Display";
    font-size: 36px;
    font-style: italic;
    font-weight: 400;
    line-height: 47px;
    text-transform: uppercase;
}

.quote p {
    color: #000;
    text-align: center;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
    max-width: 657px;
    margin: 16px auto 0;
    position: relative;
}

.quote p::after {
    content: "";
    display: block;
    width: 100%;
    max-width: 332px;
    height: 1px;
    background: rgba(0, 0, 0, 0.30);
    margin: 24px auto 0;
}

.specialists {
    padding: 0 70px 50px;
}

.specialists h2 {
    text-align: center;
    margin-bottom: 32px;
}

.doctor-card {
    position: relative;
    background: #fff;
    overflow: hidden;
    border-radius: 20px;
}

.doctor-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 3;
    background: #F2F3F0;
    border-radius: 20px;
    transition: ease all 0.5s;
}

.doctor-card:hover img {
    transform: scale(1.1);
}

.doctor-card h3 {
    color: #FFF;
    font-family: "Playfair Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.doctor-card p {
    color: rgba(255, 255, 255, 0.80);
    font-family: Gotham;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 7px 0 20px;
    max-width: 237px;
}

.doctor-card>div {
    position: absolute;
    z-index: 9;
    left: 0;
    bottom: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    transition: ease all 0.3s;
    transform: translateY(75px);
    z-index: 8;
}

.doctor-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 150px;
    left: 0;
    bottom: -40px;
    background: rgba(0, 0, 0, 0.52);
    filter: blur(30px);
    z-index: 6;
    transition: ease all 0.3s;
}

.doctor-card:hover::before {
    opacity: 0;
}

.doctor-card:hover div {
    transform: translateY(0);
}

.doctor-card .btn {
    opacity: 0;
    transform: ease all 0.3s;
}

.doctor-card:hover .btn {
    opacity: 1;
}

.doctor-card::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 230px;
    left: 0;
    bottom: -40px;
    background: linear-gradient(to top,
            rgba(182, 137, 33, 0.90) 0%,
            rgba(182, 137, 33, 0.75) 45%,
            rgba(182, 137, 33, 0.50) 75%,
            rgba(182, 137, 33, 0.28) 100%);

    filter: blur(25px);
    opacity: 0;
    transform: translateY(100%);
    transition: ease all 0.3s;
    z-index: 7;
}

.doctor-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.specialists .splide__arrow {
    border: none;
    background: transparent;
    width: auto;
    height: auto;
    opacity: 1;
}

.specialists .splide__arrow svg {
    width: 26px;
    height: auto;
}

.specialists .splide__arrow--next {
    right: -40px;
}

.specialists .splide__arrow--prev {
    left: -40px;
}

.social {
    width: 100%;
    padding: 56px 70px 70px;
    background: #F6F1E4;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social .section-head a {
    display: flex;
    gap: 8px;
    color: #525252;
    font-family: Gotham;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    /* 160% */
}

.social .section-head a img {
    width: 30px;
    height: 31px;
    aspect-ratio: 30/31;
}

.social-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 30px;
}

.social-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.reviews {
    width: 100%;
    padding: 50px 70px;
    background: #F6F1E4;
}

.reviews-arrows {
    display: none;
}

.reviews .common-title {
    margin-bottom: 32px;
}

.review-card {
    background: #fffaf0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.user-info {
    display: flex;
    gap: 16px;
    align-items: center;
}

.user-info img:first-of-type {
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
}

.user-info div {
    flex: 1;
}

.user-info h6 {
    color: #1F1F1F;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
    /* 112.5% */
    margin-bottom: 8px;
}

.user-info span {
    color: rgba(0, 0, 0, 0.50);
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
    /* 125% */
}

.user-info img:last-of-type {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
}

.rating {
    width: 100%;
    display: flex;
    gap: 4px;
}

.rating img {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
}

.review-card>p {
    color: #1F1F1F;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
    max-width: 322px;
}

.blog {
    width: 100%;
    padding: 50px 70px 70px;
}

.section-head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-head a {
    color: #2F2F2F;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    text-transform: uppercase;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-grid span {
    width: fit-content;
    display: block;
    color: rgba(255, 255, 255, 0.70);
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
    margin: -30px 0 0 20px;
    text-transform: capitalize;
}

.blog a img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    transition: ease all 0.3s;
}

.blog a div {
    position: relative;
    z-index: 9;
    overflow: hidden;
    border-radius: 4px;
}

.blog a div::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100px;
    left: 0;
    bottom: -20px;
    background: rgba(182, 137, 33, 0.65);
    filter: blur(25px);
    opacity: 0;
    transform: translateY(100%);
    z-index: 3;
    transition: ease all 0.3s;
}

.blog a:hover div::after {
    opacity: 1;
    transform: translateY(0);
}

.blog a:hover img{
    transform: scale(1.1);
}

.blog a h3 {
    color: #2F2F2F;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
    text-transform: uppercase;
    max-width: 316px;
    margin-top: 20px;
}

.appointment {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.appointment-img img {
    height: 100%;
    object-fit: cover;
}

.appointment-form {
    background: #b89135;
    padding: 60px 50px;
    color: #fff;
}

.appointment-form h2 {
    color: #FFF;
    font-family: "Playfair Display";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    /* 118.75% */
    text-transform: uppercase;
    margin-bottom: 24px;
}

.appointment-form input,
.appointment-form textarea {
    width: 100%;
    background: transparent;
    border: 0.5px solid rgba(255, 255, 255, 1);
    padding: 17px 24px 12px 24px;
    outline: none;
    color: #FFF;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 16px;
    border-radius: 4px;
}

.appointment-form input::placeholder,
.appointment-form textarea::placeholder {
    color: #FFF;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.appointment-form textarea {
    height: 140px;
    resize: none;
}

.appointment-form button {
    margin-top: 25px;
    cursor: pointer;
}


.map {
    width: 100%;
    padding: 70px 70px 0;
    margin-bottom: -50px;
}

.map iframe {
    width: 100%;
    border-radius: 20px;
}

.footer {
    padding: 130px 70px 60px;
    background: #F6F1E4;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid #B68921;
}


.footer-content>div:first-of-type div {
    column-count: 2;
}

.footer-content h4 {
    color: #B68921;
    font-family: "Playfair Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-content div h4:nth-of-type(2) {
    margin-top: 24px;
}

.footer-content a {
    color: #000;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    width: 100%;
    display: inline-flex;
    margin-bottom: 12px;
}

.footer-content p {
    color: #000;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    /* 125% */
}

.footer-content p strong {
    font-weight: 500;
}

.copyright-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
}

.footer-logo img {
    width: 86px;
    height: 112px;
    object-fit: cover;
}

.copyright-wrapper>div:last-of-type {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
}

.social-icons a img {
    width: 44px;
    height: 44px;
}

.copyright {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 21px;
}

.copyright p:first-child {
    border-right: 2px solid #B68921;
    padding-right: 21px;
}

.copyright p,
.copyright a {
    color: #000;
    text-align: right;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
}