@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root{
	--black_color: #212529;
	--blue_color: #0ABAB5;
	--dark_blue_color: #1E3758;
	--body_text_color: #081C24;
	--white_color: #ffffff;
    --light_bg_color: #f6fafd;
	--inter_font: 'Inter', sans-serif;
}
body,span{
	font-family: var(--inter_font);
	line-height: 1.2;
	margin: 0;
	padding: 0;
}
p,ul li,a{
	font-size: 20px;
	font-family: var(--inter_font);
	line-height: 1.5;
	margin: 0;
	padding: 0;
	color: var(--body_text_color);
}
p:not(:last-child) {
	margin: 0 0 12px;
}
p, li {
    letter-spacing: -0.035em;
}
h1,h2,h3,h4,h5,h6{
	font-family: var(--inter_font);
	line-height: 1.5;
	margin: 0;
	padding: 0;
	width: 100%;
}
h1,h2,h3,h4,h5,label {
    letter-spacing: -0.045em;
}
img{
	max-width: 100%;
	height: auto;
}
ol,ul{
	margin: 0;
	padding: 0;
}
li{
	list-style: none;
}
h1,h2,h3,h4,h5,h6,p,a,span{
	display: block;
}
a:hover{
	text-decoration: none;
}
@media only screen and (max-width: 991px){
    p, ul li, a{
        font-size: 18px;
    }
}
@media only screen and (max-width: 767px){
    p, ul li, a{
        font-size: 16px;
    }
}
/* default css */
.section_padding_less {
    padding: 60px 0;
}
.section_padding {
    padding: 100px 0;
}
.section_margin {
    margin: 100px 0;
}
@media only screen and (max-width: 1440px){
	.section_padding {
        padding: 80px 0;
    }
    .section_margin {
        margin: 80px 0;
    }
}
@media only screen and (max-width: 1199px) {
    .section_padding {
        padding: 60px 0;
    }
    .section_margin {
        margin: 60px 0;
    }
}
@media only screen and (max-width: 991px) {
    .section_padding, .section_padding_less {
        padding: 50px 0;
    }
    .section_margin {
        margin: 50px 0;
    }
}
@media only screen and (max-width: 767px) {
    .section_padding, .section_padding_less {
        padding: 40px 0;
    }
    .section_margin {
        margin: 40px 0;
    }
}
body .container{
	max-width: 1200px;
	padding: 0 20px;
}
.wi-100 {
	display: inline-block;
	vertical-align: top;
	width: 100%;
}
/* default css end */
/* header start */
.sticky-header{
	/* position: sticky;
    position: -webkit-sticky;
    top: 0;
    background: var(--white_color);
    display: inline-block;
    width: 100%;
    z-index: 999; */
}
.scrool-header{
	box-shadow: 0px 10px 17px rgb(34 81 168 / 9%);
}
.lp_header{
	padding: 15px 0;
    background: #0ABAB5;
}
.header_logo img, .footer_logo img {
    max-width: 170px;
    width: 100%;
}
.header_info {
    text-align: right;
}
.phone_link {
    width: fit-content;
    margin-right: 0;
    margin-left: auto;
    transition: all 0.4s;
}
.phone_link i {
    transform: rotate(270deg);
    color: var(--blue_color);
    font-size: 30px;
}
.phone_link a {
    font-size: 30px;
    color: var(--blue_color);
    font-weight: 600;
    line-height: 1.4;
    display: inline-block;
}
.phone_link:hover i, .phone_link:hover a {
    color: var(--dark_blue_color);
}
@media only screen and (max-width: 991px){
    .phone_link i, .phone_link a{
        font-size: 25px;
    }
}
@media only screen and (max-width: 767px){
    .phone_link i, .phone_link a{
        font-size: 20px;
    }
}
@media only screen and (max-width: 575px){
    .header_logo, .header_info{
        text-align: center;
    }
    .header_logo{
        padding-bottom: 5px;
    }
    .phone_link{
        margin: 0 auto;
    }
    .lp_header {
        padding: 15px 0 0;
    }
}
/* header end */
/* banner Start */
.banner-sec {
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.banner-sec::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: .15;
    width: 100%;
    height: 100%;
    max-width: 35%;
    background-color: var(--blue_color);
    -webkit-filter: blur(7rem);
    filter: blur(7rem);
    z-index: -1;
}
.banner-content img {
    width: 100%;
    height: 100%;
    max-width: 210px;
    margin: 10px 0 20px;
}
.banner-content h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--dark_blue_color);
    line-height: 1.1;
    padding-bottom: 15px;
}
.banner-content h1 span, h2 span {
    color: var(--blue_color);
    font-style: italic;
    display: inline;
    line-height: 1.1;
}
.banner-content p {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--dark_blue_color);
    margin-bottom: 30px;
}
.form-left-side h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--blue_color);
    text-align: center;
    padding-top: 10px;
    margin: 16px 0;
}
.form-left-side ul li {
    padding-left: 30px;
    position: relative;
}
.form-left-side ul li:not(:last-of-type) {
    padding-bottom: 5px;
}
.form-left-side ul li::before {
    position: absolute;
    content: "";
    background-image: url("/lp-asset/lp-images/check-e.svg");
    width: 20px;
    height: 20px;
    top: 8px;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.banner_form_left ul li:nth-child(4) {
    margin-top: 20px;
}
.banner_form_left ul li:nth-child(4)::before {
    background-image: url("/lp-asset/lp-images/round-check-icon.svg");
}
@media only screen and (max-width: 1200px){
    .banner-content h1{
        font-size: 50px;
    }
}
@media only screen and (max-width: 1024px){
    .banner-content h1{
        font-size: 45px;
    }
    .banner-content p{
        font-size: 22px;
    }
    .form-left-side h3{
        font-size: 30px;
    }
}
@media only screen and (max-width: 991px){
    .banner-content h1{
        font-size: 40px;
    }
    .banner-content p{
        font-size: 20px;
    }
    .form-left-side h3{
        font-size: 28px;
    }
    .form-left-side ul li::before{
        width: 18px;
        height: 18px;
    }
}
@media only screen and (max-width: 767px){
    .banner-content h1{
        font-size: 30px;
    }
    .banner-content p{
        font-size: 18px;
    }
    .form-left-side h3{
        font-size: 25px;
    }
    .banner_form_left ul li:nth-child(4){
        margin-top: 15px;
    }
    .form-left-side ul li::before{
        width: 16px;
        height: 16px;
        top: 6px;
    }
}
/*===============================================
= GET PRICING INSTANTLY CSS
============================================*/
/* form */
/* form */
.step-message .form-content {
    min-height: 150px;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}

.step-message .form-footer {
    min-height: 60px;
    height: 100%;
}

.form-main-wrap {
    max-width: 530px;
    width: 100%;
    padding: 0 !important;
    margin: 0 0 0 auto;
}

.form-title {
    text-align: center;
}

.form-title p {
    color: var(--blue_color);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
}

.form-bottom p {
    margin: 20px 0 0;
    color: #83879c;
    text-align: center;
}

.form-bottom p strong {
    color: #ffc107;
}

.form-box {
    box-shadow: 0px 35px 64px -12px rgb(57 93 148 / 15%);
    background-color: var(--white_color);
    border: 1px solid #E2E4E8;
    border-radius: 15px;
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.form-content {
    padding: 32px 40px 30px;
}

.form-step p {
    display: block;
    text-align: center;
    font-weight: 600;
}

.form-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: var(--blue_color);
    padding: 5px 35px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    justify-content: center;
}

.form-btn {
    border: none;
    background-color: transparent;
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
    text-transform: uppercase;
    padding: 13px 10px;
}

.form-btn.previous img {
    transform: rotate(180deg);
    margin-right: 5px;
}

.form-btn.next {
    margin-left: auto;
}

.form-btn.next img {
    margin-left: 5px;
}

.form-radio {
    background-color: #F2F3F7;
    border-radius: 7px;
    padding: 9px;
    margin: 15px 0 0;
    position: relative;
    border: 2px solid transparent;
}

.form-radio:hover {
    border: 2px solid var(--blue_color);
}

.form-radio input[type="radio"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    z-index: 99;
}

.form-radio label {
    font-size: 18px;
    line-height: 1.5;
    color: #000;
    cursor: pointer;
    padding-left: 28px;
    margin: 0;
}

.form-radio label::before,
.form-radio label::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    border: 2px solid #e6edf2;
    background: #fff;
    position: absolute;
    top: 12px;
    left: 10px;
}

.form-content p {
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 24px;
}
.form-radio label::after {
    border: 6px solid var(--blue_color);
    opacity: 0;
}

.form-radio input[type="radio"]:checked+label::after {
    opacity: 1;
}

.hide {
    display: none;
}

.form-que {
    position: relative;
}

.label1 {
    font-weight: 600;
    color: #ff0000;
     position: absolute; 
    bottom: -24px;
    font-size: 12px;
    left: 0;
    margin-top: 5px;
}

.form-input {
    margin: 6px 0 0;
}

.select-option select,
.form-input input.form-control {
    background-color: #F2F3F7;
    border: 2px solid #F2F3F7;
    font-size: 16px;
    border-radius: 7px;
    padding: 9px 15px;
    position: relative;
    height: auto;
    width: 100%;
}
.select-option select::placeholder,
.form-input input.form-control::placeholder {
    color: #a5a5a5;
    font-size: 16px;
}
.select-option select:focus,
.form-input input.form-control:focus {
    border: 2px solid var(--blue_color);
    outline: none;
    box-shadow: none;
}

.form_sec .section_title_inner h4 {
    margin-bottom: 5px;
}

.form_sec .text-wrap.section_title_inner {
    box-shadow: 0px 0px 10px rgb(34 34 34 / 36%);
    padding: 42px;
    background: #f8faff;
}

.form_sec .table {
    margin-bottom: 0px;
}

@media screen and (max-width: 1199px) {
    .text-wrap h1 {
        font-size: 34px;
    }

    .form-title h2,
    .text-wrap h3 {
        font-size: 28px;
    }

    .form-radio label {
        font-size: 16px;
    }

    .form-radio label::before,
    .form-radio label::after {
        width: 18px;
        height: 18px;
    }
}

@media screen and (max-width: 991px) {
    .text-wrap {
        text-align: center;
        margin: 35px 0;
        display: none;
    }

    .form-main-wrap {
        margin: 0 auto;
    }
}

@media screen and (max-width: 767px) {
    .text-wrap h1 {
        font-size: 24px;
    }

    .form-bottom p {
        font-size: 14px;
    }
}

@media screen and (max-width: 575px) {

    .form-title h2,
    .text-wrap h3 {
        font-size: 24px;
    }

    .form-title p {
        font-size: 18px;
    }

    .form-content {
        padding: 25px 20px;
    }

    .form-radio label {
        font-size: 15px;
    }

    .form-footer {
        padding: 5px 12px;
    }

    .form-btn {
        font-size: 16px;
    }

    .form-input input.form-control,
    .form-input input.form-control::placeholder {
        font-size: 14px;
    }
}
/*===============================================
= end GET PRICING INSTANTLY CSS
============================================*/
/* banner end */
/* Possible About Section Start */
.border_end {
    border-bottom: 2px solid #E2E1E5;
}
.possible-about-heading p {
    font-size: 23px;
    font-weight: 500;
    color: var(--blue_color);
    letter-spacing: 1px;
}
.possible-about-heading h2 {
    font-size: 47px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--dark_blue_color);
    line-height: 1.1;
    padding-bottom: 15px;
}
.possible-about-content p {
    font-size: 25px;
    font-weight: 400;
    color: var(--body_text_color);
}
.about-btn {
    margin-top: 35px;
}
.about-btn a {
    background-color: var(--blue_color);
    display: inline-block;
    vertical-align: top;
    padding: 20px 40px;
    border-radius: 100px;
    color: var(--white_color);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
    animation: rocking 2s infinite;
    animation-timing-function: ease-out;
    transition: .2s;
}
@keyframes rocking {
    0% {
        transform: rotate(0)
    }
    25% {
        transform: rotate(0)
    }
    50% {
        transform: rotate(2deg)
    }
    75% {
        transform: rotate(-2deg)
    }
    to {
        transform: rotate(0)
    }
}
.about-btn a img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(133deg) brightness(103%) contrast(101%);
    width: 25px;
    height: 25px;
    margin-right: 5px;
}
.about-btn a p {
    font-size: 15px;
    font-weight: 400;
    color: var(--white_color);
    line-height: 1.4;
}
@media only screen and (max-width: 1200px){
    .possible-about-heading h2{
        font-size: 40px;
    }
    .possible-about-content p, .about-btn a{
        font-size: 22px;
    }
    .about-btn a img{
        width: 22px;
        height: 22px;
    }
}
@media only screen and (max-width: 1024px){
    .possible-about-heading p{
        font-size: 20px;
    }
    .possible-about-heading h2{
        font-size: 35px;
    }
    .possible-about-content p, .about-btn a{
        font-size: 20px;
    }
    .about-btn a img{
        width: 20px;
        height: 20px;
    }
}
@media only screen and (max-width: 991px){
    .possible-about-heading p{
        font-size: 18px;
    }
    .possible-about-heading h2{
        font-size: 30px;
    }
    .possible-about-content p, .about-btn a{
        font-size: 18px;
    }
    .about-btn a img{
        width: 18px;
        height: 18px;
    }
    .about-btn{
        margin-top: 30px;
    }
}
@media only screen and (max-width: 767px){
    .possible-about-heading p{
        font-size: 16px;
    }
    .possible-about-heading h2{
        font-size: 24px;
    }
    .about-btn a{
        padding: 15px 35px;
    }
    .res-img{
        padding-bottom: 20px;
    }
    .about-btn{
        margin-top: 25px;
    }
}
@media only screen and (max-width: 350px){
    .about-btn a{
        padding: 15px 18px;
    }
}
/* Possible About Section end */
.covered-about-sec {
    background-color: var(--light_bg_color);
}
/* Implants About Section Start */
.implants-about-content ul li {
    padding-left: 40px;
    position: relative;
    font-size: 29px;
    font-weight: 400;
}
.implants-about-content ul li:not(:last-of-type) {
    padding-bottom: 5px;
}
.implants-about-content ul li::before {
    position: absolute;
    content: "";
    background-image: url("/lp-asset/lp-images/right-arrow-icon.svg");
    width: 28px;
    height: 28px;
    top: 8px;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.implants-about-content ul li:last-of-type {
    margin-top: 20px;
    font-size: 33px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--blue_color);
}
.implants-about-content ul li:last-of-type::before {
    background-image: url("/lp-asset/lp-images/round-right-arrow.svg");
    width: 30px;
    height: 30px;
}
@media only screen and (max-width: 1200px){
    .implants-about-content ul li{
        font-size: 26px;
    }
}
@media only screen and (max-width: 1024px){
    .implants-about-content ul li{
        font-size: 22px;
    }
    .implants-about-content ul li:last-of-type{
        font-size: 28px;
    }
}
@media only screen and (max-width: 991px){
    .implants-about-content ul li{
        font-size: 20px;
    }
    .implants-about-content ul li:last-of-type{
        font-size: 24px;
    }
    .implants-about-content ul li{
        padding-left: 36px;
    }
    .implants-about-content ul li::before, .implants-about-content ul li:last-of-type::before{
        width: 24px;
        height: 24px;
    }
    .implants-about-content ul li:last-of-type{
        margin-top: 15px;
    }
}
@media only screen and (max-width: 767px){
    .implants-about-content ul li{
        font-size: 18px;
    }
    .implants-about-content ul li:last-of-type{
        font-size: 20px;
    }
    .implants-about-content ul li{
        padding-left: 34px;
    }
    .implants-about-content ul li::before, .implants-about-content ul li:last-of-type::before{
        width: 20px;
        height: 20px;
        top: 5px;
    }
    .implants-about-content ul li:last-of-type{
        margin-top: 10px;
    }
}
@media only screen and (max-width: 575px){
    .implants-about-content ul li{
        font-size: 16px;
    }
    .implants-about-content ul li:last-of-type{
        font-size: 18px;
    }
    .implants-about-content ul li{
        padding-left: 30px;
    }
    .implants-about-content ul li::before, .implants-about-content ul li:last-of-type::before{
        width: 18px;
        height: 18px;
    }
}
/* Implants About Section end */
/* Smile Section Start */
.border-center{
    background: var(--light_bg_color);
}
.border-center hr{
    border-top: 2px solid #E2E1E5;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.smile_sec, .smile_content_sec{
    background-color: var(--light_bg_color);
}
.smile_content h3 {
    font-size: 29px;
    padding-bottom: 10px;
}
@media only screen and (max-width: 991px){
    .res-col{
        padding-bottom: 20px;
    }
    .smile_content h3{
        font-size: 26px;
    }
}
@media only screen and (max-width: 767px){
    .smile_content h3{
        font-size: 24px;
    }
}
@media only screen and (max-width: 575px){
    .smile_content h3{
        font-size: 22px;
    }
}
/* Smile Section end */
/* Dr Section Start */
.dr_content p {
    font-size: 24px;
}
@media only screen and (max-width: 1024px){
    .dr_content p {
        font-size: 22px;
    }
}
@media only screen and (max-width: 991px){
    .dr_content p {
        font-size: 20px;
    }
}
@media only screen and (max-width: 767px){
    .dr_content p {
        font-size: 18px;
    }
}
@media only screen and (max-width: 575px){
    .dr_content p {
        font-size: 16px;
    }
}
/* Dr Section end */
.question_sec{
    background-color: var(--light_bg_color);
}
/* Text Section Start */
.text_sec {
    background-color: var(--blue_color);
    background-image: url("/lp-asset/lp-images/bg-cover-img.svg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: soft-light;
}
.text_content h2 {
    color: var(--white_color);
}
@media only screen and (max-width: 575px){
    .text_content h2 br{
        display: none;
    }
}
/* Text Section end */
/* FAQ Section Start */
.faq_content_main {
    padding-top: 15px;
}
.faq_content:not(:last-of-type) {
    padding-bottom: 30px;
}
.faq_content h4 {
    padding-bottom: 5px;
    font-size: 23px;
    font-weight: 700;
    color: var(--black_color);
}
.faq_content p {
    font-size: 17px;
}
/* FAQ Section end */
/* Treatment Section Start */
.tratment_sec {
    background-color: #007673;
}
.tratment_heading h2, .tratment_content p {
    color: var(--white_color);
}
.tratment_content p {
    font-size: 29px;
    width: 100%;
    margin: 0 auto;
    max-width: 920px;
}
@media only screen and (max-width: 1024px){
    .tratment_content p {
        font-size: 26px;
    }
}
@media only screen and (max-width: 991px){
    .tratment_content p {
        font-size: 24px;
    }
}
@media only screen and (max-width: 767px){
    .tratment_content p {
        font-size: 20px;
    }
}
@media only screen and (max-width: 575px){
    .tratment_content p {
        font-size: 16px;
    }
}
/* Treatment Section end */
/* Footer Section Start */
.lp_footer{
    padding: 10px 0;
    background: #0ABAB5;
}
.footer_text{
    text-align: right;
}
.footer_text p{
    font-size: 16px;
    color: #fff;
}
@media only screen and (max-width: 575px){
    .lp_footer{
        padding: 30px 0;
    }
    .footer_logo, .footer_text{
        text-align: center;
    }
    .footer_logo{
        padding-bottom: 10px;
    }
}
/* Footer Section end */
/* .header_logo img,
.footer_logo img {
    height: auto;
    width: 250px;
} */
/*@media only screen and (min-width: 320px) and (max-width: 575px) {

    .header_logo img,
    .footer_logo img {
        height: auto;
        width: 150px;
    }
} */
.dr_sec .dr_img img {
    border: 1px solid #dbdbdb;
    border-radius: 10px;
}