:root{
    --accent-color: #b49657;
}


html, body{
    scroll-behavior: smooth;
}



.mp-section{
    max-width: 1580px;
    margin: 0 auto;
    width: 100%;
}
.mp-title{
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: var(--title-color);
}
.mp-description{
    text-align: center;
    margin: 0;
}



.mp-section-hero{
    background-color: #f4f4f4;
    padding: 100px 0;
    position: relative;
}
.mp-section-hero .mp-background{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.mp-section-hero .mp-background::before{
    content: "";
    background-color: #0e243ced;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.mp-section-hero .mp-background img{
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.mp-section-hero .mp-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 30px;
    z-index: 1;
    max-width: 800px;
    position: relative;
    text-align: center;
}
.mp-section-hero .mp-page-title{
    font-size: 60px;
    display: flex;
    flex-direction: column;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.mp-section-hero .mp-page-title .mp-color{
    color: var(--accent-color);
}
.mp-section-hero .mp-page-subtitle{
    font-weight:600;
    font-size: 20px;
    margin: 0;
    color: #fff;
}
.mp-section-hero .mp-description{
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    margin: 0;
}
.mp-section-hero .mp-button{
    padding: 15px 30px;
    border-radius: 5px;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 16px;
    width: fit-content;
    margin: 0 auto;
    font-weight: 600;
    text-decoration: none;
}
.mp-section-hero .mp-column-image img{
    border-radius: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}




.mp-section-packages{
    padding-top: 60px;
}
.mp-packages{
    display: flex;
    column-gap: 40px;
    margin-top: 60px;
    justify-content: center;
}
.mp-package{
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    background-color: #f4f4f4;
}
.mp-content{
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.mp-package-icon{
    color: var(--accent-color);
    font-size: 30px;
}
.mp-package-title{
    font-size: 25px;
    font-weight: 600;
}
.mp-package-price{
    font-size: 30px;
    font-weight: 600;
    color: var(--accent-color);
}
.mp-package-description{
    line-height: 25px;
}
.mp-package-button{
    text-decoration: none;
    color: var(--accent-color);
    background-color: #fff;
    border: 1px solid var(--accent-color);
    padding: 15px 30px;
    width: calc(100% - 60px);
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s all ease-out;
}
.mp-package-button:hover{
    transform: scale(1.05);
}
.mp-package.mp-featured{
    border: 1px solid var(--accent-color);
}
.mp-package.mp-featured .mp-package-button{
    background-color: var(--accent-color);
    color: #fff;
}
.mp-package-list{
    list-style: none;
    padding: 0;
    margin-top: 30px;
}
.mp-package-list li{
    padding-left: 25px;
    text-align: left;
    position: relative;
}
.mp-package-list li:not(:last-child){
    margin-bottom: 10px;
}
.mp-package-list li:before{
    content: "\f00c";
    color: var(--accent-color);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}



.mp-section-process{
    background-color: #f4f4f4;
    margin-top: 120px;
}
.mp-section-process .mp-title{
    margin-top: 0;
}
.mp-section-process .mp-content{
    padding: 60px 20px;
}
.mp-process{
    margin-top: 60px;
    display: flex;
    column-gap: 60px;
    position: relative;
}
.mp-process::before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: 40px;
    background-color: #e5e5e5;
}
.mp-process .mp-content{
    padding: 0;
}
.mp-step-icon{
    position: relative;
    border-radius: 2000px;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    color: var(--accent-color);
    background-color: #fff;
    border: 1px solid var(--accent-color);
}
.mp-step-number {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-color);
    color: #fff;
    border-radius: 2000px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    transform: translateX(20%) translateY(-20%);
}




.mp-section-for-who{
    padding: 60px 0;
}
.mp-info{
    border-left: 10px solid var(--accent-color);
    width: fit-content;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    background-color: #f4e3be;
    padding: 20px;
}
.mp-info .mp-content{
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
.mp-info .mp-title{
    font-size: 16px;
}
.mp-info .mp-price{
    font-size: 40px;
    color: #a90101;
    font-weight: 600;
}
.mp-section-for-who .mp-columns{
    margin-top: 60px;
    column-gap: 100px;
}
.mp-title-good{
    color: #0ec51c;
}
.mp-title-bad{
    color: #c11717;
}
.mp-list{
    list-style: none;
}
.mp-list li{
    position: relative;
    padding-left: 30px;
}
.mp-list li:not(:last-child){
    margin-bottom: 10px;
}
.mp-list li:before{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}
.mp-list-good li:before{
    content: "\f00c";
    color: #0ec51c;
}
.mp-list-bad li:before{
    content: "\f067";
    transform: translateY(-50%) rotate(-45deg);
    color: #c11717;
}


.mp-section-carousel{
    background-color: #f4f4f4;
    padding: 60px 0;
}


.mp-section-contact{
    padding-top: 40px;
}
.mp-section-contact .mp-description{
    text-align: center;
}
.mp-contact-form-holder{
    display: flex;
    justify-content: center;
}


@media screen and (min-width: 1400px) and (max-width: 1600px){
    .mp-section{
        max-width: 1380px;
    }
}
@media screen and (min-width: 1200px) and (max-width: 1400px){
    .mp-section{
        max-width: 1180px;
    }
    .mp-section-hero .mp-page-title{
        font-size: 40px;
    }
}
@media screen and (min-width: 1000px) and (max-width: 1200px){
    .mp-section{
        max-width: 980px;
    }
}
@media screen and (min-width: 769px) and (max-width: 1000px){
    .mp-section{
        max-width: 720px;
    }
    .mp-section-hero .mp-page-title{
        font-size: 25px;
    }
    .mp-section-hero p{
        font-size: 15px;
    }
}

@media screen and (max-width: 768px){
    .mp-section{
        width: calc(100% - 40px);
        padding: 0 20px;
    }
    .mp-section-packages{
        padding-top: 40px;
    }
    .mp-section-for-who {
        padding: 60px 0;
    }
    .mp-section-hero .mp-page-title{
        font-size: 30px;
    }
    .mp-section-hero p{
        font-size: 14px;
    }
    .mp-section-hero .mp-columns-image-with-text{
        flex-direction: column;
        row-gap: 40px;
    }
    .mp-packages{
        flex-direction: column;
        row-gap: 40px;
    }
    .mp-section-process{
        margin-top: 60px;
    }
    .mp-process{
        flex-direction: column;
        row-gap: 40px;
    }
    .mp-process::before{
        display: none;
    }
    .mp-section-for-who .mp-columns{
        flex-direction: column;
        row-gap: 40px;
    }
    .mp-section-for-who .mp-list{
        padding: 0;
    }
    .mp-contact-form{
        margin: 30px 0 50px 0 !important;
    }
}












