@import url('https://fonts.googleapis.com/css2?family=PT+Sans&family=Roboto:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

:root {
    --primary: #253d63;
    --secondary: #eff1f5;
    --tertiary:#e6e6e6;
    --green: #02C344;
    --white: #fff;
    --red:#b71f25;
    --title-header: 48px;
    --title: 35px;
    --text: 15px;
    --section-title:35px;
	--darkblue-text:#2b255f;
    --color-navbar: #f4f8f7;
    --color-text: #131313;
    --color-secondary: #01c344;
    --size-padding:70px;
}

.body-content  select,
.body-content  input[type=text],
.body-content  input[type=email],
.body-content  input[type=search],
.body-content  input[type=Number] {
    text-decoration: none;
    border-radius: 2px;
    background: var(--white);
    outline: none;
    border: none;
    padding: 0 8px;
}
#triangle-topleft {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 0;
    height: 0;
    border-top: 225px solid #ff0000;
    border-left: 225px solid transparent;
}
  
.text-block {
    color: #ffffff;
    position: relative;
    top: -220px;
    right: 100px;
    font-weight: bold;
    transform: rotate(45deg);
    background: aquamarine;
    font-size: xxx-large;
}
.footer{
    display: none !important;
}
.info-text {
    font-style: normal !important;
    width: 100%;
    height: 100%;
    color: #fff;
    vertical-align: middle;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.position-absolute {
    width: 100%;
    padding: 40px;
    height: 100%;
    position: inherit;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--red);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.events-none {
    pointer-events: none;
    filter: saturate(0.5);
}
.font-style-none{
    font-style: normal;
    text-align: left;
    padding: 0 !important;
}
.font-size-32{
	font-size: 32px!important;
	color:black!important;
}
.search_form {
    width: 90%!important;
}
.bg-gray{
    background-color: #e3e7f0 !important;
}
.bg-light-gray{
    background-color: var(--secondary) !important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.goog-te-gadget {  
    padding: 5px 0 !important;
}
.goog-te-gadget-simple {
    padding: 5px !important;
    border-radius: 7px !important;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    padding-top: 70px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.padding-content {
    padding: 50px 100px;
}
.faqs-title {
    font-weight: 600;
    margin: 15px 0;
}
.text-decoration {
    text-decoration: none;
}
.content p{
    text-align: justify !important;
}

/*Menu section*/
#menu {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: row-reverse;
}

.menu-header {
    background-color: var(--color-navbar);
    color: var(--color-text);
    height: 70px;
    z-index: 1000;
    position: fixed;
    top: 0;
    width: 100%;
}
.menu-container {
    display: flex;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    padding: 0 10px 0 50px;
    align-items: center;
}

.menu-logo{
    max-width: 150px;
}
.menu-logo a img{
    width: 100%;
    object-fit: scale-down;
}
.call-us {
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-content: space-around;
    padding: 5px 10px;
    margin: 0 5px;
}
.call-us a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    padding: 8px;
    background-color: var(--color-secondary);
}
.menu-links {
    height: 100%;
    transition: all .5;
    display: flex;
}

.menu-item {
    list-style: none;
    position: relative;
    height: 100%;
    --clip: polygon(0 0, 100% 0, 100% 0, 0 0);
    --transform: rotate(-90deg);
}

.menu-item:hover {
    --clip: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    --transform: rotate(0);
}

.menu-link {
    color: var(--color-text);
    text-decoration: none;
    padding: 0 15px;
    display: flex;
    height: 100%;
    align-items: center;
    transition: background-color 0.5s ease-in-out !important;
    -webkit-transition: background-color 0.5s ease-in-out !important;
}

.menu-link:hover {
    background-color: var(--tertiary);
    color: rgb(59, 59, 59);
}
.submenu {
    border-top: 2px solid var(--color-secondary);
    background-color: var(--color-navbar);
    list-style: none;
    clip-path: var(--clip);
    transition: clip-path .3s;
    position: absolute;
    right: 0;
    bottom: 0;
    width: max-content;
    transform: translateY(100%);
    z-index: 1000;
}

.menu-link-inside {
    padding: 20px 45px 20px 20px;
    margin: 0 10px;
    border-bottom: 1px solid #ccc;
}

.menu-link-inside:hover {
    background-color: var(--tertiary);
    height: 100%;
}
.menu-hamburguer {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
    cursor: pointer;
    display: none;
    font-weight: bold;
    font-size: xx-large;
}
.menu-img {
    display: block;
    width: 45px;
}

#property-listing-json {
    display: flex;
    flex-flow: wrap;
}

.color-teal {
    color: #03989e;
}

.callButton a {
    display: block;
    font-size: 1.17em;
    margin-block-start: 0.9em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 5px;
    font-weight: bold;
    border: #02C344;
    text-decoration: unset;
    background: #02C344;
    color: white;
    padding: 4px;
}

.logo img{
	width:80%;
}


.color-red {
    color: var(--red);
}

.color-white {
    color: #ffffff;
}

.color-dark-grey {
    color: #545454;
}

.color-light-grey {
    color: #d9d9d9;
}

.bg-teal {
    background-color: #03989e;
}

.bg-red {
    background-color: #c84242;
}

.bg-white {
    background-color: rgb(255, 255, 255);
    background-position: center;
    border-radius: 15px;
    min-width: 300px;
    max-width: 420px;
}

.bg-dark-grey {
    background-color: #545454;
}

.bg-light-grey {
    background-color: #d9d9d9;
}

.bg-grass {
    background-image: url("../img/grass-bg.png");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}

.top-banner {
    background-color: #02C344;
    text-align: center
}

.top-banner h3 {
    text-align: center;
    margin: 0;
    padding: 22px 0px;
    color: white;
    opacity: 87%;
    text-transform: uppercase;
    font-weight: 200;
    font-size: 1.1rem;
    margin-right: 10px;
    margin-left: 10px;
}

.text-center,
.optinForm_submit {
    text-align: center !important;
}

 /* First-Section Home*/
 .first-section {
    background-image: url('../img/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    min-height: fit-content;
}
.first-section h1 {
    color: white;
    font-style: italic;
    font-family: 'Roboto';
    font-size: 4rem;
    text-align: center;
}
.width-60 {
    width: 60%;
    padding: 5px;
    display: flex;
    margin: auto;
    flex-direction: column;
}
.text-form{
    padding: 0 10px;
}
.text-form p{
    padding: 10px 0;
}

.container-grid{
	display:grid;
	place-items: center;
	grid-template-columns: 2fr 1fr;
}

.padding {
    padding: 0px 10px 30px 50px !important;
}

.container-grid p{
	color:black;
}

.container-grid li{
	color:black;
	margin-bottom: 30px;
}

.container-flex {
    padding: 20px 0px 0px 0px;
    width: 80%;
    margin: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-evenly;
}


.container-flex-columns{
		padding: 20px 0px 0px 0px;
		width: 80%;
		margin: auto;
		display: flex;
		align-items: center;
		flex-direction: column;
}

.img-fluid.img-sold{
	height: 430px;
}
img.img-fluid.girl-sell1{
	height: 100%;
    width: 90%;
	padding-left: 5%;
}
.banner-buy.banner-top {
    border-radius: 0;
    background: none;
  
}
.banner-buy.banner-top h1 {
	color: black;
}
.banner-buy {
	background-color: #000;
    display: flex;
    border-radius: 20px;
    justify-content: center;
}

.banner-buy h1 {
	color: white;
	 font-size: calc(1.425rem + 2.1vw);
	 text-transform: uppercase;
	 text-align: center;
}
.bg-contact-us{
	background-image: url('../img/background-questions.jpg');
	background-size:cover;
	background-repeat: no-repeat;
	background-position: center;
	margin-top:9px;
}
.text-center{
	text-align: center !important;
}
.margin-top{
    margin-top: 35px;
}
.searchbox {
	display:flex;
	
}

/*form design*/
.card-black {
    text-align: center;
    padding: 35px 20px;
    margin: auto;
    width: 90%;
    max-width: 40rem;
    height: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.solid{
	background-color: #b71f25 !important;
}
.transparent{
	background-color: #b71f25 !important;
}

.dark-blue {
    color: #2b255f!important;
    font-size: 2em;
    margin-top: 10px;
    font-weight: bold;
}

.gray{
	background-color: #d5d5d5 !important;
}
.card-contact, .card-selling-house{
	color: white !important;
}
.card-black p.title {
    font-style: italic;
    font-size: 130%;
    margin-bottom: 15px;
}

.card-black .title, .card-contact .title, .card-selling-house .title{
	color: white;
	text-align: center;
	margin: 0;
}

.card-black .text, .card-contact .text, .card-selling-house .text{
	color: white;
	opacity: 87%;
	font-size: calc(1.3rem + .6vw);
	text-align: center;
	margin: 14px 0;
}

.card-black h6, .card-contact h6,  .card-selling-house h6{
	color: white;
	opacity: 87%;
	font-size: calc(1.3rem + .6vw);
	text-align: center;
	margin: 15px 0;
	font-weight: bold;
	text-transform: uppercase;

}
.card-red{

	box-shadow: 0 10px 20px 0 rgb(0 0 0 / 20%);
    background-color: transparent;
    background-image: linear-gradient(180deg,#FFFFFF 0%,#FFFFFF 100%);
	padding: 5%;
	text-align: center;
   
}
img.icon-img {
    height: 50%;
}
a.btn.btn-red.width-90.btn-s {
    width: 80%;
}


span.bold {
	font-weight: bold;
}

.bg-sold{
	background-image: url('../img/sold.jpg');
	background-position: left bottom;
	background-size: 150% 100%;
	background-repeat: no-repeat;
	height: 450px;
	max-height: 450px;
	border-radius: 15px;
	
}

.input-group {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: stretch;
	align-items: stretch;
	width: 100%;
	margin: 12px 0;
}
.form-control {
	display: block;
	width: 100%;
	padding: .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
input#or_Optional_Number_2{
	width: 86%;
}

.tt_item{
	width: 22px;
	height: 22px;
	background-color: white;
	border-radius: 15px;
	text-align: center;
	margin: 10px 0px 10px 8px;
	font-weight: bold;
	cursor: pointer;
	color: #000;
}

div#optinForm_notify {
	display: none;
}

div#optinForm_input {
    width: 100%;
}

div#optinForm_input span {
    width: 100%;
}

input#c_fname {
    width: 100%;
	height: 50px;
}

input#c_email {
width: 100%;
box-sizing: border-box;
height: 50px;
}

input#c_phone {
    width: 100%;
    height: 50px;
	margin-bottom: 10px;
}

input#c_pass {
    width: 100%;
    height: 50px;
	margin-bottom: 10px;
}

span#optinForm_fname {
    padding-bottom: 10px;
}
span#optinForm_lname {
	padding-bottom: 10px;
}
/*buttons*/

input#submit {
    width: 100%;
    height: 50px;
    background-color: #03ac3e;
    color: white;
    font-size: 100%;
    border: none;
	text-transform: uppercase;
    cursor: pointer;
}
.content .form-contact .input-group button,
.BlogCard-button a:hover,
.search-submit:hover,
.btn-primary:hover,
.call-us a:hover,
.btn-buy:hover,
.column-flex a:hover,
input#submit:hover {
    background-color: #2e9121 !important;
    color: white;
    box-shadow:none !important;
    
}
.btn.btn-red {
	color: #fff;
	background-color: #c84242;
	border-color: #c84242;
	cursor: pointer;
	font-weight: bold;
	font-size: calc(1.325rem + .9vw);
	text-transform: uppercase;
	border-radius: 12px;
	text-decoration: none;
	width: 90%;
}

.btn-red:hover {
	box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
 }

 .btn-red {
	transition-duration: 0.4s;
 }
 
 .btn-red:hover {
	background-color: #b33939; /* Green */
	color: white;
 }

.btn {
	display: inline-block;
	font-weight: 400;
	color: #212529;
	text-align: center;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: .25rem;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
/* section titles*/
h1.section-title {
    font-style: normal;
    color: var(--darkblue-text);
    padding: 0;
}

/*second section*/
.services-section{
	background-color: #f9f9f9;
}

.second-section {
    background-color: #b71f25;
    height: fit-content;
    padding-bottom: 15px;
    color: #fff;
}

.second-section br {
    display: none;
}

.search-submit{
	height: 42px;
    cursor: pointer;
    width: 20% !important;
    background-color: #02C344 !important;
    color: white;
    font-size: 100%;
    border: none;
	text-transform: uppercase !important;
}

/*third section*/
.third-section {
    height: 600px;
    text-align: center;
    margin-bottom: 50px;
    background: white;
}
img.thumbnail {
	width: 100%;
}
div#property-listing-json {
    display: flex;
    justify-content: space-around;
}

.col-md-6.bg-white.text-center.flex-container {
    width: 100%;
	max-width: 85% !important;
    -webkit-box-shadow: 0 0 10px grey;
    box-shadow: 0 0 10px grey;
    flex: 0 0 100%;
    padding: 5%;
}
a.service-provider-call.btn.btn-red.width-90.flex-align-Bottom {
    background-color: transparent;
    color: #02C344;
    border-color: #02C344;
    border-radius: 5px;
    border: solid;
	padding: 0;
}
.col-md-6.bg-white.text-center.flex-container{
	padding: 10px;
    -webkit-box-shadow: 0 0 10px lightgrey;
    box-shadow: 0 0 10px lightgrey;
}

/*forth section*/
.forth-section {
    text-align: center;
	background-color: #F0F2F5;
}
.line {
	border-bottom: 3px solid #073B63;
	/* width: 30%; */
	/* padding-left: 35%; */
	/* margin-left: 35%; */
	margin-block-end: 1.67em;
}
/*sixth section blog*/
.sixth-section{
	text-align: center;
}
.search_content{
	display:none;
}
.listing{
	display:flex;
	margin-bottom: 30px;
}
.custom_blog_posts .col1 {
    width: 42% !important;
}

.custom_blog_posts .abutton{
	background: #02C344 !important;
	padding: 7px 40px !important;
	border-radius: 0 !important;
	border: none !important;
}
.custom_blog_posts .col2 {
    width: 50% !important;
    text-align: left;
    padding-left: 5%;
}
.custom_blog_posts .col2 .span_col2 {
	justify-content:normal !important;
}
.custom_blog_posts .pager {
	display: none;
}
.custom_blog_posts .col1 {
	width: 42% !important;
}
/*seventh section*/

.seventh-section {
    display: flex;
}
.table{
	display: table-cell;
    vertical-align: middle;
}

.table-item {
    display: table-cell;
    color: black;
    vertical-align: middle;
}

.m-b-0{
	margin-bottom: 0px;
}

.text-right{
	text-align: right;
}
.row .col-md-12 {
	padding: 20px 0;
	text-align: center;
}

ol.ordered-list {
	list-style: none;
	counter-reset: steps;
	margin-right: 20px;
 }
 ol.ordered-list li.list-element {
	counter-increment: steps;
	margin: 25px 0;
 }
 ol.ordered-list li.list-element::before {
	/* content: counter(steps); */
	content:"";
	margin-right: 0.5rem;
	background: #546d3c;
	color: white;
	width: 2.2em;
    height: 2.2em;
	border-radius: 50%;
	display: inline-grid;
	place-items: center;
	line-height: 1.2em;
	background-image: url('../img/check.png');
	background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
 }
 ol.ordered-list ol.ordered-list li.list-element::before {
	background: darkorchid;
 }

 .display-none{
	 display: none;
 }

 ul#nav-lists.responsive{
	flex: 0 0 100%;
  }

  .width-90{
	width: 90%;
}

.gradient {
	position: absolute;
	height: 100%;
	width: 100%;
	background: rgb(255 255 255);
	background: linear-gradient(360deg, #ffffff 1%, rgba(255,255,255,0) 61%);
	top: 0;
}

.position-relative{
	position: relative;
}

.btn.btn-red.btn-contact{
	width: 100%;
	padding: 10px 0px;
 }

	/* Sell your land */
	.money-wave{
		max-height: 100%;
		position: sticky;
		height: auto;
		width: 103%;
		max-width: 104%;
	}

	#button_back, #sub-mor-prop, #fin-off-req, .errormessage {
		width: auto !important;
	}

	.pad-0{
		padding: 0;
	}

  /* Sell your house */

   .card-selling-house {
		background-color: #000;
		padding: 26px 20px;
		margin: auto;
		border-radius: 20px;
		width: 420px;
		max-width: 465px;
	}

  .banner-house .banner-text-container .content-banner-text{
		background-color: black;
		color: #fff;

	}

	.toggle-btn{
		color: #fff;
	}
	.toggle-btn-grp.cssonly #o_type{
		margin-bottom: 18px;
	}
	.abutton.btn.btn-red {
		padding: 5px 0px;
		 width: 100%;
		 -webkit-appearance: none;
	}

	/*merge fields*/

	div.row div.toggle-btn-grp.cssonly{
		position: inherit !important;
		margin-top: 14px;
	}

	div.step1 .row{
		display: block !important;
	}

	.step2 {
		margin: 20px 0 !important;
	}

	.adjust-error{
		height: auto !important;
    	max-height: initial !important;
	}

	div.step2 input, div.step2 select, div.step2 textarea{
		width: 100%;
		display: block;
		padding: .375rem .75rem;
		font-size: 1rem;
		font-weight: 400;
		line-height: 1.5;
		color: #495057;
		background-color: #fff;
		background-clip: padding-box;
		border: 1px solid #ced4da;
		border-bottom-right-radius: .25rem;
		border-top-right-radius: .25rem;
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
		transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	}
	div.step2 select{
		padding: 9px;

	}
	div.step2 input#or_phone, input#m_address2 , input#p_apn , select#p_owned{
		width: 92%;
	}

	.lbl-yrs{
		margin-left: 16px;
		line-height: 2;
	}

	.input-group-form {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		align-items: stretch;
		width: 100%;
  }
  .input-group-text{
		display: flex;
		-ms-flex-align: center;
		align-items: center;
		padding: .375rem .75rem;
		margin-bottom: 0;
		font-size: 1rem;
		font-weight: 400;
		line-height: 1.5;
		color: #495057;
		text-align: center;
		white-space: nowrap;
		background-color: #fff;
		border: 1px solid #ced4da;
		border-right: 0;
	}

	div.step2 input.input-inline{
		display: inline-block;
		position: relative;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
		width: 1%;
		min-width: 0;
		margin-bottom: 0;
	}

  .label-input {
		background-color: #dad8d8;
		font-weight: bold;
		line-height: 2;
		text-align: right;
	}
	
	.exlg-label-input{
		width: 750px;
		max-width: 750px;
	}

	.label-input label{
		margin-right: 15px;
	}
    .text-left {
        text-align: left !important;
        justify-content: flex-end;
    }

  #sub-mor-prop{
	margin: 0 15px;
  }

  .justify-center{
	  justify-content: center;
  }

  .tooltip {
	position: relative;
	display: inline-block;
	line-height: 1.5;
	margin-left: 17px;
	background: #cccccc;
	border-radius: 35px;
	height: 30px;
	width: 30px;
	font-weight: 900;
	cursor: pointer;
 }
 
 .tooltip .tooltiptext, .tt_item .tooltiptext{
	visibility: hidden;
    width: 320px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 38px;
    right: -120px;
    margin-left: -0px;
    opacity: 0;
    transition: opacity 0.3s;
    font-weight: normal;
    font-size: 16px;
 }
 
 .tooltip .tooltiptext::after, .tt_item .tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 58%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #555 transparent transparent transparent;
 }
 span.tooltiptext.show_tooltip {
    padding: 5%;
}
 /* .tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
 } */

.show_tooltip {
	visibility: visible !important;
	opacity: 1 !important;
 }

 .hide_tooltip{
	visibility: hidden !important;
	opacity: 0 !important;

 }

  /* Contact us */
	textarea.text-area {
		padding: 0;
		overflow: auto;
		resize: vertical;
	}

	.g-recaptcha{
		margin-bottom: 10px !important;
	}

	.row .content {
		margin: auto;
		text-align: center;
	}

	.row .content p{
		font-size: calc(0.95rem + .6vw);
		margin: 8px 0;
	}
	.card-contact{
		background-color: #000;
		padding: 26px 20px;
		margin: auto;
		border-radius: 20px;
		width: 420px;
		max-width: 465px;
	}

	.card-contact .form-control{
		width: 100% !important;
	}
	.g-recaptcha div{
		left:0;
		right:0;
		margin: auto;
	}

	.card-contact h1.red{
		text-align: center;
		 color: white;
		 opacity: 87%;
	}

	

	input[type="text"] {
		box-sizing: border-box;
  }

  .text-banner{
	  margin: 0;
	  line-height: 1.6;
  }
  
  /*Pop-up*/
.popup{
	display: none;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content */
.popup-body {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
 }
 
 /* The Close Button */
 .close {
	color: #aaaaaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
 }
 
 .close:hover,
 .close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
 }

 .page-popup {
	display: none;
	position: absolute;
	left: 5%;
	top: 3%;
	width: 90%;
	min-height: 300px;
	z-index: 101;
	background-color: #FFF;
}

.page-popup-open-button {
	display: inline-block;
	color: blue;
	cursor: pointer;
}

.page-popup-open-button:hover {
	text-decoration: underline;
	text-underline-offset: 10px;
}

.page-popup-close {
	margin: 30px;
	text-align: right;
}

.page-popup-close-button {
	margin-right: 10px;
	font-size: 16pt;
	cursor: pointer;
}

.page-popup-content {
	margin: 30px;
}

.page-popup-hidden {
	display: none;
}

.page-popup-background {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	background-color: rgba(0,0,0,0.4);
}

.page-popup {
	display: none;
	position: absolute;
	left: 5%;
	top: 3%;
	width: 90%;
	min-height: 300px;
	z-index: 101;
	background-color: #FFF;
}

.page-popup-open-button {
	display: inline-block;
	color: blue;
	cursor: pointer;
}

.page-popup-open-button:hover {
	text-decoration: underline;
}

.page-popup-close {
	margin: 30px;
	text-align: right;
}

.page-popup-close-button {
	margin-right: 10px;
	font-size: 16pt;
	cursor: pointer;
}

.page-popup-content {
	margin: 30px;
}

.page-popup-hidden {
	display: none;
}

	

/* Small devices (landscape phones, 376px and up) */

@media (min-width: 150px) and (max-width: 629px) {
    .container {
        width: 100%;
        padding: 20px 0px;
    }
    .container-listing {
        padding: 20px 0px;
        width: 100%;
        margin: auto;
    }
    .card-blue {
        width: 260px !important;
        max-width: 260px !important;
    }
    .banner-buy {
        margin: 60px 15px 0;
    }
    input#or_Optional_Number {
        width: 77%;
    }
    .card-contact,
    .card-selling-house {
        width: 300px;
        max-width: 300px;
    }
    .bg-sold {
        height: 300px !important;
        max-height: 300px !important;
    }
    .banner-buy h1 {
        font-size: calc(1.0rem + 2.1vw);
    }
    .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin: 100px 0 !important;
        width: 500px!important;
    }
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .card-blue .title,
    .card-contact .title,
    .card-selling-house .title {
        font-size: calc(0.75em + .9vw);
    }
    .card-blue .text,
    .card-contact .text,
    .card-selling-house .text {
        font-size: calc(0.95rem + .6vw);
    }
    .btn.btn-red {
        -webkit-appearance: none;
        font-size: calc(1.5rem + .2vw) !important;
        padding: 25px 0px;
        width: 100%;
    }
    .btn.btn-red.btn-selling-land {
        -webkit-appearance: none;
        font-size: calc(1.1rem + .2vw) !important;
        padding: 10px;
    }
    .col-md-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .container-money-bag {
        display: none;
    }
    .content-list {
        margin: 0 20px !important;
    }
    .input-group-form {
        margin-bottom: 10px;
    }
    ol.ordered-list li.list-element::before {
        width: 1em;
        height: 1em;
    }
    .content-title h3 {
        font-size: calc(0.5em + .9vw);
    }
    .gradient.grad-house {
        background: linear-gradient(360deg, #ffffff 3%, rgba(255, 255, 255, 0) 61%);
    }
    .bg-contact-us {
        background-size: cover;
        background-position: right;
    }
    .label-input {
        text-align: left;
    }
    div.step2 input#or_phone,
    input#m_address2,
    input#p_apn,
    select#p_owned {
        width: 82%;
    }
    .tooltip,
    .tt_item {
        margin-top: 4px;
    }
    input#button_back,
    input#sub-mor-prop {
        padding: .375rem .75rem;
        margin-bottom: 10px;
    }
    input#fin-off-req {
        padding: .375rem .75rem;
    }
    .tooltip .tooltiptext,
    .tt_item .tooltiptext {
        width: 269px;
        padding: 5px 8px;
        right: 0px;
        font-size: 12px;
    }
    .tooltip .tooltiptext::after,
    .tt_item .tooltiptext::after {
        left: 94%;
    }
    div.step2 input,
    div.step2 select,
    div.step2 textarea {
        border-radius: 0;
    }
    .text-verify {
        width: 85%;
    }
}


/* Medium devices (tablets, 768px and up) */

@media (min-width: 630px) {

    .card-blue {
        width: 270px !important;
        padding: 20px 12px;
    }
    .card-contact,
    .card-selling-house {
        width: 270px;
        max-width: 270px;
        padding: 20px 12px;
    }
    .card-blue .title,
    .card-contact .title,
    .card-selling-house .title {
        font-size: calc(0.75em + .9vw);
    }
    .card-blue .text,
    .card-contact .text,
    .card-selling-house .text {
        font-size: calc(0.95rem + .6vw);
    }
    .bg-sold {
        height: 325px;
        max-height: 350px;
    }
    .btn.btn-red {
        font-size: calc(0.9rem + .5vw) !important;
    }
    .content-title h3 {
        font-size: calc(0.5em + .9vw);
    }
    .gradient.grad-house {
        background: linear-gradient(360deg, #ffffff 65%, rgba(255, 255, 255, 0) 61%);
    }
    ol.ordered-list li.list-element::before {
        width: 1.2em;
        height: 1.2em;
    }
}

/*FOOTER*/

.footer-container{
    display: flex;
    background-color: var(--primary);
    color: #fff;
    font-size: small;
}
.first-section-footer {
    width: 60%;
    display: flex;
    flex-direction: column;
}
.second-section-footer {
    width: 40%;
    display: flex;
    flex-direction: row;
    padding: 10px;
    justify-content: flex-end;
}
.second-section-footer ul {
    text-align: left;
    list-style: none;
}
.second-section-footer ul li{
    margin-bottom: 10px;
}
.second-section-footer ul li a{
    text-decoration: none;
    color: #fff;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}
.second-section-footer ul li a:hover{
    text-decoration: underline;
    color: #fff;
}
.logo-footer {
    width: 30%;
    object-fit: contain;
}


/* // Large devices (desktops, 992px and up) */

@media (min-width: 992px) {
    .card-blue {
        width: 320px !important;
        max-width: 320px !important;
        max-height: 370px;
    }
    .card-contact,
    .card-selling-house {
        width: 320px;
        max-width: 320px;
    }
    .btn.btn-red {
        font-size: calc(1.15rem + .5vw) !important;
    }
    .bg-sold {
        height: 370px;
        max-height: 370px;
    }
    .banner-land {
        display: none;
    }
    .gradient.grad-house {
        background: linear-gradient(360deg, #ffffff 51%, rgba(255, 255, 255, 0) 61%);
    }
}


/* // Extra large devices (large desktops, 1200px and up) */

@media (min-width: 1200px) {
    .card-blue {
        width: 400px !important;
        max-width: 400px !important;
        max-height: 436px;
    }
    .card-contact,
    .card-selling-house {
        background-color: #03989e;
        padding: 26px 20px;
        margin: auto;
        border-radius: 20px;
        width: 420px;
        max-width: 465px;
    }
    .bg-sold {
        height: 430px;
        max-height: 430px;
    }
    .space-inputs {
        margin: 25px 0;
    }
    .btn.btn-red.btn-selling-land {
        font-size: calc(1.15rem + .5vw) !important;
        padding: 20px 4px;
    }
    .gradient.grad-house {
        background: linear-gradient(360deg, #ffffff 34%, rgba(255, 255, 255, 0) 61%);
    }
}


/* Card Hot Deals */

@import url('https://fonts.googleapis.com/css2?family=PT+Sans&family=Roboto:wght@300&display=swap');
.section-card {
    width: 85%;
    display: flex;
    margin: auto;
    text-align: center;
    padding: 50px 0;
    font-family: 'PT Sans', sans-serif;
    flex-direction: column;
}
.container{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin-top: 2em;
}
.card{
    background: #fff;
    border-radius: 2px;
    display: flex;
    margin-bottom: 5%;
    padding: 8px 8px;
    width: 25%;
    position: relative;
    text-align: left;
    flex-direction: column;
    justify-content: space-between;
}

.card-img {
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
    height: 225px;
}
.card-img img{
    height: 100%;
    width: 100%;
    border-radius: 2px;
    object-fit: cover !important;
}
.text-status{
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    background-color: #F5B51D;
    padding: 10px 0px;
    width: 50%;
    border-radius: 2px;
    letter-spacing: 1px;
    font-style: normal;
    font-size: 140%;
}
.card-body {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column;
}
.card-title{
    font-size: 140%;
    padding: 5px 0px;
}

.card-text p{
    border-bottom: 1px solid #F1F1F1;
    padding: 0px;
    margin: 7px;
}
.card-icons {
    display: flex;
    color: #CCC;
    height: 23px;
    align-items: flex-end;
    margin-top: 4px;
}
.card-icons img{
    height: 100%;
    width: 22px;
    margin-right: 6px;
}

.card-subtitle{
    color: #CCC;
}
.card-button a {
    margin-top: 10px;
    display: inline-block;
    width: 100%;
    padding: 8px;
    color: var(--green);
    border: 2px solid var(--green);
    text-align: center;
    outline: none;
    text-decoration: none;
    border-radius: 5px; 
}
.card-button a:hover{
    background-color:  var(--green);
    color: #fff;
}
.third {
    width: 31%;
}
.red{
    color: #CC0000;
}
.large{
        font-size: 145%;
}
@media only screen and (max-width: 800px) {
    .third{
		width: 100%;
    }
	
	.container-grid {
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));	
	}
	
	.blogPost-list {
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	}
	.section-search h1 {
		font-size: xx-large !important;
		padding: 2% 3%;
	}
	.section-search {
		width: 100% !important;
		position: relative !important;
		top: 0% !important;
		left: 0% !important;
		transform: translate(0%,0%) !important;
		border-radius: 0px !important;
		min-height: 30vh !important;
		padding-top: 3% !important;
	}
	.header-search {
		min-height: 30vh !important;	
	}
	
}	


/* Search */
.font-size-25{
    font-size: 25px !important;
}
.header-search-filter {
    border-top: 2px solid #fff;
    background: var(--red);
    border-bottom: 2px solid #fff;
}
.section-search-filter{ 
    padding-bottom: 20px;
    margin: 0px 15px
}
.section-search-filter br{ 
    display: none;
}
.header-search {
    min-height: 60vh;
    width: 100%;
    background-image: url(../img/sectionSearch.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
.section-search{
    width: 60%;
    color: var(--white);
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    background: rgba(2,2,2,0.4);
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 7px;
}
.section-search h1{
    font-family: 'Roboto', sans-serif;
    font-size: var(--title-header);
    font-weight: bold;
}


/* Blog vertical cards Post */

.section-blogCard{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    font-family: 'PT Sans', sans-serif;
}

.blog-list{
	display:flex;
	flex-direction: column;
}


/*.blogCard {
    border-radius: 2px;
    margin-bottom: 5%;
    padding: 8px 8px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    justify-content: center;
}*/
.blogCard {
    border-radius: 2px;
    margin-bottom: 5%;
    display: flex;
    background: #fff;
}
.BlogCard-img {
    width: 50%;
    height: 225px;
    padding: 5px;
}
.BlogCard-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blogCardInfo {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 100%;
    padding: 10px;
}
.BlogCard-title {
    font-size: 150% !important;
    padding: 5px 0px;
    margin-bottom: 25px;
    border-bottom: 1px solid #ccc;
}
.BlogCard-subtitle{
    color: #CCC;
}

.BlogCard-button a {
    margin-top: 10px;
    display: inline-block;
    width: 25%;
    padding: 8px;
    color: white;
    border: 2px solid #01c444;
    text-align: center;
    outline: none;
    text-decoration: none;
    font-size: 15px;
    resize: initial;
    background: #01c444;
}

.BlogCard-button a:hover{
    background-color:  var(--green);
    color: #fff;
}

/* Blog Posts horizontal cards */

.blogTitle{
	background: var(--primary);
    color: #fff;
    padding: 20px 100px;
}

.section-blogPostCard{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    font-family: 'PT Sans', sans-serif;
}

.blogPost-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 1rem;
    row-gap: 1rem;
}

.blogPostCard {
    border-radius: 2px;
    margin-bottom: 5%;
    padding: 8px 8px;
    display: grid;
    grid-template-columns: 1fr;
    background: white;
}

@media only screen and (max-width: 800px) {
	.blogPost-list {
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	}
    .blogCard {
        flex-direction: column;
    }
    .BlogCard-img {
        width: 100%;
    }
    .BlogCard-button a {
        width: 100%;    
    }
}

.blogPostCard-img img{
    height: 225px;
    width: 100%;
    border-radius: 2px;
}

.blogPostCardInfo {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.blogPostCard-text {
    text-align: justify;
    line-height: 1.5;
    height: 75%;
    padding: 25px 0;
}
.SinglePostCard-text h2,
.BlogCard-text h2,
.blogPostCard-text h2{
    text-align: justify !important;
    font-size: 18px !important;
}
.blogPostCard-title {
    font-size: 140%;
    padding: 5px 0px;
    color: #2b255f;
    font-weight: bold;
    height: 25%;
    border-bottom: 1px solid rgb(219, 219, 219);
}
  
.blogPostCard-subtitle{
    color: #CCC;
}

.blogPostCard-button a {
    margin-top: 10px;
    display: inline-block;
    width: 95%;
    padding: 8px;
    color: #2b255f;
    border: 2px solid #2b255f;
    text-align: center;
    outline: none;
    text-decoration: none;
    font-size: 1.3rem;
    resize: initial;
}

.blogPostCard-button a:hover{
    background-color:  rgba(29, 54, 38, 0.4);
    color: #fff;
    border: 2px solid #fff;
}


/* Single Blog Post */


.section-SinglePost{
    width: 80%;
    margin: auto;
    text-align: justify;
    padding-top: 50px;
    font-family: 'PT Sans', sans-serif;
}

.SinglePost-list {
    display: grid;
}

.SinglePostCard {
    border-radius: 2px;
    margin-bottom: 5%;
    padding: 8px 8px;
    display: grid;
    min-height: 600px;
}

.SinglePostCard {
    border-radius: 2px;
    margin-bottom: 5%;
    padding: 15px;
    display: grid;
    min-height: 600px;
}



.SinglePostCard-title {
    font-size: 150%;
    padding: 5px 0px;
    color: #2b255f;
    text-align: left;
    font-weight: bold;
}
  
.SinglePostCard-subtitle{
    color: #CCC;
}

/* Property Details CSS */


.section-forsale{
    background-color: #B71F25;
    font-family: 'PT Sans', sans-serif;
    padding: 0px;
    font-style: normal !important;
    display:grid;
    place-items: center;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));    
    margin-bottom: 0px;
}
.container-slider {
    width: 100%;
    margin: 0;
    height: 100%;
    background: linear-gradient(to right, rgba(5, 5, 5, 0.76), rgba(5, 5, 5, 0.788)), url(../img/sectionSearch.jpg);
    background-position: center !important;
    background-size: cover !important;
    position: relative;
}
.container-slider img {
    width: 100%;
    padding: 40px;
    height: auto;
    position: inherit;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-slider{
    padding: 0;
    font-style: normal !important;
    font-family: 'PT Sans', sans-serif;
    font-size: 30px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 10%;
    background-color: rgba(0,0, 0, .7);
    text-align: center;
    font-weight: bold;
    position: absolute;
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    transform: all .3s ease;
}
.btn-slider:hover{
    cursor: pointer;
    font-size: 35px;
    width: 75px;
    height: 75px;
}
.left {
    font-style: normal !important;
    left: 5%;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}
.right {
    font-style: normal !important;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translate(0, -50%);
}
.container-text {
    width: 100%;
    margin: 0;
    height: 100%;
    position: relative;
}
.info-text h1{
    font-weight: bold;
    font-size: 50px;
    margin: 7px 0px;
}
.info-text h2{
    font-weight: 400 ;
    font-size: 30px ;
    margin: 7px 0px;
}
.info-text h3{
    font-weight: normal;
    font-size: 18px;
    margin: 7px 0px;
}

.btn-buy {
    margin-top: 15px;
    background-color: #02C344;
    text-align: center;
    padding: 5px 0px;
    margin-bottom: 50px;
    text-decoration: none;
    color: #fff;
    font-size: 25px; 
    justify-content: center;
}

.section-desc-property {
    background-color: #fff;
    width: 100%;
    margin: 0px;
    text-align: center;
    resize: horizontal;
    padding: 10px 0px;
    margin-bottom: 15px;
    padding: 30px 100px;
}
.section-desc-property img {
    width: 80%;
    object-fit: scale-down;
    margin: 15px 0px;
}
.content h2, .section-desc-property h1 {
    text-align: left;
    font-weight: bold;
    font-size: 35px;
    font-family: 'PT Sans', sans-serif;
    margin-bottom: 20px;
}
.margin-auto{
    margin: 50px auto;
}
/*new*/
.bg-light{
	background-color: var(--white);
}
.bg-body{
    background-color: var(--secondary);
}
.body-content ol,
.body-content ul {
    list-style-image:url('../img/check.png');
    text-align: left;
    list-style-position: inside;
}
.body-content ol li,
.body-content ul li{
    margin-bottom: 5px;
    margin-top: 5px;
}
	

/*FINANCE*/
.finance-section {
    display: flex;
    justify-content: space-evenly;
    margin: 20px 0;
}
.finance-card {
    display: flex;
    width: 40%;
    background-color: #fff;
    flex-direction: column;
}
.finance-card-title {
    width: 100%;
    text-align: center;
    padding: 8px 0px;
    font-weight: bold;
    font-size: 25px;
    word-spacing: 1px;
    text-transform: uppercase;
    letter-spacing: 1px;
    height: fit-content;
}

.finance-card-subtitle {
    width: 100%;
    text-align: center;
    padding: 12px 0px;
    background-color: #dfdfdf;
    font-size: large;
    height: fit-content;
}

.finance-card-body {
    display: flex;
    width: 100%;
    padding: 15px;
    flex-direction: column;
    height: -webkit-fill-available;
}
.radio-buttons {
    display: flex;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    flex-wrap: nowrap;
    justify-content: center;
}
.custom-radio{
    border: 1px solid var(--red);
    box-shadow: 0 0 20px #c3c3c367;
    margin: 8px;
}

.custom-radio input{
    display: none;
}
.radio-btn {
    width: 100%;
    height: 100%;
    cursor: pointer;
    padding: 5px;
}
.custom-radio input:checked + .radio-btn {
    background-color: var(--red);
    color: #fff;
}
.radio-btn:hover {
    font-weight: 500;
}

.finance-card-call-us{
    text-align: center;
    font-size: 21px;
    font-weight: 600;
    width: 100%;
}
.section-title {
    text-align: center;
    font-weight: 600;
    font-size: xx-large;
    margin-bottom: 20px;
    padding: 30px 100px;
}

.finance-card-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 10px;
    font-weight: 600;
    font-size: large;
}
.width-50 {
    width: 50% !important;
    display: flex;
}
.padding-finance-card{
    padding: 20px;
}

.column-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px 0;
}
.column-flex a {
    margin-top: 15px;
    background-color: #02C344;
    text-align: center;
    padding: 5px 0px;
    margin-bottom: 50px;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    justify-content: center;
    width: 100% !important;
}

.width-100 {
    width: 100% !important;
    margin: 0;
}
.total-text{
    font-size: x-large;
    margin-top: 20px;
}
.strike-through {
    text-decoration: line-through;
    margin-right: 5px;
}
.deposit-section {

    background-color: #fff;
    width: 100%;
    
}
.deposit-section form{
    display: flex;
    background-color: #fff;
    width: 100%;
    padding: 20px 100px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.deposit-col {
    width: 48%;
    font-size: 16px;
    font-family: 'PT Sans', sans-serif;
}
.deposit-col label{
    font-size: 16px !important;
    font-family: 'PT Sans', sans-serif !important;
    margin-top: 4px !important;
}
.deposit-input {
    display: flex;
    margin-top: 10px;
    flex-direction: column;
    font-size: small;
    justify-content: space-between;
    width: 100%;
}

.deposit-input input,
 .deposit-input select {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 8px;
    font-size: 15px;
    margin-top: 5px;
}
.deposit-subtitle{
    margin-top: 30px;
    padding: 10px 0;
    border-bottom: 2px solid var(--green);
    padding-left: 10px;
}
.deposit-title{
    text-align: center;
    font-size: xx-large;
    padding: 15px 0;
    margin-bottom: 25px;
    background: #253d63;
    color: #fff;
    font-family: 'PT Sans', sans-serif;
}

.card-order-summary {
    display: flex;
    background-color: var(--secondary);
    border-radius: 8px;
    margin-top: 10px;
    flex-direction: column;
    padding: 15px 25px;
    font-size: 16px;
}
.card-order-summary-title {
    padding-bottom: 5px;
    border-bottom: 2px solid #c2c2c2;
    font-weight: 600;
    color: var(--color-secondary);
    font-size: larger;
    margin-bottom: 10px;
}

.card-order-summary-body {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}
.item-summary {
    width: 50%;
    margin-bottom: 5px;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 5px;
}
.weight-500{
    font-weight: 500;
}

.width-40{
    width: 40%;
    padding: 5px;
}
.width-20{
    width: 20%;
    padding: 5px;
}

.table-summary {
    display: flex;
    width: 100%;
    flex-direction: column;
    margin-top: 15px;
}
.thead-table-summary {
    display: flex;
    width: 100%;
    background-color: var(--secondary);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 2px solid var(--green);
    border-radius: 5px 5px 0 0;
}
.border-right{
    border-right: 1px solid #fff;
}
.row-table-summary{
    display: flex;
    width: 100%;
}
.border-box {
    border-right: 1px solid #e3e3e3;
    border-left: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
}
.body-table-summary{
        display: flex;
        flex-wrap: wrap;
}
.payment-section {
    display: flex;
    flex-wrap: wrap;
    background: var(--secondary);
    padding: 15px;
    margin: 15px;
    border-radius: 5px;
}
.label-input-pymt {
    font-size: small;
    margin-top: 8px;
}
.btn-primary{
    width: 100%;
    background: var(--green);
    text-decoration: none;
    border: 0;
    padding: 10px 0;
    color: #fff;
    font-size: large;
    font-weight: 600;
    cursor: pointer !important;
    text-transform: uppercase;
}
/*PAGINATION*/
.pagination {
    text-align: center;
    margin: auto;
    user-select: none;
    margin-bottom: 70px;
    display: flex;
}

.pagination li {
    margin: 5px;
    padding: 3px;
    list-style: none;
}
.pagination li a {
    color: #253d63;
    text-decoration: none;
    font-size: 1.3em;
    line-height: 40px;
    cursor: pointer;
}
.next-page,.previous-page{
    background-color: transparent;
    color: #253d63;
    cursor: pointer;
}
.current-page,.dots{
    background-color: transparent;
    border: 2px solid #253d63;
    width: 45px;
}
.active{
    background: #253d63;
    color: #fff;
}
.active a{
    color: #fff !important;
}
.disable a{
    color: #9b9da0 !important;
    cursor: not-allowed !important;
}
.ontraport_grid_offer__summary {
    
    width: 100% !important;
}
.ontraport_grid_offer .ontraport_grid {
    flex: 1 0 auto;
    width: 100%;
    overflow: auto;
}
.content #optinForm {
    padding: 10px;
    background: #f5f5f5;
    border-radius: 5px;
    margin: 10px 0;
}
.content #optinForm input[type=text] {
    border: 1px solid #cccccc96;
    border-radius: 3px;
    margin: 10px 0;
    width: 100% !important;
    height: 45px !important;
}
.content #optinForm #optinForm_submit {
    align-items: center;
    display: flex;
    justify-content: center;
}
.content #optinForm #optinForm_submit input[type=submit] {
    width: auto !important;
    margin: 10px auto;
    padding: 0 20px;
}
.content .form-contact .input-group textarea,
.content .form-contact .input-group input[type=text] {
    border: 1px solid #ccc;
    padding: 5px;
}
.content .form-contact {
    background: #f5f5f5;
    padding: 0 15px;
    padding-bottom: 10px;
    border-radius: 8px;
    margin-top: 10px;
}
.content .form-contact .input-group button {
    background-color: #02C344 !important;
    text-align: center;
    padding: 5px 0px;
    color: #fff;
    font-size: 18px !important;
    justify-content: center;
    border: none !important;
    width: 50% !important;
    border-radius: 2px !important;
}

@media only screen and (max-width: 480px) {
    .current-page, .dots {
        width: 30px;
    }
    .pagination li {
        margin: 2px;
        padding: 2px;
        list-style: none;
    }
    .current-page, .dots {
        width: 30px;
    }
    .card-black {
        width: 100% !important;
    }
}
@media only screen and (max-width: 495px) {
    .btn-slider{    
        font-size: 20px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        border-radius: 5%;
    }
    .btn-slider:hover{
        cursor: pointer;
        font-size: 25px;
        width: 52px;
        height: 52px;
    }
    .section-desc-property {  
        padding: 20px 20px;
    }
    .section-desc-property img {
        width: 100%;
    }
	.content h2,
    .section-desc-property h1{  
        font-size: 30px;
    }
	.content ul {	
		margin-left: 0px;
	} 
    .container-slider img {
        padding: 20px;
    }

}

@media only screen and (max-width: 670px) {
    .content #optinForm #optinForm_submit input[type=submit] {
        width: 100% !important;
    }
    .finance-card-table {
        font-size: medium;
    }
    .finance-section {
        flex-wrap: wrap;
        justify-content: center;
    }
    .finance-card {
        width: 90% !important; 
        margin-bottom: 15px;   
    }
    .section-title {
        font-size: x-large;
        padding: 20px 20px;
    }
    .padding-content {
        padding: 20px;
    }
    .logo-footer {
        width: 40%;
        object-fit: contain;
        margin: auto;
    }
    .footer-container {
        display: flex;
        background-color: var(--primary);
        color: #fff;
        font-size: small;
        flex-direction: column;
    }
    .first-section-footer {
        width: 100%;
        display: flex;
        flex-direction: column;
        text-align: justify;
    }
    .second-section-footer {
        width: 100%;
        display: flex;
        flex-direction: row;
        padding: 10px;
        justify-content: normal;
    }
    .padding{
        padding: 30px 15px !important;
    }
    .content .form-contact .input-group button {
        width: 100% !important;
    }
}
@media only screen and (max-width: 800px) {
    .radio-btn {
        font-size: small;
    }
    .deposit-section form{
        flex-direction: column;
        padding: 20px 25px;
    }
    .deposit-col {
        width: 100%;
    }
    .info-text h1{
        font-size: 40px;
    }
    .info-text h2{
        font-size: 20px;
    }
    .info-text h3{
        font-size: 12px; 
    }
    .form-phone{
        width: 100% !important;
    }
    .first-section {
        flex-direction: column;
    }
    .seventh-section {
        flex-direction: column;
    }
    .first-section h1 {
        font-size: 2.5rem;
    }
    .section-icon .container-icon .item {
        width: 45% !important;
        
    }
    .margin-bottom {
        margin-bottom: 30px;
    }
 
    

}
@media(max-width:1059px) {
    .menu-logo{
        max-width: 100px;
    }
    .call-us a{
       font-size: 10px;
    }
    .menu-container {
        display: flex;
        align-items: center;
        margin: 0 auto;
        padding-left: 20px;
        justify-content: space-evenly;
    }
    .menu-link:hover {
        background-color: transparent;
    }
    .menu-hamburguer {
        display: flex;
    }
    .menu-item {
        --clip: 0;
        overflow: hidden;
    }
    .menu-item-active {
        --transform: rotate(0);
        --background: var(--color-secondary);
    }
    .menu-item-container {
        background-color: var(--background);
    }
    .menu-links {
        position: fixed;
        width: 100%;
        bottom: 0;
        right: 0;
        background-color: var(--color-navbar);
        z-index: 1000;
        overflow-y: auto;
        display: grid;
        grid-auto-rows: max-content;
        transform: translateX(100%);
    }
    .menu-links-show {
        transform: unset;
        width: 100%;
        border-top: 2px solid #ccc;
    }
    .menu-link {
        padding: 15px 0;
        padding-left: 30px;
        height: auto;
        margin: 6px 15px 0 15px;
        border-bottom: 1px solid #ccc;
    }

    .submenu {
        background-color: transparent;
        border-top: none;
        display: grid;
        position: unset;
        width: 100%;
        transform: translateY(0);
        transition: all .3s;
    }
    .menu-link-inside {
        width: 100%;
    }
    
}

@media only screen and (max-width: 800px) {

.search_form {
    width: 100%!important;
    padding: 5px;
}

.search_form form{
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    align-items: baseline;
}

#search_slct {
    height: 42px;
    width: 100%;
}

#searchTxt {
    width: 75%!important;
    height: 42px;
}
	
}
@media(max-width:1310px) {
    /*TABLE RESP*/
    .moonray-form .ussr-grid-wrapper {
        background: #eff1f5!important;
        margin: 0 auto;
        border: 1px solid #eff1f5;
        padding: 5px;
        border-radius: 5px;
    }
    .ontraport_grid_offer__add_item_wrapper{
        display: none;
    }
    .ontraport_grid_offer__summary {
        width: 100% !important;
    }
    .ontraport_grid_offer td[data-modelattr=name] span,
    .ontraport_grid_offer td[data-modelattr=quantity] span{
        margin: 10px 0;
        color: #585656;
    }
    .ontraport_grid_offer td[data-modelattr=price] span {
        text-align: right !important;
    }
    /**/
    	/* Force table to not be like tables anymore */
    .ontraport_grid table,
    .ontraport_grid thead, 
    .ontraport_grid tbody, 
    .ontraport_grid th, 
    .ontraport_grid td,
    .ontraport_grid tr {
		display: block;
	}
    
	/* Hide table headers (but not display: none;, for accessibility) */
    .ontraport_grid_offer td[data-modelattr=name],
    .ontraport_grid_offer td[data-modelattr=quantity],
    .ontraport_grid_offer td[data-modelattr=price]{
        width: 100%!important;
        text-align: left !important;
        max-width: 100% !important;
    }

	.ontraport_grid thead tr {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}

    .ontraport_grid tr {
      margin: 0 0 1rem 0;
    }
      
    .ontraport_grid tr:nth-child(odd) {
        border-bottom: 3px solid #ccc;
        border-radius: 5px;
    }
    
    .ontraport_grid tr:nth-child(even) {
        border-top: 3px solid #ccc;
        border-radius: 5px;
    }
	.ontraport_grid td {
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee;
		position: relative;
		padding-left: 50%;
	}

	.ontraport_grid td:before {
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 0;
		left: 6px;
		width: 45%;
		padding-right: 10px;
		white-space: nowrap;
	}

	/*
	Label the data
    You could also use a data-* attribute and content for this. That way "bloats" the HTML, this way means you need to keep HTML and CSS in sync. Lea Verou has a clever way to handle with text-shadow.
	*/
    .ontraport_grid td:nth-of-type(1):before { 
        content: "ITEM"; 
        border-bottom: 1px solid #01c344;
        width: 95%;
    }
	.ontraport_grid td:nth-of-type(2):before {
        content: "QUANTITY"; 
        border-bottom: 1px solid #01c344;
        width: 95%;
    }
	.ontraport_grid td:nth-of-type(3):before { 
        content: "PRICE"; 
        border-bottom: 1px solid #01c344;
        width: 95%;
    }
	.ontraport_grid td:nth-of-type(4):before { 
        content: "TOTAL"; 
        border-bottom: 1px solid #01c344;
        width: 95%;
    }
}
@media only screen and (min-width: 1400px) {

    .info-text h1{
        font-size: 70px;
    }
    .content h2, .section-desc-property h1 {
        font-size: 50px;
    }
    .info-text h3{
        font-size: 38px; 
    }
    .header-search {
        min-height: 40vh;
    }
    .first-section {
        min-height: 20vh;
    }
}