/** Services Start **/
.ry-services.style2 {
	padding: 0px 0 160px;
	margin-top: -6%;
}
.ry-services.style2 .ry-container {
    max-width: 1400px;
	width: 90%;
}

.ry-services.style2:before {
	bottom: 0;
	height: 95%;
	background-position: center bottom;
	top: unset;
}

.feature-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
	gap: 20px;
}

.feature-cta .slick-list {
    padding: 40px 0px;
    width: 90%;
    max-width: 1320px;
}

.feature-cta .slick-list .slick-track {
    margin-left: -25px;
}

.feature-cta .slick-list .each-block {
    margin-left: 50px;
	position: relative;
	padding-bottom: 100px;
}

.feature-cta .each-block .photo {
    background: transparent;
    border-radius: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgb(0 0 0 / 10%);
    position: relative;
    transition: .3s ease;
    overflow: hidden;
}

.feature-cta .each-block:hover .photo {
    transition: .3s ease;
    transform: scale(1.05);
    background: #379dd2;
}

.feature-cta .each-block .photo img {
    width: 92%;
    height: 92%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: .3s ease;
    z-index: 9;
    overflow: hidden;
    border-radius: 100%;
    
    max-width: 150px;
    max-height: 150px;
    padding: 10px;
}

.feature-cta .each-block .photo:after {
	content: "";
	width: calc(100% - 35px);
	height: calc(100% - 35px);
	position: absolute;
	aspect-ratio: 1;
	background: linear-gradient(to bottom, #fafbfd, #ccd7dd);
	border-radius: 100%;
	transition: .3s;
    border: 0px solid white;
}
.feature-cta .each-block:hover .photo:after {
	background: #d8dde3;
	width: calc(100% - 35px);
	height: calc(100% - 35px);
	transition: .3s;
	border: 10px solid #95b86c;
}

.feature-cta .each-block .photo:before {
    content: "";
    position: absolute;
    width: 100%;
    background-position: center;
    transition: .3s ease;
    border: 4px solid #379dd2;
    height: 100%;
    border-radius: 100%;
    z-index: 10;
}

.feature-cta .each-block:hover .photo img {
    transition: .3s ease;
}

.feature-cta .each-block:hover .photo:before {
    /*background: #379dd233;*/
    border: 0 solid;
    transition: .3s;
}

.feature-cta .slick-list .each-block .link,
.feature-cta .slick-list .each-block .link a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 180px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    color: transparent;
}

.feature-cta .slick-list .each-block .title * {
    font-size: clamp(1.375rem, 1.3287rem + 0.2469vw, 1.625rem);
    font-weight: 500;
    transition: .3s;
	color: #343434;
}

.feature-cta .slick-list .each-block .title div {
    line-height: 120%;
}

.feature-cta .slick-list .each-block:hover .title * {
    color: #379dd2;
    transition: .3s;
}

.feature-cta .slick-list .each-block .title {
    padding-top: 10px;
    margin-top: 30px;
    display: inline-block;
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 20px;
	    min-height: 82px;
}

.feature-cta .slick-list .each-block .link a:focus {
    outline: none;
}

.feature-cta ul.slick-dots {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0;
    list-style: none;
    gap: 30px;
}

.feature-cta ul.slick-dots li {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 10px;
    margin: 0px;
}

.feature-cta ul.slick-dots li.slick-active {
    background: #95b86c;
}

.feature-cta ul.slick-dots li button {
    color: transparent;
    border: 0;
    width: 18px;
    height: 18px;
    border-radius: 10px;
    border: 1px solid #95b86c;
    background: no-repeat;
}

.feature-cta ul.slick-dots li:after {
    content: "";
    position: absolute;
    width: 30px;
    border-bottom: 1px solid #95b86c;
    left: 100%;
    transform: translateX(0%);
}

.feature-cta ul.slick-dots li:last-child:after {
    display: none;
}

.feature-cta button.slide-arrow {
    position: absolute;
    top: 32%;
    left: 2%;
    transform: translateY(-50%);
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 0;
    background: none;
    width: 40px;
    height: 40px;
}

.feature-cta button.slide-arrow.next-arrow {
    left: unset;
    right: 2%;
    transform: translateY(-50%) scale(-1);
}

.feature-cta button.slide-arrow:before {
    content: "";
    opacity: 0.3;
    transition: .3s;
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 6px;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.feature-cta button.slide-arrow:hover:before {
    opacity: .6;
    transition: .3s;
}

.ry-services.style2 .button-wrapper {
    display: none;
}

@media (max-width: 1080px) {
    .feature-cta .slick-list .each-block {
        margin-left: 30px;
    }
    .feature-cta .slick-list .slick-track {
        margin-left: -15px;
    }
    .feature-cta .slick-list {
        padding: 40px 0px 100px;
    }
    .feature-cta button.slide-arrow {
        top: unset;
        bottom: 30px;
        z-index: 99;
    }
    .feature-cta button.slide-arrow.prev-arrow {
        left: calc(50% - 50px);
    }
    .feature-cta button.slide-arrow.next-arrow {
        right: unset;
        left: calc(50% - 0px);
        bottom: 28px;
    }
}

@media (min-width: 1501px) {
    .feature-cta ul.slick-dots {
        display: none !important;
    }
    .feature-cta .slick-list {
        padding: 40px 0px 0;
    }
}
.ry-services.style2 .ry-content:after {
    content: "";
	position: absolute;
	top: -10px;
	right: -10px;
	bottom: -10px;
	left: -10px;
    border: 2px solid #379dd2;
    z-index: 1;
	border-radius: 0px;
	border-top-left-radius: calc(4vw + 5px);
	border-bottom-right-radius: calc(4vw + 5px);
}

.ry-services.style2 .section-headline .span-1 {
	font-size: 30px;
	color: #95b86c;
}

/*.ry-services.style2 .ry-content:before {
	content: "";
	position: absolute;
	top: 0%;
	left: 50%;
	background: #f0bb32;
	z-index: 1;
	width: 4px;
	height: 160px;
	transform: translate(-50%, -50%);
}*/

.ry-services.style2 .ry-content {
    display: flex;
    justify-content: center;
    box-shadow: 0px 30px 40px rgb(0 0 0 / 10%);
    background: #ffffff;
    position: relative;
    border-radius: 0px;
	padding: 100px 0px 0px;
	border-top-left-radius: calc(4vw + 0px);
	border-bottom-right-radius: calc(4vw + 0px);
}



.ry-services.style2 .ry-container {
    display: flex;
    position: relative;
    z-index: 99;
}

/*.ry-services.style2:after {
    content: "";
    position: absolute;
    inset: 0;
    bottom: unset;
    height: 54%;
    background: url(https://s3.amazonaws.com/static.organiclead.com/Site-eb2478c7-a09d-4a4c-aa2f-cb4f77ae911f/assets/brand_black_bg.jpg);
    background-size: cover;
}*/

@media (max-width: 500px) {
	div#section-hp-services .ser-title h4 {
		font-size: 20px;
	}
	div#section-hp-services .ser-title {
		left: 20px;
	}
}

@media(max-width: 1080px){
	.ry-services.style2 .each-block .photo img {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.ry-services.style2 .each-block .photo:before {
		background: unset;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.feature-cta .each-block:hover .photo img {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.feature-cta .each-block .photo:after {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}


.homepage-swiper .swiper-button-next, .homepage-swiper .swiper-button-prev {
    display: none !important;
}


.feature-cta .slick-list .each-block:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #ffffff, #ffffff, #deecfa);
    z-index: -1;
    margin: 0 -22px;
    transition: .3s;
	opacity: 0;
}

.feature-cta .slick-list .each-block:hover:before {
	transition: .3s;
	opacity: 1;
}

.feature-cta .each-block .button-svg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 2px solid #f0bb32;
    border-radius: 500px;
    padding: 12px;
    position: absolute;
    left: 50%;
    top: 85%;
    transform: translate(-50%, -50%);
    transition: .3s;
    opacity: 0;
}

.feature-cta .each-block .button-svg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 2px solid #95b86c;
    border-radius: 500px;
    padding: 12px;
    position: absolute;
    left: 50%;
    top: 85%;
    transform: translate(-50%, -50%);
    transition: .3s;
    opacity: 0;
}

.feature-cta .each-block:hover .button-svg {
	transition: .3s;
    opacity: 1;
}

/** Services End **/

/*----- SERVICE SECTION -----*/
.module-services.style-6.custom-services {
	background:url(https://s3.amazonaws.com/static.organiclead.com/Site-eb2478c7-a09d-4a4c-aa2f-cb4f77ae911f/assets/whole_custom_services_bg_2.jpg);
	background-size: cover;
	background-position: center bottom;
	position: relative;
}
.module-services.style-6.custom-services:before {
    content: "";
    position: absolute;
    inset: 0;
    top: unset;
    background: url(https://s3.amazonaws.com/static.organiclead.com/Site-eb2478c7-a09d-4a4c-aa2f-cb4f77ae911f/assets/custom_services_bottom.png);
    background-size: contain;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
}

.module-services.style-6 {
	padding-top:0px;
	padding-bottom:120px;
}
.module-services.style-6 .section-headline h2{
    color:#fff;
       line-height: 1.2;
    font-size: clamp(2.8125rem, 2.4142rem + 1.634vw, 4.375rem) !important;
    text-transform:capitalize !important;
    letter-spacing:unset !important
}
.module-services.style-6 .background-section {
    display:none
}
.module-services .ry-container {
    padding-top:00px;
    max-width:1280px;
	width:90%;
	z-index:2
}
.module-services.style-6 .background-section, .module-services.style-6 .background-section img {
    object-position:top;
}

.module-services.style-6 .ry-flex {
    flex-direction:column;
	row-gap:50px
}
.module-services.style-6 .services-wrapper .ry-flex .ry-each {
    width:100%;
    display:flex;
	align-items:center;
	justify-content:space-between;
}
.module-services.style-6 .services-wrapper .ry-flex .ry-each > div {
	width:48%;
}

.module-services.style-6 .services-wrapper .ry-flex .ry-each > div:nth-child(2) {
    max-width:480px;
    width:100%;
}

.module-services.style-6 .services-wrapper .ry-flex .ry-each .info *{
	text-align:start !important;
}
.module-services.style-6 .services-wrapper .ry-flex .ry-each .info p {
    color:#242424;
    line-height:1.4 !important;
}

.module-services.style-6 .services-wrapper .ry-flex .ry-each .info .ry-btn {
	margin-top:30px
}

.module-services.style-6 .services-wrapper .ry-flex .ry-each:nth-child(even){
	flex-direction:row-reverse
}
.module-services.style-6 .services-wrapper .ry-flex .ry-each .title {
    padding-top:0;
	padding-bottom:10px
}

.module-services.style-6 .services-wrapper .ry-flex .ry-each .title h3{
    color: #000;
    font-size: clamp(2.1875rem, 1.9804rem + 0.8497vw, 3rem);
    line-height:1.2 !important;
	text-transform: uppercase;
}
.module-services.style-6 .services-wrapper .ry-flex .ry-each .title h3 span {
    font-size: 24px;
    color: #000;
}

.module-services.style-6 .services-wrapper .ry-flex .ry-each:hover .photo {
    filter: unset;
    transition: .5s;
}

.module-services.style-6 .services-wrapper .ry-flex .ry-each .photo:before {
	display:none
}

.module-services.style-6 .services-wrapper .ry-flex .ry-each .product-logo {
    margin: 12px 0 30px;
}
.module-services.style-6 .services-wrapper .ry-flex .ry-each .product-logo img {
    width: 220px;
    object-fit: contain;
}

@media (max-width: 1080px) {
	.module-services.style-6 .services-wrapper .ry-flex .ry-each:not(:last-child) {
		margin-bottom: 0px;
	}
	.module-services.style-6 .services-wrapper .ry-flex .ry-each {
		max-width: unset;
		margin: 0 auto;
		gap:4vw
	}
	.module-services.style-6 {
		padding-bottom: 240px;
	}
}

@media (max-width: 991px) {
	.module-services.style-6 .services-wrapper .ry-flex .ry-each > div,
	.module-services.style-6 .services-wrapper .ry-flex .ry-each > div:nth-child(2){
		max-width:100%;
		width:100%
	}

	.module-services.style-6 .services-wrapper .ry-flex .ry-each {
		flex-wrap:wrap
	}
	.module-services.style-6 .services-wrapper .ry-flex .ry-each .photo img {
		max-width:500px;
		margin:auto
	}
	.module-services.style-6 .services-wrapper .ry-flex .ry-each .info * {
		text-align:center !important
	}
	.module-services.style-6 .services-wrapper .ry-flex .ry-each .ry-btn {
		margin-inline:auto
	}
	
	div.module-services.style-6 .services-wrapper .ry-flex .ry-each .product-logo img {
		margin: 0 auto;
	}
}
/** End Services Style **/

body.home div#section-insurances {
	position: relative;
}
body.home div#section-insurances:before {
	content: "";
	position: absolute;
	inset: 0;
	background: #95b86c;
}
body.home div#section-insurances h2.ry-multi-item-slider-heading-section.py-4.mb-4 {
    color: #fff;
}

/* FOOTER */
@media (max-width: 1080px)  {
	.footer-social .social-blocks .social-icons .social-inner-wrap {
		justify-content: center;
	}
}
.footer {
	padding-top: 80px;
}
.footer .module-contact .ry-content {
	max-width: 1280px;
	border-radius: 30px;
	background: #fff;
	overflow: hidden;
	box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 20%);
	-webkit-box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 20%);
	-moz-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.2);
}

.footer .module-contact .ry-container {
	display: flex;
	justify-content: center;
}

.footer .module-contact .ry-container .ry-each .photo, .footer .module-contact .ry-container .ry-each .photo  img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.footer .module-contact .ry-container .ry-each:nth-child(2) {
	padding: 80px 8%;
}

.footer .module-contact .ry-container .ry-each {
	max-width: 100%;
	width: 50%;
}

.footer:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 26%;
	background: #fef4eb;
	content: "";
	z-index: -1;
}

.footer .module-contact .ry-content .section-headline h5 {
	margin-top: 10px;
}

.footer .module-contact .ry-content .section-headline {
	margin-bottom: 50px;
}


.footer .module-contact .ry-container .ry-each .ry-btn {
	margin-left: auto;
	margin-right: auto;
	display: flex;
	margin-top: 25px;
}
.footer .form-control {
	height: 50px;
	border-radius: unset;
	box-shadow: unset;
	font-size: 17px;
	letter-spacing: initial;
	padding-left: 25px;
}

.footer textarea.form-control {
	padding-top: 15px;
	height: 150px;
	resize: unset;
}


.footer .module-contact .ry-container .ry-each .photo:before {
	content: "";
	background-image: url(https://s3.amazonaws.com/static.organiclead.com/Site-3fc57e3c-6010-43a0-80d5-2806b8cd284f/HomepageAssets/map_shadow.png);
	width: 75px;
	height: 100%;
	position: absolute;
	right: -75px;
	top: 0;
	z-index: 9;
	background-size: 100%;
}

.footer .module-block .ry-container .ry-content {
	max-width: 1280px;
}

.footer .footer-block .ry-container {
	display: flex;
	justify-content: center;
}

.footer .footer-block .ry-container .ry-content {
	max-width: 1280px;
	margin: 100px 0 0;
}

.footer .footer-block .ry-container .ry-content .ry-flex .ry-each:nth-child(1) {
	max-width: 280px;
	display: flex;
	/*align-items: center;*/
}

.footer .footer-block .ry-container .ry-content .ry-flex {
	padding: 0 5%;
	margin-bottom: 80px;
}

.footer .title {
	font-size: 19px;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #111;
	margin-bottom: 30px;
}

.footer .footer-block .ry-container .ry-content .ry-flex .ry-each:nth-child(3), .footer .footer-block .ry-container .ry-content .ry-flex .ry-each:nth-child(2) {
	max-width: 290px;
}
.footer .footer-block .ry-container .ry-content .ry-flex .ry-each:nth-child(2) {
	max-width: 445px;
}

.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper {
	display: flex;
}

.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper .svg-icon {
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #379dd2;
	border-radius: 50%;
	margin-right: 20px;
	min-width:45px;
}

.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper .svg-icon svg {
	width: 18px;
	fill: #fff;
}

.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper:not(:last-child) {
	margin-bottom: 20px;
}

.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper .ry-text, 
.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper .ry-text p, 
.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper .ry-text.phone p span {
	font-size: 17px;
	line-height: 1.4;
	font-weight: 400;
}

.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper .ry-text.phone a, 
.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper .ry-text.phone p {
	font-size: 20px;
	font-weight: 600;
}


.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper ul {
	padding-left: 0;
	list-style: none;
}

.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper ul li {
	display: flex;
}

.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper ul li,
.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper ul li span {
	font-size: 17px;
	font-weight: 600;
	line-height: 1.6;
}

.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper ul li span {
	min-width: 130px;
	font-weight: 400;
}

.footer .footer-block .ry-container .ry-content .ry-flex {}

.footer-bottom {
	padding: 30px 0;
	border-top: 1px solid #b2b2b2;
}

.footer-bottom .ry-each {
	display: flex;
	justify-content: space-between;
}

.footer-bottom .ry-each .powered-image {
	max-width: max-content;
	display: flex;
	justify-content: flex-end;
}

.footer-bottom .ry-each .powered-image img {
	max-width: 110px;
	object-fit: contain;
}

.footer-bottom .ry-each .powered-text, 
.footer-bottom .ry-each .powered-text p, 
.footer-bottom .ry-each .powered-text a,
.footer-bottom .ry-each .powered-image p {
	font-size: 15px;

}

.footer-bottom .ry-each .powered-image p {
	margin-right: 5px;
}
.footer-social {
	margin-top: 0;
}
.footer-social .social-blocks .social-icons {
	padding-left: 0;
}

.footer-social .social-blocks .social-icons .social-inner-wrap {
	display: flex;
}

.footer-social .social-blocks .social-icons .social-inner-wrap li {
	width: auto;
	height: auto;
	margin-bottom: 0;
}

.footer-social .social-blocks .social-icons .social-inner-wrap li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background: #379dd2;
}

.footer-social .social-blocks .social-icons .social-inner-wrap li a svg {
	width: 18px;
	fill: #fff;
}

.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper .ry-text p a {
	color: #379dd2;
}

.footer-bottom .ry-each .powered-text a {
	color: #379dd2;
	font-size: 16px;
}

.footer-social .social-blocks {}
@media (max-width: 1680px) {
	.footer .footer-block .ry-container .ry-content .ry-flex .ry-each:nth-child(1) {
		padding-right: 30px;
	}
	.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper .ry-text, 
	.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper .ry-text p, 
	.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper .ry-text.phone p span,
	.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper ul li, 
	.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper ul li span {
		font-size: 16px;
	}
}
@media (max-width: 1380px) {
	.footer .module-contact .ry-container .ry-each:nth-child(2) {
		padding: 60px;
	}
}
@media (max-width: 1280px) {
	.footer .footer-block .ry-container .ry-content .ry-flex {
		padding: 0;
	}
}
@media (max-width: 1199px) {
	.ry-list-wrp .ry-list-item .ry-list-content p {
		text-align: center;
	}
}
@media (max-width: 1080px) {
	.footer {
		padding-top: 100px;
	}

	.footer .module-contact .ry-content .content .ry-flex {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.footer .module-contact .ry-container .ry-each:nth-child(1) {
		height: 400px;
	}
	.footer .module-contact .ry-container .ry-each {
		width: 100%;
	}
	.footer .footer-block .ry-container .ry-content .ry-flex {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.footer .footer-block .ry-container .ry-content .ry-flex .ry-each:not(:last-child) {
		margin-bottom: 30px;
	}
	.footer .footer-block .ry-container .ry-content .ry-flex .ry-each:nth-child(1) {
		padding-right: 0;
		max-width: 250px;
	}
	.footer .footer-block .ry-container .ry-content .ry-flex .ry-each:nth-child(3), 
	.footer .footer-block .ry-container .ry-content .ry-flex .ry-each:nth-child(2) {
		max-width: 100%;
	}
	.footer .title {
		text-align: center;
		letter-spacing: 1px;
	}
	.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper .svg-icon {
		margin-right: 0;
		margin-bottom: 10px;
	}
	.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper .ry-text, 
	.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper .ry-text p, 
	.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper .ry-text.phone p span,
	.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper ul li, 
	.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper ul li span {
		text-align: center;
	}
	.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper ul li {
		flex-direction: column;
	}
	.footer-bottom .ry-each {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.footer-bottom .ry-each .powered-image {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
}
@media (max-width: 620px) {
	.footer .module-contact .ry-container .ry-each:nth-child(2) {
		padding-left: 5%;
		padding-right: 5%;
	}
}
.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper .ry-text a:hover,
.footer-bottom .ry-each .powered-text a:hover {
	color: #95b86c;
}

.module-contact .ry-title {
	margin-bottom: 40px;
}
.ry-title h5 {
	color: #000;
}

.footer {
	padding-top: 0;
}
.footer:before {
	background: linear-gradient(to bottom, #95b86c, #ccddba);
	opacity: 1;
}

.footer .module-contact .ry-container .content {
	padding: 10px;
	/* background: #fff; */
}

.footer .module-contact .ry-container .content .ry-flex {
	background: #fff;
	border-radius: 40px;
	overflow: hidden;
}

.footer .module-contact .ry-content {
	background: rgba(255,255,255,.2);
	border-radius: 40px;
}
.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper .ry-text p a {
	color: #333;
}

.footer .footer-block .ry-container .ry-content .ry-flex .ry-each .details-wrapper .ry-text.phone a {
	color: #379dd2;
}

@media (max-width: 1080px) { 
	.footer .module-contact .ry-container .ry-each:nth-child(1) {
		height: 500px;
	}
	.footer-bottom .ry-each .powered-text, .footer-bottom .ry-each .powered-text p, .footer-bottom .ry-each .powered-text a, .footer-bottom .ry-each .powered-image p {
		text-align: center;
	}
}
/* END FOOTER */


.custom-popup input {
    font-size: 18px;
    padding-left: 20px;
}