.order-wrap{
    height: auto;
    margin: 18rem 0 5rem 0;
}
.order-wrap-inner{
    width: 90%;
    margin: 0 auto;
    display: flex;
    position: relative;
}
.order-contact{
    width: 50%;
}
.order-contact-head h2{
    font-size: 4vw;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #212121;
    margin: 2rem 0;
}
.order-contact-info a{
    font-size: 1.5vw;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-decoration: none;
}
.order-contact-info h4{
    margin: 1rem 0;
    color: #4d4d4d !important;
}

.order-form-wrap{
    width: 50%;
}
.fr-name-lb{
    display: flex;
    align-items: center;
}
.fr-label{
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #212121;
    margin: 0.4rem;
}
.fr-required{
    font-size: 1.4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #484848;
    margin: 0.4rem;
}
.fr-input{
    font-size: 1.3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #212121;
    padding: 1.2rem 0.4rem;
    border-radius: 0;
    border: 1px solid #b8b8b8;
    background: #e3e3e3;
    width: 100%;
}
.fr-input:focus{
    outline: 2px solid #212121;
}
#f-message{
    height: 5rem;
    resize: vertical;
}
#f-date{
    width: 46%;
}
/* #f-pack{
    width: 100%;
} */
.submit-btn{
    align-self: flex-end;
    padding: 2rem;
    border: none;
    border-radius: 0.5rem;
    background: #212121;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    transition: background 0.3s ease;
}
.submit-btn:hover{
    background: #434343;
}

.fr-name{
    display: flex;
    justify-content: space-between;
}
.fr-name-first{
    width: 48%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
.fr-name-last{
    width: 48%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.block-email,
.block-location,
.block-phone,
.block-message,
.block-submit{
    display: flex;
    flex-direction: column;
    margin: 1rem 0;
}

.block-calendar{
    margin: 1rem 0;
}
.block-package{
    margin: 1rem 0;
    display: flex;
    justify-content: space-between;
}
.block-package-inner{
    width: 48%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
/* pricing page */
/*  */
.pricing-wrap{
    /* border: 2px solid red; */
    margin: 18rem 0 5rem 0;
}
.pricing-wrap-inner{
    /* border: 2px solid blue; */
    width: 90%;
    margin: 0 auto;
}
.pricing-heading{
    display: flex;
    justify-content: center;
}
.pricing-heading h2{
    font-size: 2.2vw;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #212121;
    margin: 2rem 0;
}
.packages-wrap{
    /* border: 2px solid green; */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4rem;
}
.deal-wrap{
    border: 1px solid #b8b8b8;
    border-radius: 2rem;
    width: 70%;
    padding: 2rem;
    padding-bottom: 5rem;
    box-sizing: border-box;
    margin: 2rem 0 5rem 0;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    height: max-content;
}
.package-name{
    /* grid-column: span 2; */
    padding: 1rem;
    font-size: 1.5rem;
    text-align: justify;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #182c25;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
}
.package-name h2{
    margin: 0;
}
.deal-desc{
    /* border: 2px solid orange; */
    width: 100%;
    padding: 1rem;
    padding-top: 4rem;
}
.deal-desc p{
    font-size: 1.5rem;
    text-align: justify;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #212121;
    padding: 1rem;
}
.deal-toping{
    /* border: 2px solid fuchsia; */
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.toping-item{
    /* border: 2px solid hotpink; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1rem;
    height: 15rem;
    /* margin-top: 5rem; */
}
.grid-span{
    grid-column: span 3;
}
.toping-item h4{
    font-size: 1.7rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #212121;
    padding: 1rem;
    margin: 0;
    height: 7rem;
    
}
.toping-item h5{
    font-size: 1.5rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #444444;
    margin: 0;
    /* padding: 1rem; */
    height: 0;
    overflow: hidden;
}
.extra-desc{
    box-sizing: border-box;
    transition: height 0.6s ease;
}
.toping-item:hover .extra-desc{
    height: 7rem;
}
.item-price{
    font-size: 2rem !important;
    padding: 0 !important;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #182c25;
}
.topic-icon-wrap{
    width: 5rem;
    height: 5rem;
    /* border: 2px solid firebrick; */
}
.topic-icon-wrap img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.btn-order-pack{
    font-size: 1.3rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #fff;
    padding: 2rem 7.9rem;
    margin: 0 0 0 1rem;
    text-decoration: none;
    background: #46545c9f;
    border-radius: 1rem;
    box-sizing: border-box;
    transition: background 0.3s ease;
}
.btn-order-pack:hover{
    background: #46545c;
}
.btn-order-wrap{
    width: 100%;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.price-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
}
.optional-order{
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

/* Photographers page */
.photo-wrap{
    /* border: 2px solid red; */
    margin: 18rem 0 5rem 0;
}
.photo-wrap-inner{
    /* border: 2px solid blue; */
    width:  75%;
    min-height: 50vw;
    margin: 1rem auto;
}
.photo-head{
    /* border: 2px solid green; */
    width: 100%;
    padding: 3rem 0 5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.photo-head-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.photo-head-inner h2{
    font-size: 3.4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #212121;
    text-align: center;
    margin: 0 0 1rem 0;
}
.photo-head-inner h3{
    font-size: 2.4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #212121;
    text-align: center;
    margin: 0;
}

.photo-content-wrap{
    /* border: 2px solid goldenrod; */
    margin: 0;
}
.photo-item{
    /* border: 2px solid palevioletred; */
    margin: 0;
    
}
.photo-port{
    /* border: 2px solid royalblue; */
    margin: 0 0 2vw 0;
    width: 100%;
    /* padding: 2rem; */
}
.photo-port-inner{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 2px solid lawngreen; */
}

.image-gallery{
    display: grid;
    grid-template-columns: repeat(5, 15vw);
    padding: 0;
    margin: 0 0 5vw 0;
    width: 100%;
}
.image-gallery a {
    margin: 0.5vw;
    list-style: none;
    height: 14vw;
    width: 14vw;
}
.image-gallery a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-box{
    /* background: #43434345; */
    display: flex;
    /* border: 1px solid #212121; */
    padding: 1rem;
    margin: 1rem;
    height: max-content;

}
.photo-box-img,
.photo-box-cont,
.photo-box-slider{
    /* border: 2px solid rebeccapurple; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.width-for-cont{
    margin:  0  0rem 0 2rem !important;
}
.photo-box-img-wrap{
    width: 20rem;
    height: 20rem;
}
.photo-box-img-wrap img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.photo-name-price-wrap{
    /* border: 2px solid firebrick; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.photo-name-price-wrap h3{
    font-size: 2.4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #212121;
    margin: 0 0 1rem 0;
}
.photo-name-price-wrap h5{
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #212121;
    margin: 0 0 1rem 1rem;
}
.photo-location h3{
    font-size: 1.6rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #212121;
    margin: 0 0 1rem 0;
}
.photo-desc p{
    font-size: 1.6rem;
    font-family: serif;
    font-weight: 500;
    color: #212121;
    margin: 0 0 1rem 0;
    text-align: justify;
}
.photo-btn-wrap{
    display: flex;
    justify-content: flex-end;
}
.photo-btn{
    font-size: 1.3rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #fff;
    padding: 1.7rem 7rem;
    margin: 0;
    text-decoration: none;
    background: #46545c9f;
    border-radius: 1rem;
    box-sizing: border-box;
    transition: background 0.3s ease;
}
.photo-btn:hover{
    background: #46545c;
    text-decoration: none;
    color: #fff;
}
.slider-control{
    z-index: 6;
}
.show-photo{
    display: flex !important;
    animation: slideUp 0.7s ease forwards;
}
.hide-photo{
    display: none !important;
}
/* +++++++++++++++++++++++++++++++++++++++++++++ */
/* .wpcf7-response-output{
} */
@keyframes slideUp {
    from {
      transform: translateY(80%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
}
.see-more{
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.see-more::before{
    background: #b9b9b9ca;
    display: block;
    height: 100%;
    content: "";
    position: absolute;
    width: 100%;
    transition: background 0.3s ease;
}
.see-more:hover::before{
    background: #505050b3;
}
.see-more span{
    position: absolute;
    color: #ffffff;
    text-decoration-line: underline;
    text-decoration-color: white;
    text-decoration-thickness: 0.1vw;
    font-size: 1.6vw;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}
.placeholder-photo{
    width: 10vw;
}
@media screen and (min-width:1800px) {
    .order-wrap-inner{
        width: 1700px;
    }
    .pricing-wrap-inner{
        width: 1700px;
    }
    .photo-wrap-inner{
        width: 1300px;
    }
    .image-gallery{
        grid-template-columns: repeat(5, 26rem);
    }
    .image-gallery a{
        flex: 1 0 24.5rem;
        margin: 0.5vw;
        list-style: none;
        height: 24.5rem;
        width: 24.5rem;
    }
}
@media screen and (max-width:1400px){
    .photo-wrap-inner{
        width: 95%;
    }
    .image-gallery{
        grid-template-columns: repeat(4, 23vw);
        width: auto;
    }
    .image-gallery a {
        margin: 0.5vw;
        height: 22vw;
        width: 22vw;
    }    
}
@media screen and (max-width:1300px){
    .deal-wrap{
        width: 100%;
    }
    .image-gallery{
        grid-template-columns: repeat(4, 23vw);
    }
    .image-gallery a {
        flex: 1 0 22vw;
        margin: 0.5vw;
        height: 22vw;
        width: 22vw;
    }
}
@media screen and (max-width:1100px){
    .photo-wrap-inner{
        width: 100%;
    }
    .photo-head-inner h3{
        font-size: 1.8rem;
    }
    .width-for-cont{
        margin: 0 0vw 0 1vw !important;
    }
    .photo-box-img{
        height: max-content;
    }
    .photo-box-img-wrap{
        width: 20vw;
        height: 20vw;
    }
    .photo-name-price-wrap h3{
        font-size: 2.4vw;
    }
    .photo-name-price-wrap h5{
        font-size: 1.8vw;
    }
    .photo-location h3{
        font-size:1.6vw;
    }
    .photo-desc p{
        font-size: 1.6vw;
    }
    .photo-btn{
        padding: 1.6vw 7.3vw;
        font-size: 1.3vw;
    }
    .carousel-item{
        height: 100% !important;
        width: 100% !important;
        /* margin: 0 !important; */
    }
    .carousel-inner{
        width: 100%;
        height: 100%;
    }
    .carousel{
        width: 100%;
        /* height: 100%; */
    }
    .photo-box-slider{
        width: 30vw;
        height: 30vw;
    }
}
@media screen and (max-width:860px){
    .pricing-wrap{
        margin: 13rem 0 5rem 0;
    }
    .pricing-heading h2{
        font-size: 8vw;
    }
    .deal-wrap{
        display: flex;
        flex-direction: column;
        padding-bottom: 2rem;
    .deal-desc{
        padding: 0;
    }
    .btn-order-wrap{
        justify-content: center;
    }
    .deal-toping{
        grid-template-columns: 1fr 1fr;
    }
    .grid-span{
        grid-column: span 1;
    }
    .toping-item{
        /* align-items: flex-start; */
        width: 25vw;
        width: 95%;
        margin: 0rem;
        height: 15rem;
        /* margin: 1rem auto; */
    }
    .btn-order-pack{
        padding: 1.6rem 7.1rem;
    }
    .toping-item h4{
        padding: 0;
        width: 100%;
        height: 7rem;
        margin: 1rem 0 0 0;
    }
    .toping-item h5{
        padding: 0;
        width: 100%;
        font-size: 1.3rem;
    }
    .topic-icon-wrap{
        width: 4rem;
        height: 4rem;
    }
    /* photographers */
    .photo-wrap {
        margin: 15rem 0 5rem 0;
    }
    .photo-btn-wrap{
        justify-content: flex-end;
    }
    .photo-box{
        grid-template-columns: 25vw 1fr;
    }
    .width-for-cont{
        margin: 0 0 0 2rem !important;
    }
    .photo-box-slider{
        display: none;
    }
    .photo-box-cont{
        height: auto;
    }
    .photo-btn-port{
        display: block;
    }
    /* lll */
    /* lll */
    .photo-name-price-wrap h3{
        font-size: 3.2vw;
    }
    .photo-name-price-wrap h5{
        font-size: 2.6vw;
    }
    .photo-location h3{
        font-size:2.4vw;
    }
    .photo-desc p{
        font-size: 2.4vw;
    }
    /* xxx */
    /* xxx */
    .image-gallery a {
        height: 25vw;
    }
}
@media screen and (max-width:800px) {
    .order-wrap-inner{
        flex-direction: column;
    }
    .order-contact{
        width: 100%;
    }
    .order-form-wrap{
        width: 100%;
    }
    .order-contact-head h2{
        font-size: 10vw;
    }
    .order-contact-info a{
        font-size: 4vw;
    }
    .fr-label{
        font-size: 1.4rem;
    }
    .fr-required{
        font-size: 1rem;
    }
}
@media screen and (max-width:600px){
    .order-wrap{
        margin: 10rem 0 5rem 0;
    }
    #f-date{
        width: 40vw;
    }
    #f-pack{
        width: 40vw;
    }
}
@media screen and (max-width:600px){
    .width-for-cont{
        margin: 0!important;
    }
    .photo-box{
        padding: 1rem;
        margin: 1rem 0 0 0;
        flex-direction: column;
    }
    .photo-box-img{
        align-items: center;
        margin: 6vw 0 3vw 0;
    }
    .photo-btn{
        font-size: 4vw;
        padding: 3.5vw 8vw;
    }
    .see-more span{
        font-size: 3.3vw;
    }
    .photo-box-img-wrap{
        width: 30vw;
        height: 30vw;
    }
    .placeholder-photo{
        width: 15vw;
    }
    /* lll */
    .photo-name-price-wrap h3{
        font-size: 4.4vw;
    }
    .photo-name-price-wrap h5{
        font-size: 3.8vw;
    }
    .photo-location h3{
        font-size:3.6vw;
    }
    .photo-desc p{
        font-size: 3.4vw;
    }
    .photo-btn{
        font-size: 2.3vw;
    }
    .photo-btn-wrap{
        justify-content: center;
    }
    .photo-btn-port{
        font-size: 2.3vw;
        margin: 1rem;
    }
    .photo-desc p{
        text-align: center;
        margin: 1rem 0;
    }
    .photo-location h3{
        text-align: center;
        margin: 1rem 0;
    }
    .photo-name-price-wrap{
        display: flex;
        flex-direction: column;
    }
    .photo-name-price-wrap h5{
        margin: 0.5rem 0;
    }
    /* bbb */
    .image-gallery{
        grid-template-columns: repeat(3, 32vw);
        width: auto;
        padding: 0 1rem;
    }
    .image-gallery a {
        margin: 0.5vw;
        height: 31vw;
        width: 31vw;
    } 
    .photo-head h2{
        font-size: 3rem;
    }
    .photo-head h3{
        font-size: 1.6rem;
    }
    .photo-head{
        padding: 2.5rem 4rem;
    }
}