
.price {
    width: 100%;
    margin: 0 auto;
}
.tabs {
    position: relative;
    margin: 0rem 0;
    background: #F7F7F7;
    height: 81rem;
    overflow: hidden;
}
@media (min-width: 1400px) {
    .tabs {
        height: 96rem;
    }
}
@media (min-width: 1700px) {
    .tabs {
        height: 96rem;
    }
}
.tabs::before,
.tabs::after {
    content: "";
    display: table;
}
.tabs::after {
    clear: both;
}
.tab {
    float: left;
    width: 50%;
}


.tab-switch {
    display: none;
}
.tab-label {
    position: relative;
    display: flex;
    height: 3em;
    font-weight: bold;
    padding: 0 1.618em;
    background: transparent;
    color: #707070;
    cursor: pointer;
    top: 0;
    transition: all 0.25s;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.tab-label .indivi-tab path{
    stroke: #707070;
}
.tab-label:hover {
    /* top: -0.25rem; */
    /* transition: top 0.25s; */
}
.tab-content {
    /* height: 12rem; */
    position: absolute;
    z-index: 1;
    overflow: hidden;
    left: 0;
    padding:4rem;
    background: #fff;
    color: #2c3e50;
    opacity: 0;
    transition: all 0.35s;
    width: 100%;
}
.tab-content .individuals{
    grid-template-columns: 47% 45%;
    display: grid;
    column-gap: 5%;
}
.tab-switch:checked + .tab-label {
    text-align: center;
    background: transparent;
    color: #9D270D;
    transition: all 0.35s;
    z-index: 1;
    border-bottom: 2px solid #9D270D;
    display: flex;
    align-items: center;
    justify-content: center;

}
.tab-switch:checked + .tab-label .indivi-tab path{
    stroke: #9D270D;
}
.tab-switch:checked + label + .tab-content {
    z-index: 2;
    opacity: 1;
    transition: all 0.35s;
}
/******capacity******/
.price h5 {
    font-weight: 700;
    font-size:25px;
}

@media (min-width: 1400px) {
    .price h5 {
        font-weight: 700;
        font-size: 2.3rem;
        padding-bottom: 30px;
    }
    .price span{
        font-size: 1.2rem;
        font-weight: bold;
    }
    .price .capacity p{
        font-size: 1.3rem;
    }
}
.price .capacity{
    display: grid;
    align-items: stretch;
    align-content: space-between;
}
.price .capacity p{
    text-align: justify;
}

.price .capacity .options{

    color: #00bd20;
    font-weight: 600;
    font-size: 16px;

}
.price .capacity button{
    padding: 13px 40px;
    border-radius: 22px;
    background: #9D270D;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    color: #fff;
    margin-top: 15px;
    -webkit-box-shadow: 0px 20px 70px rgb(241 165 1 / 15%);
    box-shadow: 0px 20px 70px rgb(241 165 1 / 15%);
}
.price .capacity .pakcages input[type="radio"]:checked+label{
    font-weight: bold;
}


.price  table {
    border-collapse: collapse;
    border-radius: 20px;
    border-style: hidden; /* hide standard table (collapsed) border */
    box-shadow: 0 0 0 1px #E4E4E4; /* this draws the table border  */
    overflow: hidden;
}
.price table td{
    padding: 10px 45px;
    width: 60%;
    border: 1px solid #E4E4E4;
}
.price table td.td-head{
    width: 40%;
}
.price .packages{
    display: flex;
    justify-content: space-between;
}
.price .packages label{
    text-align: center;
    height: 59px;
    padding: 0px 25px 13px 25px !important;
    display: grid;
    align-content: center;
    border: 1px solid #E4E4E4;
    border-radius: 10px;
}
@media (min-width: 1400px) {
    .price .capacity button{
        font-size: 1.4rem;
    }
}
@media (min-width: 1400px) {
    .price .capacity p {
        text-align: justify;
        font-size: 1.5rem;
        line-height: 2.5rem;
    }
    .price .packages label {
        padding: 10px 24px 18px 24px !important;
        font-size: 24px !important;
        height: 100px !important;
    }
    .price .capacity button{
        margin-top:40px;
        padding: 18px 63px;
        font-size: 1.4rem;
    }
}
/******slide*********/

img {
    vertical-align: middle;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
    position: relative;
}

/* Hide the images by default */
.mySlides {
    display: none;
}
.mySlides img{
    border-radius: 15px;
}
/* Add a pointer when hovering over the thumbnail images */
.cursor {
    cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
/*.prev:hover,*/
/*.next:hover {*/
/*    background-color: rgba(0, 0, 0, 0.8);*/
/*}*/

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* Container for image text */
.caption-container {
    text-align: center;
    background-color: #222;
    padding: 2px 16px;
    color: white;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Six columns side by side */
.column {
    float: left;
    width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
    opacity: 0.6;
    border-radius: 7px;
}

.price .active,
.demo:hover {
    opacity: 1;
    border: 1px solid #9D270D;
}
.table .td-head{
    background-color: #F7F7F7;
}
/****contact***********/

.contact .contact-us{
    display: grid;
    width: 100%;
    grid-template-columns: 60% 40%;
    background-image: url(./image\ 2.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;

}
.contact .contact-us .info{
    padding: 40px;
}

.contact .contact-us .form{
    background-color: white;
    border-radius: 10px;
    padding: 40px;
}
/******price*********/

.price .box{
    margin: auto;
    /* overflow-x: hidden; */
    background: #F7F7F7;border-radius:20px;line-height: 2.5rem;
}
.price .box .content ul li{
    list-style-type: disc !important;
}
.price .box img{
    position: absolute;right:-7%;top:0%;width: 33%;
}
@media screen and (min-width: 1000px) {
    .price .box img{
        position: absolute;
        right: -4%;
        top: 0%;
        width: 33%;
    }

}
@media screen and (min-width: 1200px) {
    .price .box img{
        position: absolute;
        right: -3%;
        top: 0%;
        width: 29%;
    }

}
@media screen and (min-width: 1400px) {
    .price .box img{
        position: absolute;
        right: -2%;
        top: 0%;
        width: 24%;
    }

}






/***************/
@media screen and (Max-width:480px){
    .contact{

    }
    .contact .contact-us{
        /* display: grid; */
        /* width: 100%; */
        background-position: bottom;
        grid-template-columns:100%;
        background-image: url(./mobile.png);
    }
    /**********price********/
    .tab-content .individuals{
        grid-template-columns: 100%;
        display: grid;
    }

    .price{
        overflow: hidden;
    }
    .price .tabs{
        margin: 0px;
        height: 116rem;
    }

    .price .box{
        text-align: center;
        margin: auto;
        /* overflow-x: hidden; */
        margin-top: 40%;
        padding-top: 180px !important;
        background: #F7F7F7;border-radius:10px;line-height: 2.5rem;
    }
    .price .box .content{
        text-align: center;
        margin: auto;
    }
    .price .box ul{
        padding-left: 1.2rem;

    }

    .price .box img{
        position: absolute;right:-30%;top:-40%;width: 100%;
        left: 0;
        margin: auto;
    }
    .price .tab-content{
        padding: 2rem 0.5rem
    }
    .price .tab-label {
        font-size: 13px;
    }
    .price .capacity{
        margin-top: 20px;
    }

    .price h5{
        font-size: 20px;
    }
    .price .packages {
        justify-content: space-between !important;
    }
    .price .packages label{
        border: 1px solid #E4E4E4;
        border-radius: 10px;
        text-align: center;
        height: 62px;
    }
    .price .capacity button{
        display: block;
        margin: auto;
        margin-top: 15px;
        width: 100%;
    }
    .price table td{
        padding: 10px 19px;
        font-size: 12px;
    }
    .price .business p{
        text-align: justify;
    }
}
.discount{
      position: absolute;
    left: -10px;
    top: 19%;
    color: red;
    background: white;
    width: 25px;
    font-size: 0.7em;
}
 .capacity-title{
        background:white;
    }
.price-before{
    text-decoration: line-through;
    color: red;
    font-size: 11px;

}
.price-after{
    font-size: 13px;
    margin-top: 15px;
    font-weight:bold;
}
@media (min-width: 1400px) {
    .price .packages label {
            padding: 0px 33px 19px 33px !important;
}
}
@media (max-width: 480px) {
   .discount{
     position: absolute;
    left: -9px;
    top: 15px;
    font-size: 10px;
    color: red;
    width: 30px;
    background: white;
    }
    .capacity-title{
        background:white;
    }
}
