@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-SemiBold.eot');
    src: url('../fonts/Gilroy-SemiBold.eot?iefix') format('eot'),
        url('../fonts/Gilroy-SemiBold.woff') format('woff'),
        url('../fonts/Gilroy-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

:root {
    --black: #282829;
    --pink: #FFBFBA;
    --peach: #FBCDB0;

    --fast: all 0.3s;
}

* {
    font-family: 'Montserrat';
    outline: none;
}

main { min-width: 375px;}

h1,
h2,
h3,
h4,
h5,
a,
button {
    font-family: 'Gilroy';
    font-weight: 600;
}

main {
    overflow: hidden;
}

.navbar {
    padding: 16px 0px;
    background-color: #FFF;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.04);
}

.navbar-brand {
    margin-right: 0;
    padding: 0px;
}

.nav-link {
    padding: 4px 12px !important;
    margin: 0px 12px;
    color: var(--black)!important;
    position: relative;
}

.nav-link::before {
    display: block;
    content: '';
    width: calc(100% - 24px);
    height: 4px;
    background-color: var(--peach);
    position: absolute;
    top: -6px;
    opacity: 0;
    transition: var(--fast);
}

.nav-link:hover::before {
    opacity: 1;
    top: -2px;
}

.fy-button  {
    background-color: var(--pink);
    border: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 115%;
    letter-spacing: 0.1em;
    color: var(--black);
    transition: var(--fast);
    padding: 12px 24px;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}
.fy-button  { text-decoration: none!important; }

.fy-button.price {
    padding: 15px 32px;
    background-color: #FFF;
    border: 2px solid var(--black)!important;
    display: inline-block;
    text-align: center;

}

.fy-button.form  {
    padding: 16px 32px;
    font-size: 16px;
}

.fy-button.order {
    background-color: #F9CEB1;
    border: 2px solid var(--black)!important;
    font-size: 16px;
    line-height: 115%;
    padding: 14px 32px;
    display: flex;
    position: relative;
}

.fy-button.order img {
    margin-left: 24px;
    position: relative;
}

.fy-button:hover {
    background-color: var(--peach)!important;
    color: var(--black)!important;
}

.fy-button.price:hover {
    background-color: var(--pink)!important;
    border-color: var(--pink)!important;
}

.navbar-toggler {
    border: none;
    background-color: transparent;
    padding: 2px 8px;
    position: relative;
    width: 40px;
    height: 34px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler div {
    width: 24px;
    height: 2px;
    background-color: var(--black);
    position: absolute;
    right: 8px;
    transition: var(--fast);
}

.navbar-toggler div:nth-of-type(1) {
    transform-origin: 100% 100%;
    top: 8px;
}

.navbar-toggler div:nth-of-type(2) {
    top: 16px;
}

.navbar-toggler div:nth-of-type(3) {
    transform-origin: 100% 0%;
    top: 24px;
}

.navbar-toggler[aria-expanded="true"] div:nth-of-type(1) {
    transform: rotate(-45deg) translateY(-1px);
    right: 10px;
}

.navbar-toggler[aria-expanded="true"] div:nth-of-type(2) {
    transform: translateX(8px);
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] div:nth-of-type(3) {
    transform: rotate(45deg) translateY(1px);
    right: 10px;
}

.main-bg {
    background-color: var(--peach);
}

.main-content h1 {
    font-weight: 600;
    font-size: 64px;
    line-height: 120%;
    margin-bottom: 64px;
}

.main-adress a {
    display: block;
    position: relative;
    padding-left: 32px;
    text-decoration: none;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: var(--black);
}

.main-adress a:first-child {
    margin-bottom: 12px;
}

.main-adress a img {
    position: absolute;
    left: 0;
}

.divider {
    width: 96px;
    height: 2px;
    background-color: var(--black);
    margin: 24px 0px;
}

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

.info-cards {
    padding: 48px 0px;
}

.info-card {
    height: 100%;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.info-card h3 {
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    margin-bottom: 20px;
}

.info-card span {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 24px;
    display: block;
}

.info-card p {
    font-size: 24px;
    line-height: 120%;
    font-weight: 400;
    margin-bottom: 64px;
}

.info-card small {
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    opacity: 0.5;
}

.info-card img {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0px;
    right: 0px;
    object-fit: cover;
    object-position: 100% 100%;
    z-index: 10;
}

.info-card div {
    z-index: 11;
}

.info-card.black {
    background-color: var(--black);
    color: #FFFFFF;
}

.info-card.ivory {
    background-color: #FAF7F1;
    color: var(--black);
}

.info-card.pink {
    background-color: var(--pink);
    color: var(--black);
}

.section-about {
    padding-top: 80px;;
    padding-bottom: 64px;
}

.block-header {
    margin-bottom: 32px;
}

.section-services{
    padding-top: 64px;
}

.section-services .block-header,
.section-question .block-header {
    margin-bottom: 64px;
}

.section-team .block-header {
    margin-bottom: 96px;
}

.block-header span,
.footer-header span {
    display: block;
    padding-left: 120px;
    position: relative;
    font-weight: 600;
    font-size: 20px;
    line-height: 80.5%;
    color: var(--black);
    margin-bottom: 36px;
}

.footer-header span {
    color: #FFF;
    margin-bottom: 48px;
}

.block-header span::before,
.footer-header span::before {
    display: block;
    content: '';
    width: 96px;
    height: 16px;
    background-color: var(--peach);
    position: absolute;
    left: 0;
}

.block-header h2,
.sign-up-info h2 {
    font-weight: 600;
    font-size: 48px;
    line-height: 120%;
}

.block-header h2 {
    margin-bottom: 0px;
}

p {

    font-size: 16px;
    line-height: 140%;

}

.card-order div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service {
    padding: 96px 0px;
}

.service h3 {
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    margin-bottom: 36px;
    z-index: 3;
    position: relative;
}

.service.dark {
    background-color: var(--black);
    color: #FFF;
}

.service.white {
    color: var(--black);
}


.service img {
    width: 100%;
}

.service-number {
    position: relative;
    margin-bottom: 48px;
}

.service-number::before {
    width: 96px;
    height: 16px;
    display: block;
    content: '';
}

.service-number span {
    font-weight: 600;
    font-size: 96px;
    line-height: 74%;
    position: absolute;
    font-family: 'Gilroy';
    right: 0;
    bottom: 0;
}

.service-number.n-01::before {
    background-color: #F9BAB4;
}

.service-number.n-01 span {
    color: #F9BAB4;
}

.service-number.n-02::before {
    background-color: #FCC7A7;
}

.service-number.n-02 span {
    color: #FCC7A7;
}

.service-number.n-03::before {
    background-color: #FDD3A9;
}

.service-number.n-03 span {
    color: #FDD3A9;
}

.service-number.n-04::before {
    background-color: #B9C9A4;
}

.service-number.n-04 span {
    color: #B9C9A4;
}

.service-number.n-05::before {
    background-color: #97D5CB;
}

.service-number.n-05 span {
    color: #97D5CB;
}

.service-number.n-06::before {
    background-color: #9AC9EC;
}

.service-number.n-06 span {
    color: #9AC9EC;
}

.service-number.n-07::before {
    background-color: #99B6DF;
}

.service-number.n-07 span {
    color: #99B6DF;
}

.service-number.n-08::before {
    background-color: #D4B6D6;
}

.service-number.n-08 span {
    color: #D4B6D6;
}

.service-number.n-09::before {
    background-color: #F7AFC1;
}

.service-number.n-09 span {
    color: #F7AFC1;
}

.price-info {
    padding: 96px 0;
}

.sign-card {
    background-color: #FAF7F1;
    padding: 96px 0px;
    position: relative;
}
.sign-card form h2 { display: none!important; }

.sign-up-info h2 {
    margin-bottom: 32px;
}

.sign-up-info p {
    margin-bottom: 48px;
}
.ajax-loader { display: block!important; margin: auto!important; position: absolute; }
input,
select
  {

    height: 56px!important;
    background: #EFEDE8!important;
    border: none!important;
    color: #00000077!important;
    padding: 0px 32px!important;

    border-radius: 0!important;
}




input:focus,
select:focus  {
    outline: none;
}

form select {
    margin-bottom: 24px;
    appearance: none;
}

form div {
    position: relative;

}


form div img {
    position: absolute;
    pointer-events: none;
    left: auto;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
}

.info-card.pink h3 {
    width: 40%;
}

input {
    margin-bottom: 16px;
}

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

.section-team,
.section-question {
    padding: 128px 0px;
}

.slider-arrow img {
    display: block;
    margin: 105px 0px;
}

.slider-arrow:first-of-type img {
    margin-left: auto;
}

.slider-arrow:last-of-type img {
    margin-right: auto;
}

.slider-wrap {
    position: relative;
}

.slick-arrow {
    position: absolute;
    width: 64px;
    background-color: transparent;
    color: transparent;
    border: none;
    top: 105px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.prev{
    background-image: url(../img/sliderLeftAroow.svg);
    left: -87px;
}
.next{
    background-image: url(../img/sliderRightArrow.svg);
    right: -87px;
}

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

body {     font-weight: 500;}
.team-member p { margin-left: 10px; margin-right: 10px; }
.team-member h3 {
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    color: #000000;
    margin-bottom: 8px;
}

.team-member img {
    width: 225px;
    height: 225px;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 36px;
}

.team-member span {
    display: block;
    margin-bottom: 24px;
}

.team-member span,
.team-member p {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
}

.team-member p {
    opacity: 0.5;
}

.galery .container-fluid {
    padding: 0px;
}

.img-wrap {
    height: 30vw;
    overflow: hidden;
    padding: 0px 15px;
    margin-bottom: 30px;
}

.galery {
    margin: 0px -15px;
}

.gallery-foto{
    width: 100%;
    height: 100%;
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.gift-card {
    background-color: #F9CEB1;
    padding: 64px 0px;
    text-align: center;
}

.card-order h2 {
    font-weight: 600;
    font-size: 48px;
    line-height: 120%;
    color: var(--black);
    margin-bottom: 64px;
    text-align: left;
}

.card {
    border: none;
    border-bottom: 2px solid var(--black);
}

.card:first-child {
    border-top: 2px solid var(--black);
}

.card-header {
    background-color: #FFFFFF;
    padding: 0px;
    border: none;
}

.card-header button {
    padding: 24px 0px;
    font-weight: 600;
    font-size: 24px;
    line-height: 115%;
    color: var(--black);
    background-color: #FFF;
    border: none;
    width: 100%;
    text-align: left;
    position: relative;
    text-decoration: none !important;
}

.card-header button:hover {
    color: var(--black);
}

.card-header button img {
    transform-origin: center;
    position: absolute;
    right: 0px;
    top: 22px;
}

.card-header button.collapsed img {
    transform: rotate(45deg);
}

.card-body {
    padding: 0px;
    padding-bottom: 16px;
    border: none;
}

.accordion-body {
    padding: 0px 0px 24px;
}

footer {
    background-color: var(--black);
    padding: 96px 0px;
}

.footer-info {
    height: 100%;
}

.footer-info h4,
.footer-form h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    color: #FFF;
    margin-bottom: 24px;
}

.footer-form h4 {
    margin-bottom: 48px;
}

.footer-icon a {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #FFF;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-left: 48px;
    margin-bottom: 28px !important;
}

.footer-icon a:last-child {
    margin-left: 36px;
}

.footer-icon a img {
    position: absolute;
    left: 0px;
}

.footer-info p {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #FFF;
    margin-bottom: 22px;
}

.copyrights {
    font-size: 16px;
    line-height: 120%;
    color: #FFF;
    opacity: 0.5;
}

.modal-close {
    position: absolute;
    right: 10px;
    top: 13px;
    background-color: transparent;
    border: none;
    transform: scale(2);
}

.modal-order {
    padding: 30px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.footer-info a{
    color: #ffffff;
    text-decoration: none;
}

.footer-icon {
    display: flex;
}

.footer-icon a{
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
}


@media screen and (max-width: 1200px) {
    .nav-link {
        padding: 4px 8px !important;
        margin: 0px 8px;
    }

    .info-card {
        padding: 32px 32px;
    }

    .info-card h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .info-card span {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .info-card p {
        font-size: 18px;
        margin-bottom: 48px;
    }

    .info-card small {
        font-size: 14px;
    }

    .block-header {
        margin-bottom: 34px;
    }

    .block-header span {
        margin-bottom: 30px;
    }

    .block-header h2 {
        font-size: 34px;
    }

    p {
        font-size: 16px;
    }

    .sign-up-info p {
        margin-bottom: 36px;
    }

    .service h3 {
        font-size: 30px;
        margin-bottom: 36px;
    }

    .service-number {
        margin-bottom: 32px;
    }

    .service-number::before {
        height: 14px;
    }

    .service-number span {
        font-size: 78px;
        line-height: 74%;
    }

    .fy-button.order {
        margin: 0px;
    }

    .card-order span {
        margin-bottom: 24px;
    }

    input,
    select {
        height: 52px;
        width: 100%;
        padding-left: 24px;
    }

   .sign-card form div {
        width: 100%;
    }

    .footer-info h4,
    .footer-form h4 {
        font-weight: 600;
        font-size: 22px;
    }

    .footer-form h4 {
        margin-bottom: 42px;
    }
}

@media screen and (max-width: 991px) {
    .nav-link {
        padding: 8px 8px !important;
        text-align: center;
    }

    .fy-button {
        margin: 0px auto;
    }

    .main-content h1 {
        font-size: 48px;
        margin-bottom: 36px;
    }

    .main-adress a {
        font-size: 14px;
    }

    .main-adress a img {
        height: 16px;
    }

    .divider {
        margin: 16px 0px;
    }

    .info-card {
        padding: 20px 20px;
    }

    .info-card h3 {
        font-size: 22px;
    }

    .info-card span {
        font-size: 14px;
    }

    .info-card p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .info-card small {
        font-size: 12px;
    }

    .block-header span {
        margin-bottom: 26px;
    }

    .block-header h2 {
        font-size: 24px;
    }

    .block-header span {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .block-header span::before {
        height: 12px;
    }

    p, ul{
        font-size: 14px;
    }

    .service h3 {
        font-size: 28px;
        margin-bottom: 34px;
    }

    .service-number {
        margin-bottom: 28px;
    }

    .service-number::before {
        height: 10px;
    }

    .card-order h2 {
        margin-top: 36px;
    }

    .sign-up-info h2 {
        font-size: 36px;
    }

    input,
    select {
        height: 48px;
        width: 100%;
        padding-left: 24px;
    }

    .card-header {
        background-color: #FFFFFF;
        padding: 0px;
        border: none;
    }

    .card-header button {
        padding: 20px 0px;
        font-size: 20px;
    }

    .card-header button img {
        top: 14px;
    }

    .card-body {
        font-size: 14px;
    }
    
    .footer-form h4 {
        margin-bottom: 36px;
    }

    .footer-info p {
        font-weight: 500;
        font-size: 16px;
        color: #FFF;
        margin-bottom: 72px;
    }
    
    .footer-form {
        margin-bottom: 24px;
    }

    .prev {
        left: -57px;
    }

    .next {
        right: -57px;
    }

    .img-wrap {
        padding: 0px 10px;
        margin-bottom: 20px;
    }
    .info-card.pink h3 {
        width: 45%;
    }

    .section-services .block-header, .section-question .block-header {
        margin-bottom: 32px;
    }

    .section-team, .section-question {
        padding: 64px 0px;
    }

    .section-team {
        padding-bottom: 96px;
    }

    .service {
        padding: 48px 0px;
    }

}

@media screen and (max-width: 850px) {
    .slick-arrow {
        top: auto;
        bottom: -40px;
    }
    .prev {
        left: 0px;
    }
    .next {
        right: 0px;
    }
}

.main-bg {

    margin-top: 72px;
}


@media screen and (max-width: 767px) {
    .main-content h1 {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .main-adress a {

    }

    .main-adress a img {
        height: 14px;
    }

    .main-adress a:first-child {
        margin-bottom: 8px;
    }

    .info-cards {
        padding-bottom: 42px;
    }

    .info-card {
        margin-bottom: 24px;
        display: block;
        height: auto;
    }

    .info-card img {
        object-fit: contain;
        object-position: right;
        z-index: 10;
    }

    .info-card div {
        z-index: 11;
    }

    .section-about {
        padding: 42px 0px;
    }

    .section-services {
        padding-top: 42px;
    }

    .section-about p:last-child {
        margin-bottom: 24px;
    }

    .sign-up-info {
        text-align: center;
    }

    .sign-up-info form {
        display: inline-block;
        text-align: center;
        width: 100%;
    }

    .card-order h2 {
        font-size: 36px;
        margin-bottom: 48px;
    }

    .fy-button.form  {
        margin-bottom: 48px;
        width: 100%;
    }

    .sign-up-info p {
        margin-bottom: 32px;
    }

    .card-header {
        background-color: #FFFFFF;
        padding: 0px;
        border: none;
    }

    .card-header button {
        padding: 20px 0px;
        font-size: 20px;
        padding-right: 36px;
    }

    .card-header button img {
        top: 13px;
    }

    .card-body {
        font-size: 14px;
    }
    
    .footer-info h4,
    .footer-form h4 {
        font-size: 22px;
    }
    .info-card.pink h3 {
        width: 100%;
    }

    .price-info {
        padding: 48px 0;
    }

    .section-about .img-fluid {
        margin-top: 30px;
    }

    .service h3 {
        margin-top: 42px;
    }

    .service-number {
        margin-bottom: 42px;
    }

    .sign-card {
        padding: 64px 0px;
    }

    .section-team {
        padding: 48px 0px 64px;
    }

    .section-team .block-header {
        margin-bottom: 48px;
    }

    .gift-card {
        padding: 48px 0px;
    }

    .section-question {
        padding: 48px 0px;
    }

    footer {
        padding: 64px 0px;
    }
}

@media screen and (max-width: 575px) {
    .main-bg {

        margin-top: 55px;
    }

    .navbar {
        padding: 8px 0px;
    }

    .navbar-collapse ul,
    .navbar-collapse div {
        margin: 8px 0px;
    }

    .info-cards {
        padding: 32px 0px;
    }

    .info-card {
        padding: 16px 16px;
        margin-bottom: 12px;
    }

    .info-card span {
        font-size: 12px;
    }

    .info-card p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .info-card small {
        font-size: 10px;
    }

    .sign-card {
        padding: 72px 0px;
    }

    footer {
        padding: 72px 0px;
        padding-bottom: 34px;
    }

    .slick-arrow {
        top: auto;
        bottom: -40px;
    }
    .prev {
        left: 20px;
    }
    .next {
        right: 20px;
    }

    .card-order div {
        flex-direction: column;
    }

    .card-order div p{
        margin-bottom: 20px;
    }

    .card-order h2{
        text-align: center;
    }

    .section-about {
        padding: 32px 0px;
    }

    .section-about .img-fluid {
        margin-top: 15px;
    }

    .section-services {
        padding-top: 32px;
    }

    .sign-card {
        padding: 62px 0px;
    }
    
}

@media (min-width: 768px){
    .modal-dialog {
        max-width: 800px;
    }
}

.services-list .service:nth-child(2n) {
    background-color: transparent!important;
    color: var(--black);

}
.services-list .service:nth-child(2n) .row{

    flex-direction: row-reverse;
}


:focus {
    border: none!important;
    outline: none!important;
}
.card { border-radius: 0; }
.accordion .card {
    border-bottom: 2px solid var(--black) !important;
}

@media (max-width: 991.98px) {
    .navbar-expand-lg>.container, .navbar-expand-lg>.container-fluid, .navbar-expand-lg>.container-lg, .navbar-expand-lg>.container-md, .navbar-expand-lg>.container-sm, .navbar-expand-lg>.container-xl {
        padding-right: 15px;
          padding-left: 15px;
    }

}


.wpcf7-submit {
    padding: 16px 32px!important;
    border-radius: 0!important;
    background-color: var(--pink)!important;
    border: none!important;
    font-weight: 600!important;
    font-size: 14px!important;
    line-height: 115%!important;
    letter-spacing: 0.1em!important;
    color: var(--black)!important;
    transition: var(--fast)!important;

    text-decoration: none!important;
    outline: none!important;
    cursor: pointer!important;
    height: auto!important;
    width: auto!important;
    text-transform:  uppercase!important;



}
.sent .feedback-form,
.invalid .wpcf7-response-output { display: none!important; }

.wpcf7-not-valid-tip {

    margin-top: -10px;
    margin-bottom: 10px;
   font-size: .8rem;
}

div[role=form] { padding: 0!important; margin: 0!important; }
 button.close {

    width: 25px!important;
}

.wpcf7 form.sent .wpcf7-response-output { margin: 0!important; padding: 1em 2em; }
footer .wpcf7-response-output { color: #fff; }

.modal-content .btn-center { text-align: center; }

.menu-654,
.menu-655 { display: block; position: relative;
    background: #EFEDE8!important;
}
.menu-654 select,
.menu-655 select {
    position: relative;
    z-index: 2;
    cursor: pointer;
    background-color: transparent!important;
}
.menu-654:before,
.menu-655:before { content: ''; position: absolute; width: 20px; height: 20px;
right: 20px; top: 50%; margin-top: -10px;
    background-repeat: no-repeat;
    background-size:  15px;
    background-position: center;
    background-image: url("../img/bottomIcon.svg");
    z-index: 1;
}



.y  { transform: translateY(60px); }
.visible .y {transform:  translateY(0px); }

.x1, .x2, .x3, .x4, .x5, .x6 {
    opacity: 0;    }
.x1 { transition: all ease-out .3s .1s;}
.x2 { transition: all ease-out .3s .3s;}
.x3 { transition: all ease-out .3s .5s;}
.x4 { transition: all ease-out  .3s .7s;}
.x5 { transition: all ease-out .3s .9s;}
.x6 { transition: all ease-out .3s 1.1s;}

.visible .x1, .visible .x2, .visible .x3, .visible .x4, .visible .x5, .visible .x6 {
    opacity: 1;
}

@media (max-width: 575px) {
.price-info .fy-button {
    width: 100%;
    margin-left: 0!important;
    margin-right: 0!important;
    margin-bottom: 20px;
    box-sizing: border-box;
}

    .nav-link::before {

        width: calc(100% - 14px);

    }
}

.nav-item { width: auto; margin: auto!important; }
.main-img-col {}
.main-img-col img {}
.main-text-col { padding: 2rem 15px; z-index: 10; }

.socials { margin: 0; padding: 0; display: flex; margin-bottom: 60px; }
.socials li {  margin-right: 30px; margin-bottom: 20px; }
.socials a { display: block; width: 30px; height: 30px;   font-size: 0;
    background-position: center center; background-size: 30px;
    background-repeat: no-repeat;
}

.socials .insta a { background-image: url("../img/instagram.svg")}
.socials .fb a  { background-image: url("../img/fb.svg")}


@media (max-width: 768px) {
.main-img-col  .img-fluid {

    height: auto;
    min-height: 323px;
    width: 326px;
    max-width: 1000px;
    margin-left: -99px;
}
}






.slick-dots
{
    position: absolute;
    bottom: -45px;

    display: block;

    width: 100%;
    padding: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 40px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

@media (min-width: 768px) {
.sign-card  form div {
    max-width: 360px;
}
}

.up-arrow {
    position: fixed;
    height: 54px;
    width: 54px;
    background-color: #fff;
    padding:   14px;
    border-radius: 32px;
    left: 15px;
    bottom: 15px;
    z-index: 120;
    box-shadow: 0px 0px 16px rgb(32 43 35 / 10%);
    cursor: pointer;
    transition: all var(--fast);
    opacity: 0;
}
.up-arrow.visible {
    opacity: 1;
}