@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*, :before, :after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    color: #767676;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    color: #000;
}
h1 {
    font-size: 60px;
    line-height: 70px;
    color: #FFF;
}

h1 span {
    color: #6DBCC9;
}

h2 {
    font-size: 50px;
    font-weight: 600;
    line-height: 60px;
    text-align: center;
    color: #000;
}
h4 {
    font-size: 28px;
    line-height: 31px;
}
h5 {
    text-align: center;
    font-size: 22px;
    line-height: 32px;
}
h6 {
    color: #000;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
}
.btn {
    color: #FFF !important;
    text-align: center;
    font-size: 16px!important;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    padding: 10px 28px;
    max-width: 100%!important;
    border: 1px solid transition;
    border-radius: 0;
    position: relative;
    min-height: 75px;
}
.btn::after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border: 1px solid #F5DB81;
    transition: all 0.4s ease-in-out;
}
.btn:hover::after {
    opacity: 1;
    margin: -6px;
}
.btn_wreap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.btn {
    background: #6DBCC9;
}
.btn.bg_dark {
    color: #000 !important;
    background: linear-gradient(90deg, #DBB248 0%, #F8DE81 49.28%, #D9B252 100%);
}
.bg_light {
    color: #6DBCC9 !important; 
    background-color: #fff;
}
a {
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}
.form-control:focus,
.btn:focus {
    box-shadow: none;
}
.form-control:focus {
    border-color: #D0101C;
}
.form-select:focus {
    border-color: inherit;
    box-shadow: none;
}
.p_120 {
    padding: 120px 0;
}
.text_align {
    align-items: center;
}
.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*========== home page start here ==========*/
.hearder_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.hearder_wrapper ul.navbar-nav li .nav-link {
    font-size: 14px;
    padding: 10px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.hearder_wrapper ul.navbar-nav {
    gap: 15px;
}
.hearder_wrapper form ul li:first-child {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #FFFFFF66;
}
.header_band .head-links {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #DBB248;
    padding: 10px 0;
}
.hearder_wrapper ul {
    gap: 0;
}
.header_band .head-links li:not(:last-child) {
    padding-right: 25px;
    margin-right: 25px;
    border-right: 1px solid #000;
}
.header_band .head-links li {
    color: #000;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 0.42px;
}
.header_band .head-links li i {
    margin-right: 8px;
}
.header_band .head-links li a {
    color: #000;
}
.header_band .head-links li a:hover {
    color: #fff;
}
.banner_wreap {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 250px 0 150px;
}
.banner_content ul li {
    font-size: 17px;
    line-height: 24px;
    display: flex;
    align-items: start;
    gap: 12px; 
    margin-top: 22px;
    color: #FFF;
}
.banner_content h1 {
    margin-bottom: 35px;
}
.costs_grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 30px;
}
.costs_grid .costs_list {
    border: 1px dashed rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
    padding: 30px;
}
.costs_grid .costs_list h5 {
    margin: 20px 0 0;
    color: #fff;
}
.costs_content h2 {
    max-width: 849px;
    margin: 0 auto 40px;
    color: #fff;
}
.costs_content h6 {
    color: #F5DB81;
    font-weight: 500;
    margin: 50px auto 20px;
    max-width: 859px;
}
.expect_grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 100px;
}
.expect_grid .expect_list {
    text-align: center;
}
.expect_grid .expect_list p {
    font-size: 15px;
    line-height: 25px;
    margin: 0;
}
.expect_grid .expect_list h6 {
    margin-top: 22px;
}
.expect_content h2 {
    margin-bottom: 28px;
}
.expect_grid .expect_list .expect_list_img {
    width: 250px;
    height: 250px;
    background-color: #FFF;
    filter: drop-shadow(0px 15px 44px rgba(109, 188, 201, 0.15));
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.expect_wrapper {
    position: relative;
}
.expect_wrapper::after {
    position: absolute;
    content: '';
    background-image: url(../img/dot_wave.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 20%;
    left: 0;
    right: 0;
    width: 100%;
    height: 40%;
    z-index: -1;
}
hr.line {
    color: #6DBCC9;
    opacity: 0.2;
    margin: 80px 0 50px;
}
.result_grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 52px 45px;
}
.result_list_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.result_grid .result_list h4 {
    margin-top: 32px;
}
.result_grid .result_list p {
    font-size: 15px;
    line-height: 25px;
}
.result_grid .result_list p:not(:last-child) {
    margin-bottom: 30px;
}
.result_content .result_hd {
    text-align: center;
    max-width: 696px;
    margin: 0 auto 42px;
}
.result_list_img:hover img {
    transform: scale(0.95);
}
.result_list_img {
    transition: all 1s ease-in-out;
    position: relative;
}
.result_list_img::after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 1px solid #000;
    opacity: 0;
    transition: all 1s ease-in-out;
}
.result_list_img img {
    transition: all 1s ease-in-out;
}

.result_list_img:hover::after {
    opacity: 1;
}
.works_wrapper h2 {
    margin-bottom: 35px;
}
.works_content ul {
    position: relative;
    padding-left: 150px;
    counter-reset: nub-list;
}
.works_content ul::after {
    position: absolute;
    content: '';
    top: 15px;
    bottom: 0;
    left: 70px;
    width: 2px;
    height: 90%;
    background-color: #F8DE81;
    z-index: -1;
    animation: scroll_lnk 2s cubic-bezier(0, 0, 0.2, 1);
}
@keyframes scroll_lnk {
    0% {
        height: 0%;
    }
    100% {
        height: 90%;
    }
}
.works_content ul li span {
    color: #6DBCC9;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
}
.works_content ul li  p {
    font-size: 16px;
    line-height: 26px;
    margin: 0;
}
.works_content .works_text p {
    font-weight: 500;
    padding-top: 30px;
    color: #000;
    margin: 0;
}
.works_content ul li::before {
    counter-increment: nub-list;
    content: "0"counter(nub-list)"";
    position: absolute;
    top: -10px;
    left: -130px;
    width: 100px;
    height: 100px;
    font-size: 30px;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
    background-color: #F8DE81;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cosmetic_wrapper {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.works_content ul li {
    position: relative;
    margin-bottom: 40px;
}
.works_content {
    padding-right: 80px;
}
.works_wrapper .row {
    align-items: center;
}
.works_wrapper .works_img {
    margin-right: 40px;
}
.cosmetic_wrapper h2 {
    margin-bottom: 40px;
}
.cosmetic_wrapper .row {
    align-items: center;
}
.cosmetic_content {
    max-width: 618px;
    padding-left: 55px;
}
.footer_logo {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
}
.footer_logo p {
    font-size: 16px;
    color: #fff;
    margin: 0;
}
.footer_content h3 {
    color: #FFF;
    font-size: 26px;
}
.footer_content ul li a, .footer_content ul li {
    font-size: 16px;
    color: #FFF;
}
.footer_content ul li p {
    font-weight: 600;
    color: #FFF;
    line-height: 1.2;
    font-size: 18px;
}
.footer_content ul {
    margin: 32px 0 0;
}
.footer_content ul li i {
    margin-right: 10px;
}
.footer_btn li {
    text-align: end;
}
.footer_btn li:not(:last-child) {
    margin-bottom: 15px;
}
.cosmetic_img {
    position: relative;
}
.cosmetic_img::before {
    position: absolute;
    content: '';
    background-image: url(../img/dots_bg.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 60%;
    height: 50%;
    bottom: -45px;
    left: -35px;
}
.costs_content {
    position: relative;
}
.costs_content::after {
    position: absolute;
    content: '';
    background-image: url(../img/dots_bg_2.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    bottom: 30px;
    left: -60px;
    width: 60px;
    height: 60px;
}
.costs_wrapper {
    position: relative;
}
.costs_wrapper::after {
    position: absolute;
    content: '';
    bottom: -150px;
    left: 90px;
    width: 240px;
    height: 240px;
    border: 1.5px solid rgb(255 255 255 / 70%);
    border-radius: 100%;
}
.live_content {
    position: relative;
    z-index: 0;
    overflow: hidden;
    background: #FFFFFF;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 90%;
}
.video-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-thumb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: #6DBCC9;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.video_click i {
    color: #FFF;
    font-size: 30px;
}
span.animate-ping {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -0.1vw;
    right: -0.1vw;
    bottom: -0.1vw;
    left: -0.1vw;
    border-radius: 50%;
    background: #028C99;
    z-index: -1;
}
.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping {
    50%,
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
.social_link ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.social_link {
    position: fixed;
    bottom: 40px;
    left: 40px;
    right: 40px;
}
.social_link ul li a {
    display: inline-block;
}
.btn_wreap {
    align-items: inherit !important;
}

.btn_wreap li a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
ul.footer_btn li a.btn {
    width: 100%;
    min-height: 67px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}
nav.straight_smile.navbar.navbar-expand-lg.main-header {
    margin-top: 10px;
    background-color: #dbb248;
}

nav.straight_smile.navbar.navbar-expand-lg.main-header a.nav-link {
    padding-top: 0;
    padding-bottom: 0;
    color: #000;
}
.button_close_now{
    display: none;
}


nav.straight_smile.navbar.navbar-expand-lg.main-header a.nav-link::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 0;
    background: #000;
    top: 100%;
    left: 0;
    right: 0;
    transition: all 0.4s ease-in-out;
}

nav.straight_smile.navbar.navbar-expand-lg.main-header a.nav-link {
    position: relative;
}

nav.straight_smile.navbar.navbar-expand-lg.main-header a.nav-link:hover::after {
    width: 100%;
}
button.navbar-toggle,.navbar-toggler {
    background: transparent !important;
}
.trust-img.text-right {
    margin-left: 1rem;
}
.hearder_wrapper form ul li:first-child img {
    margin-left: 1rem;
}
.footer_btn li {
    width: 100%;
}
.desktop_view {
    display: block;
}
.Mobile_view {
    display: none;
}


.dentist-content-right {
    padding-left: 70px;
    position: relative;
    height: 100%;
}

.dentist-content-right h2 {
    padding-top: 100px;
    max-width: 546px;
    font-weight: 700;
}

.dentist-content-right h5 {
    color: #F07240;
    font-weight: 500;
}

.about-dr {
    border-radius: 25px;
    background: rgba(97, 67, 121, 0.05);
    padding: 80px 80px 80px 150px;
    margin-left: -150px;
    z-index: -1;
    position: absolute;
    bottom: -90px;
}

.dentist-content-right * {
    text-align: left;
}


.adv-sec .adv-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dentist-content-right {
    padding-left: 70px;
    position: relative;
    height: 100%;
}

.dentist-content-right h2 {
    padding-top: 100px;
    max-width: 546px;
    font-weight: 700;
}

.dentist-content-right h5 {
    color: #F07240;
    font-weight: 500;
}

.about-dr {
    border-radius: 25px;
    background: rgba(97, 67, 121, 0.05);
    padding: 80px 80px 80px 150px;
    margin-left: -150px;
    z-index: -1;
    position: absolute;
    bottom: -90px;
}

.dentist-content-right * {
    text-align: left;
}


.adv-sec .adv-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


