@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
:root{
    --primary:#112033!important;
    --secondary:#B48A4A!important;
    --tercial:#091f31!important;
    --bgColor:#CFCAC3!important;
    --sectionPadding:6rem;
    --main_font:"Noto Sans", sans-serif;
    --shadow: 0 10px 30px rgba(0,0,0,.06);
    --radius: 16px;
}
::selection{
    background: var(--primary);
    color: var(--secondary);
}
::-webkit-scrollbar {
    width: 15px;
    height: 15px;
    background: #151d29;
    box-shadow: 2px 2px 20px #2e394d;
}
::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 0px;
    box-shadow: 0px 1px 40px #f3f8fb;
}
.new_page{
    padding-top: 150px!important;
}
.callToActionButton a {
    padding: 12px 15px;
    background-color: var(--tercial);
    border: none;
    color: white;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: var(--main_font);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin-top: 25px;
    text-decoration: none;
}
.callToActionButton a:hover{
    background: var(--secondary);
    color: var(--primary);
}
.sectionTitle h2, .sectionTitle h1 {
    color: var(--bgColor);
    font-family: var(--main_font);
    font-size: 52px;
    padding-top: 0;
}
.sectionTitle h2 span, .sectionTitle h1 span{
    color: var(--secondary);
}
.sectionParagraph p,.sectionParagraph ul li{
    color: var(--bgColor);
    font-family: var(--main_font);
    font-size: 18px;
    list-style: none;
}
.myButton a{
    background: var(--secondary);
    z-index: 999;
    color: var(--bgColor);
    box-shadow: 0px 5px 12px #0000006e;
    display: none;
}
.myButton a:hover{
    background: var(--primary);
}
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
}
.visually-hidden-focusable {
    position: absolute; left: -9999px; top: auto; width: 1px; height: 1px;
    overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
}
.visually-hidden-focusable:focus,
.visually-hidden-focusable:active {
    position: fixed; left: 1rem; top: 1rem; width: auto; height: auto;
    clip: auto; padding: .5rem .75rem; background: #fff; border: 2px solid #063C62;
    z-index: 10000; box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.social-icons {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 999;
}
.social-icons a {
    background-color: var(--secondary);
    color: var(--bgColor);
    text-align: center;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px 0 0 5px;
    text-decoration: none;
    font-size: 24px;
    transition: background-color 0.3s;
    filter: drop-shadow(2px 4px 6px black);
}
/* Hover efekt na ikony */
.social-icons a:hover {
    background-color: var(--primary);
    transform: scale(1.2);
    color: var(--secondary);
}
@media only screen and (max-width: 991px) {
    :root{
        --sectionPadding:4rem;
    }
    .sectionTitle h2 {
        font-size: 62px;
    }
    .myReverse{
        flex-direction: column-reverse;
    }
}
@media only screen and (max-width: 568px) {
    .sectionTitle h2 {
        font-size: 52px;
    }
    .callToActionButton a {
        display: block;
        text-align: center;
    }
}
@media only screen and (max-width: 425px) {
    :root{
        --sectionPadding:2rem;
    }
    .sectionTitle h2 {
        font-size: 42px;
        padding-bottom: 25px!important;
    }
}
@media only screen and (max-width: 375px) {
    .sectionTitle h2 {
        font-size: 36px;
    }
}

/*========================================================SIDE WIDGET=================================================*/

#sideWidget {
    position: fixed;
    color: #ffffff;
    transition: .25s all;
    top: calc(40vh + 85px);
    white-space: nowrap;
    background: var(--primary);
    padding: 7px 15px;
    border-radius: 5px 5px 0 0;
    -webkit-transform-origin: 100% 50%;
    transform: rotate(-90deg) translate(61.5%,-50%);
    text-align: right;
    text-shadow: 0 1px 1px rgb(255 255 255 / 25%);
    text-transform: uppercase;
    cursor: pointer;
    right: -1px;
    z-index: 996;
    box-shadow: 0 -10px 30px 0 rgb(0 0 0 / 8%);
    margin-right: 0;
    font-family: var(--main_font);
}

.d-flex{
    display: flex;
}

#sideWidgetContent {
    top: 42vh;
    transform: translateY(-25%);
    right: -460px;
    background: var(--bgColor);
    padding: 40px;
    width: 460px;
    position: fixed;
    color: #061f35;
    transition: .25s all;
    border-radius: 15px;
    z-index: 999;
}

#sideWidget.open {
    right: 461.2px;
}

#sideWidget.open i {
    transform: rotate(180deg);
}
.sidetitle h2{
    font-size: 27px!important;
    color: #102137;
    font-weight: 700;
}

#sideWidgetContent.open {
    right: 0;
    width: 461px;
    box-shadow: 0 0 30px 0 #00000038;
}

.sideButtons{
    display: grid;
}

#sideWidgetContent h2 {
    color: var(--primary);
}

#sideWidgetContent p a {
    text-decoration: none;
    font-weight: 700;
    color: var(--primary);
}
#sideWidgetContent p a:hover {
    text-decoration: none;
    color: #444444;
}

.sideButtons a{
    width: 100%;
    background: var(--primary);
    text-align: center;
    padding: 10px 15px;
    border-radius: 10px;
    text-transform: uppercase;
    color: var(--bgColor);
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.sideButtons a:hover {
    background: #042f42;
    text-decoration: none;
}
.modalPhone select{
    width: 100%;
    padding: 6px;
    border: 1px solid #ced4da;
    border-radius: 5px;
}
.modalPhone h1 {
    color: #061f35;
    text-align: center;
}
.modalPhoneContent{
    background-color: #0000000f!important;
}
.btnClosePhoneModal{
    text-align: right;
    position: relative;
    top: -55px;
}

@media only screen and (max-width:768px){
    #sideWidgetContent {
        top: 40vh;
    }
    #sideWidget {
        top: calc(37vh + 85px);
    }
}

@media only screen and (max-width: 568px) {
    #sideWidget {
        display: none;
    }
    #sideWidget.open {
        right: 260px;
    }
    #sideWidgetContent.open {
        width: 270px;
    }
}

/*========================================================SIDE WIDGET=================================================*/


/*=======================================================NAVBAR=======================================================*/
.top_navbar {
    padding: 15px;
    background: var(--secondary);
    text-align: center;
}
.top_navbar a, .top_navbar p{
    color: var(--primary);
    font-weight: 600;
    font-family: var(--main_font);
    text-decoration: none;
    margin-bottom: 0;
}
.navbar {
    box-shadow: 0 5px 25px #3b5e9e47;
    font-family: var(--main_font);
    background: #0e0f14;
    padding-top: 25px;
    padding-bottom: 25px;
    /*background: radial-gradient(#092031, #1a1a1a);*/
    background: linear-gradient(135deg, #0B1624 0%, #112033 100%);
    z-index: 999;
}
.navbar.scrolled{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
.navbar-nav{
    margin-left: auto;
}
.navbar-brand img {
    width: 300px;
    padding-top: 0;
    padding-bottom: 0;
}
.navbar .nav-link {
    color: var(--bgColor)!important;
    font-size: 16px;
    margin-left: 0;
    margin-right: 0;
}
.navbar .nav-link:hover{
    color: var(--secondary)!important;
}
.navbar .social_icon .nav-link{
    text-transform: none!important;
}
.navbar .social_icon .nav-link:hover{
    color: var(--secondary)!important;
}
.navbar .social_icon i{
    color: var(--secondary);
}
.navbar .nav-link:hover{
    color: var(--secondary);
}
.navbar_flags{
    display: flex;
}
.navbar .navbar_flags img {
    width: 25px;
}
.navbar .headerActive{
    color: var(--secondary)!important;
    background: transparent!important;
}

.navbar-collapse.show{
    height: 100vh;
}
.navbar .dropdown-menu{
    background: linear-gradient(135deg, #0B1624 0%, #112033 100%);
}
.navbar .dropdown-item {
    color: var(--bgColor);
}
.dropdown-item:focus, .dropdown-item:hover {
    color: var(--tercial);
    background-color: var(--secondary);
}
@media only screen and (max-width: 1400px){
    .navbar .social_icon{
        display: none;
    }
}
@media only screen and (max-width: 1199px) {
    .navbar .nav-link {
        margin-left: 0!important;
        margin-right: 0!important;
    }
    .navbar_flags {
        display: block;
    }
    .navbar .callToActionButton a {
        display: none;
    }
}
@media only screen and (max-width: 991px) {
    .navbar .nav-link {
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 20px;
        margin-bottom: 15px;
    }
    .navbar .callToActionButton {
        text-align: center;
        font-size: 18px;
        padding-top: 25px;
    }
    .navbar-nav {
        margin-top: 50px;
    }
    .navbar .nav-link{
        margin-top: 10px;
    }
    .navbar .callToActionButton a {
        display: block;
    }
    .top_navbar{
        display: none;
    }
    .navbar .dropdown-menu{
        text-align: center;
    }
}
@media only screen and (max-width: 460px) {
    .navbar-brand img {
        width: 300px;
    }
}
@media only screen and (max-width: 400px) {
    .navbar-brand img {
        width: 250px;
        padding-top: 25px;
        padding-bottom: 25px;
    }
}
@media only screen and (max-width: 349px) {
    .navbar-brand img {
        width: 200px;
    }
}

/*=======================================================NAVBAR=======================================================*/

/*===================================================HEADER SECTION===================================================*/
#header_section {
    display: flex;
    align-items: center;
    min-height: 100vh;
    height: 860px;
    background: var(--tercial);
    background-size: cover;
    background-attachment: fixed;
    background-position: bottom;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url("../img/background/header_bg.webp");
}
.header_content{
    width: 50%;
}
#header_section h1 {
    color: var(--bgColor);
    font-size: 4.2rem;
    margin-bottom: 1rem;
    font-family: var(--main_font);
}
#header_section h1 span{
    color: var(--secondary);
}
#header_section p{
    font-size: 1.4rem;
    color: var(--bgColor);
    font-family: var(--main_font);
    padding-top: 25px;
    padding-bottom: 25px;
}
#header_section .callToActionButton a {
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 10px 25px;
    font-size: 22px;
}
#header_section .callToActionButton a:hover {
    color: var(--primary);
}
.header_map {
    position: absolute;
    bottom: 15px;
    right: 15px;
}
.header_map_content span{
    color: var(--bgColor);
    font-family: var(--main_font);
    font-weight: 600;
    opacity: 0.6;
    text-align: center;
    padding-top: 15px;
}
.header_map_content span b{
    color: var(--secondary);
}
.header_map_content{
    display: grid;
}
.header_map img {
    width: 450px;
}
/*=======Scroll Icon============*/

.header_section_scroll_icon {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.scroll-icon {
    display: block;
    position: relative;
    height: 3em;
    width: 1.5em;
    border: .15em solid var(--bgColor);
    border-radius: 1em;
}
.page-wrap {
    display: flex;
    height: 100vh;
}
.scroll-icon__wheel-outer {
    display: block;
    position: absolute;
    left: 50%;
    top: .6em;
    height: 1em;
    width: .4em;
    margin-left: -.2em;
    border-radius: .4em;
    overflow: hidden;
}

.scroll-icon__wheel-inner {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: inherit;
    background: var(--secondary);
    animation: scroll_1 2.75s ease-in-out infinite;
}
.header_img img {
    position: absolute;
    width: 460px;
    bottom: 0;
    right: 150px;
}
@keyframes scroll_1 {
    0%   { transform: translateY(0); }
    25%  { transform: translateY(-0.6em); }
    50%  { transform: translateY(0); }
    75%  { transform: translateY(0.6em); }
    100% { transform: translateY(0); }
}

/*=======Scroll Icon End============*/
@media only screen and (max-width: 1399px) {
    .header_img img {
        width: 680px;
        right: 5%;
    }
}
@media only screen and (max-width: 1320px) {
    .header_img img {
        width: 520px;
        right: 5%;
    }
}
@media only screen and (max-width: 1199px){
    .header_content {
        width: 100%;
    }
    .header_content p {
        font-size: 18px;
    }
}
/*@media only screen and (max-height: 624px){
    #header_section{
        min-height: 666px;
    }
}*/
@media only screen and (max-width: 991px){
    .header_img img {
        display: none;
    }
    #header_section {
        height: auto;
        padding-top: 180px;
        padding-bottom: 200px;
        display: block;
    }
    #header_section .header_map {
        position: relative;
        bottom: unset;
        right: unset;
    }
    .header_map img {
        width: 40%;
        text-align: center;
        display: block;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        margin-top: 50px;
    }
}
@media only screen and (max-width: 768px) {
    #header_section .callToActionButton a {
        width: 100%;
    }
}
@media only screen and (max-width: 568px) {
    #header_section h1 {
        font-size: 2.5rem;
    }
    #header_section img {
        width: 100%;
        padding-top: 50px;
    }
}
@media only screen and (max-width: 425px){
    .header_content h1 {
        font-size: 42px;
    }
    .header_content p{
        text-align: left;
    }
}
@media only screen and (max-width: 382px) {
    .header_content .callToActionButton a{
        display: block;
        margin-bottom: 15px;
    }
}

/*===================================================HEADER SECTION===================================================*/

/*======================================================OUR OFFER======================================================*/
#our_offer {
    padding: var(--sectionPadding);
    background: var(--bgColor);
    background-image: url("../img/background/inner_bg.webp");
    border-top: 3px solid var(--secondary);
    border-bottom: 3px solid var(--secondary);
    background-size: cover;
    background-attachment: fixed;
}
#our_offer .our_offer_box{
    text-align: center;
}
#our_offer .our_offer_box p {
    font-size: 22px;
    padding-top: 25px;
    font-family: var(--main_font);
    font-weight: 600;
    color: var(--bgColor);
}
#our_offer .our_offer_box img{
    width: 80px;
    text-align: center;
    display: block;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    transition: 500ms;
}
#our_offer .our_offer_box img:hover{
    transform: scale(1.1);
}
/*======================================================OUR OFFER======================================================*/

/*======================================================SERVICES======================================================*/
#services {
    padding: var(--sectionPadding);
    background: var(--bgColor);
    background-image: url("../img/background/services_bg.webp");
    background-size: cover;
    background-attachment: fixed;
    background-position: top;
    border-top: 3px solid var(--secondary);
    position: relative;
}
#services .sectionTitle h2 {
    color: var(--primary);
    font-family: var(--main_font);
    padding-bottom: 50px;
    font-weight: 600;
}
#services a{
    text-decoration: none;
}
#services .about_us_box {
    padding: 60px 30px;
    margin-bottom: 30px;
    position: relative;
    min-height: 640px;
    height: auto;
    background: var(--primary);
    box-shadow: 2px 2px 6px black;
    /* outline: 3px solid var(--primary); */
    border-radius: 25px;
    background: var(--primary);
    background: radial-gradient(#101f32, #0d1a2a);
    text-align: center;
}
#services .about_us_box:hover {
    background: var(--tercial);
    box-shadow: 2px 2px 12px var(--secondary);
}
#services .about_us_box img {
    width: 150px;
    margin-bottom: 20px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
}
#services .about_us_box.active {
    background: var(--primary);
}
#services .about_us_box.active img {
    width: 60px;
    margin-bottom: 20px;
    background: white;
    padding: 10px;
    border-radius: 50%;
}
#services .about_us_box h3 {
    font-size: 1.8rem;
    /* font-weight: 300; */
    margin-bottom: 15px;
    color: var(--bgColor);
    font-family: var(--main_font);
}
#services .about_us_box .line {
    width: 100%;
    display: inline-block;
    position: relative;
    margin-bottom: 5px;
}
#services .about_us_box .line:after {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 50px;
    height: 1px;
    background-color: var(--primary);
    content: '';
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
}
#services .about_us_box:hover .line:after {
    width: 100%;
    background-color: var(--secondary);
    transition-property: all;
    transition-duration: 0.8s;
    transition-timing-function: ease-in-out;
}
#services .about_us_box p {
    margin-bottom: 0;
    color: var(--bgColor);
    font-size: 24px;
}
#services .about_us_box .about_us_bottom_number {
    font-size: 40px;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    line-height: 1em;
}
#services .about_us_box:hover .about_us_bottom_number{
    -webkit-text-stroke: 1px var(--primary);
}
.no_pc{
    display: none;
}
.no_phone{
    display: block;
}
.sevices_box_button{
    display: block;
    padding-top: 25px;
    position: absolute;
    bottom: 65px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}
.sevices_box_button a {
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 15px 50px;
    font-size: 20px;
    border-radius: 5px;
}
.sevices_box_button a:hover{
    background: var(--secondary);
    color: var(--bgColor);
}
#services .about_us_box:hover .sevices_box_button p{
    background: var(--secondary);
    color: var(--bgColor)!important;
}
/* Ensure dots are visible and centered */
.owl-carousel .owl-dots {
    display: block;
    text-align: center;
    margin-top: 20px;
}

/* Style each dot */
.owl-carousel .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: var(--primary)!important;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Active dot style */
.owl-carousel .owl-dot.active {
    background-color: var(--secondary)!important; /* Change to your primary brand color */
}
.owl-nav .owl-prev {
    position: absolute;
    left: -60px;
    top: 40%;
    font-size: 52px !important;
    z-index: 999;
}
.owl-nav .owl-next {
    position: absolute;
    right: -60px;
    top: 40%;
    font-size: 52px !important;
    z-index: 999;
}
.owl-nav button:hover{
    color: var(--secondary)!important;
}
.owl-nav button:focus{
    outline: none;
}
@media only screen and (max-width: 1199px) {
    #services .about_us_box{
        min-height: unset;
        height: auto;
    }
    .sevices_box_button {
        position: relative;
        bottom: unset;
        padding-top: 100px;
    }
}
@media only screen and (max-width: 991px){
    .no_pc{
        display: block;
    }
    .no_phone{
        display: none;
    }
    .about_us_first_img .img {
        margin-top: 50px;
    }
    #services p, #services ul li {
        margin-bottom: 35px;
    }
    .about_us_title h2{
        color: #ffffff;
        font-size: 62px;
        text-shadow: 0 4px 6px #000000c7;
        padding-bottom: 15px;
        font-weight: 300;
        letter-spacing: 5px;
        text-align: center;
        margin-top: 25px;
        margin-bottom: 25px;
    }
    #services .item {
        margin-bottom: 0;
    }
}
@media only screen and (max-width: 460px) {
    .owl-nav{
        display: none;
    }
    .sevices_box_button a {
        display: block;
        text-align: center;
        color: white;
    }
    .sevices_box_button {
        padding-top: 60px;
    }
}
@media only screen and (max-width: 425px) {
    .about_us_title h2{
        margin-bottom: 0;
        font-size: 42px;
    }
    #services .about_us_box{
        height: auto;
    }
}
/*======================================================SERVICES======================================================*/

/*===========================================================ABOUT US=================================================*/
#about_us {
    padding: var(--sectionPadding);
    background: var(--bgColor);
    position: relative;
    background-image: url("../img/background/about_us_white.webp");
    background-size: cover;
    background-attachment: fixed;
    background-position: top;
    box-shadow: inset 0 0 0 2000px #ececec8c;
    min-height: 80vh;
    height: auto;
    display: flex;
    align-items: center;
}
.about_us_index{
    position: relative;
}
#about_us .sectionTitle h2{
    color: var(--tercial);
}
#about_us .sectionParagraph p{
    color: var(--tercial);
}
#about_us img{
    width: 100%;
}
#about_us ul li{
    color: var(--tercial);
    margin-top: 25px;
    margin-bottom: 25px;
    list-style: unset;
}
#about_us ul li::marker{
    color: var(--secondary);
}
.about_us_index img {
    width: 680px !important;
    position: absolute;
    bottom: 0;
    right: 0;
}
.about_us_image_page img{
    width: 85%!important;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
    border-radius: 10px;
    box-shadow: -4px 4px 12px #0a2031;
}

@media only screen and (max-width: 1320px) {
    .about_us_index img{
        width: 580px!important;
    }
}
@media only screen and (max-width: 1199px) {
    #about_us img {
        width: 700px;
    }
}
@media only screen and (max-width: 1100px) {
    .about_us_index img {
        width: 500px !important;
    }
}
@media only screen and (max-width: 991px) {
    #about_us .row{
        flex-direction: column-reverse;
    }
    #about_us img {
        width: 100%!important;
        position: relative;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        display: block;
        padding: 0;
    }
}

/*===========================================================ABOUT US=================================================*/

/*====================================================SECTION INNER====================================================*/
#section_inner{
    padding: var(--sectionPadding);
    background: var(--bgColor);
    background-image: url("../img/background/inner_bg_02.webp");
    border-top: 3px solid var(--secondary);
    border-bottom: 3px solid var(--secondary);
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}
#section_inner .callToActionButton a{
    background: var(--secondary);
}
#section_inner .callToActionButton a:hover{
    background: #856739;
    color: white;
}
/*====================================================SECTION INNER====================================================*/

/*======================================================INNER TWO======================================================*/
#inner_two{
    padding: var(--sectionPadding);
    background: var(--bgColor);
    background-image: url("../img/background/inner_two.webp");
    border-top: 3px solid var(--secondary);
    border-bottom: 3px solid var(--secondary);
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}
#inner_two .callToActionButton a {
    background: var(--secondary);
}
#inner_two .callToActionButton a:hover {
    background: #856739;
    color: white;
}
/*======================================================INNER TWO======================================================*/

/*=====================================================PRICE LIST=====================================================*/
.pricing {
    background: var(--bgColor);
    color: var(--primary);
    padding: clamp(48px, 6vw, 96px) 16px;
    background-image: url("../img/background/price_bg_white.webp");
    background-size: cover;
    background-attachment: fixed;
    background-position: top;
}

/* Header */
.pricing_header {
    max-width: 900px;
    margin: 0 auto clamp(28px, 4vw, 48px);
    text-align: center;
}
.pricing_header h2 {
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.15;
    letter-spacing: .2px;
    margin: 0 0 10px;
}
.pricing_header h2::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin: 14px auto 0;
    background: var(--secondary);
    border-radius: 2px;
}
.pricing_header p {
    margin: 10px auto 0;
    color: var(--muted);
    font-size: clamp(14px, 1.5vw, 18px);
}

/* Cards */
.pricing_card {
    background: var(--card-bg);
    border: 1px solid var(--bgColor);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: clamp(18px, 2.2vw, 28px);
    margin-bottom: 24px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pricing_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.08);
    border-color: rgba(224,170,37,.35);
}
.pricing_card h3 {
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.25;
    margin: 0 0 12px;
}
.pricing_card h3::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    margin-top: 10px;
}
.pricing_card p {
    margin: 8px 0;
    color: #333;
}
.pricing_card .price {
    font-size: clamp(18px, 2.2vw, 24px);
    margin: 6px 0 4px;
}

/* Bullet list with price column */
.pricing_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}
.pricing_list li {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: start;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(0,0,0,.08);
}
.pricing_list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.pricing_list li span {
    color: #2a2a2a;
}
.pricing_list li strong {
    white-space: nowrap;
    font-weight: 700;
}
.pricing_list li small {
    grid-column: 1 / -1;
    color: var(--muted);
    margin-top: 4px;
    font-size: 0.92rem;
}

/* Buttons — scoped to pricing to avoid global overrides */
.pricing .btn {
    --btn-pad-y: 12px;
    --btn-pad-x: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: var(--btn-pad-y) var(--btn-pad-x);
    border-radius: 999px;
    text-decoration: none;
    line-height: 1;
    font-weight: 650;
    border: 2px solid transparent;
    transition: transform .15s ease, box-shadow .15s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
    cursor: pointer;
}
.pricing .btn-primary {
    background: var(--secondary);
    color: #131313;
    box-shadow: 0 8px 24px rgba(224,170,37,.35);
    margin-top: 25px;
    margin-bottom: 25px;
}
.pricing .btn-primary:hover {
    background: #856739;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(224,170,37,.45);
}
.pricing .btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--secondary);
}
.pricing .btn-outline:hover {
    background: var(--secondary);
    color: #131313;
    transform: translateY(-2px);
}

/* Accessibility: focus visibility */
.pricing a:focus-visible,
.pricing button:focus-visible,
.pricing .btn:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
    border-radius: 10px;
}

/* Responsive table wrapper */
.table-responsive {
    background: var(--card-bg);
    border: 1px solid var(--bgColor);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: auto; /* horizontal scroll on small screens */
}

/* Table */
.pricing_table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px; /* keep columns readable */
    font-size: clamp(14px, 1.5vw, 16px);
}
.pricing_table thead th {
    background: var(--primary);
    color: #fff;
    text-align: left;
    font-weight: 600;
    border: 0;
    padding: 14px 16px;
    position: sticky; /* keeps header visible on scroll */
    top: 0;
    z-index: 1;
}
.pricing_table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--bgColor);
    white-space: nowrap;
}
.pricing_table tbody tr:nth-child(odd) {
    background: rgba(0,0,0,.015);
}

/* Notes under the table */
.pricing_notes {
    margin: 14px 0 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: .95rem;
}
.pricing_notes li + li {
    margin-top: 6px;
}

/* Footer "fine print" */
.pricing_footer {
    max-width: 900px;
    margin: clamp(20px, 3vw, 36px) auto 0;
    text-align: center;
    color: var(--muted);
    font-size: .95rem;
}
.pricing_footer em {
    font-style: normal;
    border-bottom: 1px dotted currentColor;
}

/* Small enhancements on very large screens */
@media (min-width: 1280px) {
    .pricing_card {
        padding: 32px;
        min-height: 240px;
        height: auto;
    }
}

/* Optional: subtle entry animation */
@media (prefers-reduced-motion: no-preference) {
    .pricing_card {
        transform: translateY(0);
        opacity: 1;
        animation: pricingFadeIn .5s ease both;
    }
    .pricing_card:nth-child(2) { animation-delay: .06s; }
    .pricing_card:nth-child(3) { animation-delay: .12s; }
    .pricing_card:nth-child(4) { animation-delay: .18s; }
    .pricing_card:nth-child(5) { animation-delay: .24s; }
    .pricing_card:nth-child(6) { animation-delay: .30s; }
    .pricing_card:nth-child(7) { animation-delay: .36s; }
}
@keyframes pricingFadeIn {
    from { transform: translateY(8px); opacity: 0; }
    to   { transform: translateY(0);   opacity: 1; }
}

/*=====================================================PRICE LIST=====================================================*/


/*======================================================BLOG==========================================================*/
#blog {
    padding: var(--sectionPadding);
    padding-top: 0;
    position: relative;
    font-family: var(--main_font);
    background-image: url("../img/background/blog_bg.webp");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    height: auto;
    border-top: 3px solid var(--secondary);
    border-bottom: 3px solid var(--secondary);
}
#blog .sectionTitle h2 {
    padding: var(--sectionPadding);
    padding-top: 0;
    color: var(--bgColor);
}
#blog .col-xl-4 {
    transition: 500ms;
    opacity: 1; /* defaultní stav */
    transform: scale(1); /* defaultní stav */
}
#blog .col-xl-4:hover {
    opacity: 1;
    transform: scale(1.1) !important;
    padding: 15px;
}
/* Efekt na ostatní prvky */
#blog .col-xl-4:hover + .col-xl-4,
#blog .col-xl-4:not(:hover) {
    transform: scale(1);
    padding: 15px;
}
.blog_svg {
    position: absolute;
    bottom: -10px;
    width: 100%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    /* transform: rotate(180deg); */
    /* margin-top: -30px; */
}
.blog_svg svg {
    fill: var(--tercial);
    margin-top: 30px;
}
.blog_bottom_svg {
    position: absolute;
    top: -10px;
    width: 100%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    transform: rotate(180deg);
}
.blog_bottom_svg svg {
    margin-top: -10px;
}
#blog .col-xl, #blog .col-xl-4 {
    margin-bottom: 50px;
    filter: drop-shadow(2px 4px 6px black);
}
#blog a{
    text-decoration: none;
}
#blog img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}
.blog_box{
    margin-top: 50px;
    margin-bottom: 50px;
    font-family: var(--main_font);
}
.blog_box h2 {
    font-family: var(--main_font);
    font-size: 22px;
    padding-top: 15px;
    padding-bottom: 15px;
    color: var(--secondary);
}
.blog_box .pricing_table tbody td{
    color: var(--bgColor);
}
.portfolio-content i {
    color: var(--primary);
}

.portfolio-content {
    background: var(--primary);
    padding: 15px;
    padding-bottom: 50px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}
.portfolio-content span{
    font-weight: 600;
    color: var(--bgColor);
}
.portfolio-content h4{
    color: var(--secondary);
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 22px;
}
.wrapped-text {
    overflow: hidden;
    /* min-height: 10em; */
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    text-align: left;
    color: var(--bgColor);
    font-size: 18px;
}
.wrapped-text p:nth-of-type(2){
    display: none;
}

.page_blog{
    padding-top: var(--sectionPadding)!important;
    min-height: unset!important;
}
.page_blog .portfolio-content {
    background: var(--tercial);
}
.page_blog .portfolio-content h4 {
    color: var(--secondary);
}
#blog .callToActionButton a{
    background: var(--secondary);
}
#blog .callToActionButton a:hover {
    background: #856739;
    color: white;
}
.blog_section{
    padding: var(--sectionPadding)!important;
    background-image: url("../img/background/blog_bg_white.webp")!important;
    border: none!important;
}
.blog_section .portfolio-content{
    background: var(--tercial)!important;
}
@media only screen and (max-width: 991px){
    #blog .row{
        justify-content: center;
    }
    .blog_bottom_svg svg {
        margin-top: -15px;
    }
}

@media only screen and (max-width: 425px){
    #blog{
        padding-left: 0;
        padding-right: 0;
        padding-top: 50px;
    }
    #blog .callToActionButton{
        padding-bottom: 50px;
    }
}

/*======================================================BLOG==========================================================*/

/*==================================================REAL ESTATE OPEN==================================================*/
#real_estate_open {
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    /* box-shadow: inset 0 0 0 2000px #232f4191; */
    font-family: var(--main_font);
    background: var(--secondary);
}
#real_estate_open .container-sm {
    padding: 50px;
    /* padding-top: 150px; */
    padding-bottom: 150px;
    background: #0b202ff5;
}
#real_estate_open .sectionTitle h1 {
    text-transform: uppercase;
    font-size: 42px;
    text-align: center;
    color: var(--secondary);
}
.real_estate_open_header {
    text-align: center;
    padding-top: 25px;
}
.real_estate_open_header span{
    color: var(--bgColor);
}
.real_estate_open_header i{
    color: var(--secondary);
    margin-left: 15px;
}
.real_estate_content p, .real_estate_content ul li {
    font-size: 22px;
    text-align: left;
    color: var(--bgColor);
}
.real_estate_content p a{
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.real_estate_content ul li::marker{
    color: var(--secondary)!important;
}
.real_estate_content ul li::marker{
    color: var(--primary);
}
.real_estate_content ul li, .real_estate_content ol li{
    margin-bottom: 25px;
    font-size: 22px;
    color: var(--bgColor);
}
.real_estate_content h3{
    padding-top: 15px;
    padding-bottom: 15px;
    color: var(--secondary);
}
#real_estate_open .callToActionButton a{
    background: var(--secondary);
}
@media only screen and (max-width: 433px) {
    #real_estate_open .callToActionButton a{
        display: block;
        margin-bottom: 15px;
    }
}
@media only screen and (max-width: 425px) {
    .real_estate_content .callToActionButton a{
        display: block;
        margin-bottom: 25px;
    }
    #real_estate_open .container-sm{
        padding-bottom: 50px;
    }
    .real_estate_content p{
        text-align: left!important;
    }
}
@media only screen and (max-width: 320px) {
    #real_estate_open .sectionTitle h1 {
        font-size: 32px;
    }
}

/*==================================================REAL ESTATE OPEN==================================================*/

/*========================================================FAQ========================================================*/
#faq {
    padding: var(--sectionPadding);
    background: var(--bgColor);
    font-family: var(--main_font);
    background-image: url("../img/background/faq_bg_white.webp");
    background-size: cover;
    background-attachment: fixed;
    background-position: top;
}

#faq .sectionTitle h2{
    padding-bottom: 50px;
    color: var(--tercial);
}
#faq .accordion {
    /*background-color: var(--primary);*/
    background: linear-gradient(135deg, #0B1624 0%, #112033 100%);
    color: var(--bgColor);
    cursor: pointer;
    padding: 15px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    margin-bottom: 25px;
    font-size: 18px;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
#faq .active, #faq .accordion:hover {
    background: var(--secondary);
    color: var(--primary);
    font-weight: 600;
}
/* Style the accordion panel. Note: hidden by default */
#faq .panel {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    color: var(--primary);
    font-family: var(--main_font);
    font-size: 18px;
    padding-bottom: 15px;
    text-align: left;
}
#faq .accordion:after {
    content: '+';
    font-size: 22px;
    font-weight: 600;
    font-family: var(--main_font);
    color: var(--bgColor);
    float: right;
    margin-left: 5px;
}
#faq .active:after {
    content: "-"; /* Unicode character for "minus" sign (-) */
}
#faq .active:after, #faq .accordion:hover:after {
    color: var(--bgColor);
}
#faq p a{
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
#faq p a:hover{
    color: var(--secondary);
}
#faq h3{
    color: var(--primary);
}
@media only screen and (max-width: 1199px) {
    #faq .accordion{
        transition: unset;
    }
}
@media only screen and (max-width: 768px) {
    #faq .callToActionButton a{
        display: block;
        margin-bottom: 25px;
    }
}
@media only screen and (max-width: 425px) {
    #faq{
        padding-bottom: 50px;
    }
    #faq .panel{
        text-align: left;
    }
}
/*========================================================FAQ========================================================*/

/*====================================================CONTACT PAGE====================================================*/
#contact_page .sectionParagraph{
    padding-top: 25px;
}
#contact_page .billing-info .card:hover{
    background: var(--secondary);
}
#contact_page .sectionParagraph p{
    color: var(--primary);
}
#contact_page .form-section{
    background: var(--primary);
    padding: 25px;
    border-radius: 15px;
}
#contact_page .form-section h2{
    padding-bottom: 25px;
    color: var(--bgColor);
}
#contact_page .form-section input, #contact_page .form-section textarea {
    border: 4px solid var(--primary);
    padding: 10px 5px;
    background: var(--secondary);
}
#contact_page .form-check{
    display: flex;
    align-items: center;
}
#contact_page input[type="checkbox"] {
    padding: 15px;
}
#contact_page .form-check-input:checked[type=checkbox] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")!important;
}
#contact_page .form-check a{
    color: var(--secondary);
    font-weight: 600;
}
#contact_page .form-section label{
    color: var(--bgColor);
    font-weight: 600;
}
#contact_page .form-section button {
    border: 2px solid var(--secondary);
    padding: 8px 25px;
    background: transparent;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 25px;
}
#contact_page .form-section button:hover {
    color: var(--primary);
    background: var(--secondary);
}
/*====================================================CONTACT PAGE====================================================*/

/*====================================================SECTION PAGE====================================================*/
#section_page_header {
    padding: var(--sectionPadding);
    padding-top: 200px;
    padding-bottom: 200px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid var(--secondary);
    position: relative;
}
#section_page_header ul li{
    list-style: unset;
}
#section_page_header ul li::marker{
    color: var(--secondary);
}
#section_page_header h1{
    padding-bottom: 50px;
}
.section_page_header_box{
    width: 60%;
}
.section_page_header_box .callToActionButton{
    padding-top: 50px;
}
.section_page_header_box .callToActionButton a{
    background: var(--secondary);
}
#section_page_content{
    padding: var(--sectionPadding);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
.header_page_01{
    background-image: url("../img/background/services_01.webp");
}
.content_page_01{
    background-image: url("../img/background/services_01_white.webp");
}
.header_page_02{
    background-image: url("../img/background/services_02.webp");
}
.content_page_02{
    background-image: url("../img/background/services_02_white.webp");
}
.header_page_03{
    background-image: url("../img/background/services_03.webp");
}
.content_page_03{
    background-image: url("../img/background/services_03_white.webp");
}
.header_page_04{
    background-image: url("../img/background/services_04.webp");
}
.content_page_04{
    background-image: url("../img/background/services_04_02_white.webp");
}
.header_page_05{
    background-image: url("../img/background/services_05.webp");
}
.content_page_05{
    background-image: url("../img/background/services_05_white.webp");
}
.header_page_06{
    background-image: url("../img/background/services_06.webp");
}
.content_page_06{
    background-image: url("../img/background/services_06_white.webp");
}
.header_page_07{
    background-image: url("../img/background/services_07.webp");
}
.content_page_07{
    background-image: url("../img/background/services_07_white.webp");
}
.header_page_about_us{
    background-image: url("../img/background/about_us.webp");
}
.header_page_blog{
    background-image: url("../img/background/blog_bg.webp");
}
.header_page_price{
    background-image: url("../img/background/price_bg.webp");
}
.contact_page{
    background-image: url("../img/background/contact.webp")!important;
}
.header_page_faq{
    background-image: url("../img/background/faq.webp")!important;
}
.header_page_gdpr{
    background-image: url("../img/background/gdpr.webp")!important;
}
#section_page_content img{
    width: 80%;
    left: 0;
    right: 0;
    margin-right: auto;
    text-align: center;
    display: block;
}
#section_page_content h2{
    padding-top: 25px;
    padding-bottom: 25px;
}
#section_page_content .sectionParagraph p,#section_page_content .sectionParagraph ul li{
    color: var(--tercial);
}
#section_page_content .sectionParagraph ul li{
    list-style: unset;
    margin-top: 25px;
    margin-bottom: 25px;
}
#section_page_content .sectionParagraph ul li::marker{
    color: var(--secondary)!important;
}
@media only screen and (max-width: 991px) {
    .section_page_header_box{
        width: 100%;
    }
    .section_page_header_box h1 {
        font-size: 42px;
    }
    #section_page_content img {
        margin-left: auto;
        margin-top: 50px;
    }
}

/*====================================================SECTION PAGE====================================================*/

/*=======================================================FOOTER=======================================================*/
#footer {
    padding: var(--sectionPadding);
    padding-bottom: 0;
    font-family: var(--main_font);
    position: relative;
    border-top: 3px solid var(--primary);
    background: var(--primary);
    background-image: url("../img/background/footer_bg.webp");
    background-size: cover;
    background-attachment: fixed;
    border-top: 3px solid var(--secondary);
}
#footer .callToActionButton a{
    background: var(--secondary);
}
#footer .callToActionButton a:hover{
    background: #856739;
    color: white;
}
#footer img{
    width: 100%;
    padding-bottom: 25px;
}
.footer_left{
    width: 80%;
}
.footer_left p{
    color: var(--bgColor);
    text-align: left;
}
.footer_left .call_to_action_button{
    padding-top: 25px;
}
.contact_content h2{
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 25px;
}
.contact_content ul{
    padding: 0;
}
.contact_content ul li{
    list-style: none;
    margin-bottom: 15px;
}
.contact_content ul li a{
    text-decoration: none;
    color: var(--bgColor);
    font-size: 16px;
}
.contact_content ul li a:hover{
    color: var(--secondary);
}
.final_footer{
    display: flex;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    color: var(--bgColor);
}
.final_footer .final_footer_left{
    margin-right: auto;
    text-align: left;
}
.final_footer .final_footer_right{
    margin-left: auto;
    text-align: right;
}
.footer_content{
    padding-bottom: 25px;
}
.final_footer a{
    color: var(--secondary);
    text-decoration: none;
}
#footer hr:not([size]) {
    height: 1px;
    color: #ffffff52;
    opacity: 1;
}
@media only screen and (max-width: 1199px) {
    .footer_content h2{
        margin-top: 15px;
        margin-bottom: 15px;
    }
}
@media only screen and (max-width: 455px){
    .footer_left {
        width: 100%;
    }
    .final_footer {
        display: block;
        text-align: center;
    }
    .final_footer .final_footer_left {
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }
    .final_footer .final_footer_right {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .footer_left .callToActionButton{
        padding-bottom: 25px;
    }
    .footer_left p{
        text-align: left;
    }
}
/*=======================================================FOOTER=======================================================*/

/*====================================================CONTACT PAGE====================================================*/
#contact_page{
    background: var(--secondary);
    padding: var(--sectionPadding);
    padding-top: 200px;
    padding-bottom: 100px;
    font-family: var(--main_font);
    background-image: url("../img/header_bg_02.webp");
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}
.contact_header {
    width: 75%;
}
#contact_page .row{
    align-items: center;
}
#contact_page hr{
    color: var(--secondary);
}
#contact_page h2 {
    font-size: 42px;
    color: var(--secondary);
    font-weight: 600;
}
#contact_page p {
    font-size: 18px;
    color: var(--bgColor);
    text-align: left;
}
#contact_page input, #contact_page textarea {
    border: none;
    border-bottom: 2px solid var(--bgColor);
    margin-bottom: 50px;
    border-radius: 0;
    width: 100%;
    background: transparent;
    color: var(--secondary);
}
#contact_page input:focus, #contact_page textarea:focus{
    color: var(--secondary)!important;
}
#contact_page input::placeholder, #contact_page textarea::placeholder {
    color: var(--bgColor);
}
#contact_page .form-control:focus {
    color: var(--secondary);
    outline: 0;
    border-bottom: 2px solid var(--secondary);
    box-shadow: none;
}
#contact_page .form-control input:valid{
    border-bottom: 2px solid var(--secondary);
    color: var(--secondary);
    font-weight: 600;
}
#contact_page textarea{
    margin-bottom: 0;
}
#contact_page label{
    color: var(--bgColor);
}
#contact_page button{
    display: inline-block;
    padding: 10px 30px;
    /* background: linear-gradient(135deg, #419bff, #2b7cff); */
    background: transparent;
    color: var(--bgColor);
    text-decoration: none;
    font-size: 1.2rem;
    /* font-weight: 600; */
    border-radius: 5px;
    /* box-shadow: 0 4px 15px rgba(34, 95, 123, 0.5); */
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid var(--secondary);
    font-family: var(--main_font);
}
#contact_page button:hover{
    background: var(--secondary)!important;
    color: white!important;
}
.contact_form_gdpr p{
    color: var(--secondary)!important;
    font-size: 14px!important;
    display: block;
    padding-top: 15px;
}
.contact_form_gdpr a{
    color: var(--secondary)!important;
}
#contact_info {
    padding: var(--sectionPadding);
    border-top: 3px solid var(--secondary);
    background-image: url("../img/background/contact_white.webp");
    background-attachment: fixed;
    background-position: center;
    box-shadow: inset 0 0 0 2000px #ececec8c;
    position: relative;
}
#contact_info .sectionTitle h2{
    color: var(--tercial);
}
#contact_info .row{
    align-items: center;
}
#contact_info img {
    width: 680px;
    position: absolute;
    right: 0;
    bottom: 0;
}
#contact_info ul{
    margin: 0;
    padding: 0;
}
#contact_info ul li {
    list-style: none;
    margin-bottom: 15px;
    font-size: 18px;
}
#contact_info ul li i{
    color: var(--secondary);
    margin-right: 5px;
    font-size: 22px;
}
#contact_info h3 i{
    color: var(--secondary);
}
#contact_info ul li a{
    color: var(--tercial);
    font-weight: 600;
    text-decoration: none;
}
#contact_info ul li{
    color: var(--tercial);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 25px;
}
#contact_info ul li a:hover{
    color: var(--secondary);
}
#contact_info h3 {
    color: var(--secondary);
    font-size: 26px;
    padding-top: 50px;
    padding-bottom: 50px;
}
#contact_info p{
    color: var(--tercial);
    font-size: 18px;
    padding-top: 25px;
    padding-bottom: 25px;
}
#contact_page .myFormBottom{
    display: flex;
    align-items: center;
}
#contact_page .myFormBottom label{
    padding-left: 15px;
}
.myFormBottom a{
    color: var(--secondary)!important;
}
@media only screen and (max-width: 991px){
    .contact_header{
        width: 100%;
        padding-bottom: 50px;
    }
    #contact_info img {
        width: 70%;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        display: block;
        text-align: center;
        padding-top: 50px;
    }
    .contact_boxes{
        padding-top: 50px!important;
        padding-bottom: 50px;
    }
    #contact_info{
        padding-bottom: 0!important;
    }
    .contact_boxes{
        padding-bottom: 0!important;
    }
    #contact_info img{
        position: relative;
        width: 100%;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        display: block;
        padding-bottom: 0;
    }
}
@media only screen and (max-width: 768px) {
    #contact_page {
        padding-top: 150px;
    }
    .contact_header {
        width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    .contact_boxes{
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
@media only screen and (max-width: 425px) {
    #contact_page{
        padding-top: 200px;
    }
    #contact_page p{
        text-align: left;
    }
}

@media only screen and (max-width: 375px) {
    .contact_boxes{
        padding-top: 25px;
    }
    #contact_page h2{
        font-size: 36px;
    }
}

/*====================================================CONTACT PAGE====================================================*/

/*================================================TERMS AND CONDITIONS================================================*/
#terms_and_conditions {
    padding: var(--sectionPadding);
    font-family: var(--main_font);
    background: var(--bgColor);
    background-image: url("../img/background/gdpr_white.webp");
    background-position: center;
    background-attachment: fixed;
    box-shadow: inset 0 0 0 2000px #ecececb8;
}
#terms_and_conditions h2 {
    padding-top: 25px;
    padding-bottom: 25px;
    font-weight: 600;
}
#terms_and_conditions .sectionParagraph p,#terms_and_conditions .sectionParagraph ul li{
    color: var(--tercial);
}
#terms_and_conditions .sectionParagraph ul li{
    list-style: unset;
    padding-top: 15px;
    padding-bottom: 15px;
}
#terms_and_conditions .sectionParagraph ul li::marker{
    color: var(--secondary);
}
#terms_and_conditions .sectionParagraph a{
    color: var(--secondary);
    font-weight: 600;
}
/*================================================TERMS AND CONDITIONS================================================*/

/*==========================================================CALL TO ACTION FORM=======================================*/
#contactSendSuccess{
    color: var(--secondary);
}
#contactSendFailed{
    color: darkred;
}
.form-check-input:checked[type=checkbox]{
    background-image: url("../img/check-solid.svg")!important;
    background: var(--secondary);
    background-repeat: no-repeat;
    background-position: center;
}
.form-popup {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    border: 2px solid var(--primary);
    z-index: 999;
    box-shadow: 5px 5px 25px #00000078;
    border-bottom: none;
    border-right: none;
}
.form-container {
    max-width: 300px;
    padding: 15px;
    background-color: var(--tercial);
}
.form-container label{
    color: var(--bgColor);
    font-family: var(--main_font);
}
.form-container label a{
    color: var(--secondary)!important;
}
.form-container input, .form-container textarea {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: var(--secondary);
}
.form-container input::placeholder, .form-container textarea::placeholder{
    color: var(--primary);
}
.form-container input[type=text]:focus, .form-container input[type=password]:focus {
    background-color: #ddd;
    outline: none;
}
#myForm .form-check{
    display: flex;
    align-items: center;
}
#myForm .form-check .form-check-input{
    margin-right: 5px;
}
.form-container .btn {
    outline: none;
    border: none;
    background: var(--secondary);
    color: var(--bgColor);
    padding: 15px 35px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--main_font);
}
.form-container .cancel {
    background-color: red;
}
.form-container .btn:hover, .open-button:hover {
    opacity: 1;
}
.closeForm{
    text-align: right;
}
.closeForm i {
    font-size: 22px;
    text-align: right;
    color: var(--bgColor);
    cursor: pointer;
}
.myFormBottom{
    display: flex;
}
.myFormBottom label{
    margin-left: 15px;
}
.myFormBottom .form-check-input:checked {
    background-color: #ffffff;
    border-color: #ffffff;
}
@media only screen and (max-height:865px){
    .form-container input, .form-container textarea {
        padding: 5px;
    }
    .form-check input{
        padding: 10px;
    }
}
@media only screen and (max-height:745px){
    .form-popup {
        overflow: scroll;
        height: 420px;
    }
}
/*==========================================================CALL TO ACTION FORM=======================================*/
