/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) { 
	.container{
		max-width: 1180px;
	}
}

@media (min-width: 992px) and (max-width: 1199.98px) { 
	html{
		font-size: 51%;
	}
	.container{
		max-width: 980px;
	}
}

@media (max-width: 991.98px) {
	main{
		padding: 0;
	}
	.page_wrap{
		border-radius: 0;
		min-height: 100dvh;
		padding: 0 3.4rem;
	}
	.title_wrap{
		padding-right: 0;
		text-align: center;
	}
	.title_wrap img{
		position: relative;
		top: auto;
		-webkit-transform: translateY(0);
		    -ms-transform: translateY(0);
		        transform: translateY(0);
		right: auto;
		height: 10rem;
		width: 10rem;
	}
	.img_title{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-column-gap: 2rem;
		   -moz-column-gap: 2rem;
		        column-gap: 2rem;
	}
	.card_wrapper {
		padding-left: 6rem;
		padding-right: 6rem;
		width: fit-content;
	}
	.overflow_wrap{
		overflow: auto;
		scrollbar-width: none;
  		-ms-overflow-style: none;
  		margin-left: -6rem;
		margin-right: -6rem;
	}
	.overflow_wrap::-webkit-scrollbar {
		display: none;
	}
	.two_col{
		-ms-grid-columns: (minmax(24rem, 1fr))[2];
		grid-template-columns: repeat(2, minmax(24rem, 1fr));
	}
	.three_col{
		-ms-grid-columns: (minmax(24rem, 1fr))[3];
		grid-template-columns: repeat(3, minmax(24rem, 1fr));
	}
}

/*Medium devices (tablets, 767px and down)*/
@media (max-width: 767.98px) {
	html{
		font-size: 38%;
	}
}

/*Small devices (landscape phones, 575px and down)*/
@media (max-width: 575.98px) {
	html{
		font-size: 2.57vw;
	}
	.page_wrap{
		padding-left: 2rem;
		padding-right: 2rem;
	}
	.tab {
	    padding: 3rem;
	}
	.logo img {
	    width: 11.1rem;
	}
	.logo {
	    background-image: url(../img/logo_bg2.png);
	    padding: 1.5rem 10rem;
	}
	.title_wrap img {
	    height: 8rem;
	    width: 8rem;
	}
	.title_wrap .top_title {
	    font-size: 2rem;
	}
	h1 {
	    font-size: 3.4rem;
	}
	.card_footer {
	    padding: 3rem 3rem;
	    -webkit-box-orient: vertical;
	    -webkit-box-direction: normal;
	        -ms-flex-direction: column;
	            flex-direction: column;
	}
	.title_wrap p{
		font-size: 2.4rem;
	}
	.input_icon {
	    padding-right: 2rem;
	    left: 2rem;
	}
	.input_group input {
	    padding: 0 2rem;
	    padding-left: 7rem;
	}
	.step_btn_wrap{
		-webkit-box-ordinal-group: 0;
		    -ms-flex-order: -1;
		        order: -1;
	}
	.button i {
	    height: 4rem;
	    width: 4rem;
	}
	.card_content {
	    padding: 1.5rem 5.5rem 1.5rem 2rem;
	}
	.card_content .circle{
		right: 2rem;
	}
	.card_wrapper {
		padding-left: 3rem;
		padding-right: 3rem;
	}
	.overflow_wrap{
		margin-left: -3rem;
		margin-right: -3rem;
	}
	.thank_you h1 {
	    font-size: 4rem;
	}
	.thank_you p{
		font-size: 2.4rem;
	}
	.card_content .circle {
	    top: 1.7rem;
	}
	.card input:checked + .card_content .circle::before {
	    background-size: 1.9rem;
	}
	
}
