:root {
    /* Colors */
    --primary: #f3deb5;
    --secondary: #766d63;
    --gold: linear-gradient(180deg,#b5944f 0%, #f2deb4 50%, #b5944f 100%);
    --white: #ffffff;
    --black: #000000;
    --gray: #C9C9C9;
    --dark-gray: #383838;
    --mute: #766D63;
    --plyr-color-main: #000;
    
    /* Font */
    --body-font: "Geologica", sans-serif;

    /* Font Weights */
    --thin: 100;
    --light: 300;

    /* Font Sizes */
    --title-xxl: 48px;
    --title-xl: 40px;
    --title-l: 36px;
    --title-h3: 32px;
    --title-m: 18px;
    --body-font-size:16px;
    --read-more-font-size: 22px;
    --modal-menu-links: 24px;
    --extra-small: 14px;

    /* Widths and paddings */
    --content-x-padding: 335px;
    --content-x-padding-sm: 200px;
    --nav-padding: 0 86px;
    --wscale: clamp(1, calc(100vw / 1920), 4);
}
@media (max-width: 1600px) {
    :root {
        --title-xxl: 40px;
        --title-m: 16px;
        --content-x-padding: 235px;
    }
}
@media (max-width: 1399px) {
    :root {
        --content-x-padding: 135px;
        --content-x-padding-sm: 120px;
    }
}
@media (max-width: 1199px) {
    :root {
        --title-xxl: 36px;
        --title-l: 32px;
        --title-h3: 30px;
        --nav-padding: 5px 35px;
    }
}
@media (max-width: 991px) {
    :root {
        --content-x-padding: 30px;
        --content-x-padding-sm: 30px;
    }
}
@media (max-width: 768px) {
    :root {
        --title-xl: 26px;
    }
}
@media (max-width: 576px) {
    :root {
        --title-xxl: 28px;
        --title-l: 22px;
        --title-h3: 20px;
        --title-m: 18px;
        --modal-menu-links: 16px;
        --read-more-font-size: 16px;
        --nav-padding: 5px 15px;

    }
}
/* Typography 
================================*/
body {
    font-family: var(--body-font);
    font-size: var(--body-font-size);
    font-weight: var(--light);
    line-height: 1.6;
    color: var(--black);
}
/*
.hero-title {
    display: flex;
    flex-direction: column;
    max-width: 456px;
    gap: 36px;
    margin-bottom: 36px;
    font-size: var(--title-xxl);
    line-height: 40px;
    font-weight: var(--thin);
    background: var(--gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (max-width: 1200px) {
    .hero-title {
        gap: 26px;
    }
}*/
button {
    background: none;
    border: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
}
a {
    all: unset;
    cursor: pointer;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


h1, .h1, 
h2, .h2,
h3, .h3{
    font-size: var(--title-l);
    line-height: 1.2;
    font-weight: var(--thin);
    margin-bottom: 30px;
    color: var(--black);
}
h3, .h3 {
   font-size: var(--title-h3);
   font-weight: var(--light);
}
/*
h3 {
    font-size: var(--title-l) !important;
    font-weight: var(--thin);
    line-height: 40px;
    margin-bottom: 20px;
}
h4 {
    font-size: var(--title-l);
    font-weight: var(--light);
    line-height: 40px;
    margin-bottom: 0;
}
h5 {
    font-size: var(--title-m) !important;
    font-weight: var(--light);
    line-height: 26px !important;
    margin-bottom: 0;
}
h6 {
    font-size: var(--body-font);
    font-weight: var(--thin);
    line-height: 40px;
    margin-bottom: 0;
}*/
.btn-primary {
    font-size: var(--read-more-font-size);
    font-weight: var(--thin);
    line-height: 40px;
}


/* Spacing 
======================*/
.px-content {
    padding-left: var(--content-x-padding);
    padding-right: var(--content-x-padding);
}
.px-content-sm {
    padding-left: var(--content-x-padding-sm);
    padding-right: var(--content-x-padding-sm);
}

.p-left-content {
    padding-left: var(--content-x-padding);
}
.p-right-content {
    padding-right: var(--content-x-padding);
}

/*
.mt-offset{
    margin-top:120px;
}*/
.mt-offset{
    margin-top:80px;
}
.mb-offset{
    margin-bottom: 80px;
}
.pt-offset {
    padding-top: 80px;
}
.pb-offset {
    padding-bottom: 80px;
}
.py-offset {
    padding-top: 120px;
    padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
    .mt-offset{
        margin-top: 60px;
    }
    .mb-offset{
        margin-bottom: 60px;
    }
    .pt-offset {
        padding-top: 60px;
    }
    .pb-offset {
        padding-bottom: 60px;
    }
    .py-offset{
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

/* General */

.whyChooseUsSection .content ul li,
ul.checkmark li{
    padding-left: 30px;
    position: relative;
    margin-bottom: 22px;
}
ul.checkmark li::before,
.whyChooseUsSection .content ul li::before{
    content: url(../images/checkmark.svg);
    position: absolute;
    left: 0;
    top: 0;
}
.gold-hr {
    width: 100%;
    height: 1px;
    background-image: var(--gold);
}
.gray-hr {
    width: 100%;
    height: 1px;
    background-color: var(--dark-gray);
}
.background-image.withGradient::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #000000 0%, #000000 40%, rgba(255, 255, 255, 0) 61%);
}
.background-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
    z-index: -2;
}
  /* 
img {
    width: 100%;
 height: auto;
}*/
.black {
    color: var(--black);
}
.primary {
    color: var(--primary);
}
.mute {
    color: var(--mute);
}
.white {
    color: var(--white);
}
.black-background {
    background-color: var(--black);
}
.thin {
    font-weight: var(--thin);
}



@media (min-width: 1400px) {
    .burgerContainer {
        display:none!important;
    }
}
/* Changes for X animation */
.burgerMenuButton {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background-color: transparent;
    outline: none;
    border: none;
    position: relative;
}
.burgerMenuButton span {
    width: 35px;
    height: 2px;
    background-color: var(--primary);
}
.burgerMenuButton :nth-child(1),
.burgerMenuButton :nth-child(3) {
    transition: transform .3s ease;
}
.burgerMenuButton :nth-child(2) {
    opacity: 1;
    transition: opacity .3s ease;
}
.burgerMenuButton[aria-expanded="true"] :nth-child(2) {
    opacity: 0;
}
.burgerMenuButton[aria-expanded="true"] :nth-child(1) {
    position: absolute;
    transform: rotate(45deg);
}
.burgerMenuButton[aria-expanded="true"] :nth-child(3) {
    position: absolute;
    transform: rotate(-45deg);
}
/*BUTTONS*/
.button {
    text-align: center;
    width: max-content;
    line-height: normal !important;
    padding: 17px 43px;
    border: 1px solid var(--black);
    color: var(--black);
    border-radius: 30px;
    background: transparent;
    font-size: var(--title-m);
    transition: background .3s ease, color .3s ease;
}
@media (max-width: 1600px) {
    .button {
        padding: 12px 43px;
    }
}
.button:hover {
    color: var(--white);
    background: var(--black);
}
.button.gold-btn,
.button.gold-btn-small {
    border: 1px solid var(--primary);
    color: var(--white);
}
.button.gold-btn:hover,
.button.gold-btn-small:hover {
    background: var(--gold);
    color: var(--black);
}
.button.gold-btn-small,
.button.btn-small{
    padding: 10px 33px;
    font-size: var(--body-font-size);
    width: max-content;
}
/*Button circle-arrow gold*/
.btn-primary-gold {
    position: relative;
    padding-left: 79.5px;
    font-size: var(--read-more-font-size);
    font-weight: var(--thin);
    color: var(--primary);
}
/*Button circle-arrow black*/
.btn-primary-black {
    position: relative;
    padding-left: 65px;
    font-size: var(--read-more-font-size);
    font-weight: var(--thin);
    color: var(--black);
    width: fit-content;
    display: flex;
}
.btn-primary-black::before {
    content: "";
    position: absolute;
    width: 34.89px;
    height: 34.89px;
    left: 0;
    /*top: 50%;
    transform: translateY(-50%);*/
    top:0;
    border: 1px solid var(--black);
    border-radius: 100%;
}
.btn-primary-black::after {
    content: url(../images/arrow-black.svg);
    position: absolute;
    left: 17.445px;
    top:0;
    transition: left .3s ease;
}
.btn-primary-black:hover::after {
    left: 27.445px;
}

.btn-primary-white {
    position: relative;
    padding-left: 65px;
    font-size: var(--title-m);
    font-weight: var(--thin);
    line-height: 40px;
    color: var(--white);
    width: fit-content;
}
.btn-primary-gold::before {
    content: "";
    position: absolute;
    width: 47px;
    height: 47px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 100%;
    background: var(--gold);
    -webkit-mask: radial-gradient(closest-side,
                   transparent calc(100% - 2px), #000 calc(100% - 1px));
            mask: radial-gradient(closest-side,
                   transparent calc(100% - 2px), #000 calc(100% - 1px));
}

.btn-primary-white::before {
    content: "";
    position: absolute;
    width: 34.89px;
    height: 34.89px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid var(--white);
    border-radius: 100%;
}
.btn-primary-gold::after {
    content: url(../images/arrow-gold.svg);
    position: absolute;
    top: 50%;
    left: 23.5px;
    transform: translateY(-50%);
    transition: left .3s ease;
}

.btn-primary-white::after {
    content: url(../images/arrow-white.svg);
    position: absolute;
    top: 50%;
    left: 17.445px;
    transform: translateY(-50%);
    transition: left .3s ease;
}
.btn-primary-gold:hover::after {
    left: 33.5px;
}
.btn-primary-white:hover::after {
    left: 27.445px;
}
.btn-black{
    padding: 10px 33px;
    font-size: var(--body-font-size);
   /* width: max-content;*/
   display:inline-block;
    border: 1px solid var(--black);
    background-color: var(--black);
    border-radius: 30px;
    color: var(--white);
    transition: color .3s ease, background-color .3s ease;
}
.btn-black:hover{
    color: var(--black); 
    background-color: transparent; 
}
.button-filled-black a {
    display: inline-block;
    position: relative;
    overflow: hidden;        
    padding: 17px 43px;
    border: 1px solid var(--black);
    background-color: var(--black);
    border-radius: 30px;
    color: var(--white);
    transition: color .3s ease, background-color .3s ease;
}
.button-filled-white a {
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding: 17px 43px;
    border: 1px solid var(--black);
    background-color: transparent;
    border-radius: 30px;
    color: var(--black);
    transition: background-color .3s ease, color .3s ease;
}
.button-filled-white a:hover {
    color: var(--white);
    background-color: var(--black);
}
.button-filled-black a:hover {
    color: var(--black); 
    background-color: transparent;
}
.goBack {
    padding-left: 40px;
    position: relative;
    font-size: var(--modal-menu-links);
    font-weight: var(--thin) !important;
}
.goBack::before {
    content: url(../images/arrow-black.svg);
    position: absolute;
    top: 50%;
    left: 0;
    transform: rotateY(180deg) translateY(-50%);
}
@media (max-width: 1600px) {
    .button-gold a {
        padding: 12px 43px;
    }
}
@media (max-width: 576px) {
    .btn-primary-gold::before {
        width: 36px;
        height: 36px;
    }
    .btn-primary-gold::after {
        left: 13.5px;
    }
    .btn-primary-gold:hover::after {
        left: 23.5px;
    }
}
.link-pdf {
    display:flex;
    font-weight: 400;
}
.link-pdf:before {
    width: 34px;
    content: "";
    background: url(/images/pdf-icon-black.svg) no-repeat left 1px;
    padding-left: 25px;
    background-size: 24px;
}
/* Navigation 
===================================*/
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}
header .logo {
    margin-top:10px;
    margin-bottom:10px;
}
header .logo img{
    height: auto;
    width:100%;
}
@media (max-width: 1399px) {
    .header-btn {
        display:none!important;
    }
}
.header-btn .button {
    background: rgba(0,0,0,0.005);
}

/* LANGUAGES  
-----------------------*/
.languagesDrop {
    margin-right: 20px;
    position:relative;
}
.languagesDrop .dropdown-toggle {
    color: var(--white);
    font-weight: 400;
    font-size: 14px;
    transition: var(--transition3s);
    background: rgba(0,0,0,0.005);
}
.languagesDrop .dropdown-menu {
    min-width: 40px;
    border-radius: 0;
    padding: 5px 0px;
    font-size: 14px;
    left: -10px !important;
    top:0px!important;
    background-color: var(--black);
    border: 0;
}
.languagesDrop .dropdown-menu a{
    color: var(--white);
    text-align: left;
}
.languagesDrop .dropdown-menu a:hover{
    background: none;
    color: var(--gray);
}






#mainNav {
    display: flex;
    padding: var(--nav-padding);
    transition: background-color .3s ease;
}
#mainNav.is-scrolled {
    background-color: var(--black);
}
.navigationLinks {
    display: flex;
    gap: 30px;
    color: var(--white);
}
/* added */
.navbar-collapse {
    align-items: end !important;
}
#mainNav .navigationLinks li {
    padding-bottom: calc(calc(var(--header-h) / 2) - var(--body-font-size));
}
#mainNav .navigationLinks a {
    width: max-content;
    border-bottom: 1px solid transparent;
    transition: border-bottom .3s ease;
    background: rgba(0,0,0,0.005);
}
#mainNav .navigationLinks a.menu-open {
    border-bottom: 1px solid var(--white);
}

/* Ξ ΟΞΏΟΞΈΞ­ΟΟ Ξ±ΟΟΟ Ξ³ΞΉΞ± ΟΞΏ animation ΟΞΏΟ */
.chevron-container {
    width: 50px !important;
    position: relative;
}
.chevron-container img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    transition: right .3s ease;

    /* ΞΞ―Ξ½Ο width ΟΞ΅ Ξ±ΟΟΞ� ΟΞ·Ξ½ Ξ΅ΞΉΞΊΟΞ½Ξ± Ξ³ΞΉΞ±ΟΞΉ Ξ΅Ξ―Ξ½Ξ±ΞΉ icon */
    width: 16px;
}

.chevron-container:hover img {
    right: 10px;
}
.panelMenu {
    background-image: url("../images/modal-background.jpg");
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-h));
    z-index: 9999;
    padding: 120px;
    justify-content: center;
}
@media (min-width: 1400px) {
    .panelMenu {
        /*height:unset;
        min-height: calc(95vh - var(--header-h));*/
        height: calc(95vh - var(--header-h));
    }
}

.panelMenu.is-open { display: flex; }
.panelMenu .menus .child-menu { overflow: hidden; }
.panelMenu .menus .child-menu > [data-submenu-target] {
    opacity: 0;
    max-height: 0;            
    transform: translateX(-10px);
    overflow: hidden;           
    pointer-events: none;
    visibility: hidden;
    transition: opacity .3s ease, max-height .3s ease, transform .3s ease, visibility 0s .3s;
}
.panelMenu .menus .child-menu > [data-submenu-target].is-active {
    opacity: 1;
    max-height: max-content; 
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
    transition: opacity .3s ease, max-height .3s ease, transform .3s ease, visibility 0s 0s;
}
.panelMenu * {
    font-size: var(--modal-menu-links);
    font-weight: var(--thin);
   /* line-height: 50px;*/
}
/* Changes */
.panelMenu .menus {
    display: flex;
    flex-direction: column;
    padding: 20px 0px 20px 120px;
    width: 65%; 
}
.panelMenu .menuWrapper {
    display: flex;
        height: 100%;
}
.panelMenu .menus .parent-menu {
    width: max-content;
    padding-right: 84px;
    position: relative;
    overflow-y: auto;
}
.panelMenu .menus .parent-menu ul {
    margin-bottom: 30px;
}
.panelMenu .menus li {
    padding-bottom:10px;
}
.panelMenu .menus li a {
    border-bottom: 1px solid transparent;
    transition: border-bottom .3s ease;
}
.panelMenu .menus li a:hover, .panelMenu .menus li a.active {
    border-bottom: 1px solid var(--black);
}
/* Class .hasSubmenu added */
.panelMenu .menus .parent-menu li.hasSubmenu a::after {
    content: url(../images/arrow-black-small.svg);
    position: absolute;
    right: 10%;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity .3s ease, transform .3s ease;
}
.panelMenu .menus .parent-menu li a:hover::after, .panelMenu .menus .parent-menu li a.active::after {
    opacity: 1;
    transform: translateX(0);
}
.panelMenu .menus .child-menu {
    overflow-y: auto;
}
.panelMenu .menus .child-menu ul {
    border-left: 1px solid var(--black);
    padding:0 50px;
}
/* Ξ€ΞΏ Ξ±ΟΞ±Ξ―ΟΞ΅ΟΞ± Ξ³ΞΉΞ±ΟΞ― ΟΞ±Ξ»ΞΏΟΟΞ΅ ΟΞΏ layout */
/* .panelMenu .menus .child-menu ul {
    margin-bottom: 30px;
} */
.panelMenu .menus .parent-menu::-webkit-scrollbar,
.panelMenu .menus .child-menu::-webkit-scrollbar {
    width: 2px;
}
.panelMenu .menus .parent-menu::-webkit-scrollbar-thumb,
.panelMenu .menus .child-menu::-webkit-scrollbar-thumb {
    background-color: var(--black);
}
.panelMenu .menus .parent-menu::-webkit-scrollbar-track,
.panelMenu .menus .child-menu::-webkit-scrollbar-track {
    background-color: rgba(0,0,0,0.08); 
  }
.panelMenu .image-container {
    position: relative;
    width: 35%;
}
.panelMenu .image-container img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 1399px) {
    #menuLinks {
        position: fixed;
        top: var(--header-h);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-h));
        z-index: 9998;
        background-color: var(--black);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .3s ease, visibility 0s .3s;
    }
    #menuLinks.collapse { 
        display: block !important;
    }
    #menuLinks.collapse.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: opacity .3s ease, visibility 0s 0s;
    }
    #menuLinks.collapsing {
        height: calc(100vh - var(--header-h)) !important;
        transition: none !important;       
        opacity: 0;                         
    }
    .navigationLinks {
        max-width: 500px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        padding: 50px 0;
        padding-left: 20px;
        gap: 0;
    }
    .navigationLinks * {
        font-size: var(--modal-menu-links);
        font-weight: var(--thin);
        line-height: 50px;
    }
    .navigationLinks li {
        /* position: relative; */
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    /* .navigationLinks li::after {
        content: url(../images/chevron-right-white.svg);
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        transition: right .3s ease;
    } */
    .navigationLinks li:hover::after {
        right: 10px;
    }
    /* added */
    #mainNav .navigationLinks li {
        padding-bottom: 10px;
    }
    .navigationLinks a {
        display: block;
        width: 100%;
        font-size: var(--modal-menu-links);
        font-weight: var(--thin);
        line-height: 50px;
        border: none;
    }
    .panelMenu {
        padding: 50px 0;
        padding-left: 20px;
    }
    .panelMenu .menus {
        width: 100%;
        display: block;
        padding: 0;
        max-width: 500px;
        margin: 0 auto;
    }
    .panelMenu .image-container {
        display: none;
    }
    .panelMenu .menus .parent-menu {
        border: none;
        padding: 0;
        width: 100%;
    }
    .panelMenu .menus .parent-menu ul {
        margin-top: 30px;
    }
    .panelMenu .menus .parent-menu ul li {
        padding-bottom: 10px;
        width: 100%;
        position: relative;
    }
    .panelMenu .menus .child-menu {
        display: none;
    }
    .panelMenu .menus li {
        display: flex;
        justify-content: space-between;
    }
    .panelMenu .menus li a {
        /* width: 100%; */
        border: none;
    }
    .panelMenu .menus li a:hover, .panelMenu .menus li a.active {
        border: none;
    }
    /* .panelMenu .menus .parent-menu li a::after {
        content: url(../images/chevron-right-black.svg);
        position: absolute;
        right: 0;
        opacity: 1;
        transform: translateX(-20px);
        transition: transform .3s ease;
    } */
    /* .panelMenu .menus .parent-menu li a:hover::after, .panelMenu .menus .parent-menu li a.active::after {
        transform: translateX(-10px);
    } */
    .panelMenu .menus .parent-menu li a::after {
        content: "";
    }
    .panelMenu .menus .child-menu {
        padding: 0;
    }
    .panelMenu .menus .child-menu li {
        width: 100%;
    }
    .panelMenu .menus .child-menu li a {
        width: 100%;
        display: block;
    }
    /* .panelMenu .menus .child-menu li a::after {
        content: url(../images/chevron-right-black.svg);
        position: absolute;
        right: 0;
        opacity: 1;
        transform: translateX(-20px);
        transition: transform .3s ease;
    } */
    .panelMenu .menus .child-menu > [data-submenu-target].is-active {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .panelMenu .menus .child-menu li a:hover::after {
        transform: translateX(-10px);
    }
}
@media (max-width: 576px) {
    .navigationLinks a {
        line-height: 40px;
        font-weight: var(--light);
    }
    .panelMenu * {
        font-weight: var(--light);
        line-height: 40px;
    }
}

.panelMenu .button {
    display:block;
    margin-top:20px;
}

/* Hero Section 
===============================*/
.heroSection {
    position: relative;
    height: 100vh;
}

/*Created by js*/
.heroHeadingMobile {
    text-align: center;
    margin-top: 50px;
}
.heroHeadingMobile .hero-title {
    background: var(--black);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    justify-self: center;
    margin-bottom: 10px;
}
.heroHeadingMobile .breadcrump {
    justify-self: center;
    justify-content: center;
    color: var(--dark-gray);
    font-size: var(--extra-small);
    margin-bottom: 10px;
}


.heroSection.intro {
    background:url(/images/background.jpg) no-repeat;
}

.heroSection.intro .hero-container,
#bigCarousel .hero-container{
    padding-top: var(--header-h, 0px);
    display:flex;
    flex-direction:column;
    background:url(/images/myplasticsurgery-big-logo.svg) no-repeat;
    height: 100%;
    background-position: left -150px top 50%;
    background-size: 300px;
}
#bigCarousel .hero-container{
    background-position: left -105px top 60%;
    background-size: 200px;
}

@media (max-width: 991px) {
    .heroSection.intro .title,
    .heroSection.intro .hero-client-image {
        height:50%;   
        margin-left:35%;
    }
    #bigCarousel .title{
         margin-left:28%;
    }
}
.heroSection.intro .hero-client-image {
    align-items: end;
    justify-content: end;
    display: flex;
}

.heroSection.intro .hero-client-image img{
    max-width: 100%;
    max-height: 100%;

}
.heroSection.intro .title{
            display: flex;
        align-items: end;
        flex-direction: column;
        justify-content: center;
    align-self:end;
        padding-right: 10%;
            position:relative;
    z-index:1;
}
#bigCarousel .title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 10%;
    height: 100%;
}
.heroSection.intro .title-holder div:first-child,
#bigCarousel .title-holder div:first-child{
    margin-bottom: 36px;
    font-size: var(--title-xxl);
    line-height: 1;
    font-weight: var(--thin);
    background: var(--gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;  
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-bottom: 36px;
    
}
@media (min-width: 992px) {
    .heroSection.intro .hero-container,
    #bigCarousel  .hero-container{
        flex-direction:row;
        background-position: left 20px top 40%;
        background-size: 240px;
    }
    .heroSection.intro .title,
     #bigCarousel .title{
        width: 55%;
        align-self: center;
        padding-right: 0;
    }
     .heroSection.intro .hero-client-image {
        align-items: end;
        display: flex;
 }
    .heroSection.intro .hero-client-image {
        width:45%;
        height: inherit;
    }
    .heroSection.intro .title-holder{
        width: 60%;
    }
       #bigCarousel .title-holder{
        width: 60%;
        align-self: end;
       }   
    .heroSection.intro .hero-client-image img{
        max-width: 100%;
        max-height: 100%; 
    }
}
@media (min-width: 1200px) {
    .heroSection.intro .title-holder,
    #bigCarousel .title-holder{
        width: 50%;
    }  
     .heroSection.intro .hero-container,
     #bigCarousel .hero-container{
        background-position: left 8% top 36%;
        background-size: 24%;
    }   
}
@media (min-width: 1400px) {
    .heroSection.intro .title-holder,
     #bigCarousel .title-holder{
        width: 40%;
    }  
     .heroSection.intro .hero-container,
      #bigCarousel .hero-container{
        background-position: left 17.5% top 30%;
        background-size: 22%;
    }   
}
@media (min-width: 1680px) {
     .heroSection.intro .hero-container,
     #bigCarousel .hero-container
     {
        background-position: left 15.8% top 32%;
        background-size: 23%;
    }   
}
.heroSection .btn-primary-gold {
    background: rgba(0,0,0,0.005);
}
   
   
#bigCarousel .carousel-item,
#bigCarousel {
    position: relative;
    height: 100vh;
}
#bigCarousel .carousel-control-prev,
#bigCarousel .carousel-control-next {
    visibility: hidden; }
/*#bigCarousel:hover .carousel-control-prev,
#bigCarousel:hover .carousel-control-next {
    visibility: visible; }
    */
#bigCarousel img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}
.carousel-control-next, .carousel-control-prev {
    width:10%;
}
#bigCarousel .carousel-control-next-icon {
  background-image: url(../images/right-arrow.svg)!important;

}
#bigCarousel .carousel-control-prev-icon {
  background-image: url(../images/right-arrow.svg)!important;
    transform:          rotate(180deg);
  -ms-transform:      rotate(180deg);
  -moz-transform:     rotate(180deg);
  -webkit-transform:  rotate(180deg);
  -o-transform:       rotate(180deg);

}
#bigCarousel .carousel-control-next-icon, 
#bigCarousel .carousel-control-prev-icon {
  display: inline-block;
  width: 50px!important;
  height: 50px!important;
  background: no-repeat 50%/100% 100%;
}
@media screen and (max-width: 991px) {
      #bigCarousel .carousel-item,
      #bigCarousel {
        height: 500px !important;
      }
}
@media screen and (max-width: 575px) {
  #bigCarousel .carousel-item,
  #bigCarousel {
    height: 350px;
  }
}  

.noSlider-holder {
    height:86px;
    background:var(--black);
}
@media (max-width: 1199px) {
    .noSlider-holder {
        height: 96px;
    }
}

 
#bigCarousel .hero-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}
    
    
 /* Video
=================================== */
.mainVideoSlider {
        position: relative;
        height: 100vh;
    }
.mainVideoSlider video {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}
@media screen and (max-width: 991px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 450px;
    }
}
@media screen and (max-width: 767px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 400px;
    }
}
@media screen and (max-width: 480px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 350px;
    }
}
@media screen and (min-width: 1480px) {
    .YTvideo-placement {
        height:100vh;
        overflow:hidden;
    }
}
.plyr__video-embed iframe {
	top: -50%!important;
	height: 200%!important;
}
.YTvideo-placement .plyr__volume input[type=range],
.YTvideo-placement .plyr__controls__item.plyr__menu,
.YTvideo-placement .plyr--fullscreen-enabled [data-plyr=fullscreen]{
    display:none!important;
}
.YTvideo-placement .plyr--video .plyr__controls {
    max-width: 740px;
    margin: auto;
    bottom: 150px;
    background:transparent!important;
}
@media (max-width: 1199px){   
  .YTvideo-placement .plyr--video .plyr__controls {
      max-width: 90%;
    bottom: 40px;
  }
}
    
@media (max-width:767px){   
    .YTvideo-placement .plyr--video .plyr__controls {
        bottom: 20px;
    }  
}
    
.YTvideo-placement .plyr--video.plyr--hide-controls .plyr__controls {
    opacity: 1!important; 
    pointer-events: none; 
    transform: none!important;
}   
    
    
    
    
  /*  

.heroSection .background-image img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: -2;
    object-fit: cover;
}
.heroSection .big-logo-image img {
    position: absolute;
    left: 199px;
    top: 134px;
    width: 438px;
    height: 438px;
    z-index: 2;
}*/
.heroSection .videoHolder {
    position: absolute;
    left: 0;
    top: var(--header-h);
    width: 100%;
    height: calc(100% - var(--header-h));
}
/*
.heroSection .content {
    padding-top: var(--header-h, 0px);
    padding-left: 582px;
    display: flex;
    align-items: center;
    height: 100vh;
}
.heroSection .content .title {
    flex: 0 1 auto;
    position: relative;
    z-index: 3;
}
*/

.breadcrumb {
    padding: var(--nav-padding);
    margin-top: 15px;
    margin-bottom: 0px; 
    color: var(--black);
}
@media (min-width:992px){ 
    .breadcrumb {
       margin-bottom: 36px; 
    }
}
.breadcrumb li+li:before {
    padding: 8px;
    content: "\2022";
}

/*
.heroSection .content .hero-client-image {
    flex: 1 1 0%;
    min-width: 0;
    align-self: stretch;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.heroSection .content .hero-client-image img {
    height: auto;
    width: 100%;
    object-fit: cover;
}*/
/*
.heroSubmenu {
    background-color: var(--primary);
    width: 100%;
    padding: 14px 0;
}
.heroSubmenu ul {
    display: flex;
    gap: 30px;
    justify-content: center;
}
@media (max-width: 1600px) {
    .heroSection .big-logo-image img {
        width: 386px;
        height: 386px;
    }
}
@media (max-width: 1400px) {
    .heroSection .content {
        padding-left: 280px;
    }
    .heroSection .big-logo-image img {
        left: -120px;
        top: 50%;
        transform: translateY(-50%);
    }
    .heroSubmenu ul {
        gap: 10px;
    }
    .heroSubmenu ul li {
        font-size: 14px;
    }
}
@media (max-width: 1200px) {
    .heroSection .content {
        padding-left: 200px;
    }
    .heroSection .big-logo-image img {
        left: -200px;
    }
}
@media (max-width: 992px) {
    .heroSection .content {
        flex-direction: column;
        padding-left: 0;
    }
    .heroSection .content .title {
        flex: 0 1 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .heroSection .content .hero-client-image img {
        height: 100%;
        width: auto;
    }
}


@media (max-width: 768px) {
    .heroSection.innerPage {
        height: 50vh;
    }
    .heroSection.innerPage .big-logo-image img {
        width: 256px;
        height: 256px;
        left: -150px;
    }
    .heroSubmenu ul {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 576px) {
    .heroSection .big-logo-image img {
        width: 386px;
        height: 386px;
        left: -250px;
    }
    .heroSection .content {
        padding-left: 150px;
        overflow: hidden;
    }
    .heroSection .content .title {
        flex: 0 1 auto;
        padding-top: 100px;
        padding-right: 10px;
    }
    .heroSection .content .hero-client-image {
        bottom: 0;
        right: 100px;
        width: 470px;
        height: 470px;
    }
}
*/
/* Bio Section */
.bioSection {
    display: flex;
    padding-top: 187px;
    padding-bottom: 150px;
}
.bioSection .imageWithBorder {
    flex: 1 1 50%;
}
.bioSection .imageWithBorder img {
    height: 100%;
    object-fit: cover;
}
.imageWithBorder {
    position: relative;
}
.imageWithBorder::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 26px;
    left: -26px;
    border: 1px solid var(--black);
    z-index: -1;
}
.bioSection .content {
    flex: 1 1 50%;
    padding-left: 93px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--secondary);
}
.bioSection .content .title {
    color: var(--black);
}
@media (max-width: 1600px) {
    .bioSection .content {
        padding-left: 80px;
    }
}
@media (max-width: 1440px) {
    .bioSection .content {
        padding-left: 50px;
    }
}
@media (max-width: 1300px) {
    .bioSection {
        padding-top: 137px;
        padding-bottom: 100px
    }
}
@media (max-width: 1024px) {
    .bioSection {
        padding-top: 70px;
        padding-bottom: 70px;
        flex-direction: column;
        gap: 50px;
        max-width: 768px;
        margin: auto auto;
    }
    .bioSection .content {
        padding-left: 0;
    }
}
@media (max-width: 576px) {
    .imageWithBorder::before {
        top: 11px;
        left: -11px;
    }
}
/* Masonry Section  &&  Carousel
==================================== */
.masonrySection.black-background,
.carouselSection.black-background,
.masonrySection.black-background h3,
.carouselSection.black-background h3{
    color: var(--white);   
}
.masonrySection .titleWithSubtitle {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
}
.masonrySection.black-background h2,
.carouselSection.black-background h2{
    color: var(--primary);
    margin-bottom:15px;
}
.masonryGrid{
    display: grid;
    grid-template-columns:
        calc(560px * var(--wscale))
        calc(560px * var(--wscale))
        calc(800px * var(--wscale));
    grid-auto-rows: 10px;
}
.masonryGrid :nth-child(5n + 1) {
    grid-column: 1; 
    grid-row: span 53; 
}
.masonryGrid :nth-child(5n + 2) {
    grid-column: 2;
    grid-row: span 53; 
}
.masonryGrid :nth-child(5n + 3) {
    grid-column: 3;
    grid-row: span 67; 
} 
.masonryGrid :nth-child(5n + 4) {
    grid-column: 1 / span 2;
    grid-row: span 47; 
}
.masonryGrid :nth-child(5n + 5) {
    grid-column: 3;
    grid-row: span 33;
}
.masonryGrid .grid-item {
    position: relative;
    overflow: hidden;
}
.masonryGrid .grid-item h3{
    margin:auto 10%;
}
.masonryGrid .grid-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    transition: background .5s ease;
}
.masonryGrid .grid-item img {
        width: 100%;
    height: auto;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    transform: scale(1);
    transition: transform .5s ease;
}
.masonryGrid .grid-item .original-state {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
    text-align: center;
    opacity: 1;
    transition: opacity .5s ease;
}
.masonryGrid .grid-item .hover-state {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .5s ease;
}
.masonryGrid .grid-item .hover-state ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: var(--title-m) !important;
    line-height:1.5;
}
.masonryGrid .grid-item:hover::before {
    background: rgba(0, 0, 0, 0.6);
}
.masonryGrid .grid-item:hover .original-state {
    opacity: 0;
}
.masonryGrid .grid-item:hover .hover-state {
    opacity: 1;
}
.masonryGrid .grid-item:hover img {
    transform: scale(1.1);
}
.masonrySection .button-container {
    padding-top: 88px;
    padding-bottom: 159px;
    display: flex;
    justify-content: center;
}
@media (max-width: 1300px) {
    .masonrySection .button-container {
        padding-top: 58px;
        padding-bottom: 109px;
    }
}
@media (max-width: 768px) {
    .masonryGrid {
        grid-template-columns: auto;
    }
    .masonryGrid :nth-child(5n + 1) {
        grid-column: auto; 
        grid-row: span 38; 
    }
    .masonryGrid :nth-child(5n + 2) {
        grid-column: auto;
        grid-row: span 38; 
    }
    .masonryGrid :nth-child(5n + 3) {
        grid-column: auto;
        grid-row: span 38; 
    } 
    .masonryGrid :nth-child(5n + 4) {
        grid-column: auto;
        grid-row: span 38; 
    }
    .masonryGrid :nth-child(5n + 5) {
        grid-column: auto;
        grid-row: span 38;
    }
}

/* Carousel Section 
---------------------------*/
.carouselSection .titleWithSubtitle {
    padding-top: 40px;
    padding-bottom: 40px;
}
.carouselSection .mainCarousel .image-container {
    position: relative;
    /*height: 680px;*/
    color: var(--white);
}
.carouselSection .mainCarousel .image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: background .5s ease;
    z-index: 0;
}
.carouselSection .mainCarousel .image-container img {
  /*  position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    z-index: -1;*/
}
.carouselSection .mainCarousel .content {
    position: absolute;
    top:0;
    height: 100%;
    display: flex;
    align-items:end;
    z-index: 1;
    padding-bottom: 5%;
    padding-left: 10%;
    padding-right: 15%;
}
.carouselSection .mainCarousel .image-container:hover::before {
    background: rgba(0, 0, 0, 0.6);
}
.custom-pagination {
    margin-top: 48px;
    margin-bottom: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.custom-pagination .arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.custom-pagination .custom-scrollbar{
    position: relative;
    width: 93%;
    height: 1px;
    background: var(--primary);
}
.custom-pagination .custom-scrollbar .thumb{
    position: absolute;
    left: 0;
    top: 50%;
    height: 3px;
    width: 40%;                 
    background: var(--primary);
    transform: translateY(-50%);
    cursor: pointer;
}
.arrows .arrow-next img,
.arrows .arrow-prev img{
    width: 20px;
}
.arrows .swiper-pagination {
    position: relative;
    color: var(--primary);
    top: 0;
    bottom: 0;
    font-size: var(--body-font);
    font-weight: var(--thin);
    line-height: 40px;
}
@media (max-width: 1600px) {
    .custom-pagination .custom-scrollbar {
        width: 90%;
    }
}
@media (max-width: 992px) {
    .custom-pagination .custom-scrollbar {
        width: 80%;
    }
}
@media (max-width: 576px) {
    .carouselSection {
        text-align: center;
    }
    .custom-pagination .custom-scrollbar {
        width: 70%;
    }
    .carouselSection .mainCarousel .image-container {
       height: 415px;
    }
    .carouselSection .titleWithSubtitle {
        text-align: center;
    }
    .carouselSection .mainCarousel .content {
        padding-left: 0;
        padding-bottom: 0;
        padding-right: 0;
        align-items: center;
        text-align: center;
        justify-content: center;
    }
}


/* Why Choose Us Section 
===================================*/
.whyChooseUsSection {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
}
.whyChooseUsSection .images,
.whyChooseUsSection .content{
    width:100%;
}
.whyChooseUsSection .images{
    margin-bottom:50px;
}
@media (min-width: 576px) { 
    .whyChooseUsSection .images,
    .whyChooseUsSection .content{
        width: 100%;
        margin: 0 15% 50px;
    }
}
@media (min-width: 768px) { 
    .whyChooseUsSection .images,
    .whyChooseUsSection .content{
        width:50%;
        margin:0;
    }
    .whyChooseUsSection .content{
        padding-left: 60px;
    }
}
.whyChooseUsSection .images{
    position:relative;
}
.whyChooseUsSection .images:before{
    content:"";
    width:120px;
    background:url(/images/myplasticsurgery-big-logo.svg) no-repeat;
    height: 100%;
    background-position: left 0px top 50%;
    background-size: contain;
    position: absolute;
    left: -5%;
    z-index:-1;
}  
@media (min-width: 576px) and (max-width: 767px){
    .whyChooseUsSection .images:before{
         left: -15%;
         width:180px;
     }
}
@media (min-width: 768px) and (max-width: 991px){
    .whyChooseUsSection .images:before{
        width:150px;
    }
}
@media (min-width: 992px) {
    .whyChooseUsSection .images:before{
        width:220px;
        left: -25%;
    }
}
@media (min-width: 1200px) {
    .whyChooseUsSection .images:before{
        left: -20%;
    }
      .whyChooseUsSection .content {
        padding-left: 90px;
    }
}
@media (min-width: 1600px) {
    .whyChooseUsSection .images:before{
        width:280px;
    }
    .whyChooseUsSection .content {
        padding-left:150px;
    }
}
.whyChooseUsSection .images picture {
    display: block;
}
.whyChooseUsSection .images picture:first-child{
    margin-left:20%;
}
.whyChooseUsSection .images picture:last-child{
    margin-top:-15%;
    width:40%;
}
.whyChooseUsSection .content {
    color: var(--secondary);
}



/* Grid Section - BOXES
========================*/
.gridSection {
    display: grid;
    /*grid-template-columns: auto auto auto;*/
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}
.gridSection.black-background h2 {
    color: var(--primary);
}
.gridSection.black-background h3 {
    color: var(--white);
    text-align:center;
}

.gridSection .content {
    color: var(--white);
    font-weight: var(--thin);
}
.gridSection > .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 10px;
}
.gridSection .image-container {
    /*height: 490px;*/
    position: relative;
}
.gridSection .image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition: background .5s ease;
}
.gridSection .image-container img {
   /* height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;*/
}
.gridSection .image-container .content {
    position: absolute;
    top:0;
    height: 100%;
    width:100%;
    z-index: 2;
    text-align: center;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 0 5% 5% 5%;
}
.gridSection .image-container:hover::before {
    background: rgba(0, 0, 0, 0.4);
}
@media (max-width: 1199px) {
    .gridSection {
      /*  padding-top: 135px;
        padding-bottom: 135px;*/
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 576px) and (max-width: 1199px)  {
    .gridSection .image-container img {
        height: 100%;
        object-fit: cover;
    }
}
@media (max-width: 575px) {
    .gridSection {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 15px;
        /*padding-top: 100px;
        padding-bottom: 100px;*/
    }
    
    /*.gridSection .image-container {
        height: 414px;
    }*/
    .gridSection > .content {
        margin-bottom: 50px;
    }
}

.link-above-img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

/* Info Section 
=================================*/
.infoSection {
    /*padding-top: 182px;
    padding-bottom: 182px;
    max-width: 1130px;*/
    display: flex;
    justify-content: center;
    margin: auto auto;
    gap: 20px;
    flex-wrap: wrap;
}
.infoSection .info-card {
    width: calc(33.333% - 20px);
    /*flex: 1 1 30%;
    height: 700px;
    display: flex;
    flex-direction: column;*/
}
.infoSection .media {
    /*height: 403px;*/
    position: relative;
}
.infoSection .media > img {
  /*  height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -1;*/
}
.infoSection .media .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.infoSection .info-card .content {
    color: var(--secondary);
    margin-top: 30px;
}
.infoSection .info-card .btn-primary-black {
    display: flex;
    margin-top: auto;
}
@media (max-width: 1300px) {
  /*  .infoSection {
        padding-top: 122px;
        padding-bottom: 122px;
    }*/
}
/*
@media (max-width: 1024px) {
     .infoSection {
       max-width: 576px;
        gap: 60px;
    }
    .infoSection .info-card {
        flex: 1 1 50%;
        height: max-content;
    }
}*/
/*
@media (max-width: 767px) {
    .infoSection {
        padding-left: 35px;
        padding-right: 35px;
    }
}*/
@media (min-width: 768px) and (max-width: 991px) {
    .infoSection .info-card h2{
        font-size:28px;
    }    
}
@media (max-width: 767px) {
    .infoSection {
        gap: 40px;
    }
    .infoSection .info-card {
        flex: 1 1 50%;
        height: max-content;
    }

}


/* Footer 
===========================*/
.innerpages footer {
    margin-top:80px;
}
@media (max-width: 767px) {
    .innerpages footer {
        margin-top:60px;
    }   
}
footer {
    color: var(--white);
}
footer .h6 {
    font-weight: var(--light);
    margin-bottom: 1.5rem;
}
footer .image-container {
    height: 70vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    flex-direction: column;
    overflow:hidden;
}
@media (max-width: 767px) {
   footer .image-container {
    height: auto;
   }
}
footer .image-container picture{
    width:100%;
}
footer .image-container img {
    position: relative;
    z-index: -1;
    object-fit: cover;
    width: 100%;
}
footer .image-container picture:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: background .5s ease;
    z-index: 0;
}
footer .image-container .content {
    position:absolute;
    z-index:2;
    background: rgba(0,0,0,0.005);
}
@media (max-width: 576px) {
    footer .image-container .content {
        padding-left: 30px;
        padding-right: 30px;
    }
}
footer .image-container .content h2{
    color: var(--white);
    line-height:1.5;
}
.footer-info .logo-place,
.footer-info .logo-place img,
.footer-info .content{
    width: 90%;
}
.footer-info .logo-place img{
    margin-bottom: 1.5rem;
}
.footer-info .content {
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
@media (max-width: 1200px) {
    .footer-info .content {
        padding-left: 0;
        gap:0;
    }
}
@media (max-width: 768px) {
    .footer-content {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
.social {
    padding-top:10px;
    width: 100%;
}
.social ul {
    display: flex;
    gap: 10px;
}
.schedule ul,
.footer-menu ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.newsletter .h6 {
    margin-bottom: 1rem;
}
.newsletter form .form-control {
    background-color: transparent;
    outline: none;
    border: none;
    border-bottom: 1px solid var(--primary);
    border-radius:0;
    color: var(--gray);
    font-weight:var(--thin);
        padding: .375rem 0rem;
}
.newsletter form .form-control::placeholder {
    color: var(--gray);
    font-size: 14px;
    font-weight: var(--thin);
}
.newsletterform .form-agree 
{
    display:flex;
}
.newsletterform .form-agree label {
    padding-left: 10px;
    font-size: 14px;
    font-weight: var(--thin);
    cursor: pointer;
}
.newsletterform .form-agree input[type="checkbox"]{
    width: 10px;
    height: 10px;
    -webkit-appearance: none;
            appearance: none;
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: 50%;
    cursor: pointer;
    padding: 4px;
    margin: 0;
    margin-top: 6px;
}
.newsletterform .form-agree input[type="checkbox"]:checked{
    background-image: radial-gradient(circle 3px at 50% 50%, var(--primary) 99%, transparent 100%);
}
.newsletterForm .button-gold a {
    padding: 0 43px;
}
@media (max-width: 767px) {
    .newsletterForm .button-gold a {
        padding: 5px 43px;
    }
}
.field-validation-valid {
  display: none;
  color: red; }
.field-validation-error {
  display: block;
  color: red;
  text-align: left; 
  font-size:12px;    
}
.field-validation-error:empty {
	display: none;
}  

.asterisk span {
  display: inline;
  font-size: 14px;
}
.form-agree label {
	display:inline;
}
.form-agree .field-validation-error {
	display: inline-block;
}

.form-agree a {
    text-decoration:underline;
    padding-bottom: 0px;
}
.form-agree a:hover {
    text-decoration:none;
}

input[type="date"]:not(.has-value):before{
  content: attr(placeholder);
}

#json-msg {
    padding-top:20px;
}
.status-failure,
.status-busy {
    margin:6px 0 0 0;
}
.status-busy img{
   height: 10px;
}


/*Footer Services
=========================*/
.accordion .content {
    font-weight: var(--thin);
    margin-top: 20px;
    color: var(--gray);
}
.acc-btn {
    background: transparent;
    outline: none;
    border: none;
    color: var(--white);
    display: flex;
    padding: 0;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.acc-btn .chevron{
    transition: transform .2s ease;
    display: flex;
    align-items: center;
}
.acc-btn:not(.collapsed) .chevron{
    transform: rotate(-180deg);
}
.accordion .content .subs {
    padding-top:5px;
}
.accordion .content .subs a:not(:last-child){
    padding-right:6px;
    margin-right:7px;
    border-right:1px solid var(--gray);
}

/*MEMBER LOGOS
=========================*/
.memberRow{
    display: flex;
    align-items: center;
    gap: 10px;    
}  
.memberRow .memberCarousel{
    flex: 0 1 95%;
    min-width: 0;
    border-right: 1px solid var(--primary);       
} 
.memberCarousel .swiper-slide{
    display: grid;
    place-items: center;   
    width: fit-content;
    padding-right:18px;
      height: auto;
}
.member img{
    filter: grayscale(1); 
    max-height: 80px;
}
.memberCarousel .swiper-slide img.logo-svg{ 
    width:100%;
}
.memberRow .button{
    flex: 0 0 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.memberRow .button img{
    width: 26px;
    height: 26px;
    display: block;
}
.extras {
    gap: 50px; 
}
@media (min-width: 768px) {
    .extras {
        display:flex;
        gap:200px;
    }
}
.partners img{
    /*filter: grayscale(1); */
    filter: brightness(0) invert(1);
    max-height: 50px;
}
.editorials .images {
    display: flex;
    gap: 10px;
}
.copyright {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}  
@media (max-width: 576px) {
    .copyright {
        text-align: start;
        padding: 30px;
    }
}

/* START SCROLL TO TOP 
==============================*/
.toTop {
    text-align: right;
}
a.scrollup {
    background: url(../images/chevron-right-black.svg) no-repeat center center;
        transform:          rotate(-90deg);
  -ms-transform:      rotate(-90deg);
  -moz-transform:     rotate(-90deg);
  -webkit-transform:  rotate(-90deg);
  -o-transform:       rotate(-90deg);
    background-size: 50%;
    bottom: 0;
    display: none;
    position: fixed;
    right: 10px;
    text-indent: -9999px;
    width: 40px;
    height: 40px;
    text-decoration: none;
    padding: 0px 0px 0;
    z-index: 10000;
    transition: height 350ms ease-in-out, opacity 750ms ease-in-out;
filter: brightness(0) saturate(100%) invert(91%) sepia(4%) saturate(3403%) hue-rotate(346deg) brightness(85%) contrast(86%);
}
.scrollup.is-visible {
    display: inline;
    opacity: 1;
}







/* INNER PAGE LEVEL ONE */
/* Services Section 
==============================*/
.servicesSection {
    display: flex;
    flex-direction: column;
   /* gap: 80px;*/
}
/*
@media (max-width: 1400px) {
    .servicesSection {
        gap: 54px;
    }
}
@media (max-width: 576px) {
    .servicesSection {
        padding: 50px 30px 0 30px;
        gap: 50px;
    }
}*/
.servicesSection .service {
    display: flex;
    border:  1px solid var(--black);
    /*min-height: 560px;*/
}
.servicesSection .service.reversed {
    flex-direction: row-reverse;
}
.servicesSection .service .image-container {
    width: 50%;
    position: relative;
    overflow: hidden;
}
.servicesSection .service .image-container img {
    /*position: absolute;*/
    height: 100%;
    object-fit: cover;
    inset: 0;
}
.servicesSection .service .content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 20px 20px 90px;
}
.servicesSection .service .content ul {
    margin:0 0 30px 0;
}
.servicesSection .service .content ul li{
    padding-left: 20px;
    margin-bottom: 15px;
    position: relative;
}
.servicesSection .service .content ul li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: 0;
}
.servicesSection .service .content ul.two-col {
    column-count: 2;
    column-gap: 40px;     
}
.servicesSection .service .content ul.two-col > li {
    break-inside: avoid;
}
.servicesSection .service .content ul.two-col > li.break {
    break-before: column;
}
@media (max-width: 1600px) {
    .servicesSection .service .content {
        padding: 20px 20px 20px 45px;
    }
}

@media (max-width: 992px) {
    .servicesSection .service,
    .servicesSection .service.reversed {
        flex-direction: column;
    }
    .servicesSection .service .content,
    .servicesSection .service .image-container {
        width: 100%;
        height: auto;
    }
    .servicesSection .service .content {
        padding: 40px;
    }
    .servicesSection .service .image-container img {
        position: static;
    }    
}
@media (max-width: 768px) {
    .servicesSection {
        padding: 70px 50px 0 50px;
        display: flex;
        flex-direction: column;
        gap: 54px;
    }
    .servicesSection .service .content {
        padding: 30px;
    }
    .servicesSection .service .content ul {
        margin:10px;
    }
    .servicesSection .service .content ul li {
        font-size: 14px;
        margin-bottom: 10px;
    }
}



/* INNER PAGE LEVEL TWO */
/* Text Section  - Two cos content: title on left
=====================================================*/
.textSection a:not(.btn-black):not(.btn-primary-black){
    color: var(--secondary);
}
.textSection .titleAndText {
    margin-top:80px;
    display: flex;
}
.textSection .titleAndText .title {
    width: 22%;
    height: fit-content;
    position: relative;
}
.textSection h2 {
    font-size:var(--title-h3);
}
.textSection .titleAndText .title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 97px;
    height: 3px;
    background-color: var(--primary);
}
.textSection .titleAndText .text {
    width: 78%;
    padding-left: 68px;
}

@media (max-width: 992px) {
    /*.textSection {
        gap: 50px;
        padding-bottom: 74px;
    }*/
    .textSection .titleAndText {
        margin-top:30px;
        flex-direction: column;
    }
    .textSection .titleAndText .title {
        width: 100%;
        margin-bottom:20px; 
    }
    .textSection .titleAndText .title h2{
        margin-bottom:15px;
    }
    .textSection .titleAndText .text {
        width: 100%;
        padding-left: 0;
    }
}




/*bodyText list*/

.textSection strong {
    font-weight:500;
}
.textSection ul {
    margin:0 0 30px 0;
}
.textSection ul li{
    padding-left: 20px;
    margin-bottom: 15px;
    position: relative;
}
.textSection ul li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: 0;
}
.textSection img {
    max-width:100%;
    height:auto;
}


.float-start img,
.float-end img{
    max-width: 100%;
    height: auto;
}
@media screen and (min-width: 768px) {
    .float-start {
        margin-right:40px;
        margin-bottom:40px;
    }
    .float-end {
        margin-left:40px;
        margin-bottom:40px;
    }
}
@media screen and (max-width: 767px) {
    .float-start {
        margin-right:20px;
        margin-bottom:20px;
    }
    .float-end {
        margin-left:20px;
        margin-bottom:20px;
    }
}
@media screen and (max-width: 480px) {
    .float-start {
        float:none!important;
         margin-right:0px;
        margin-bottom:20px;
    }
    .float-end {
         float:none!important;
        margin-left:0px;
        margin-bottom:20px;
    }
}


/* Before and After Section 
=======================================*/
.swiper-button-next,
.swiper-button-prev {
    top: 50% !important;
    background:url(/images/chevron-right-white.svg) no-repeat center center; 
    background-size: 100%;
    width: 24px;
}
.swiper-button-next{
    right:30px!important; 
}
.swiper-button-prev {
    transform:          rotate(180deg);
  -ms-transform:      rotate(180deg);
  -moz-transform:     rotate(180deg);
  -webkit-transform:  rotate(180deg);
  -o-transform:       rotate(180deg);
    left:30px!important;
}
.swiper-navigation-icon {
    display:none;
}
@media (max-width: 576px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 12px;
    }
}
.bullets-bellow {
    padding-bottom:40px;
}
.bullets-bellow .swiper-pagination {
    top:unset;
    bottom: 0;
}
.bullets-bellow .swiper-pagination-bullet {
    opacity: 1;
    background: transparent;
    border: 1px solid var(--black);
    width:10px;
    height:10px;
    margin:0 2px;
}
.bullets-bellow .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: var(--black) ;
}

.beforeAndAfterSection {
    text-align: center;
}
.beforeAndAfterSection .title {
    padding-bottom: 20px;
}
.beforeAndAfterCarousel .swiper-slide {
   width: auto;
}
.beforeAndAfterCarousel .swiper-slide a{
    display:block;
}


/* Product Form 
=============================*/
.productForm {
    max-width: 1022px;
    margin: 0 auto;
}

.productForm  {
    font-size: var(--title-m);
}
.productForm .title{
    text-align: center;
    padding-top: 40px;
    margin-bottom: 40px;
    font-weight:var(--light);
    font-size: 20px;
}
.productForm p{
    text-align:center;
}
.productForm .checkboxes {
    max-width: 556px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto auto;
    gap: 40px;
    margin-bottom: 80px;
}
.productForm .form-checkbox {
    position: relative;
    display:flex;
    gap:6px;
}
.productForm .form-checkbox input[type="checkbox"] {
        width: 14px;
    height: 14px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border: 1px solid var(--black);
    cursor: pointer;
    padding: 4px;
    margin: 0;
    margin-top: 6px;
}
.productForm .form-checkbox input[type="checkbox"]:checked {
    background-color: var(--black);
}
.productForm .paypal {
    position: relative;
    background:url(/images/paypal.svg) no-repeat left center;
    padding-left: 25px;
    margin-top: 40px;
    font-weight:200;
    font-style:italic;
}
.productForm .form-agree {
    font-weight: 200;
    font-size: var(--body-font-size);
}
@media (max-width: 992px) {
    .productForm {
        padding: 0 35px;
    }
}

@media (max-width: 576px) {
    .productForm .checkboxes {
        grid-template-columns: auto;
        gap: 20px;
    }
}


.contactForm input,
.contactForm textarea{
    border-radius:0;
    border: none;
    border-bottom: 1px solid black;
    outline: none;
    line-height:2;
}
.contactForm input::placeholder,
.contactForm textarea::placeholder{
    color: var(--mute);
}

/*NEWS
==================================*/
.blog-posts {
    display: grid;
    /*grid-template-columns: auto auto auto;*/
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}
@media (max-width: 991px) {
    .blog-posts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }  
}
@media (max-width: 575px) {
    .blog-posts {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }  
}

.blog-posts .blog-item {
    box-shadow: 0px 0px 5px 1px rgb(0 0 0 / 15%);
    padding: 18px 25px;
}
.blog-posts .blog-item a{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height:100%;
}
.blog-posts .blog-item .pTitle{
    color:var(--black);
    font-size:var(--title-m);
}
.blog-posts .blog-item .pDate{
    padding-top:15px;
    color:var(--dark-gray);
    font-style: italic;
    text-align:end;
}
.post-date {
    color:var(--dark-gray);
    font-style:italic;
}
.prevNextWrap {
    display: flex;
    font-weight: 600;
}
.prevNextWrap a {
    color: var(--dark-gray);
    text-decoration: none;
    text-transform: uppercase;
}
.prevNextWrap a.disabled {
      color: var(--gray);  
}
@media (min-width: 576px) {
    .prevNextWrap .next {
        margin-left: 30px;
    }
}

/*VIDEO LIST
==================================*/
.videoList{
    list-style:none;
    display: grid;
    /*grid-template-columns: auto auto auto;*/
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}
@media (max-width: 991px) {
    .videoList{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }  
}
@media (max-width: 575px) {
    .videoList{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }  
}
.videoList li {
    padding-left: 0px;
    margin-bottom: 0px;
}
.videoList li::before {
    display:none;
}


/** START OF MODAL 
=======================*/
.modal {
  z-index: 10000;
  font-size:var(--body-font-size);
          background: rgba(0, 0, 0, 0.4);
}
  .modal .modal-dialog {
    max-width:740px;
  }
.modal .modal-content {
  -webkit-box-shadow: 0px 20px 20px #00000045;
          box-shadow: 0px 20px 20px #00000045;
  padding: 20px;
  border-radius: 0px;
  border: none;
  text-align: left;
}
#popupModal .modal-content.padding{
      padding: 0px;
}
#popupModal .modal-content.padding .modal-body{
      padding: 0px;
}
.modal .btn-close {
  position: absolute;
  width: 2em;
  height: 2em;
  right: 0px;
  top: 0px;
  opacity: .8;
  border-radius: 0px;
}
@media screen and (min-width: 768px) {
    .modal .img {
        display:flex;
    }
    .modal .img img{
        height: 100% !important;
        width: 100%;
        object-fit: cover; 
    }
}
@media screen and (max-width: 767px) {
    .modal .modal-dialog {
        max-width:540px;
        margin-left: auto;
        margin-right: auto;
    }
}
.modal .btn-holder {
    position:relative;
    z-index:2;
}

.modal h2,
.modal .h3 {
    font-size: 32px;
}
.showContestForm {
    margin-top:30px;
}
.showContestForm .form-agree{
    font-size:;
}
.visually-hidden {
    background: rgba(0,0,0,0.005);
}