/*
    CTC Separate Stylesheet
    Updated: 2024-09-06 04:41:06
    */
    
    
.hover_txt_flip a {
    color: var(--bermuda_color);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.hover_txt_flip a:hover {
    color: var(--bermuda_color) !important;
}

.hover_txt_flip a:hover:before {
    width: 100%;
    -webkit-transition: all .15s cubic-bezier(0.4, 0, 1, 1);
    transition: all .15s cubic-bezier(0.4, 0, 1, 1);
}

.hover_txt_flip a:before {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    background: var(--bermuda_color);
    -webkit-transition: all 1s ease-out;
    transition: all 1s ease-out;
}

.htag_h2 h2 {
    font-family: var(--recoletabold_font);
    font-size: 56px;
    padding-bottom: 12px;
    margin-bottom: 0;
    color: var(--bermuda_color);
}

.para_txt span {
    font-size: 24px;
    font-family: var(--recoletaregular_font);
    padding-bottom: 4px;
    color: var(--para-text);
}
.para_txt p {
    font-size: 24px;
    font-family: var(--recoletaregular_font);
    padding-bottom: 4px;
    color: var(--para-text);
}

@media only screen and (min-width: 1280px) and (max-width: 1400px) {
    .htag_h2 h2 {
        font-size: 48px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .htag_h2 h2 {
        font-size: 46px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .htag_h2 h2 {
        font-size: 40px;
    }

    .para_txt span {
        font-size: 22px;
    }
}

@media only screen and (max-width: 767px) {
    .htag_h2 h2 {
        font-size: 32px;
    }

    .para_txt p {
        font-size: 18px;
    }

    .para_txt span {
        font-size: 20px;
    }
}



/*=======================================
Home Fourth section css start
========================================*/
.home_service_sect {
    padding: 80px 0px;
	background-color: var(--white_color);
}

.home_service_container {
    max-width: 736px;
    margin: auto;
    width: 90%;
}

.home_service_main_row {
    background: var(--white_color);
    padding: 48px;
    box-shadow: rgb(19 19 19 / 8%) 0px 20px 37px;
    border-radius: 12px;
    border: 2px solid var(--bermuda_color);
    display: flex;
    column-gap: 32px;
    align-items: center;
}

.home_service_second_con_div h3 {
    font-family: var(--recoletabold_font);
    font-size: 32px;
    font-weight: 800;
    padding-bottom: 4px;
    color: var(--secondary_color);
}

.home_service_icon_div img {
    width: 80px;
    height: 80px;
}

.home_service_icon_div {
    width: 100%;
    height: 80px;
    max-width: 80px;
}

.home_service_second_con_div p {
    font-family: 'muliregular';
    color: var(--para-text);
    font-size: 16px;
    margin-bottom: 0;
}

div#service_row1 {
    view-timeline: --subjectReveal block;
    animation-timeline: --subjectReveal;
    animation-name: zoombox1;
    animation-range: cover cover;
    animation-fill-mode: both;
    animation-duration: 2s;
    position: sticky;
    top: 150px;
}

@keyframes zoombox1 {
    0% {
        transform: scaleX(1);
    }

    20% {
        transform: scaleX(0.98);
    }

    40% {
        transform: scaleX(0.9);
    }

    100% {
        transform: scaleX(0.89);
        position: sticky;
    }
}

div#service_row2 {
    view-timeline: --subjectReveal block;
    animation-timeline: --subjectReveal;
    animation-name: zoombox2;
    animation-range: cover cover;
    animation-fill-mode: both;
    animation-duration: 2s;
    position: sticky;
    top: 195px;
}

@keyframes zoombox2 {
    0% {
        transform: scaleX(1);
    }

    30% {
        transform: scaleX(0.95);
    }

    50% {
        transform: scaleX(0.93);
    }

    100% {
        transform: scaleX(0.91);
        position: sticky;
    }
}

div#service_row3 {
    view-timeline: --subjectReveal block;
    animation-timeline: --subjectReveal;
    animation-name: zoombox3;
    animation-range: cover cover;
    animation-fill-mode: both;
    animation-duration: 2s;
    position: sticky;
    top: 250px;
}

@keyframes zoombox3 {
    0% {
        transform: scaleX(1);
    }

    30% {
        transform: scaleX(1.00);
    }

    50% {
        transform: scaleX(0.96);
    }

    100% {
        transform: scaleX(0.9);
        position: sticky;
    }
}

div#service_row4 {
    view-timeline: --subjectReveal block;
    animation-timeline: --subjectReveal;
    animation-name: zoombox4;
    animation-range: cover cover;
    animation-fill-mode: both;
    animation-duration: 2s;
    position: sticky;
    top: 250px;
}

@keyframes zoombox4 {
    0% {
        transform: scaleX(1);
    }

    30% {
        transform: scaleX(1.05);
    }

    50% {
        transform: scaleX(0.99);
    }

    60% {
        transform: scaleX(0.92);
        position: sticky;
    }

    100% {
        transform: scaleX(1);
        position: sticky;
    }
}

.home_service_content_div {
    display: grid;
    row-gap: 64px;
    padding-top: 80px;
}

@media (max-width: 991px) {
    .home_service_content_div {
        row-gap: 40px;
        padding-top: 40px;
    }

    .home_service_second_con_div h3 {
        font-size: 28px;
    }
    .home_service_sect {
        padding: 50px 0px;
    }
}

@media (max-width: 767px) {
    .home_service_main_row {
        display: block;
        padding: 20px;
    }

    .home_service_second_con_div h3 {
        font-size: 23px !important;
    }
    .home_service_icon_div img {
        width: 60px;
        height: 60px;
    }
}

/*=======================================
Home Fourth section css end
========================================*/

/*=======================================
Home second section css end
========================================*/
.home_second_section {
    background: var(--bermuda_color);
    padding: 48px 0px;
}

.same_width_1240 {
    width: 90%;
    max-width: 1240px;
    margin: auto;
}

.home_second_content_div h2,
.home_second_content_div span {
    color: var(--white_color);
}

.home_second_content_div .default-btn {text-align: center;margin-top: 24px;}

.home_second_content_div a.default-cta {
    background: var(--white_color);
    border-color: var(--white_color);
    color: var(--bermuda_color);
}

.home_second_content_div a.default-cta:hover {
    background: transparent;
    color: var(--white_color);
}
/*=======================================
Home second section css end
========================================*/


/*=======================================
Home third section css end
========================================*/
.home_third_section {
    background: #fff;
    padding: 80px 0px;
}

.home_image_col {
    width: 50%;
}

.home_about_content_div {
    width: 50%;
    padding-right: 110px;
}

.home_image_col img {
    border-radius: 24px;
}

.home_about_content_div .banner_btn_div {
    margin-top: 32px;
}
@media only screen and (min-width: 1281px) and (max-width: 1680px) {
    .home_about_content_div {
        padding-right: 50px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .home_about_content_div {
        padding-right: 30px;
    }
}
@media (max-width: 991px) {
    .home_image_col {
        width: 100%;
    }
    
    .home_about_content_div {
        width: 100%;
        padding-right: 0px;
        padding-top: 20px;
    }
}
/*=======================================
Home third section css end
========================================*/



/*===============================================
= Start Contact Form Section CSS
===============================================*/
.same_width_1220 {
	width: 1220px;
	margin: auto;
}

.price_guide_text_div {
	padding-bottom: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 1320px) {
	.same_width_1220 {
		width: 90%;
	}

	.price_guide_text_div {
		padding-bottom: 40px;
	}
}

@media (max-width: 767px) {
	.same_width_1220 {
		width: 90%;
	}

	.price_guide_text_div {
		padding-bottom: 20px;
	}
}

.price_guide_div {
	display: flex;
	align-items: center;
}

.price_guide_form_div {
	padding: 24px;
	background: var(--white_color);
	background-image: repeating-linear-gradient(-17deg, #8c68507a, #8c68507a 9px, transparent 9px, transparent 18px, #8c68507a 18px), repeating-linear-gradient(73deg, #8c68507a, #8c68507a 9px, transparent 9px, transparent 18px, #8c68507a 18px), repeating-linear-gradient(163deg, #8c68507a, #8c68507a 9px, transparent 9px, transparent 18px, #8c68507a 18px), repeating-linear-gradient(253deg, #8c68507a, #8c68507a 9px, transparent 9px, transparent 18px, #8c68507a 18px);
	background-size: 2px calc(100% + 18.82px), calc(100% + 18.82px) 2px, 2px calc(100% + 18.82px), calc(100% + 18.82px) 2px;
	background-position: 0 0, 0 0, 100% 0, 0 100%;
	background-repeat: no-repeat;
	animation: borderAnimation 1s infinite linear;
}

@keyframes borderAnimation {
	from {
		background-position: 0 0, -18.82px 0, 100% -18.82px, 0 100%;
	}

	to {
		background-position: 0 -18.82px, 0 0, 100% 0, -18.82px 100%;
	}
}

label.field_title {
	padding: 5px 5px 0px;
	margin-top: -15px;
	color: #515C5C;
	font-weight: 600;
	font-size: 18px;
	font-family: var(--recoletaregular_font);
}

.last-visited-content .email-content label input {
	height: 54px;
	font-family: var(--recoletaregular_font);
	font-weight: 500;
	color: var(--para-text);
	padding: 10px;
	width: 100%;
	font-size: 16px;
	background: #f9f3ef;
	border: none;
}

.price_guide_form_div ::placeholder {
	color: #B5B9B8;
}

button#cretivego8 {
	color: #fff;
	font-weight: 600;
	padding: 14px 20px;
	font-size: 18px;
	margin-top: 12px;
	border-radius: 80px;
	background: var(--bermuda_color);
	display: inline-block;
	transition: all 0.3s ease-in-out;
	border: none;
	cursor: pointer;
	outline: none;
	width: 100%;
	font-family: var(--recoletabold_font);
	text-transform: uppercase;
}

.last-visited-content .email-content>label {
	width: 100%;
	position: relative;
	margin-bottom: 24px;
}

.label1 {
	color: red;
	position: absolute;
	bottom: -27px;
	font-size: 12px;
	left: 0;
	font-family: var(--recoletaregular_font);
	font-weight: 600;
}

.last-visited-content .email-content label input:focus {
	outline-color: transparent;
}

.form_row .col-12 {
	background: transparent;
}

.price_guide_form_content_div {
	/* background: #fff; */
	padding: 24px;
}

.home_guide_ul_div h3 {
	font-family: var(--recoletabold_font);
	font-weight: 600;
	font-size: 22px;
	padding-top: 24px;
	padding-bottom: 20px;
	color: var(--bermuda_color);
}

.price_guide_main_div li {
	font-family: var(--recoletaregular_font);
	font-size: 18px;
	padding-bottom: 12px;
	list-style: none;
	padding-left: 30px;
	position: relative;
	font-weight: 500;
	color: var(--para-text);
}

.price_guide_main_div li:before {
	content: "";
	background-size: contain;
	background-repeat: no-repeat;
	width: 22px;
	height: 22px;
	position: absolute;
	top: 3px;
	left: 0;
	background-image: url(/wp-content/uploads/2024/09/price-guide.svg);
}

.price_guide_section {
	position: relative;
	padding: 80px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1140px) {
	.price_guide_div {
		column-gap: 40px;
	}
}

@media only screen and (min-width: 1140px) and (max-width: 1340px) {
	.price_guide_div {
		column-gap: 60px;
	}
}

@media (max-width: 991px) {
	.price_guide_section {
		padding: 50px 0;
	}

	.price_guide_div {
		display: block;
		margin-top: 0 !important;
	}

	.price_guide_form_content_div {
		margin-bottom: 20px;
		order: 2;
	}

	.price_guide_form_div_blk,
	.price_guide_form_content_div {
		width: 100%;
	}

	.price_guide_form_content_div {
		text-align: center;
	}

	.home_guide_ul_div {
		max-width: 330px;
		margin: auto;
		text-align: left;
		width: 100%;
	}
}

@media (max-width: 575px) {
	.price_guide_form_div {
		padding: 14px;
	}

	.price_guide_form_content_div {
		padding: 14px;
	}
}

@media (max-width: 767px) {
	.home_guide_ul_div h3 {
		font-size: 19px;
		padding-bottom: 12px;
	}

	.price_guide_main_div li {
		font-size: 16px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.price_guide_form_div_blk .subpage_title_text h2 {
		max-width: 668px;
		width: 100%;
	}
}

@media (min-width: 992px) {

	.price_guide_form_content_div {
		max-width: 440px;
		width: 100%;
	}

	.price_guide_form_div_blk {
		max-width: 690px;
		width: 100%;
	}

	.price_guide_form_div {
		max-width: 600px;
		width: 100%;
	}
}

/*===============================================
= End Contact Form Section CSS
===============================================*/


.subpage_banner
{
    margin-bottom: 0px !important;
}
.privacy_main_sec_blk {
	padding-left: 15px;
	padding-right: 15px;
}

/* .privacy_txt_block h2:not(:first-child) {
	margin-top: 35px;
} */

.privacy_txt_block h2,
.privacy_txt_block h3 {
	padding-bottom: 0;
	margin-bottom: 20px;
	text-align: left;
	font-size: 34px;
    font-family: var(--recoletabold_font);
    font-weight: 600;
    color: var(--bermuda_color);
}

.privacy_policy_div ul {
	margin: 0;
}

.privacy-text-info ul li {
	color: var(--para-text) !important;
	font-size: 20px;
}

.privacy-text-info h3:nth-child(3) {
	padding-top: 30px !important;
}

.privacy-text-info ul {
	list-style: disc;
	margin-left: 22px;
	padding-bottom: 20px;
}

.privacy-text-info ul li::marker {
	font-size: 24px;
	color: var(--bermuda_color);
}

.privacy-text-info p {
	display: block;
}

.privacy-text-info p:last-child {
	margin-bottom: 0 !important;
}

.privacy_txt_block a {
	color: var(--bermuda_color) !important;
}

.privacy_txt_block a:hover {
	color: var(--bermuda_color) !important;
}

.same_padding {
	padding: 100px 0px;
}

.same_width_1000 {
	max-width: 1000px;
	margin: auto;
}

.privacy_txt_block ul.mb-3 {
	padding-left: 20px;
}

.privacy_txt_block ul.mb-3 li {
	margin-bottom: 10px;
}

@media (max-width: 991px) {

	.privacy_txt_block h2,
	.privacy_txt_block h3 {
		font-size: 24px;
	}

	.same_padding {
		padding: 50px 0px;
	}
}

@media (max-width: 1140px) {
	.same_width_1000 {
		width: 90%;
		max-width: 1000px;
	}
}


@media only screen and (min-width: 992px) and (max-width: 1440px) {
	.same_padding {
		padding: 60px 0px !important;
	}
}

/*---------------------------------New Css Start-------------------------------------------------*/

/*=======================================
Home Fourth section css start
========================================*/
.home_service_sect {
    padding: 80px 0px;
}

.home_service_container {
    max-width: 736px;
    margin: auto;
    width: 90%;
}

.home_service_main_row {
    background: var(--white_color);
    padding: 48px;
    box-shadow: rgb(19 19 19 / 8%) 0px 20px 37px;
    border-radius: 12px;
    border: 2px solid var(--bermuda_color);
    display: flex;
    column-gap: 32px;
    align-items: center;
}

.home_service_second_con_div h3 {
    font-family: var(--recoletabold_font);
    font-size: 32px;
    font-weight: 800;
    padding-bottom: 4px;
    color: var(--secondary_color);
}

.home_service_icon_div img {
    width: 80px;
    height: 80px;
}

.home_service_icon_div {
    width: 100%;
    height: 80px;
    max-width: 80px;
}

.home_service_second_con_div p {
    font-family: 'muliregular';
    color: var(--para-text);
    font-size: 16px;
    margin-bottom: 0;
}

div#service_row1 {
    view-timeline: --subjectReveal block;
    animation-timeline: --subjectReveal;
    animation-name: zoombox1;
    animation-range: cover cover;
    animation-fill-mode: both;
    animation-duration: 2s;
    position: sticky;
    top: 150px;
}

@keyframes zoombox1 {
    0% {
        transform: scaleX(1);
    }

    20% {
        transform: scaleX(0.98);
    }

    40% {
        transform: scaleX(0.9);
    }

    100% {
        transform: scaleX(0.89);
        position: sticky;
    }
}

div#service_row2 {
    view-timeline: --subjectReveal block;
    animation-timeline: --subjectReveal;
    animation-name: zoombox2;
    animation-range: cover cover;
    animation-fill-mode: both;
    animation-duration: 2s;
    position: sticky;
    top: 195px;
}

@keyframes zoombox2 {
    0% {
        transform: scaleX(1);
    }

    30% {
        transform: scaleX(0.95);
    }

    50% {
        transform: scaleX(0.93);
    }

    100% {
        transform: scaleX(0.91);
        position: sticky;
    }
}

div#service_row3 {
    view-timeline: --subjectReveal block;
    animation-timeline: --subjectReveal;
    animation-name: zoombox3;
    animation-range: cover cover;
    animation-fill-mode: both;
    animation-duration: 2s;
    position: sticky;
    top: 250px;
}

@keyframes zoombox3 {
    0% {
        transform: scaleX(1);
    }

    30% {
        transform: scaleX(1.00);
    }

    50% {
        transform: scaleX(0.96);
    }

    100% {
        transform: scaleX(0.9);
        position: sticky;
    }
}

div#service_row4 {
    view-timeline: --subjectReveal block;
    animation-timeline: --subjectReveal;
    animation-name: zoombox4;
    animation-range: cover cover;
    animation-fill-mode: both;
    animation-duration: 2s;
    position: sticky;
    top: 250px;
}

@keyframes zoombox4 {
    0% {
        transform: scaleX(1);
    }

    30% {
        transform: scaleX(1.05);
    }

    50% {
        transform: scaleX(0.99);
    }

    60% {
        transform: scaleX(0.92);
        position: sticky;
    }

    100% {
        transform: scaleX(1);
        position: sticky;
    }
}

.home_service_content_div {
    display: grid;
    row-gap: 64px;
    padding-top: 80px;
}

@media (max-width: 991px) {
    .home_service_content_div {
        row-gap: 40px;
        padding-top: 40px;
    }

    .home_service_second_con_div h3 {
        font-size: 28px;
    }

    .home_service_sect {
        padding: 50px 0px;
    }
}

@media (max-width: 767px) {
    .home_service_main_row {
        display: block;
        padding: 20px;
    }

    .home_service_second_con_div h3 {
        font-size: 23px !important;
    }

    .home_service_icon_div img {
        width: 60px;
        height: 60px;
    }
}

/*=======================================
Home Fourth section css end
========================================*/

/*=======================================
Home second section css end
========================================*/
.home_second_section {
    background: #4D6B91;
    padding: 48px 0px;
}

.same_width_1240 {
    width: 90%;
    max-width: 1240px;
    margin: auto;
}

.home_second_content_div h2,
.home_second_content_div span,
.home_second_content_div p {
    color: var(--white_color);
}

.home_second_content_div .default-btn {
    text-align: center;
    margin-top: 24px;
}

.home_second_content_div a.default-cta {
    background: var(--white_color);
    border-color: var(--white_color);
    color: var(--bermuda_color);
}

.home_second_content_div a.default-cta:hover {
    background: transparent;
    color: var(--white_color);
}

/*=======================================
Home second section css end
========================================*/


/*=======================================
Home third section css end
========================================*/
.home_third_section {
    background: #fff;
    padding: 80px 0px;
}

.home_image_col {
    width: 50%;
}

.home_about_content_div {
    width: 50%;
    padding-right: 110px;
}

.home_image_col img {
    border-radius: 24px;
    width: 100%;
}

.home_about_content_div .banner_btn_div {
    margin-top: 32px;
}

@media only screen and (min-width: 1281px) and (max-width: 1680px) {
    .home_about_content_div {
        padding-right: 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .home_about_content_div {
        padding-right: 30px;
    }
}

@media (max-width: 991px) {
    .home_image_col {
        width: 100%;
    }

    .home_about_content_div {
        width: 100%;
        padding-right: 0px;
        padding-top: 20px;
    }

    .home_third_section {
        padding: 50px 0px;
    }
}

/*=======================================
Home third section css end
========================================*/



/*===============================================
= Start Contact Form Section CSS
===============================================*/
.same_width_1220 {
    width: 1220px;
    margin: auto;
}

.price_guide_text_div {
    padding-bottom: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 1320px) {
    .same_width_1220 {
        width: 90%;
    }

    .price_guide_text_div {
        padding-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .same_width_1220 {
        width: 90%;
    }

    .price_guide_text_div {
        padding-bottom: 20px;
    }
}

.price_guide_div {
    display: flex;
    align-items: center;
}

.price_guide_form_div {
    padding: 24px;
    background: var(--white_color);
    background-image: repeating-linear-gradient(-17deg, #8c68507a, #8c68507a 9px, transparent 9px, transparent 18px, #8c68507a 18px), repeating-linear-gradient(73deg, #8c68507a, #8c68507a 9px, transparent 9px, transparent 18px, #8c68507a 18px), repeating-linear-gradient(163deg, #8c68507a, #8c68507a 9px, transparent 9px, transparent 18px, #8c68507a 18px), repeating-linear-gradient(253deg, #8c68507a, #8c68507a 9px, transparent 9px, transparent 18px, #8c68507a 18px);
    background-size: 2px calc(100% + 18.82px), calc(100% + 18.82px) 2px, 2px calc(100% + 18.82px), calc(100% + 18.82px) 2px;
    background-position: 0 0, 0 0, 100% 0, 0 100%;
    background-repeat: no-repeat;
    animation: borderAnimation 1s infinite linear;
}

@keyframes borderAnimation {
    from {
        background-position: 0 0, -18.82px 0, 100% -18.82px, 0 100%;
    }

    to {
        background-position: 0 -18.82px, 0 0, 100% 0, -18.82px 100%;
    }
}

label.field_title {
    padding: 5px 5px 0px;
    margin-top: -15px;
    color: #515C5C;
    font-weight: 600;
    font-size: 18px;
    font-family: var(--recoletaregular_font);
}

.last-visited-content .email-content label input {
    height: 54px;
    font-family: var(--recoletaregular_font);
    font-weight: 500;
    color: var(--para-text);
    padding: 10px;
    width: 100%;
    font-size: 16px;
    background: #f9f3ef;
    border: none;
}

.price_guide_form_div ::placeholder {
    color: #B5B9B8;
}

button#cretivego8 {
    color: #fff;
    font-weight: 600;
    padding: 14px 20px;
    font-size: 18px;
    margin-top: 12px;
    border-radius: 80px;
    background: var(--bermuda_color);
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border: none;
    cursor: pointer;
    outline: none;
    width: 100%;
    font-family: var(--recoletabold_font);
    text-transform: uppercase;
}

.last-visited-content .email-content>label {
    width: 100%;
    position: relative;
    margin-bottom: 24px;
}

.label1 {
    color: red;
    position: absolute;
    bottom: -27px;
    font-size: 12px;
    left: 0;
    font-family: var(--recoletaregular_font);
    font-weight: 600;
}

.last-visited-content .email-content label input:focus {
    outline-color: transparent;
}

.form_row .col-12 {
    background: transparent;
}

.price_guide_form_content_div {
    /* background: #fff; */
    padding: 24px;
}

.home_guide_ul_div h3 {
    font-family: var(--recoletabold_font);
    font-weight: 600;
    font-size: 22px;
    padding-top: 24px;
    padding-bottom: 20px;
    color: var(--bermuda_color);
}

.price_guide_main_div li {
    font-family: var(--recoletaregular_font);
    font-size: 18px;
    padding-bottom: 12px;
    list-style: none;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
    color: var(--para-text);
}

.price_guide_main_div li:before {
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 3px;
    left: 0;
    background-image: url(/wp-content/uploads/2024/09/price-guide.svg);
}

.price_guide_section {
    position: relative;
    padding: 80px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1140px) {
    .price_guide_div {
        column-gap: 40px;
    }
}

@media only screen and (min-width: 1140px) and (max-width: 1340px) {
    .price_guide_div {
        column-gap: 60px;
    }
}

@media (max-width: 991px) {
    .price_guide_section {
        padding: 50px 0;
    }

    .price_guide_div {
        display: block;
        margin-top: 0 !important;
    }

    .price_guide_form_content_div {
        margin-bottom: 20px;
        order: 2;
    }

    .price_guide_form_div_blk,
    .price_guide_form_content_div {
        width: 100%;
    }

    .price_guide_form_content_div {
        text-align: center;
    }

    .home_guide_ul_div {
        max-width: 330px;
        margin: auto;
        text-align: left;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .price_guide_form_div {
        padding: 14px;
    }

    .price_guide_form_content_div {
        padding: 14px;
    }
}

@media (max-width: 767px) {
    .home_guide_ul_div h3 {
        font-size: 19px;
        padding-bottom: 12px;
    }

    .price_guide_main_div li {
        font-size: 16px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .price_guide_form_div_blk .subpage_title_text h2 {
        max-width: 668px;
        width: 100%;
    }
}

@media (min-width: 992px) {

    .price_guide_form_content_div {
        max-width: 440px;
        width: 100%;
    }

    .price_guide_form_div_blk {
        max-width: 690px;
        width: 100%;
    }

    .price_guide_form_div {
        max-width: 600px;
        width: 100%;
    }
}

/*===============================================
= End Contact Form Section CSS
===============================================*/


.subpage_banner {
    margin-bottom: 0px !important;
}

.privacy_main_sec_blk {
    padding-left: 15px;
    padding-right: 15px;
}

/* .privacy_txt_block h2:not(:first-child) {
	margin-top: 35px;
} */

.privacy_txt_block h2,
.privacy_txt_block h3 {
    padding-bottom: 0;
    margin-bottom: 20px;
    text-align: left;
    font-size: 34px;
    font-family: var(--recoletabold_font);
    font-weight: 600;
    color: var(--bermuda_color);
}

.privacy_policy_div ul {
    margin: 0;
}

.privacy-text-info ul li {
    color: var(--para-text) !important;
    font-size: 20px;
}

.privacy-text-info h3:nth-child(3) {
    padding-top: 30px !important;
}

.privacy-text-info ul {
    list-style: disc;
    margin-left: 22px;
    padding-bottom: 20px;
}

.privacy-text-info ul li::marker {
    font-size: 24px;
    color: var(--bermuda_color);
}

.privacy-text-info p {
    display: block;
}

.privacy-text-info p:last-child {
    margin-bottom: 0 !important;
}

.privacy_txt_block a {
    color: var(--bermuda_color) !important;
}

.privacy_txt_block a:hover {
    color: var(--bermuda_color) !important;
}

.same_padding {
    padding: 80px 0px;
}

.same_width_1000 {
    max-width: 1000px;
    margin: auto;
}

.privacy_txt_block ul.mb-3 {
    padding-left: 20px;
}

.privacy_txt_block ul.mb-3 li {
    margin-bottom: 10px;
}

@media (max-width: 991px) {

    .privacy_txt_block h2,
    .privacy_txt_block h3 {
        font-size: 24px;
    }

    .same_padding {
        padding: 50px 0px;
    }
}

@media (max-width: 1140px) {
    .same_width_1000 {
        width: 90%;
        max-width: 1000px;
    }
}


@media only screen and (min-width: 992px) and (max-width: 1440px) {
    .same_padding {
        padding: 60px 0px !important;
    }
}


/*===============================================
= Start Subpage third Section CSS
===============================================*/
.subpage_third_sect_main_div {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
}

.sub_home_about_content_div {
    width: 50%;
    padding-left: 110px;
}

@media only screen and (min-width: 1281px) and (max-width: 1680px) {
    .sub_home_about_content_div {
        padding-left: 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .sub_home_about_content_div {
        padding-left: 30px;
    }
}

@media (max-width: 991px) {
    .home_image_col {
        width: 100%;
    }

    .sub_home_about_content_div {
        width: 100%;
        padding-left: 0px;
        padding-top: 20px;
    }
}

.subpage_third_ul_block li {
    font-size: 24px;
    font-family: var(--recoletaregular_font);
    color: var(--para-text);
    position: relative;
    padding: 5px 0px 5px 56px;
}

.subpage_third_ul_block {
    padding-bottom: 20px;
    padding-top: 10px;
    list-style: none;
}

.subpage_third_ul_block li:before {
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    width: 40px;
    height: 20px;
    position: absolute;
    top: 13px;
    left: 0;
    background-image: url(/wp-content/uploads/2024/09/arrow-li.svg);
}

@media only screen and (max-width: 767px) {
    .subpage_third_sect_main_div {
        padding: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .subpage_third_ul_block li:before {
        width: 30px;
    }

    .subpage_third_ul_block li {
        padding: 5px 0px 5px 40px;
    }
}

/*===============================================
= End Subpage third Section CSS
===============================================*/
/*===============================================
= Start Meet Team CSS
===============================================*/
/*-------Pop Up Message---------*/
.inside_popup_details_show {
    background-color: #000000a8;
}

.page-id-457 .meet-image-more-details .on_hover_popup_btn {
    display: none !important;
}

.meet-image-more-details {
    margin-bottom: 30px;
}

.on_hover_popup_btn {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.meet-image-more-details {
    position: relative;
}

.on_hover_popup_btn a:hover {
    color: #000;
}

.meet-image:hover .meet-image-more-details .on_hover_popup_btn {
    opacity: 1;
    background-color: #00000087;
    border-radius: 10px;
	cursor: pointer;
}

.on_hover_popup_btn a {
    background-color: var(--bermuda_color);
    padding: 15px 40px;
    color: var(--white_color) !important;
    position: relative;
    z-index: 200;
    text-shadow: none;
    font-size: 18px;
    position: relative;
    z-index: 0;
    cursor: pointer;
    font-family: var(--nantes-font);
    border-radius: 100px;
}

.pop-active-box {
    position: fixed;
    height: 100%;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .8);
    z-index: 9999;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.popup_message_box_container.popup,
.popup_message_box_row.popup {
    height: 100%;
}

.popup_message_box_details_col[tabindex="-1"] {
    display: flex !important;
    width: 100%;
    height: 100%;
    align-items: center;
    padding: 40px 30px;
    background-color: #fff;
    position: relative;
}

.popup_message_box_details_col {
    width: 900px !important;
    display: flex;
    align-items: flex-start;
    margin: auto !important;
    background-color: #fff;
    padding: 50px 30px;
    left: auto !important;
    height: auto !important;
    position: relative;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.30) 0px 5px 15px;
}

.popup_message_box_details_col img {
    width: 240px;
    height: auto;
}

.popup_message_box_row.popup {
    display: flex;
}

.popup_message_box_details_col .meet-docter {
    position: relative;
}

a.popup_message_close {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 30px;
    color: #222 !important;
    cursor: pointer;
}

.popup_message_box_details_col .meet-docter h4,
.popup_message_box_details_col .meet-docter .pratxt p {
    text-align: left;
}

@media (max-width: 767px) {
    .popup_message_box_details_col[tabindex="-1"] {
        display: block !important;
    }

    .popup_message_box_details_col {
        display: block !important;
    }

    .meet-docter {
        margin-top: 30px;
    }

    .popup_message_box_details_col {
        height: 100% !important;
    }

    .meet-docter .on_hover_popup_btn {
        position: relative;
        opacity: 1;
        padding-top: 20px;
        text-align: center;
        padding-bottom: 20px;
    }

    .meet-image {
        padding: 0px !important;
    }

    .custom_meet_staff .meet-docter h4 {
        text-align: center;
    }

    .meet-image img {
        width: auto !important;
        height: auto !important;
    }

    .meet-image-more-details {
        text-align: center;
    }
}

@media (min-width: 767px) {
    .popup_message_box_details_col .meet-docter {
        padding-left: 30px;
    }
}

.meet-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 10px;
    padding: 0;
    object-position: top;
}

.meet-docter .pratxt p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    text-align: center;
}

.meet-image {
    padding: 10px;
}

.custom_meet_staff {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.meet-docter h4 {
    color: #222;
    font-family: "Gelasio", serif;
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
}

@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .meet-image img {
        width: 100%;
        height: 330px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .meet-image img {
        width: 100%;
        height: 330px;
    }

    .meet-image.col-md-6.col-12.col-lg-4 {
        float: left;
    }
}

@media (max-width: 575px) {
    .on_hover_popup_btn a {
        width: 100%;
        display: block;
    }
}


/* new patient page logo */
ul.subpage_second_logo_third {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: end;
    gap: 30px 30px;
    margin-top: 20px;
    justify-content: center;
}
ul.subpage_second_logo_third.doctor_logo_sect {
    column-gap: 60px;
}
ul.new_patient_logo li img {
    max-width: 280px;
    width: 100%;
	    height: 60px;
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
    ul.subpage_second_logo_third {
        flex-wrap: wrap;
    }
}   


@media (max-width: 991px) {
    ul.subpage_second_logo_third.doctor_logo_sect
    {
        flex-wrap: wrap;
        justify-content: center;
		column-gap: 40px;
    }
    ul.new_patient_logo img {
        max-width: 150px;
    }
}
/*===============================================
= End Meet Team CSS
===============================================*/