:root {
    --gray: #393d40;
    --black: #090d0e;
    --pink: #E1CFCF;
    --rose: #C09DA5;
    --ghost: #D1D5D8;
    --tan: #bcada7;
    --tan50: #bcada788;
    --white: #f8f7f6;
    --script: 'Paperie Creme', cursive;
    --cursive: 'England', cursive;
    --serif: 'Playfair Display', serif;
    --sans: 'Roboto', sans-serif;
    --12: rgba(9, 13, 14, 0.12);
    --25: rgba(9, 13, 14, 0.25);
}

/* navigation */
*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

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

a,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    text-decoration: none;
}

a[href^="tel:"] {
    color: var(--tan);
}

.container {
    max-width: 90rem;
    width: 100%;
    height: auto;
    padding: 0 2rem;
    margin: 0 auto;
}

.aks-navigationbar {
    width: 100%;
    height: auto;
    padding: 1rem 2rem;
    color: var(--black);
    background: var(--white);
    box-shadow: 0 1px 3px var(--12), 0 1px 3px var(--25);
}

.aks-navigationbar .aks_navigation {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}

.aks-navigationbar .aks_navigation .burger {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.aks-navigationbar .aks_navigation .burger-close {
    display: none;
}

.aks-navigationbar .aks_navigation .burger.active .burger-open {
    display: none;
}

.aks-navigationbar .aks_navigation .burger.active .burger-close {
    display: -webkit-box;
    display: flex;
}

.aks-navigationbar .aks_menu {
    width: 100%;
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin-bottom: 0;
}

.aks-navigationbar .aks-nav-item {
    margin: 0.5rem 0;
}

.aks-navigationbar .aks-nav-link {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: inherit;
    color: var(--black);
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.aks-navigationbar .aks-nav-link:hover {
    color: var(--pink);
}

.aks-navigationbar .aks_menu.active {
    width: 100%;
    height: 13rem;
    margin: 1rem 0;
}

.aks-navigationbar .social {
    display: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.aks-navigationbar .social-item {
    font-size: 1.65rem;
    line-height: inherit;
    margin: 0 0.5rem;
    color: var(--black);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.aks-navigationbar .social-item:hover {
    color: var(--pink);
}

/* home hero */
/* home */
.home-intro {
    background-color: var(--white);
    /* height: 1070px; */
}

/* home bg image */
.home-bg {
    width: 100%;
    height: 90vh;
    background: url(../images/salon_chair.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--white);
}

/* home slider box */
.slider {
    left: 120px;
    top: -458px;
    width: 490px;
    height: 680px;
    transform: scale(0.8575) translate(-55.6706px, 27.9184px);
}

.slide1,
.slide2,
.slide3 {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide1 {
    background: url(../images/slider1.jpg)no-repeat center;
    background-size: cover;
    animation: fade 10s infinite;
    -webkit-animation: fade 10s infinite;
}

.slide2 {
    background: url(../images/cape.jpg)no-repeat center;
    background-size: cover;
    animation: fade2 10s infinite;
    -webkit-animation: fade2 10s infinite;
}

.slide3 {
    background: url(../images/salonchairs2.jpg)no-repeat center;
    background-size: cover;
    animation: fade3 10s infinite;
    -webkit-animation: fade3 10s infinite;
}

@keyframes fade {
    0% {
        opacity: 1
    }

    33.333% {
        opacity: 0
    }

    66.666% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fade2 {
    0% {
        opacity: 0
    }

    33.333% {
        opacity: 1
    }

    66.666% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

@keyframes fade3 {
    0% {
        opacity: 0
    }

    33.333% {
        opacity: 0
    }

    66.666% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

/* right side box  */
/* new home slider */
.home_slider {
    width: 100%;
    position: relative;
    top: -29em;
}

.slider-item-holder {
    margin-top: -50px;
    text-align: center
}

.slider-item-holder .slider-wrap {
    width: 400px;
    line-height: 0;
    display: inline-block;
    vertical-align: middle;
    max-width: 720px;
    overflow: hidden
}

.slider-item-holder.slider-thumbnail:nth-child(2n) {
    text-align: left
}

.slider-item-holder.slider-thumbnail .quote-holder {
    width: 467px;
    height: 580px;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    transform: scale(.79) translate(-229.937px, 7.97468px)
}

.slider-item-holder.slider-thumbnail:nth-child(2n+1) .quote-holder {
    margin-left: -95px;
    top: 150px;
    left: 300px;
    background-color: var(--pink);
}

.slider-item-holder.slider-thumbnail:nth-child(2n+1) .quote_cta_btn {
    left: 0;
    margin-left: 90px
}

.slider-item-holder.slider-thumbnail:nth-child(2n) .slider-wrap {
    transform: translateX(100%)
}

.slider-item-holder.slider-thumbnail:nth-child(2n) .quote-holder {
    transform: translateX(-450px);
    text-align: right;
    margin-right: -95px
}

.slider-item-holder.slider-thumbnail:nth-child(2n) .quote_cta_btn {
    left: auto;
    right: 0;
    margin-right: 90px;
    margin-left: auto
}

.slider-item-holder .quote-holder {
    display: inline-block;
    background-color: var(--white);
    padding: 60px 95px 75px;
    max-width: 795px
}

.slider-item-holder .intro_quoted {
    font-size: 16px;
    line-height: 25px
}

/* home box quote */
h3.intro_quote {
    color: var(--black);
    line-height: 1.4;
    font-size: 41px;
    text-align: center;
    font-family: var(--serif);
    font-weight: 400;
    font-style: normal;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-content: center;
    justify-content: center;
}

.quote_cta_btn {
    position: absolute;
    bottom: -25px;
    left: 50%;
    margin-left: -27px;
    margin-bottom: 0 !important
}

.quote_cta_btn a {
    color: var(--white);
    background-color: var(--black);
    width: 54px;
    height: 54px;
    display: block;
    text-align: center
}

.quote_cta_btn a:hover {
    color: var(--pink)
}

.quote_cta_btn a span {
    transition: transform .2s ease;
    vertical-align: -17px
}

.quote_cta_btn a:hover span {
    transform: scale(1.2)
}

/* home_intro */
.home_intro {
    position: relative;
    top: 2em;
}

.big_fancy_wrap {
    position: relative;
    top: -145px;
    z-index: -10;
}

h2.big_fancy {
    color: var(--tan);
    text-transform: none;
    font-size: 250px;
    text-align: center;
    font-family: var(--script);
    font-weight: 400;
    font-style: normal;
    padding: 0;
    line-height: 0;
}

h1.home_intro_title {
    color: var(--black);
    font-size: 2rem;
    text-align: center;
    font-family: var(--serif);
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
}

.home_intro_body_wrap {
    display: flex;
    width: 100%;
    justify-content: center;
}

p.home_intro_body {
    left: 251px;
    top: 432px;
    width: 700px;
    height: 250px;
    text-align: center;
    color: var(--black);
    line-height: 1.8;
    letter-spacing: 0em;
    font-size: 18px;
    font-family: var(--serif);
    font-weight: 400;
    font-style: normal;
    background-color: transparent;
}

/* indulge services home */
@media (min-width:576px) {
    .indulge_container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .indulge_container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .indulge_container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .indulge_container {
        max-width: 1140px
    }
}

@media (min-width:768px) {
    .indulge_services_wrapper {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (min-width:992px) {
    .indulge_services_wrapper {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .indulge_images {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }
}

.indulge_entry {
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    border-radius: .25rem
}

.indulge_service_title {
    margin-bottom: .75rem;
    text-align: left
}

.indulge_container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .indulge_container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .indulge_container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .indulge_container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .indulge_container {
        max-width: 1140px
    }
}

.indulge_row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.indulge_images,
.indulge_services_wrapper {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

.indulge_services_wrapper {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

@media (min-width:768px) {
    .indulge_services_wrapper {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (min-width:992px) {
    .indulge_services_wrapper {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .indulge_images {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }
}

.indulge_service_title {
    padding-bottom: .25rem !important
}

.indulge_main_title {
    padding-bottom: 1rem !important
}

.indulge_services_wrapper {
    padding-top: 1.5rem !important
}

.indulge_services_wrapper {
    margin: auto !important
}

.indulge_text_wrap {
    border-left-style: ridge;
    border-left-width: 60px;
    border-color: var(--tan);
    padding-left: 30px;
}

.indulge_main_entry,
.indulge_main_title,
.indulge_service_entry {
    font-style: normal
}

.indulge_service_entry {
    font-weight: 400;
    text-align: left
}

.indulge_main_entry,
.indulge_main_title,
.indulge_service_entry,
.indulge_service_title {
    word-break: break-word;
    word-wrap: break-word
}

.indulge_main_entry {
    font-weight: 300;
    text-align: left
}

.indulge_entry {
    background-color: transparent;
    border: 0
}

.indulge_service_box {
    width: 100%
}

.indulge_row {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap
}

@media (min-width:992px) {

    .indulge_container,
    .indulge_row>[class*=col] {
        padding-left: 16px;
        padding-right: 16px
    }

    .indulge_row {
        margin-left: -16px;
        margin-right: -16px
    }
}

.indulge_main_title {
    font-family: var(--script);
    color: var(--pink);
    font-size: 6.2rem;
    line-height: 0.9;
    font-weight: 900;
    width: 573px;
    position: relative;
    left: -220px;
    margin-bottom: 40px;
}

.indulge_service_entry {
    font-size: 1.1rem
}

.indulge_main_entry,
.indulge_service_entry {
    font-family: var(--serif);
    line-height: 1.5
}

.indulge_service_title {
    font-size: 2rem
}

.indulge_main_entry {
    font-size: 1.2rem
}



@media (max-width:768px) {
    .indulge_main_title {
        font-size: 2.24rem;
        font-size: calc(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.1*(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20))))
    }

    .indulge_service_entry {
        font-size: .88rem;
        font-size: calc(1.0350000000000001rem + (1.1 - 1.0350000000000001)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.0350000000000001rem + (1.1 - 1.0350000000000001)*((100vw - 20rem)/(48 - 20))))
    }

    .indulge_service_title {
        font-size: 1.6rem;
        font-size: calc(1.35rem + (2 - 1.35)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.35rem + (2 - 1.35)*((100vw - 20rem)/(48 - 20))))
    }

    .indulge_main_entry {
        font-size: .96rem;
        font-size: calc(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20))))
    }
}

.indulge_wrap {
    padding-top: 75px;
    padding-bottom: 75px;
    background-color: var(--white);
    position: relative;
    top: 70px;
}

.indulge_wrap .indulge_main_entry,
.indulge_wrap .indulge_service_entry {
    color: var(--black)
}

.indulge_wrap .indulge_images {
    position: relative
}

.indulge_wrap .indulge_entry {
    display: flex;
    flex-direction: indulge_row;
    max-width: 350px
}

.indulge_wrap .hairbrushes {
    position: absolute;
    top: 0;
    left: 3rem;
    z-index: 1
}

.indulge_wrap .coloring_brushes {
    position: absolute;
    bottom: 0;
    right: 3rem;
    z-index: 2
}

.indulge_wrap img {
    width: 48%;
    border-radius: 10px;
    box-shadow: 0 10px 55px 5px var(--25)
}

@media (max-width:992px) {
    .indulge_wrap .indulge_images {
        height: 500px
    }

    .indulge_wrap .hairbrushes {
        left: 1rem
    }

    .indulge_wrap .coloring_brushes {
        right: 1rem
    }

    .indulge_wrap img {
        width: 50%
    }
}

@media (max-width:576px) {
    .indulge_wrap img {
        width: 60%
    }

    .indulge_wrap .indulge_images {
        height: 300px
    }

    .indulge_wrap .indulge_entry {
        flex-direction: column;
        align-items: center;
        padding: 1rem 0 !important
    }

    .indulge_wrap .indulge_entry:hover {
        box-shadow: none;
        transform: none
    }
}

.indulge_wrap h4 {
    margin: 0;
    padding: 0
}

.indulge_wrap .indulge_service_title {
    color: var(--black);
    font-family: var(--serif);
}

/* home covid policy */
@media (min-width:576px) {
    .covid-policy-container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .covid-policy-container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .covid-policy-container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .covid-policy-container {
        max-width: 1140px
    }
}

@media (min-width:768px) {
    .covid-policy-text-wrapper {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.covid-policy-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .covid-policy-container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .covid-policy-container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .covid-policy-container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .covid-policy-container {
        max-width: 1140px
    }
}

.covid-policy-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.covid-policy-text-wrapper {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

@media (min-width:768px) {
    .covid-policy-text-wrapper {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.covid_policy_title {
    padding-bottom: 2.5rem !important;
    font-style: normal
}

.covid_policy_entry {
    font-style: normal
}

.covid_policy_entry,
.covid_policy_title {
    word-break: break-word;
    word-wrap: break-word
}

.covid_policy_entry {
    font-weight: 500
}

.covid_policy_title {
    font-weight: 700
}

.covid-policy-row {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap
}

@media (min-width:992px) {

    .covid-policy-container,
    .covid-policy-row>[class*=col] {
        padding-left: 16px;
        padding-right: 16px
    }

    .covid-policy-row {
        margin-left: -16px;
        margin-right: -16px
    }
}

.covid_policy_entry,
.covid_policy_title {
    font-family: var(--serif);
    line-height: 1.5
}

.covid_policy_title {
    font-size: 2rem
}

.covid_policy_entry {
    font-size: 1.2rem
}

@media (max-width:768px) {
    .covid_policy_title {
        font-size: 1.6rem;
        font-size: calc(1.35rem + (2 - 1.35)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.35rem + (2 - 1.35)*((100vw - 20rem)/(48 - 20))))
    }

    .covid_policy_entry {
        font-size: .96rem;
        font-size: calc(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20))))
    }
}

.covid-policy-wrapper {
    padding-top: 45px;
    padding-bottom: 45px;
    background-color: var(--white);
    position: relative;
    top: 80px;
}

.covid-policy-wrapper .covid_policy_entry {
    line-height: 1.5;
    color: var(--black);
    text-align: left;
}

.covid-policy-wrapper .covid_policy_title {
    text-align: center;
    color: var(--black)
}

.covid-policy-wrapper img {
    width: 100%;
    padding-bottom: 1.5rem;
    margin-bottom: 60px;
}

.covid_policy_list {
    margin: 30px 0;
    padding-left: 80px;
}

.covid_policy_list li {
    list-style: disc inside;
    color: var(--gray);

}

.covid_color {
    color: var(--tan);
}




.covid_policy_number {
    margin: 30px 0;
    text-align: center;
    color: var(--pink);
    font-weight: 800;
    font-size: 25px;
}

/* about hero */
/* .about_hero_text,
.about_hero_title {
    padding-bottom: .5rem !important
}

.about_hero_text {
    text-align: right
}


@media (min-width:768px) {
    .about_hero_container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .about_hero_container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .about_hero_container {
        max-width: 1140px
    }
}

@media (min-width:768px) {
    .about_hero_text_wrapper {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (min-width:992px) {
    .about_hero_text_wrapper {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }
}

.about_hero_container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .about_hero_container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .about_hero_container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .about_hero_container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .about_hero_container {
        max-width: 1140px
    }
}

.about_hero_row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.about_hero_text_wrapper {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

@media (min-width:768px) {
    .about_hero_text_wrapper {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (min-width:992px) {
    .about_hero_text_wrapper {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }
}

.about_hero_text,
.about_hero_title {
    font-style: normal
}

.about_hero_text,
.about_hero_title {
    word-break: break-word;
    word-wrap: break-word
}

.about_hero_text {
    font-weight: 400
}

.about_hero_text_wrapper {
    color: var(--white)
}

.about_hero_title {
    font-weight: 700
}

.about_hero_wrapper .about_hero_overlay {
    min-height: 100vh
}

.about_hero_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100vh;
    padding-top: 3rem;
    padding-bottom: 3rem
}

.about_hero_row {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap
}

@media (min-width:992px) {
    .about_hero_container {
        padding-left: 16px;
        padding-right: 16px
    }

    .about_hero_row {
        margin-left: -16px;
        margin-right: -16px
    }
}

.about_hero_title {
    font-family: var(--serif);
    font-size: 3.2rem;
    line-height: 1.1
}

.about_hero_text {
    font-family: var(--sans);
    font-size: 1.1rem;
    line-height: 1.5
}

@media (max-width:992px) {
    .about_hero_title {
        font-size: 2.56rem
    }
}

@media (max-width:768px) {
    .about_hero_title {
        font-size: 2.24rem;
        font-size: calc(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.1*(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20))))
    }

    .about_hero_text {
        font-size: .88rem;
        font-size: calc(1.0350000000000001rem + (1.1 - 1.0350000000000001)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.0350000000000001rem + (1.1 - 1.0350000000000001)*((100vw - 20rem)/(48 - 20))))
    }
}

.about_hero_wrapper {
    background-image: url(../images/about-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

.about_hero_wrapper::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gray);
    opacity: .6;
    z-index: -1;
}

.about_hero_wrapper .about_hero_text_group {
    position: relative;
    border-top: 3px solid var(--white);
    border-right: 3px solid var(--white);
    border-left: 3px solid var(--white);
    padding: 2.5rem
}

.about_hero_wrapper .about_hero_text_group:before {
    content: "";
    background: var(--white);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 3px;
    right: 0
}


@media (max-width:767px) {
    .about_hero_wrapper .about_hero_text_group {
        padding: 1rem 1.5rem
    }
} */

/* about intro */
/*
@media (min-width:576px) {
    .about_intro_container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .about_intro_container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .about_intro_container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .about_intro_container {
        max-width: 1140px
    }
}

@media (min-width:768px) {
    .about_intro_text {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .about_intro_title_wrapper {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (min-width:992px) {
    .about_intro_title_wrapper {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }
}

.about_intro_container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .about_intro_container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .about_intro_container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .about_intro_container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .about_intro_container {
        max-width: 1140px
    }
}

.about_intro_row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.about_intro_text,
.about_intro_title_wrapper {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

.about_intro_text {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

@media (min-width:768px) {
    .about_intro_text {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .about_intro_title_wrapper {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (min-width:992px) {
    .about_intro_title_wrapper {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }
}

.about_intro_row {
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.about_intro_text {
    font-style: normal
}

.about_intro_row {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -webkit-justify-content: center
}

@media (min-width:992px) {

    .about_intro_container {
        padding-left: 16px;
        padding-right: 16px
    }

    .about_intro_row {
        margin-left: -16px;
        margin-right: -16px
    }
}

.about_intro_title {
    font-family: var(--cursive);
    font-size: 10.3rem;
    line-height: 1.1;
    position: relative;
    left: -160px;
    bottom: 40px;
    width: 455px;
}


.about_intro_text {
    font-family: var(--sans);
    font-size: 1.2rem;
    line-height: 1.5
}

@media (max-width:768px) {
    .about_intro_text {
        font-size: .96rem;
        font-size: calc(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20))))
    }
}

.about_intro_wrapper {
    padding: 10rem 0;
    background-color: var(--white)
} */

/* about confidence */
.confidence_container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

.confidence_row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.confidence_intro_title {
    font-family: var(--cursive);
    font-size: 10.3rem;
    line-height: 1.1;
    position: relative;
    left: -350px;
    bottom: 40px;
    width: 700px;
    font-weight: 600;
}

.confidence_intro_title2 {
    font-family: var(--cursive);
    font-size: 10.3rem;
    line-height: 1.1;
    position: relative;
    left: 100px;
    bottom: 40px;
    width: 700px;
    font-weight: 600;
    z-index: 999;
}

.confidence_text_area,
.confidence_img_area {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

.confidence_img_area2 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.confidence_text_area {
    -ms-flex-item-align: center !important;
    align-self: center !important
}

.confidence_text_area {
    padding-top: .5rem !important
}

.confidence_title {
    padding-bottom: 1rem !important
}

.confidence_title {
    font-style: normal;
    text-align: center;
    font-weight: 400
}

.confidence_title,
.confidence_text {
    word-break: break-word;
    word-wrap: break-word
}

.confidence_text_area {
    color: var(--black)
}

.confidence_text {
    font-weight: 300;
    text-align: center
}

.confidence_row {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap
}

.confidence_title {
    font-family: var(--serif);
    font-size: 3.2rem;
    line-height: 1.1
}

.confidence_text {
    font-family: var(--sans);
    line-height: 1.5;
    font-size: 1.2rem
}

.confidence_wrapper .confidence_img_wrap img {
    width: 100%;
    border-radius: .25rem
}

.confidence_wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
    background: var(--tan)
}

.confidence_wrapper2 {
    background: var(--tan50);
}

.confidence_wrapper .confidence_text_wrap {
    background-color: var(--white);
    padding: 2rem;
    margin: 0;
    border-radius: .25rem;
    -webkit-box-shadow: 0 0 30px rgba(115, 128, 157, .1);
    box-shadow: 0 0 30px rgba(115, 128, 157, .1)
}

.confidence_wrapper .confidence_text_wrap2 {
    background-color: var(--white);
    padding: 2rem;
    margin: 0;
    border-radius: .25rem;
    -webkit-box-shadow: 0 0 30px rgba(115, 128, 157, .1);
    box-shadow: 0 0 30px rgba(115, 128, 157, .1)
}

    /* unvisited link */
.link_igcindy:link {
  color:#C09DA5;
}

/* visited link */
.link_igcindy:visited {
  color: #C09DA5;
}

/* mouse over link */
.link_igcindy:hover {
  color: #a17d85;
}

/* selected link */
.link_igcindy:active {
  color: #C09DA5;
}

.confidence_wrapper .confidence_text {
    color: var(--gray)
}

.confidence_quote_area {
    width: 100%;
    padding: 30px;
}

.confidence_quote_title q {
    font-family: var(--script);
    font-size: 5.5rem;
    font-weight: 400;
    line-height: 1.1;
    position: relative;
    top: 30px;
    letter-spacing: 2.5px;
}

/* .confidence_quote_title q:before,
.confidence_quote_title q:after{
    font-size: 34px;
    font-family:var(--serif);
} */

.confidence_quote_text {
    font-family: var(--sans);
    font-size: 1.1rem;
    line-height: 1.5;
    position: relative;
    top: 50px;
    float: right;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 160px;
    border-radius: 15px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    z-index: 9999;
    /* left: 160px; */
    -webkit-box-shadow: 2px 12px 19px -7px rgba(110, 110, 110, 0.74);
    box-shadow: 2px 12px 19px -7px rgba(110, 110, 110, 0.74);
}

.dropdown-content a {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* .dropdown-content a:hover {
    background-color: #f1f1f1;
    border-radius: 15px;
} */

.navbar ul li {
    display: block;
    color: #000000;
    padding: 0px;
    text-decoration: none;
    text-align: left;
    padding-left: 5px;
}

.navbar ul li:hover .dropdown-content {
    display: block;
}

/* about inspiration */
@media (min-width:576px) {
    .inspiration_container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .inspiration_container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .inspiration_container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .inspiration_container {
        max-width: 1140px
    }
}

@media (min-width:768px) {
    .inspiration_image_wrap {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (min-width:992px) {
    .inspiration_text_area {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .inspiration_image_wrap {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }
}

.inspiration_container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .inspiration_container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .inspiration_container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .inspiration_container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .inspiration_container {
        max-width: 1140px
    }
}

.inspiration_row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.inspiration_text_area,
.inspiration_image_wrap {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

@media (min-width:768px) {
    .inspiration_image_wrap {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (min-width:992px) {
    .inspiration_text_area {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .inspiration_image_wrap {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }
}

.inspiration_text_area {
    -ms-flex-item-align: center !important;
    align-self: center !important;
    padding-top: .5rem !important
}

.inspiration_title {
    padding-bottom: 1rem !important
}

span.inspiration_create {
    font-family: var(--script);
    color: var(--pink);
    font-size: 7.2rem;

}

.inspiration_image_wrap {
    padding-bottom: 1.5rem !important
}

@media (min-width:992px) {
    .inspiration_image_wrap {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }
}

.inspiration_title {
    font-style: normal;
    font-weight: 400;
    text-align: center;
}

.inspiration_title,
.inspiration_text {
    word-break: break-word;
    word-wrap: break-word
}

.inspiration_text_area {
    color: var(--black)
}

.inspiration_text {
    font-weight: 300
}

.inspiration_row {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap
}

@media (min-width:992px) {

    .inspiration_container {
        padding-left: 16px;
        padding-right: 16px
    }

    .inspiration_row {
        margin-left: -16px;
        margin-right: -16px
    }
}

.inspiration_title {
    font-family: var(--serif);
    font-size: 3.2rem;
    line-height: 1.1
}

.inspiration_text {
    font-family: var(--sans);
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: center;
}

@media (max-width:992px) {
    .inspiration_title {
        font-size: 2.56rem
    }
}

@media (max-width:768px) {
    .inspiration_title {
        font-size: 2.24rem;
        font-size: calc(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.1*(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20))))
    }

    .inspiration_text {
        font-size: .96rem;
        font-size: calc(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20))))
    }
}

.inspiration_wrapper {
    padding-top: 135px;
    padding-bottom: 135px;
    background: linear-gradient(90deg, var(--white), var(--white))
}

.inspiration_wrapper .inspiration_text_wrap {
    background-color: var(--white);
    padding: 2rem;
    margin: 0;
    border-radius: .25rem;
    -webkit-box-shadow: 0 0 30px rgba(115, 128, 157, .1);
    box-shadow: 0 0 30px rgba(115, 128, 157, .1)
}

@media (min-width:992px) {
    .inspiration_wrapper .inspiration_text_wrap {
        width: calc(100% + 10rem);
        margin-left: -10rem
    }
}

.inspiration_wrapper .inspiration_image img {
    width: 100%;
    border-radius: .25rem
}

.inspiration_wrapper .inspiration_text {
    color: var(--gray)
}

/* services intro */
@keyframes line {

    0%,
    to {
        transform: translateY(4px)
    }

    50% {
        transform: translateY(-4px)
    }
}

@media (min-width:576px) {
    .service_intro_container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .service_intro_container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .service_intro_container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .service_intro_container {
        max-width: 1140px
    }
}

@media (min-width:768px) {
    .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (min-width:992px) {
    .col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
}

.service_images_area {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px)
}

.service_intro_container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .service_intro_container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .service_intro_container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .service_intro_container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .service_intro_container {
        max-width: 1140px
    }
}

.service_intro_row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.col-lg-6,
.col-md-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

@media (min-width:768px) {
    .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (min-width:992px) {
    .col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
}

.py-5 {
    padding-top: 3rem !important
}

.py-5 {
    padding-bottom: 3rem !important
}

.service_intro_title {
    font-style: normal;
    line-height: 1.3
}

.service_intro_text {
    font-style: normal;
    line-height: 1.7;
    padding-bottom: 1rem !important;
    text-align: left
}

.service_intro_title,
.service_intro_text {
    word-break: break-word;
    word-wrap: break-word;
    font-weight: 400
}

.service_intro_text {
    font-weight: 300
}

.service_images_area img {
    width: 100%
}

.service_images_area {
    text-align: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-flex-shrink: 0
}

.service_intro_title {
    font-weight: 400;
    padding-bottom: 1rem !important;
    text-align: left;
}

.service_intro_row {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap
}

.service_images_area {
    width: auto
}

@media (min-width:992px) {

    .service_intro_container,
    .service_intro_row>[class*=col] {
        padding-left: 16px;
        padding-right: 16px
    }

    .service_intro_row {
        margin-left: -16px;
        margin-right: -16px
    }
}

.service_intro_title {
    font-family: var(--script);
    font-size: 7.2rem;
    line-height: 1.1
}

.service_intro_text {
    font-family: var(--sans);
    line-height: 1.5
}

.service_intro_text {
    font-size: 2rem
}

@media (max-width:992px) {
    .service_intro_title {
        font-size: 2.56rem
    }
}

@media (max-width:768px) {
    .service_intro_title {
        font-size: 2.24rem;
        font-size: calc(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.1*(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20))))
    }

    .service_intro_text {
        font-size: 1.6rem;
        font-size: calc(1.35rem + (2 - 1.35)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.35rem + (2 - 1.35)*((100vw - 20rem)/(48 - 20))))
    }
}

.service_intro_wrapper {
    padding-top: 150px;
    padding-bottom: 150px;
    background-color: var(--white);
    overflow: hidden
}

.service_intro_wrapper .service_intro_text {
    color: var(--gray)
}

.service_intro_wrapper .service_intro_left_img {
    box-shadow: 0 10px 55px 5px rgba(162, 162, 162, .35);
    border-radius: 10px
}

.service_intro_wrapper .service_images_area {
    position: relative
}

.service_intro_wrapper .service_images_area {
    width: 100%
}

.service_intro_wrapper .service_intro_right_img_wrapper,
.service_intro_wrapper .service_intro_left_img_wrapper {
    display: inline-block;
    width: 50%
}

.service_intro_wrapper .service_intro_left_img_wrapper {
    float: left
}

.service_intro_wrapper .service_intro_left_img_wrapper .service_intro_right_img {
    width: 120%
}

.service_intro_wrapper .service_intro_right_img_wrapper {
    float: right
}

.service_intro_wrapper .service_intro_right_img_wrapper .service_intro_left_img {
    width: 180%;
    transform: translateX(-45%)
}

.service_intro_wrapper .service_intro_right_img {
    box-shadow: 0 10px 55px 5px rgba(162, 162, 162, .35);
    margin-top: 4rem;
    object-fit: cover;
    position: relative;
    border-radius: 10px;
}

/* services offered */
@media (min-width:576px) {
    .aks-services-container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .aks-services-container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .aks-services-container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .aks-services-container {
        max-width: 1140px
    }
}

@media (min-width:768px) {
    .aks-services-col {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
}

.aks-services-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .aks-services-container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .aks-services-container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .aks-services-container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .aks-services-container {
        max-width: 1140px
    }
}

.aks-services-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}


.aks-services-col {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

@media (min-width:768px) {
    .aks-services-col {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
}

.aks-services-box-price,
.aks-services-item-title {
    word-break: break-word;
    word-wrap: break-word;
    font-weight: 400
}

.aks-services-row {
    padding-top: 3rem !important
}

.aks-services-main-title {
    font-style: normal;
    line-height: 1.3;
    word-break: break-word;
    word-wrap: break-word;
    font-weight: 400;
    font-family: var(--serif);
    font-size: 3.2rem;
    color: var(--black);
    text-align: center
}

@media (max-width:992px) {
    .aks-services-main-title {
        font-size: 2.56rem
    }
}

@media (max-width:768px) {
    .aks-services-main-title {
        font-size: 2.24rem;
        font-size: calc(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.1*(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20))))
    }
}

.aks-services-main-text {
    text-align: center;
    word-break: break-word;
    word-wrap: break-word;
    font-weight: 400;
    width: 100%;
    font-family: var(--sans);
    line-height: 1.5;
    font-size: 1.2rem;
    color: var(--black)
}

@media (max-width:768px) {
    .aks-services-main-text {
        font-size: .96rem;
        font-size: calc(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20))))
    }
}

.aks-services-row {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap
}

@media (min-width:992px) {

    .aks-services-container,
    .aks-services-row>[class*=col] {
        padding-left: 16px;
        padding-right: 16px
    }

    .aks-services-row {
        margin-left: -16px;
        margin-right: -16px
    }
}

.aks-services .aks-services-box .aks-services-box-text,
.aks-services-box-price,
.aks-services-item-title {
    font-family: var(--sans);
    line-height: 1.5
}

.aks-services-item-title {
    font-size: 2rem
}

.aks-services-box-price {
    font-size: 1.2rem;
    color: var(--black)
}

@media (max-width:768px) {

    .aks-services-item-title {
        font-size: 1.6rem;
        font-size: calc(1.35rem + (2 - 1.35)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.35rem + (2 - 1.35)*((100vw - 20rem)/(48 - 20))))
    }

    .aks-services-box-price {
        font-size: .96rem;
        font-size: calc(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20))))
    }
}

.aks-services {
    padding-top: 45px;
    padding-bottom: 45px;
    background-color: var(--white)
}

.aks-services .aks-services-item {
    padding: 0 1rem 1rem
}

.aks-services .aks-services-box {
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

.aks-services .aks-services-box .aks-services-box-text {
    word-break: break-word;
    word-wrap: break-word;
    font-weight: 400;
    padding-right: 2rem;
    width: 100%;
    font-size: 1.2rem;
    color: var(--black)
}

.aks-services-box-text a {
    color: var(--pink);
    font-weight: 900;
}

@media (max-width:768px) {
    .aks-services-box-text {
        font-size: .96rem;
        font-size: calc(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20))))
    }
}

.aks-services .aks-services-box .aks-services-box-price {
    -webkit-flex-shrink: 0;
    flex-shrink: 0
}

.aks-services .service_group_wrapper .aks-services-item:last-child {
    margin-bottom: 2rem
}

@media (min-width:768px) {
    .aks-services-item {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.aks-services-item {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

.aks-services .service_group_wrapper {
    margin: 0
}

.aks-services .service_group_title {
    color: var(--pink);
    font-weight: 700;
    text-align: left;
    word-break: break-word;
    word-wrap: break-word;
    font-family: var(--serif);
    font-size: 3.2rem;
    line-height: 1.1
}

@media (max-width:992px) {
    .service_group_title {
        font-size: 2.56rem
    }
}

@media (max-width:768px) {
    .service_group_title {
        font-size: 2.24rem;
        font-size: calc(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.1*(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20))))
    }
}

.aks-services .aks-services-item-title {
    color: var(--black)
}

.button {
    font-size: 1em;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

.button:hover {
    background: var(--gray);
}

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--12);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 100;
}

.overlay:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    margin: auto auto;
    padding: 20px;
    background: var(--white);
    border-radius: 5px;
    width: 60%;
    position: relative;
    transition: all 5s ease-in-out;
    height: 100%;
}

.popup h2 {
    margin-top: 0;
    color: var(--gray);
    font-family: Tahoma, Arial, sans-serif;
}

.popup .close {
    position: absolute;
    top: 0px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: var(--gray);
}

.popup .close:hover {
    color: var(--pink);
}

.popup .content {
    max-height: 30%;
    overflow: auto;
}

@media screen and (max-width: 700px) {
    .popup {
        width: 70%;
    }
}


/* services payment accepted */
.aks-accepted-payment-inline {
    padding-left: 0;
    list-style: none
}

.aks-accepted-payment {
    display: inline-block
}

.aks-accepted-payment:not(:last-child) {
    margin-right: .5rem
}

@media (min-width:576px) {
    .aks-payment-container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .aks-payment-container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .aks-payment-container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .aks-payment-container {
        max-width: 1140px
    }
}

@media (min-width:768px) {
    .aks-payment-entry {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.aks-payment-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .aks-payment-container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .aks-payment-container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .aks-payment-container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .aks-payment-container {
        max-width: 1140px
    }
}

.aks-payment-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.aks-payment-entry {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

@media (min-width:768px) {
    .aks-payment-entry {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.aks-payment-row {
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.aks-payment-entry {
    padding-top: 1.5rem !important
}

.aks-payment-title {
    font-style: normal;
    word-break: break-word;
    word-wrap: break-word;
    font-weight: 400;
    text-align: center
}

.aks-payment-row {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -webkit-justify-content: center
}

@media (min-width:992px) {

    .aks-payment-container,
    .aks-payment-row>[class*=col] {
        padding-left: 16px;
        padding-right: 16px
    }

    .aks-payment-row {
        margin-left: -16px;
        margin-right: -16px
    }
}

.aks-payment-title {
    font-family: var(--sans);
    line-height: 1.5;
    font-size: 1.2rem
}

@media (max-width:768px) {
    .aks-payment-title {
        font-size: .96rem;
        font-size: calc(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20))))
    }
}

.aks-payment-wrapper {
    padding-bottom: 90px;
}

.aks-payment-wrapper ul.aks-accepted-payment-inline {
    margin: 0;
    -webkit-align-self: center;
    align-self: center
}

.aks-payment-wrapper ul.aks-accepted-payment-inline li {
    margin: 0;
    padding: .5rem
}

.aks-payment-wrapper ul.aks-accepted-payment-inline img {
    max-width: 6rem;
    padding-bottom: .5rem
}

.aks-payment-wrapper ul.aks-accepted-payment-inline img:hover {
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    -o-filter: none;
    filter: none
}

@media (max-width:767px) {
    .aks-payment-wrapper .aks-accepted-payment img {
        max-width: 5rem
    }
}

/* services cta */

@media (min-width:576px) {
    .service-cta-container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .service-cta-container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .service-cta-container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .service-cta-container {
        max-width: 1140px
    }
}

@media (min-width:992px) {
    .service-cta-text-wrap {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }
}

.service-cta-btn {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    border-radius: .25rem
}

@media (prefers-reduced-motion:reduce) {
    .service-cta-btn {
        transition: none
    }
}

.service-cta-btn:hover {
    text-decoration: none
}

.service-cta-btn:hover {
    color: var(--black);
    background-color: #e0a800;
    border-color: #d39e00
}

.service-cta-text-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    border: 1px solid var(--25);
    border-radius: .25rem
}

.service-cta-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .service-cta-container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .service-cta-container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .service-cta-container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .service-cta-container {
        max-width: 1140px
    }
}

.service-cta-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.service-cta-text-wrap {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

@media (min-width:992px) {
    .service-cta-text-wrap {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }
}

.service-cta-row {
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.service-cta-btn-wrap {
    margin-top: 1rem !important
}

.service-cta-entry {
    font-style: normal;
    margin-bottom: 2rem !important
}

.service-cta-title {
    word-break: break-word;
    font-weight: 400
}

.service-cta-btn,
.service-cta-entry,
.service-cta-title {
    word-wrap: break-word
}

.service-cta-entry {
    word-break: break-word;
    font-weight: 400
}

.service-cta-box {
    text-align: center
}

.service-cta-text-wrap {
    background-color: transparent;
    border: 0
}

.service-cta-box {
    width: 100%
}

.service-cta-btn-wrap {
    margin-left: -.6rem;
    margin-right: -.6rem;
    font-size: 0
}

.service-cta-btn {
    font-weight: 600;
    border-width: 1px;
    font-style: normal;
    margin: .6rem;
    white-space: normal;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    word-break: break-word
}

.service-cta-row {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -webkit-justify-content: center
}

.service-cta-text-group {
    -webkit-flex: 1
}

.service-cta-title {
    margin-bottom: 2rem !important;
    text-align: center
}

@media (min-width:992px) {
    .service-cta-container {
        padding-left: 16px;
        padding-right: 16px
    }

    .service-cta-row {
        margin-left: -16px;
        margin-right: -16px
    }
}

.service-cta-text-group {
    overflow: hidden
}

.service-cta-title {
    font-family: var(--serif);
    font-size: 3.2rem;
    line-height: 1.1
}

.service-cta-btn,
.service-cta-entry {
    font-size: 1.1rem;
    font-family: var(--sans);
    line-height: 1.5
}

.service-cta-entry {
    font-size: 1.2rem
}

@media (max-width:992px) {
    .service-cta-title {
        font-size: 2.56rem
    }
}

@media (max-width:768px) {
    .service-cta-title {
        font-size: 2.24rem;
        font-size: calc(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.1*(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20))))
    }

    .service-cta-btn {
        font-size: .88rem;
        font-size: calc(1.0350000000000001rem + (1.1 - 1.0350000000000001)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.0350000000000001rem + (1.1 - 1.0350000000000001)*((100vw - 20rem)/(48 - 20))))
    }

    .service-cta-entry {
        font-size: .96rem;
        font-size: calc(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20))))
    }
}

.service-cta-btn {
    padding: .6rem 1.2rem;
    border-radius: 4px
}

.service-cta-btn,
.service-cta-btn:active {
    background-color: var(--gray) !important;
    border-color: var(--gray) !important;
    color: var(--white) !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .2)
}

.service-cta-btn:focus,
.service-cta-btn:hover {
    color: var(--white) !important;
    background-color: var(--gray) !important;
    border-color: var(--gray) !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2)
}

.service-cta-wrapper {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-image: url(../images/cta_services.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    margin-bottom: 90px;

}

.service-cta-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gray);
    opacity: .6;
    z-index: -1;
}

.service-cta-wrapper .service-cta-btn-wrap {
    color: var(--black)
}

.service-cta-wrapper .service-cta-box,
.service-cta-wrapper .service-cta-entry,
.service-cta-wrapper .service-cta-title {
    color: var(--white)
}

/* bridal intro */
.bridal-intro-title {
    font-weight: 300;
    color: var(--white)
}

@media (min-width:576px) {
    .bridal-intro-container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .bridal-intro-container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .bridal-intro-container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .bridal-intro-container {
        max-width: 1140px
    }
}

@media (min-width:992px) {
    .bridal-intro-col {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }
}

.bridal-intro-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .bridal-intro-container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .bridal-intro-container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .bridal-intro-container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .bridal-intro-container {
        max-width: 1140px
    }
}

.bridal-intro-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.bridal-intro-col,
.bridal-intro-col {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

.bridal-intro-col {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

@media (min-width:992px) {
    .bridal-intro-col {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }
}

.bridal-intro-row {
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.bridal-intro-title {
    margin-bottom: 1rem !important
}

.bridal-intro-title,
.bridal-intro-text {
    font-style: normal;
    line-height: 1.3
}

.bridal-intro-text {
    line-height: 1.7
}

.bridal-intro-text {
    color: var(--white)
}

.bridal-intro-container {
    text-align: center
}

.bridal-intro-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100vh;
    padding-top: 3rem;
    padding-bottom: 3rem
}

.bridal-intro-row {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap
}

.bridal-intro-row {
    -webkit-justify-content: center
}

@media (min-width:992px) {

    .bridal-intro-container,
    .bridal-intro-row>[class*=col] {
        padding-left: 16px;
        padding-right: 16px
    }

    .bridal-intro-row {
        margin-left: -16px;
        margin-right: -16px
    }
}

.bridal-intro-title {
    font-family: var(--serif);
    font-size: 3.2rem;
    line-height: 1.1
}

.bridal-intro-text {
    font-family: var(--sans);
    font-size: 1.2rem;
    line-height: 1.5
}

@media (max-width:992px) {
    .bridal-intro-title {
        font-size: 2.56rem
    }
}

@media (max-width:768px) {
    .bridal-intro-title {
        font-size: 2.24rem;
        font-size: calc(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.1*(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20))))
    }

    .bridal-intro-text {
        font-size: .96rem;
        font-size: calc(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20))))
    }
}

.bridal-intro-wrapper {
    background-image: url(../images/bridal-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

.bridal-intro-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    opacity: .8;
    z-index: -1;
}

.bridal-intro-wrapper .bridal-intro-title,
.bridal-intro-wrapper .bridal-intro-text {
    color: var(--gray)
}

/* bridal tiled gallery */
.bridal_tiled_gallery {
    margin-top: 30px;
}

#bridal_tiled {
    -webkit-columns: 196px 2;
    -moz-columns: 196px 2;
    columns: 196px 2;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin: auto;
    width: 800px;
}

img.bridal_img {
    display: block;
    width: 100%;
}

img.bridal_img+img.bridal_img {
    margin-top: 20px;
}

/* bridal gallery */
.bridal-gallery-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .bridal-gallery-container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .bridal-gallery-container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .bridal-gallery-container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .bridal-gallery-container {
        max-width: 1140px
    }
}

.bridal-gallery-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}


.second-col,
.bridal-slider-col,
.col-md-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

@media (min-width:768px) {

    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .second-col {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .bridal-slider-col {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.carousel {
    position: relative
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden
}

.carousel-inner::after {
    display: block;
    clear: both;
    content: ""
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: -webkit-transform .6s ease-in-out;
    transition: transform .6s ease-in-out;
    transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .carousel-item {
        transition: none
    }
}


.carousel-item.active {
    display: block
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none
}

.carousel-indicators li {
    box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: var(--white);
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease
}

@media (prefers-reduced-motion:reduce) {
    .carousel-indicators li {
        transition: none
    }
}

.carousel-indicators .active {
    opacity: 1
}


.bridal-gallery-row {
    -ms-flex-pack: center !important;
    justify-content: center !important
}



.bridal-gallery-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .bridal-gallery-container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .bridal-gallery-container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .bridal-gallery-container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .bridal-gallery-container {
        max-width: 1140px
    }
}

.bridal-gallery-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}


.second-col,
.bridal-slider-col,
.col-md-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

@media (min-width:768px) {

    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .second-col {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .bridal-slider-col {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.bridal-gallery-row {
    -ms-flex-pack: center !important;
    justify-content: center !important
}



.align-left {
    text-align: left
}

.align-right {
    text-align: right
}

.bridal-slider-img-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start
}

@media (min-width:992px) {
    .bridal-slider-img-wrap {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }
}


.bridal-gallery-row {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap
}

.bridal-gallery-row {
    -webkit-justify-content: center
}

.carousel-controls {
    display: -webkit-flex
}

.carousel-item {
    text-align: center
}

.carousel-item.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}



@media (min-width:992px) {
    .bridal-gallery-container {
        padding-left: 16px;
        padding-right: 16px
    }

    .bridal-gallery-row {
        margin-left: -16px;
        margin-right: -16px
    }

    .bridal-gallery-row>[class*="col"] {
        padding-left: 16px;
        padding-right: 16px
    }
}

.bridal-slider {
    padding: 90px 0;
    background-color: var(--white)
}

.bridal-slider .text-box {
    padding: 1rem
}

.bridal-slider .second-col {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center
}

.bridal-slider .carousel-item {
    -webkit-justify-content: center;
    justify-content: center
}

.bridal-slider .carousel-item .bridal-slider-img-wrap {
    -webkit-flex-grow: 1;
    flex-grow: 1
}

.bridal-slider .carousel-item .bridal-slider-img {
    text-align: center;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 100%;
    width: auto;
    height: 500px
}

.bridal-slider .carousel {
    display: flex;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    width: 100%
}

.bridal-slider .carousel-indicators {
    display: block;
    position: relative;
    margin-top: 1rem;
    margin-right: 0;
    margin-left: 0;
    text-align: center
}

.bridal-slider .carousel-indicators li {
    display: inline-block
}

.bridal-slider .carousel-indicators li {
    max-width: 15%;
    max-height: 120px;
    width: 15%;
    height: 120px;
    border-radius: 0;
    opacity: 1;
    background-size: cover;
    border: none
}

.bridal-slider .carousel-indicators li.active {
    border: 0
}

.bridal-slider .li1,
.bridal-slider .carousel-item:nth-child(1) .bridal-slider-img {
    background-image: url(../images/bridal_1.jpg)
}

.bridal-slider .li2,
.bridal-slider .carousel-item:nth-child(2) .bridal-slider-img {
    background-image: url(../images/bridal_2.jpg)
}

.bridal-slider .li3,
.bridal-slider .carousel-item:nth-child(3) .bridal-slider-img {
    background-image: url(../images/bridal_3.jpg)
}

.bridal-slider .li4,
.bridal-slider .carousel-item:nth-child(4) .bridal-slider-img {
    background-image: url(../images/bridal_4.jpg)
}

.bridal-slider .li5,
.bridal-slider .carousel-item:nth-child(5) .bridal-slider-img {
    background-image: url(../images/bridal_5.jpg)
}

.bridal-slider .li6,
.bridal-slider .carousel-item:nth-child(6) .bridal-slider-img {
    background-image: url(../images/bridal_6.jpg)
}

@media (max-width:992px) {
    .bridal-slider .carousel-indicators li {
        max-width: 30%;
        max-height: 120px;
        width: 30%;
        height: 120px
    }
}

@media (max-width:576px) {
    .bridal-slider .carousel-indicators li {
        max-width: 30%;
        max-height: 80px;
        width: 30%;
        height: 80px
    }
}

/* bridal banner */
.bridal_banner_text {
    font-weight: 300
}

@media (min-width:576px) {
    .bridal_banner_container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .bridal_banner_container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .bridal_banner_container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .bridal_banner_container {
        max-width: 1140px
    }
}

.bridal_banner_container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .bridal_banner_container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .bridal_banner_container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .bridal_banner_container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .bridal_banner_container {
        max-width: 1140px
    }
}

.bridal_banner_text {
    color: var(--white);
    text-align: center
}

@media (min-width:992px) {
    .bridal_banner_container {
        padding-left: 16px;
        padding-right: 16px
    }
}

.bridal_banner_text {
    font-family: var(--serif);
    font-size: 3.2rem;
    line-height: 1.1
}

@media (max-width:992px) {
    .bridal_banner_text {
        font-size: 2.56rem
    }
}

@media (max-width:768px) {
    .bridal_banner_text {
        font-size: 2.24rem;
        font-size: calc(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.1*(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20))))
    }
}

.bridal_banner_wrapper {
    padding: 60px 0;
    margin-bottom: 90px;
}

.bridal_banner_wrapper .bridal_banner_text {
    padding: 2rem 0;
    letter-spacing: .03em
}

.bridal_banner_wrapper .bridal_banner_text_wrap {
    margin: 0 auto;
    position: relative;
    width: 80%;
    background-color: var(--gray);
    padding: 40px;
    border-radius: 50px;
}

.bridal_banner_wrapper .bridal_banner_text_wrap .bridal_banner_text {
    z-index: 3;
    min-height: 10rem
}

@media (max-width:767px) {
    .bridal_banner_wrapper .bridal_banner_text_wrap {
        width: 100% !important
    }
}

/* bridal how it works */
@media (min-width:576px) {
    .brida_how_it_works_container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .brida_how_it_works_container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .brida_how_it_works_container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .brida_how_it_works_container {
        max-width: 1140px
    }
}

@media (min-width:992px) {
    .brida_how_it_works_text_wrap {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .brida_how_it_works_img_wrap {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }
}

.brida_how_it_works_btn {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    border-radius: .25rem
}

@media (prefers-reduced-motion:reduce) {
    .brida_how_it_works_btn {
        transition: none
    }
}

.brida_how_it_works_btn:hover {
    color: var(--black);
    text-decoration: none
}

.brida_how_it_works_btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem var(--pink)
}

.brida_how_it_works_btn:disabled {
    opacity: .65
}

.brida_how_it_works_container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .brida_how_it_works_container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .brida_how_it_works_container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .brida_how_it_works_container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .brida_how_it_works_container {
        max-width: 1140px
    }
}

.brida_how_it_works_row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.brida_how_it_works_img_wrap,
.brida_how_it_works_text_wrap {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

@media (min-width:992px) {
    .brida_how_it_works_text_wrap {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .brida_how_it_works_img_wrap {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }
}

.brida_how_it_works_text_wrap {
    -ms-flex-item-align: center !important;
    align-self: center !important
}

.brida_how_it_works_btn_wrap {
    padding-top: 1rem !important
}

.brida_how_it_works_title {
    padding-bottom: 1rem !important;
    font-style: normal;
    text-align: center;
    word-break: break-word;
    word-wrap: break-word;
    font-weight: 400
}

.brida_how_it_works_btn {
    word-wrap: break-word
}

.brida_how_it_works_text {
    word-break: break-word;
    word-wrap: break-word
}

.brida_how_it_works_text_wrap {
    color: var(--black)
}

.brida_how_it_works_container {
    text-align: left
}

.brida_how_it_works_text {
    font-weight: 300
}

.brida_how_it_works_btn_wrap {
    margin-left: -.6rem;
    margin-right: -.6rem;
    font-size: 0;
    text-align: center
}

.brida_how_it_works_btn {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    border-width: 1px;
    font-style: normal;
    margin: .6rem;
    white-space: normal;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    word-break: break-word;
    font-weight: 600;
    letter-spacing: 0
}

.brida_how_it_works_row {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap
}

@media (min-width:992px) {
    .brida_how_it_works_container {
        padding-left: 16px;
        padding-right: 16px
    }

    .brida_how_it_works_row {
        margin-left: -16px;
        margin-right: -16px
    }
}

.brida_how_it_works_title {
    font-family: var(--serif);
    font-size: 3.2rem;
    line-height: 1.1
}

.brida_how_it_works_btn,
.brida_how_it_works_text {
    font-size: 1.1rem;
    font-family: var(--sans);
    line-height: 1.5
}

.brida_how_it_works_text {
    font-size: 2rem
}

@media (max-width:992px) {
    .brida_how_it_works_title {
        font-size: 2.56rem
    }
}

@media (max-width:768px) {
    .brida_how_it_works_title {
        font-size: 2.24rem;
        font-size: calc(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.1*(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20))))
    }

    .brida_how_it_works_btn {
        font-size: .88rem;
        font-size: calc(1.0350000000000001rem + (1.1 - 1.0350000000000001)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.0350000000000001rem + (1.1 - 1.0350000000000001)*((100vw - 20rem)/(48 - 20))))
    }

    .brida_how_it_works_text {
        font-size: 1.6rem;
        font-size: calc(1.35rem + (2 - 1.35)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.35rem + (2 - 1.35)*((100vw - 20rem)/(48 - 20))))
    }
}

.brida_how_it_works_btn {
    padding: .6rem 1.2rem;
    border-radius: 4px
}

.brida_how_it_works_btn,
.brida_how_it_works_btn:active {
    background-color: var(--black) !important;
    border-color: var(--black) !important;
    color: var(--white) !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .2)
}

.brida_how_it_works_btn:focus,
.brida_how_it_works_btn:hover {
    color: var(--white) !important;
    background-color: var(--black) !important;
    border-color: var(--black) !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2)
}

.brida_how_it_works_btn:disabled {
    color: var(--white) !important;
    background-color: var(--black) !important;
    border-color: var(--black) !important
}

.brida_how_it_works_wrapper {
    padding: 135px 0;
    margin: 90px 0;
    background-image: url(../images/how-it-works-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

.brida_how_it_works_wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--tan);
    opacity: .6;
    z-index: -1;
}

.brida_how_it_works_wrapper .brida_how_it_works_text_area {
    background-color: var(--white);
    padding: 2rem;
    margin: 0;
    border-radius: .25rem;
    -webkit-box-shadow: 0 0 30px rgba(115, 128, 157, .1);
    box-shadow: 0 0 30px rgba(115, 128, 157, .1)
}

@media (min-width:992px) {
    .brida_how_it_works_wrapper .brida_how_it_works_text_area {
        width: calc(100% + 10rem);
        margin-left: -10rem
    }
}

.brida_how_it_works_wrapper .brida_how_it_works_img img {
    width: 100%;
    border-radius: .25rem
}

.brida_how_it_works_wrapper .brida_how_it_works_btn_wrap,
.brida_how_it_works_wrapper .brida_how_it_works_text {
    color: #767676
}

.bridal_new_text {
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.7rem;
    line-height: 1.1;
    margin: 10px
}

/* Booking Hero */
@media (min-width:576px) {
    .booking_hero_container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .booking_hero_container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .booking_hero_container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .booking_hero_container {
        max-width: 1140px
    }
}

@media (min-width:768px) {
    .booking_hero_text_wrap {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media (min-width:992px) {
    .booking_hero_text_wrap {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }
}

.booking_hero_container {
    text-align: center !important;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .booking_hero_container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .booking_hero_container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .booking_hero_container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .booking_hero_container {
        max-width: 1140px
    }
}

.booking_hero_row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.booking_hero_text_wrap {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

@media (min-width:768px) {
    .booking_hero_text_wrap {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media (min-width:992px) {
    .booking_hero_text_wrap {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }
}

.booking_hero_row {
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.booking_hero_title {
    font-style: normal
}

.booking_hero_text {
    font-style: normal;
    text-align: center
}

.booking_hero_title {
    text-align: center
}

.booking_hero_title {
    font-weight: 700
}

.booking_hero_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100vh;
    padding-top: 3rem;
    padding-bottom: 3rem
}

.booking_hero_row {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -webkit-justify-content: center
}

@media (min-width:992px) {
    .booking_hero_container {
        padding-left: 16px;
        padding-right: 16px
    }

    .booking_hero_row {
        margin-left: -16px;
        margin-right: -16px
    }
}

.booking_hero_title {
    font-family: var(--serif);
    font-size: 3.2rem;
    line-height: 1.1
}

.booking_hero_text {
    font-family: var(--sans);
    line-height: 1.5
}

.booking_hero_text {
    font-size: 1.2rem
}

@media (max-width:992px) {
    .booking_hero_title {
        font-size: 2.56rem
    }
}

@media (max-width:768px) {
    .booking_hero_title {
        font-size: 2.24rem;
        font-size: calc(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.1*(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20))))
    }

    .booking_hero_text {
        font-size: .96rem;
        font-size: calc(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20))))
    }
}

.booking_hero_wrapper {
    background-image: url(../images/booking-hero2.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 0;
}

.booking_hero_wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pink);
    opacity: .6;
    z-index: -1;
}

.booking_hero_wrapper .booking_hero_text_area {
    background: rgba(255, 255, 255, .8) 0 0;
    outline: 1px solid rgba(0, 0, 0, .2);
    outline-offset: -15px;
    padding: 65px 50px
}

.booking_hero_wrapper .booking_hero_title {
    color: var(--black)
}

.booking_hero_wrapper .booking_hero_text {
    color: var(--black);
    letter-spacing: 5px;
    font-weight: 100
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .booking_hero_wrapper .booking_hero_text_area {
        outline: 15px solid rgba(255, 255, 255, .8);
        border: 1px solid rgba(0, 0, 0, .2)
    }
}

/* Booking Form */

.appointment_booking_wrapper {
    font-family: var(--serif);
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    padding-top: 90px;
}

#page-wrapper {
    width: 640px;
    background: var(--white);
    padding: 1em;
    margin: 1em auto;
    border-top: 5px solid var(--pink);
    box-shadow: 0 2px 10px var(--12);
}

h1 {
    margin-top: 0;
}

select {
    font-size: 1.2em;
    -webkit-appearance: none;
    appearance: none;
    color: var(--black);
    border: 1px solid var(--tan);
    line-height: 1;
    outline: 0;
    border-radius: 3px;
    padding: 0.5em 0.5em;
    width: 100%;
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/1255/caret--down-15.png");
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-position: right 8px center, right bottom, right bottom, right bottom;
}

label {
    display: block;
    margin-top: 2em;
    margin-bottom: 0.5em;
    color: var(--gray);
}

input {
    width: 100%;
    padding: 0.5em 0.5em;
    font-size: 1.2em;
    border-radius: 3px;
    border: 1px solid var(--tan);
}

textarea {
    width: 100%;
    height: 200px;
    padding: 0.5em 0.5em;
    font-size: 1.2em;
    border-radius: 3px;
    border: 1px solid var(--tan);
}

button {
    display: inline-block;
    border-radius: 3px;
    border: none;
    font-size: 0.9rem;
    padding: 0.5rem 0.8em;
    background: var(--pink);
    border-bottom: 1px solid var(--pink);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    font-weight: bold;
    margin: 0;
    width: 100%;
    text-align: center;
}

button:hover,
button:focus {
    opacity: 0.75;
    cursor: pointer;
}

button:active {
    opacity: 1;
    box-shadow: 0 -3px 10px var(--12) inset;
}

.success {
    padding: 1em;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 0 var(--12);
    color: var(--pink);
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.error {
    padding: 1em;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 0 var(--12);
    color: var(--pink);
    background-color: var(--white);
    border: 1px solid var(--pink);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

/* Booking Policy */
@media (min-width:576px) {
    .booking_policy_container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .booking_policy_container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .booking_policy_container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .booking_policy_container {
        max-width: 1140px
    }
}

@media (min-width:768px) {
    .booking_policy_text_wrap {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (min-width:992px) {
    .booking_policy_text_wrap {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }
}

.booking_policy_container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .booking_policy_container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .booking_policy_container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .booking_policy_container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .booking_policy_container {
        max-width: 1140px
    }
}

.booking_policy_row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.booking_policy_text_wrap {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

@media (min-width:768px) {
    .booking_policy_text_wrap {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (min-width:992px) {
    .booking_policy_text_wrap {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }
}

.booking_policy_row {
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.booking_policy_row {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -webkit-justify-content: center
}

.booking_policy_title {
    margin-bottom: 2rem !important
}

@media (min-width:992px) {
    .booking_policy_container {
        padding-left: 16px;
        padding-right: 16px
    }

    .booking_policy_row {
        margin-left: -16px;
        margin-right: -16px
    }
}

.booking_policy_text,
.booking_policy_title {
    font-family: var(--sans);
    line-height: 1.5
}

.booking_policy_title {
    font-size: 2rem
}

.booking_policy_text {
    font-size: 1.2rem
}

@media (max-width:768px) {
    .booking_policy_title {
        font-size: 1.6rem;
        font-size: calc(1.35rem + (2 - 1.35)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.35rem + (2 - 1.35)*((100vw - 20rem)/(48 - 20))))
    }

    .booking_policy_text {
        font-size: .96rem;
        font-size: calc(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20))))
    }
}

.booking_policy_wrapper {
    padding: 3rem 0;
    background-color: var(--white)
}

.booking_policy_wrapper .booking_policy_text,
.booking_policy_wrapper .booking_policy_title {
    text-align: center
}

/* contact hero */

@media (min-width:576px) {
    .contact_hero_container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .contact_hero_container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .contact_hero_container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .contact_hero_container {
        max-width: 1140px
    }
}

@media (min-width:768px) {
    .contact_hero_col {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media (min-width:992px) {
    .contact_hero_col {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }
}

.contact_hero_container {
    text-align: center !important;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .contact_hero_container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .contact_hero_container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .contact_hero_container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .contact_hero_container {
        max-width: 1140px
    }
}

.contact_hero_row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.contact_hero_col {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

@media (min-width:768px) {
    .contact_hero_col {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media (min-width:992px) {
    .contact_hero_col {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }
}

.contact_hero_row {
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.contact_hero_text,
.contact_hero_title {
    font-style: normal;
    text-align: center
}

.contact_hero_title {
    font-weight: 700
}

.contact_hero_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem
}

.contact_hero_row {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -webkit-justify-content: center
}

@media (min-width:992px) {

    .contact_hero_container,
    .contact_hero_row>[class*=col] {
        padding-left: 16px;
        padding-right: 16px
    }

    .contact_hero_row {
        margin-left: -16px;
        margin-right: -16px
    }
}

.contact_hero_title {
    font-family: var(--serif);
    font-size: 3.2rem;
    line-height: 1.1
}

.contact_hero_text {
    font-family: var(--sans);
    font-size: 1.2rem;
    line-height: 1.5
}

@media (max-width:992px) {
    .contact_hero_title {
        font-size: 2.56rem
    }
}

@media (max-width:768px) {
    .contact_hero_title {
        font-size: 2.24rem;
        font-size: calc(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.1*(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20))))
    }

    .contact_hero_text {
        font-size: .96rem;
        font-size: calc(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20))))
    }
}

.contact_hero_wrapper {
    background-image: url(../images/contact-hero.jpg);
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

.contact_hero_wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gray);
    opacity: .6;
    z-index: -1;
}

.contact_hero_wrapper .contact_hero_text_wrap {
    background: rgba(255, 255, 255, .8) 0 0;
    outline: 1px solid rgba(0, 0, 0, .2);
    outline-offset: -15px;
    padding: 65px 50px
}

.contact_hero_wrapper .contact_hero_title {
    color: var(--black)
}

.contact_hero_wrapper .contact_hero_text {
    color: var(--black);
    letter-spacing: 5px;
    font-weight: 100
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .contact_hero_wrapper .contact_hero_text_wrap {
        outline: 15px solid rgba(255, 255, 255, .8);
        border: 1px solid rgba(0, 0, 0, .2)
    }
}

/* contact area */

@media (min-width:576px) {
    .contact_area_container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .contact_area_container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .contact_area_container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .contact_area_container {
        max-width: 1140px
    }
}

.contact_form_button_wrap {
    position: relative
}

.alert-success,
.contact_form_button_wrap {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

.alert-danger,
.alert-success {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

@media (min-width:576px) {
    .form-container {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (min-width:768px) {
    .form-container {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .contact-form-title-wrap {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (min-width:992px) {
    .form-container {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }
}

.contact-form-entry {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    border-radius: .25rem
}

@media (prefers-reduced-motion:reduce) {
    .contact-form-entry {
        transition: none
    }
}

.contact-form-entry::-ms-expand {
    background-color: transparent;
    border: 0
}

.contact-form-entry:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #495057
}

.contact-form-entry:focus {
    color: #495057;
    background-color: var(--white);
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.contact-form-entry::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.contact-form-entry::-moz-placeholder {
    color: #6c757d;
    opacity: 1
}

.contact-form-entry:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.contact-form-entry::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.contact-form-entry::placeholder {
    color: #6c757d;
    opacity: 1
}

.contact-form-entry:disabled {
    background-color: #e9ecef;
    opacity: 1
}

textarea.contact-form-entry {
    height: auto;
    line-height: 1.5rem !important
}

.contact-form-btn {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    border-radius: .25rem
}

@media (prefers-reduced-motion:reduce) {
    .contact-form-btn {
        transition: none
    }
}

.contact-form-btn:hover {
    text-decoration: none
}

.contact-form-btn:focus {
    outline: 0
}

.contact-form-btn:disabled {
    opacity: .65
}

.contact-form-btn:hover {
    color: var(--white);
    background-color: #218838;
    border-color: #1e7e34
}

.contact-form-btn:focus {
    box-shadow: 0 0 0 .2rem rgba(72, 180, 97, .5)
}

.contact-form-btn:not(:disabled):not(.disabled):active {
    color: var(--white);
    background-color: #1e7e34;
    border-color: #1c7430
}

.contact-form-btn:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 .2rem rgba(72, 180, 97, .5)
}

.alert-danger,
.alert-success {
    border-radius: .25rem;
    border-radius: 0;
    border: 0;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.875rem;
    padding: 1.25rem;
    text-align: center
}

.alert-success {
    color: #155724;
    position: relative
}

.alert-danger {
    color: #721c24
}

.contact_area_container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .contact_area_container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .contact_area_container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .contact_area_container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .contact_area_container {
        max-width: 1140px
    }
}

.form-group-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.alert-danger,
.contact-form-title-wrap,
.contact_area_text_wrapper,
.form-container,
.form_entry,
.form_message {
    position: relative;
    width: 100%;
}

@media (min-width:576px) {
    .form-container {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (min-width:768px) {
    .form-container {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .contact-form-title-wrap {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (min-width:992px) {
    .form-container {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }
}

.contact_main_title {
    padding-top: .5rem !important
}

.contact_title {
    padding-bottom: .5rem !important
}

.contact-form-title {
    padding-bottom: 1rem !important
}

.contact_area_container {
    position: relative;
    word-wrap: break-word
}

.contact-form-title {
    font-style: normal
}

.contact_main_title {
    word-break: break-word;
    font-weight: 400
}

.contact-form-btn,
.contact_main_title {
    word-wrap: break-word
}

.contact-form-title {
    font-weight: 400
}

.contact-form-entry,
.contact-form-title,
.contact_entry_text_wrap,
.contact_title {
    word-break: break-word;
    word-wrap: break-word
}

.contact_entry_text_wrap {
    font-weight: 400
}

.hidden {
    visibility: hidden
}

.contact_title {
    color: var(--gray);
    text-align: left;
    font-weight: 300;
    font-family: var(--sans);
    font-size: 2rem;
    line-height: 1.5
}

@media (max-width:768px) {
    .contact_title {
        font-size: 1.6rem;
        font-size: calc(1.35rem + (2 - 1.35)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.35rem + (2 - 1.35)*((100vw - 20rem)/(48 - 20))))
    }
}

.contact-form-btn {
    font-weight: 600;
    border-width: 1px;
    font-style: normal;
    margin: .6rem;
    white-space: normal;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    word-break: break-word;
    margin: 0
}

.contact-form-btn:hover {
    cursor: pointer
}

[type=submit] {
    -webkit-appearance: none
}

.form-group-row {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap
}

.form_message:focus {
    outline: 0
}

.contact-form-entry {
    background-color: var(--white);
    background-clip: border-box;
    color: var(--black);
    line-height: 1rem !important;
    height: auto;
    padding: .6rem 1.2rem;
    -webkit-transition: border-color .25s ease 0s;
    transition: border-color .25s ease 0s;
    border: 1px solid transparent !important;
    border-radius: 4px;
    -webkit-box-shadow: rgba(0, 0, 0, .07) 0 1px 1px 0, rgba(0, 0, 0, .07) 0 1px 3px 0, rgba(0, 0, 0, .03) 0 0 0 1px;
    box-shadow: rgba(0, 0, 0, .07) 0 1px 1px 0, rgba(0, 0, 0, .07) 0 1px 3px 0, rgba(0, 0, 0, .03) 0 0 0 1px
}

form .form-group-row {
    margin-left: -.6rem;
    margin-right: -.6rem
}

form .contact-form-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: .6rem 1.2rem;
    margin: 0
}

.form_message {
    margin-bottom: 1.2rem
}

.contact-form-entry,
form .contact-form-btn {
    min-height: 48px
}

.contact-form-entry:focus {
    -webkit-box-shadow: none;
    box-shadow: none
}

@media (min-width:992px) {
    .contact_area_container {
        padding-left: 16px;
        padding-right: 16px
    }

    .form-group-row {
        margin-left: -16px;
        margin-right: -16px
    }
}

.contact_main_title {
    color: var(--gray);
    font-family: var(--serif);
    font-size: 3.2rem;
    line-height: 1.1
}

.contact-form-btn {
    font-size: 1.1rem
}

.contact-form-btn,
.contact-form-title,
.contact_entry_text_wrap {
    font-family: var(--sans);
    line-height: 1.5
}

.contact-form-title {
    font-size: 2rem
}

.contact_entry_text_wrap {
    font-size: 1.2rem
}

@media (max-width:992px) {
    .contact_main_title {
        font-size: 2.56rem
    }
}

@media (max-width:768px) {
    .contact_main_title {
        font-size: 2.24rem;
        font-size: calc(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.1*(1.77rem + (3.2 - 1.77)*((100vw - 20rem)/(48 - 20))))
    }

    .contact-form-btn {
        font-size: .88rem;
        font-size: calc(1.0350000000000001rem + (1.1 - 1.0350000000000001)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.0350000000000001rem + (1.1 - 1.0350000000000001)*((100vw - 20rem)/(48 - 20))))
    }

    .contact-form-title {
        font-size: 1.6rem;
        font-size: calc(1.35rem + (2 - 1.35)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.35rem + (2 - 1.35)*((100vw - 20rem)/(48 - 20))))
    }

    .contact-form-entry,
    .contact_entry_text_wrap {
        font-size: .96rem;
        font-size: calc(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20))))
    }
}

.contact-form-btn {
    padding: .6rem 1.2rem;
    border-radius: 4px
}

.contact-form-btn,
.contact-form-btn:active {
    background-color: var(--gray) !important;
    border-color: var(--gray) !important;
    color: var(--white) !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .2)
}

.contact-form-btn:focus,
.contact-form-btn:hover {
    color: var(--white) !important;
    background-color: var(--gray) !important;
    border-color: var(--gray) !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2)
}

.contact-form-btn:disabled {
    color: var(--white) !important;
    background-color: var(--gray) !important;
    border-color: var(--gray) !important
}

.alert-success {
    background-color: #70c770
}

.alert-danger {
    background-color: var(--gray)
}

.contact-form-entry {
    font-family: var(--sans);
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 400
}

.contact-form-entry:focus,
.contact-form-entry:hover {
    box-shadow: rgba(0, 0, 0, .07) 0 1px 1px 0, rgba(0, 0, 0, .07) 0 1px 3px 0, rgba(0, 0, 0, .03) 0 0 0 1px;
    border-color: #6592e6 !important
}

.contact-form-entry:-webkit-input-placeholder {
    font-family: var(--sans);
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 400
}

.contact_text {
    font-style: normal;
    color: var(--gray);
    text-align: left;
    margin: 0 !important;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.5;
    word-break: break-word;
    word-wrap: break-word;
    font-family: var(--sans)
}

.contact_text a {
    color: var(--gray);
}

@media (max-width:768px) {
    .contact_text {
        font-size: .88rem;
        font-size: calc(1.0350000000000001rem + (1.1 - 1.0350000000000001)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.0350000000000001rem + (1.1 - 1.0350000000000001)*((100vw - 20rem)/(48 - 20))))
    }
}

.contact_area_group {
    padding-top: 0;
    background-color: var(--gray);
}

.contact_area_group .google-map {
    height: 40rem;
    position: relative;
    margin-top: 90px;
}

.contact_area_group .google-map iframe {
    height: 100%;
    width: 100%
}

.contact_area_group .contact_area_container {
    margin-top: -10rem;
    background: var(--white);
    -webkit-box-shadow: 0 0 30px rgba(115, 128, 157, .1);
    box-shadow: 0 0 30px rgba(115, 128, 157, .1);
    border-radius: .25rem
}

.contact_area_group .form-container {
    padding: 3rem
}

.contact_area_group .form-group-row {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: stretch;
    align-items: stretch
}

.contact_area_group .content-panel {
    padding: 2rem;
    background-color: var(--pink);
    height: 100%;
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
    overflow: hidden;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column
}

@media (min-width:992px) {

    .contact_area_group .contact_form_button_wrap,
    .contact_area_group .form_entry,
    .contact_area_group .form_message {
        padding-left: .5rem;
        padding-right: .5rem
    }
}

.contact_area_group .contact-form-entry {
    box-shadow: 0 0 30px rgba(115, 128, 157, .1);
    min-height: 40px;
    padding: .5rem 1rem;
    background-color: var(--white);
    border: 1px solid #efefef;
    color: #565656;
    border-radius: .25rem;
    font-size: 1rem;
    line-height: 1.43
}

.contact_area_group .contact-form-entry:focus,
.contact_area_group .contact-form-entry:hover {
    border: 1px solid #e8e8e8;
    background-color: var(--white)
}

.contact_area_group textarea.contact-form-entry {
    min-height: 170px
}

.contact_area_group .form_message {
    margin-bottom: 1rem
}

.contact_area_group input::-webkit-input-placeholder,
.contact_area_group textarea::-webkit-input-placeholder {
    color: #565656
}

.contact_area_group input:-moz-placeholder,
.contact_area_group textarea:-moz-placeholder {
    color: #565656
}

@media (max-width:767px) {
    .contact_area_group .contact_area_container {
        margin-top: 0
    }
}

.contact_area_group .contact_social_list {
    margin-top: auto;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left
}

.contact_area_group .contact_social_list .contact_social_item {
    margin: 15px 3px 0
}

.contact_area_group .contact_social_list a {
    margin: 0;
    opacity: .7;
    -webkit-transition: .2s linear;
    transition: .2s linear;
    color: var(--gray);
}

.contact_area_group .contact_social_list a:hover {
    opacity: 1
}

@media (max-width:767px) {
    .contact_area_group .contact_social_list {
        -webkit-justify-content: center;
        justify-content: center
    }
}

.contact-text_wrap {
    padding-bottom: 1rem !important
}

@media (max-width:767px) {
    .contact-text_wrap {
        margin-bottom: 2rem
    }
}

.contact_main_text {
    padding-top: 1rem !important;
    font-style: normal;
    line-height: 1.7;
    font-weight: 300;
    color: var(--gray);
}

/* .contact_area_text_wrapper {
    text-align: center;
} */
/* @media (min-width:576px) {
    .contact_area_text_wrapper {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
} */

/* @media (min-width:768px) {
    .contact_area_text_wrapper {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
} */

/* @media (min-width:992px) {
    .contact_area_text_wrapper {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }
} */

.form_entry {
    margin-bottom: 1rem
}

.form_entry:focus {
    outline: 0
}

@media (min-width:768px) {
    .form_entry {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (min-width:992px) {
    .form_entry {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media (min-width:768px) {

    .contact_form_button_wrap,
    .form_message {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.form_row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: stretch;
    align-items: stretch
}

@media (min-width:992px) {
    .form_row {
        margin-left: -16px;
        margin-right: -16px
    }
}

@media (max-width:767px) {
    .contact_area_group .form_row {
        -webkit-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
}




/* instagram footer */
.instagram_wrapper {
    /* margin-top: 90px; */
    position: relative;
    width: 100%;
}

.aks-instagram-entry-wrapper {
    max-width: 1200px;
    margin: 0px auto;
}

[data-instagram-feed] {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

[data-instagram-feed] .aks_instagram_entry {
    width: 25%;
}

[data-instagram-feed] .aks_instagram_image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
}

[data-instagram-feed] img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    vertical-align: top;
}

.aks-instagram-follow {
    width: 100%;
    text-align: center;
}

.aks-instagram-follow a {
    font-family: var(--serif);
    color: var(--black);
    font-size: 1.5rem;
    text-decoration: none;
    display: inline-flex;
    width: 100%;
    height: 90px;
    justify-content: center;
    flex-direction: column;
    background-color: var(--white);
    position: relative;

}

.overlay3 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: var(--rose);
}

.instagram_wrapper:hover .overlay3 {
    opacity: 0.2;
}

/* footer */
@media (min-width:576px) {
    .aks_footer_container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .aks_footer_container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .aks_footer_container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .aks_footer_container {
        max-width: 1140px
    }
}

.nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.aks_footer_container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .aks_footer_container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .aks_footer_container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .aks_footer_container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .aks_footer_container {
        max-width: 1140px
    }
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.mb-0 {
    margin-bottom: 0 !important
}

.pb-2 {
    padding-bottom: .5rem !important
}

.aks_footer_container {
    position: relative
}

.aks_footer_container {
    word-wrap: break-word
}

.footer-copyright-text {
    font-style: normal
}

.footer-copyright-text {
    line-height: 1.7
}

.footer-entry {
    word-break: break-word;
    word-wrap: break-word;
    font-weight: 400
}

.align-center {
    text-align: center
}

.align-right {
    text-align: right
}

.footer-link-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start
}

@media (min-width:992px) {
    .footer-link-group {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }
}

.nav,
.row {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap
}

@media (min-width:992px) {

    .aks_footer_container,
    .row>[class*=col] {
        padding-left: 16px;
        padding-right: 16px
    }

    .row {
        margin-left: -16px;
        margin-right: -16px
    }
}

.footer-entry {
    font-family: var(--sans);
    font-size: 1.2rem;
    line-height: 1.5
}

@media (max-width:768px) {
    .footer-entry {
        font-size: .96rem;
        font-size: calc(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20)));
        line-height: calc(1.4*(1.07rem + (1.2 - 1.07)*((100vw - 20rem)/(48 - 20))))
    }
}

.footer-link-text {
    color: var(--white) !important
}

a.footer-link-text:focus,
a.footer-link-text:hover {
    color: var(--pink) !important
}

.aks_footer_wrapper {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: var(--gray);
    width:100%;
}

.aks_footer_wrapper .footer-link-group .footer-menu-aks li {
    padding: 0 1rem 1rem
}

.aks_footer_wrapper .footer-link-group .footer-menu-aks li p {
    margin: 0
}

.aks_footer_wrapper .footer-link-group .social-footer-list a {
    margin: 0;
    color: var(--pink);
    transition: .2s linear
}

.aks_footer_wrapper .footer-link-group .social-footer-list a:hover {
    opacity: 1
}

@media (max-width:767px) {
    .aks_footer_wrapper .footer-link-group .social-footer-list {
        -webkit-justify-content: center;
        justify-content: center
    }
}

.aks_footer_wrapper .footer-link-group .row-copyright p {
    width: 100%
}

@media (max-width:767px) {
    .aks_footer_wrapper .footer-link-group .social-footer-list {
        -webkit-justify-content: center;
        justify-content: center
    }
}

.aks_footer_wrapper .aks_footer_links,
.aks_footer_wrapper .social-footer-row {
    width: 100%;
    justify-content: center
}

.aks_footer_wrapper .footer-link-group {
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.aks_footer_wrapper .footer-link-group .footer-menu-aks {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0
}

.aks_footer_wrapper .footer-link-group .social-footer-list {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end
}

.aks_footer_wrapper .footer-link-group .social-footer-list .soc-item {
    margin: 0 .5rem;
    font-size: 20px;
}

@media (max-width:767px) {
    .aks_footer_wrapper .footer-link-group .social-footer-list {
        -webkit-justify-content: center;
        justify-content: center
    }
}

.aks_footer_wrapper .footer-link-group .row-copyright {
    word-break: break-word;
    width: 100%
}

.aks_footer_wrapper .footer-link-group .footer-copyright-text {
    color: var(--white)
}


.flexTitle{display:flex; justify-content:center; align-items:center; width:100%;}
.flexTitle h1{color:#a31313; margin:0;}
.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000000;
    text-shadow: 0 1px 0 #ffffff;
    opacity: 0.7;
    filter: alpha(opacity=70);
}
.close:hover,.close:focus {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
}

.modal-open {
    overflow: hidden;
}
.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: 200px auto;
}
.modal-content {
    position: relative;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: var(--rose);;
}
.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0);
}
.modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50);
}
.modal-header {
    padding: 15px;
    min-height: 16.42857143px;
}
.modal-header .close {
    margin-top: -2px;
}
.modal-title {
    margin: 0;
    line-height: 1.42857143;
}


.modal-footer {
    padding: 15px;
    text-align: right;
    background-color: #fff;
}
.modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
    margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
    margin-left: 0;
}
.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}
.clickable {
    cursor: pointer;
}
@media (min-width: 768px) {
    .modal-dialog {
    width: 600px;
    margin: 300px auto;
}
 .modal-sm {
    width: 300px;
}
}
@media (min-width: 992px) {
    .modal-lg {
    width: 9000px;
    margin: 500px auto;
}
}
.clearfix:before,.clearfix:after,.modal-footer:before,.modal-footer:after {
    content: " ";
    display: table;
}
.clearfix:after,.modal-footer:after {
    clear: both;
}
.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.pull-right {
    float: right !important;
}
.pull-left {
    float: left !important;
}
.hide {
    display: none !important;
}
.show {
    display: block !important;
}
.invisible {
    visibility: hidden;
}
.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}
.hidden {
    display: none !important;
}
.affix {
    position: fixed;
}
.img-responsive-height {
    display: block;
    width: auto;
    max-height: 100%}
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}
.signCenter {
    text-align: center;
}
.closeSymbol {
    color: #fff;
    font-size: 40px;
    border: 3px solid #fff;
    width: 96px;
    heiht: 96px;
    border-radius: 50%;
    font-weight: 700;
    text-align: center;
    padding: 0 15px;
}
.snapHdr {
    color: #090d0e;
    font-size: 40px;
    margin: 0;
    font-weight: 700;
}
.info {
    margin: 0 0 10px 0;
}
.closeftr {
    background-color: #aa1515;
    color: #fff;
    padding: 5px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}
