.mainWrapper {
    width: 100%;
    height: auto;
}

/*section 1*/

.introWrapper {
    width: 100%;
    height: 100vh;

    padding: 80px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.introWrapper h1, p, a {
    color: #ffffff;
}

.introWrapper h1 {
    font-size: 64px !important;
    /*font-family: "Quintessential", sans-serif;*/
    font-family: "Petit Formal Script", cursive;
    font-weight: 100 !important;
    font-style: normal;
  
    letter-spacing: 2px;
    line-height: 1;
    text-align: center;
}

.introWrapper p {
    margin: 28px 0;
    text-align: center;
}

.introWrapper a {
    border: 1px solid #ffffff;
    width: max-content;
    padding: 8px 16px;
    background: transparent;
    text-decoration: none;

    text-align: center;

    transition: all .2s ease-in-out;
}

.introWrapper a:hover {
    background: #ffffff;
    color: black;
}

.introWrapper img.introCover {
    object-fit: cover;
    height: 100%;
    width: 100%;
    z-index: -1;

    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    
    filter: brightness(0.4);
}

.introWrapper img.introLogo {
    object-fit: cover;
    height: 100px;
    /*width: 80px;*/
    z-index: 1;

    position: absolute;
    top: 16px;
    /*left: 20px;*/
}

.contactHeader {
    position: absolute;
    top: 35px;
    right: 30px;
}

/*section 2*/

.aboutWrapper {
    width: 100%;
    height: auto;

    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;

    padding: 80px;
}

.aboutPersonInnerImage {
    width: 300px;

    display: flex;
    justify-content: center;
}

.aboutPersonInnerImage img {
    width: 100%;
    border-radius: 50%;
}

.aboutPersonInnerContent {
    width: 500px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.aboutPersonInnerContentP {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aboutPersonInnerContent p {
    color: #2b2b2b;
    line-height: 1.8;
}

/*price section*/

.priceListWrapper {
    width: 100%;
    height: auto;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
    
    padding: 80px;
}

.priceListWrapper h2 {
    color: #393939;
    text-align: center;
    font-size: 28px;
}

.priceListWrapperInner {
    width: 840px;
        
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 28px;
}

.priceInner {
    width: 100%;
        
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.priceInner h3 {
    color: #393939;
    font-weight: 400;
    text-align: center;
    
}

.priceInner div {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.priceInner div p {
    color: #2b2b2b;
    
}

.priceHr {
    height: 1px;
    
    background-color: #DBDBDB;
}

/*section 3*/

.galleryWrapper {
    width: 100%;
    height: auto;
    
    display: flex;
    flex-direction: column;
    gap: 40px;
    
    padding: 80px;
}

.galleryWrapper h2 {
    text-align: center;
    color: #393939;
}

.swiper-slide a {
    width: 100%;
    display: flex;
}

.swiper-slide a img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.swiper {
    height: 220px;
    height: 300px;
}

/*section 4*/

.contactWrapper {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    
    padding: 80px;
}

.contactInfoWrapper {
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contactWrapperInner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contactInfoWrapperLinks {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contactInfoSocial {
    display: flex;
    gap: 28px;
}

.contactInfoSocial a img {
    height: 20px;
}

.contactInfoWrapper h2 {
    font-size: 28px;
    line-height: 1;
    color: #393939;
    /*margin-bottom: 32px;*/
}

.contactInfoWrapper p {
    font-style: normal;
    
    color: #2b2b2b;
}

.contactLink {
    color: inherit;
    transition: all .2s ease-in-out;
}

.contactFormWrapper {
    width: calc(50% - 20px);
}

.contactFormWrapper form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.inputParent {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.inputParent label {
    width: max-content;
    
    line-height: 1;
    color: #262626;
}

.inputParent input {
    padding: 8px 16px;
    background: none;
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
    
    width: 100%;
    outline: none;
}

.inputParent textarea {
    min-height: 150px;
    padding: 8px 16px;
    background: none;
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
    
    outline: none;
    resize: none;
}

.inputParent input:focus,
.inputParent textarea:focus {
    border-color: #D4A373;
}

.contactFormWrapper form button {
    border: 1px solid #D9D9D9;
    /*width: 120px;*/
    outline: none;
    padding: 8px 16px;
    
    background: transparent;
    text-decoration: none;
    text-align: center;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

.contactFormWrapper form button:hover {
    border-color: #D4A373;
    background: #D4A373;
    color: #ffffff;
}

.inputParent p {
    color: #2b2b2b;
    margin-top: 3px;
    margin-left: 5px;
    
    display: none;
}

iframe {
    width: 100%;
    height: 300px;
}

footer {
    width: 100%;
    background: #D4A373;
    padding: 5px;
    text-align: center;
}

footer > span {
    color: #ffffff;
    
}

footer > span > a {
    font-weight: 400;
    text-decoration: none;
}

/*media*/

@media (max-width: 965px) {
    .aboutWrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .aboutPersonInnerContent {
        width: 100%;
    }
    
    .priceListWrapperInner {
        width: 100%;
    }
}

@media (max-width: 868px) {
    .introWrapper {
        padding: 40px;
    }
    
    .aboutWrapper {
        padding: 40px;
    }
    
    .priceListWrapper {
        padding: 40px;
    }
    
    .galleryWrapper {
        padding: 40px;
    }
    
    .contactWrapper {
        padding: 40px;
    }
    
    .contactWrapperInner {
        flex-direction: column;
    }
    
    .contactInfoWrapper,
    .contactFormWrapper {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .introWrapper img.introLogo {
        height: 80px;
    }
    
    .introWrapper h1 {
        font-size: 32px !important;
        line-height: 1.4;
    }

    .introWrapper p {
        
    }

    .aboutPersonInner {
        flex-direction: column;
        align-items: center;
    }

    .aboutPersonInnerContent {
        width: 100%;
    }
    
    .aboutPersonInnerContent > .heading {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .aboutPersonInnerImage {
        width: 100%;
    }
}