/* custom checkbox */
.custom-checkbox {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
}

.custom-checkbox p {
    margin-bottom: 0;
}

.custom-checkbox input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.custom-checkbox span {
    display: inline-block;
    width: 25px;
    height: 25px;
    aspect-ratio: 1 / 1;
    border: 1px solid #212E51;
    background-color: #fff;
    margin-right: .5em;
    position: relative;
    cursor: pointer;
}

.custom-checkbox input:checked ~ span {
    background-color: #212E51;
}

.custom-checkbox span::after {
    display: none;
    content: "";
    position: absolute;
    left: 8px;
    top: 4px;
    width: 7px;
    height: 13px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
}

.custom-checkbox input:checked ~ span::after {
    display: block;
}
/* end of custom checkbox */

/* navbar */
button.nav-link {
    background-color: transparent;
    border: none;
    outline: none;
}

button.nav-link::after {
    display: none;
}

.navbar .dropdown-menu {
    left: unset;
    right: 30px;
    min-width: 12rem;
    text-align: center;
    border-radius: 0;
}

.navbar .dropdown-menu a {
    color: #212E51;
    margin: 0 !important;
}

.navbar .dropdown-menu a:hover {
    background-color: transparent;
    color: #D4B589;
}
/* end of navbar */

/* static content */
.static-content h1,
.static-content h2,
.static-content h3,
.static-content h4,
.static-content h5,
.static-content h6 {
    font-weight: 600;
}


.static-content img {
    max-width: 100%;
}
/* end of static content */

/* base stuff */
form label a,
form label a:hover {
    text-decoration: underline;
}

.base_container {
    min-height: 450px;
}

.light.cc_dialog {
    padding: 1em 1.5em !important;
    max-width: 90% !important;
}

.navbar-nav .dropdown-toggle::after,
.hidden {
    display: none;
}

html {
    scroll-behavior: smooth;
}

.navbar-toggler {
    border-color: #8d9aab;
}

form small {
    text-align: left !important;
    color: #f00;
}

a:focus,
a:hover,
a:focus *,
a:hover *{
    text-decoration: none !important;
    color: currentColor;
}
/* end of base stuff*/

/* popup */
.popup-modal {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 600px;
    /*height: 400px;*/
    height: fit-content;
    max-width: 95%;
    max-height: 95%;
    z-index: 1010;
    box-shadow: 0 0 15px -3px rgba(0,0,0,0.35);
    padding: 1.2em 1em;
    overflow: scroll;
}

/*.popup-modal .popup-content {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    overflow: auto;*/
/*    padding: 1.2em 1em;*/
/*}*/

.popup-modal #closePopup {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.1em 0.3em;
    cursor: pointer;
    font-size: 25px;
    z-index: 100;
}
/* end of popup */


header {
    background-color: #212E51;
}

.header-row {
    min-height: 87px;
    align-items: center;
}

body {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
}


.nav-link {
    margin-left: 25px;
    color: #fff;
    font-size: 26px;
    font-weight: 500;
    line-height: 37.99px;
}

.nav-link.active-link,
.nav-link:hover,
.nav-link:focus {
    color: #D4B589;
}

.hero-img {
    width: 100%;
    height: 564px;
    width: 100%;
    object-fit: contain;
    object-position: right;
}

#carouselTop::after, .heading::after {
    content: "";
    display: flex;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-design-layer.png');
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
}

.carousel-caption {
    top: 0px;
    bottom: 0px;
    height: 100%;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1340px !important; 
    width: 1340px !important;
    padding-left: 30px;
    padding-right: 315px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
}

.hero-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 53.32px;
    color: #162449;
    text-align: left;
}

.carousel-text-1 {
    font-size: 20px;
    font-weight: 600;
    line-height: 26.32px;
    color: #162449;
    text-align: left;
}

.hero-btn-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}

.standard-btn {
    background-color: #D4B589;
    box-shadow: 0px 4px 4px 0px #0000001A;
    min-height: 50px;
    padding: 0px 55px;
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    line-height: 26.66px;
    color: #fff;
    border-radius: 4px;
}

.standard-btn.white-btn {
    background-color: #fff;
    color: #162449;
}

.standard-btn.blue-btn {
    background-color: #212E51;
    color: #fff;
}

.standard-btn.gray-btn {
    background-color: #3C3C3C;
    color: #fff;
    max-width: 100%;
}

.hero-btn-row .blue-btn,
.hero-btn-row .white-btn {
    margin-left: 25px;
}

.home-first-fluid {
    margin-top: 10em;
    margin-bottom: 3em;
}

.first-block-img {
    border-radius: 7px;
    height: 550px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.extra-left-pcol {
    padding-left: 5em;
}

.standard-small-title {
    margin-bottom: 0px;
    font-size: 24px;
    font-weight: 700;
    line-height: 31.99px;
    color: #D4B589;
}

.standard-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 47.99px;
    color: #212E51;
}

.static-content {
    font-size: 24px;
    font-weight: 400;
    line-height: 31.99px;
    color: #3C3C3C;
}

.one-whyus-fluid {
    min-height: 218px;
    height: 100%;
    border-radius: 7px;
    background-color: #BEA16E;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-direction: column;
    padding: 0px 25px;
}

.home-second-fluid {
    margin-top: 4em;
    margin-bottom: 4em;
}

.whyus-title {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    margin-top: 5px;
    text-align: center;
}

.one-whyus-fluid img{
    max-height: 55px;
    object-fit: contain;
}

.whyus-text  {
    font-size: 16px;
    font-weight: 500;
}

.third-block-img {
    border-radius: 7px;
    height: 570px;
    width: 100%;
    object-fit: cover;
}

.home-third-fluid {
    margin-bottom: 7em;
    padding-top: 2em;
}

.default-address {
    display: flex;
    width: fit-content;
    margin-top: 1em;
    align-items: center;
    justify-content: flex-start;
    color: #D4B589;
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
}

.default-address img {
    margin-right: 6px;
}

.one-kezeles {
    display: flex;
    margin-top: 2em;
    margin-bottom: 2em;
    flex-direction: column;
}


.one-kezeles:hover .gray-btn,
.one-kezeles:focus .gray-btn {
    background-color: #212E51;
}

.one-kezeles img {
    height: 349px;
    width: 100%;
    object-fit: cover;
    border-radius: 7px;
    box-shadow: 0px 0px 4px 0px #00000040;
}

.kezeles-title {
    display: flex;
    height: 80px;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #3C3C3C;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.1;
}

.container-fifth-fluid {
    background-color: #EEE4D8;
    padding-top: 4em;
    padding-bottom: 4em;
    margin-top: 3em;
    margin-bottom: 6em;
}

.container-fifth-fluid .static-content {
    color: #212E51;
    font-weight: 600;
    font-size: 24px;
    text-align: center;
}

.one-team-member {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 2em;
}

.one-team-member > img {
    border-radius: 7px;
    box-shadow: 0px 0px 4px 0px #00000040;
    height: 421px;
    object-position: top;
    width: 100%;
    object-fit: cover;
}

.team-member-name {
    color: #3C3C3C;
    font-size: 24px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
}

.team-member-desc {
    text-align: center;
    color: #212E51;
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
}

.one-team-member-text {
    display: flex;
    height: 100px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.containcer-sixth-fluid {
    margin-bottom: 6em;
}

.container-seventh-fluid {
    background-color: #212E51;
    padding-top: 4em;
    padding-bottom: 4em;
    margin-top: 3em;
    margin-bottom: 6em;
}

.container-seventh-fluid .standard-title {
    color: #fff;
}

.container-seventh-fluid .static-content {
    color: #fff;
    font-weight: 600;
    font-size: 24px;
}

.container-eighth-fluid {
    margin-bottom: 6em;
}

.progress-title {
    color: #202C46;
    font-weight: 500;
    font-size: 20px;
    margin-top: 1em;
}

.progress {
    height: 43px;
    background-color: #F1F1F1;
    border-radius: 30px;
}

.progress-bar {
    background: linear-gradient(270deg, #212E51 0%, #4B68B7 100%);
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.whyus-img {
    object-fit: cover;
    width: 604px;
    height: 568px;
    border-radius: 7px;
    position: relative;
    z-index: 100;
}

.whyus-img-div::after {
    background-color: #212E51;
    width: 448px;
    height: 535px;
    border-radius: 7px;
    gap: 0px;
    content: "";
    display: flex;
    position: absolute;
    right: 35px;
    bottom: -15px;
}

#map-iframe {
    width: 100%;
    height: 300px;
    margin-bottom: -6px;
}

footer {
    background-color: #202C46;
    padding-top: 4em;
    padding-bottom: 1em;
}

.copyright-text {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
}

.footer-title {
    color: #fff;
    font-size: 24px;
    line-height: 31px;
    font-weight: 500;
}

.footer-link {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 10px;
}

.footer-contact-row:hover,
.cw-link a:hover,
.footer-link:hover,
.footer-contact-row:focus,
.cw-link a:focus,
.footer-link:focus {
    color: #D4B589;
}

.footer-contact-row {
    display: flex;
    width: fit-content;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 10px;
}

.footer-contact-row img {
    margin-right: 6px;
}

.cw-link {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
}

.cw-link a {
    color: #fff;
}

.heading {
    position: relative;
    background-image: url("../images/subhero-image.webp");
    background-repeat: no-repeat;
    background-position: right;
}

.heading .row {
    height: 399px;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.heading-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 63px;
    color: #162449;
}

.kezelesek-fluid {
    margin-top: 3em;
    margin-bottom: 3em;
}

.kezeles-view-fluid {
    margin-top: 3em;
    margin-bottom: 3em;
}

.back-btn {
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    color: #D4B589;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
}

.back-btn img {
    margin-right: 10px;
}

.top-img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 7px;
}

.gallery-img-list img {
    height: 349px;
    width: 100%;
    object-fit: cover;
    border-radius: 7px;
    box-shadow: 0px 0px 4px 0px #00000040;
}

.csapatunk-list-fluid {
    margin-top: 4em;
    margin-bottom: 4em;
}

.team-member-img.oneteamview {
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
} 

.contactpage-fluid {
    margin-top: 4em;
}

.araink-fluid {
    margin-top: 5em;
    margin-bottom: 5em;
}

.one-price-table-title {
    margin-top: 3em;
    color: #212E51;
    font-size: 36px;
    font-weight: 800;
    border-bottom: 4px solid #D4B589;
    margin-bottom: 1em;
    display: flex;
    width: fit-content;
}

.one-table-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    border-bottom: 1px solid #3C3C3C80;
    color: #3C3C3C;
    font-weight: 600;
    font-size: 28px;
    line-height: 37px;
    margin-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.one-table-row .left-part {
    display: flex;
    text-align: left;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
}

.one-table-row .left-part span {
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
}

.lg-sub-html {
    display: none !important;
}
/*EOF DENTIMED*/