/*====== Basics ======*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
}

a,  a:visited, a:hover{
    color: inherit;
}


/*====== Banner ======*/

.plan-banner{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 600px;
}

.banner {
    display: flex;
    background-position: top;
    background-size: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background-image: url('../img/header/banner-2.jpg');

}

.plan-is{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 75px;
    width: 100%;
    height: 550px;
    position: absolute;


}


/*====== Info ======*/ 

.plan-container{
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 70px;
    font-family: Muli;
    font-size: 18px;
    color: #667488;
}

.left-block{
    display: flex;
    width: 45%;
    justify-content: center;
}
.main-block{
    display: flex;
    width: 65%;
    /* height: 670px; */
    border: 1px solid #c7d1da;
    border-radius: 6px;
    text-align: center;
    flex-direction: column;
    padding: 15px;


}

.plan-header{
    background-color: #252D40;
    padding: 20px 0 5px 0;
    border-radius: 6px;
    font-family: MuliBold;
    color: white;
    font-weight: 800;
}
.plan-header>h4{
    font-size: 22px;
}

.plan-price{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;

}

.plan-price>h3{
    font-size: 92px;
    font-family: 'Raleway', sans-serif;
    color: white;
    text-align: center;
    margin: 0 0 20px 0;


}
.plan-price>h4{margin: 0;}
h3>sup { line-height: .1em;}


.plan-info ul{
	margin:0;
	padding:1em 0;
}
.plan-info ul li{
	color:#596a77;
	padding:10px 0;
	line-height:1.8;
	font-size:15px;
	list-style:none;
	border-bottom: 1px dashed #edeff3;
}

.plan-button{
    display: flex;
    width: 100%;
    justify-content: center;
}

.plan-button>a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 50px;
    background-color: white;
    color: #5091FF;
    font-family: Muli;
    font-size: 18px;
    border: 1px solid #5091FF;
    border-radius: 6px;
    transition: 0.3s ease-in;
    cursor: pointer;
}


.plan-button>a:visited{
    color: #5091FF;
}
.plan-button>a:hover{
    background-color: #5091FF;
    color: white;
    text-decoration: none;

}



.info{
    width: 45%;
    /* margin-left: 20px; */
    
}

.info>img{
    width: 100%;
}

.looking-for{
    display: flex;
    margin: 20px 0;
    justify-content: center;
    width: 100%;
}

.looking{
    width: 97%;
}

.looking>a>img{
    width: 100%;
    border-radius: 8px;
}


@media(max-width: 650px){
    .plan-price>h3{
        font-size: 52px;
    }
}


@media (max-width: 570px) {
    .plan-is {
        height: 400px;
    }

    .plan-is>img {
        width: 80%;
    }
    
}

@media (max-width: 500px){

    .banner{
        background-position-x: 75%;
    }

    .left-block,.info{
        margin-bottom: 20px;
        width: 80%;
    }
    .main-block{
        width: 100%;
    }

    
}