/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


/* @font-face {
    font-family: 'Museo Sans';
    src: url('./fonts/MuseoSans-900.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Museo Sans';
    src: url('./fonts/MuseoSans-700.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Museo Sans';
    src: url('./fonts/MuseoSans-300.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
} */


@font-face {
    font-family: 'Reservation Wide';
    src: url('./fonts/ReservationWide-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Reservation Wide';
    src: url('./fonts/ReservationWide-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Reservation Wide';
    src: url('./fonts/ReservationWide-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


/* p, span,h5,h6, a {
    font-family: "Museo Sans", sans-serif;
} */

html{
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body{
    font-family: "Montserrat", sans-serif;
}
h1,h2,h3,h4 {
    font-family: "Reservation Wide", sans-serif;
}

.reservation-font a,
.reservation-font span {
    font-family: "Reservation Wide", sans-serif !important;
}
.container{
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}


/* CSS */
.header{
    position: sticky;
    top: 0;
    z-index: 1111;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}
/* .header.fixed{
    animation: fixedHeader 0.5s ease;

} */
/* @keyframes fixedHeader{
    0%{
        transform: translateY(-100%);
    }
    100%{
        transform: translateY(0);
    }
} */
.top-menu ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap:10px 20px;
}
.top-menu ul li{
    position: relative;
}
.top-menu ul li a{
    text-decoration: none;
    display: block;
    color: #5d6770;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0;
    transition: all 0.3s ease;
}
.top-menu ul.sub-menu{
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    padding: 10px 2px;
    border: 1px solid #ccc;
    border-radius: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1111;
    display: none;
}
.top-menu .menu-item-has-children.submenu-open > ul.sub-menu{
    display: block;
}
.top-menu .menu-item-has-children.submenu-open > a{
    color: #0484af;
}
.top-menu ul.sub-menu li a{
    text-decoration: none;
    display: block;
    color: #5d6770;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    padding: 5px 20px;
}
.top-menu ul.sub-menu li a:hover{
    color: #0484af;
}
.header-menu ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px 60px;
}
.header-menu ul li a{
    text-decoration: none;
    display: block;
    color: #5d6770;
    font-size: 28px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0;
    position: relative;
    transition: all 0.3s ease;
}
.top-menu ul li a:hover,
.header-menu ul li a:hover,
.top-menu .current_page_item  > a,
.header-menu .current_page_item > a{
    color: #0484af;
}
.header-menu ul li a::after{
    content: '/';
    color: #0484af;
    font-size: 28px;
    line-height: normal;
    margin: 0 0 0 0;
    position: absolute;
    right: -36px;
    top: 2px;
}
.header-menu ul li:last-child a::after{
    display: none;
}
.mobile-menu{
    display: none;
}
.menu-item.desktop-menu a::after{
    display: none;
}
.header-menu .menu-item-has-children > ul.sub-menu{
    display: none;
    background-color: #f2f2f2;
    padding: 10px 20px;
}
.header-menu .menu-item-has-children.submenu-open > ul.sub-menu{
    display: block;
}
.header-menu .menu-item-has-children.submenu-open{
    color: #0484af;
}


body.menu-open{
    overflow: hidden;
}
.mobile-navigation{
    position: fixed;
    z-index: 11;
    background-color: #fff;
    top: 0;
    width: 100%;
    left: -100%;
    height: 100%;
    overflow-y: auto;
    max-width: 400px;
    transition: all 0.5s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.mobile-navigation.show{
    left: 0;
}
.mobile-navigation .header-menu ul{
    display: block;
}
.mobile-navigation .header-menu ul li a{
    font-size: 18px;
    padding: 10px 0;
}
.mobile-navigation .header-menu ul li a::after{
    font-size: 0;
    width: 100%;
    right: 0;
    top: auto;
    width: 100%;
    height: 1px;
    background-color: #ccc;
    bottom: 0;
}
.mobile-navigation .mobile-menu{
    display: block;
}
.mobile-navigation .menu-item.desktop-menu a::after{
    display: block;
}
.toggle-btn, .close-btn{
    cursor: pointer;
}



.polygon{
    aspect-ratio: 1/1;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}




.wpcf7 .wpcf7-form p{
    margin: 0;
}
.wpcf7 .wpcf7-form .input-row{
    margin: 0 0 20px 0;
    position: relative;
}
.wpcf7 .wpcf7-form .wpcf7-form-control.wpcf7-select  {
    margin-bottom: 20px;
}
.wpcf7 .wpcf7-form .input-row .wpcf7-form-control,
.wpcf7 .wpcf7-form .wpcf7-select  {
    width: 100%;
    border: 1px solid #242729;
    padding: 12px 18px;
    font-size: 18px;
    color: #464646;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0;
    border-radius: 0;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    opacity: 1;
}
.wpcf7 .wpcf7-form .input-row .wpcf7-form-control:focus{
    outline: none;
    border-color: #0484af;
}
.wpcf7 .wpcf7-form .input-row .wpcf7-form-control::placeholder{
    color: #464646;
    opacity: 0.8;
}
.wpcf7 .wpcf7-form .wpcf7-select{
    background-image: url('./images/down-arrow-st.png');
    background-size: 20px;
    background-position: right 18px center;
    background-repeat: no-repeat;
}
.tooltip-button{
    width: 20px;
    height: 20px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    position: absolute;
    right: 18px;
    top: 14px;
}
.wpcf7 .wpcf7-form .checkbox-list,
.wpcf7 .wpcf7-form .radio-list{
    width: 100%;
    border: 1px solid #242729;
    padding: 12px 18px;
    margin-bottom: 20px;
}
.wpcf7 .wpcf7-form .checkbox-list .title,
.wpcf7 .wpcf7-form .radio-list .title{
    margin: 0 0 15px 0;
    color: #5c666f;
}
.wpcf7 .wpcf7-form .checkbox-list .wpcf7-checkbox label,
.wpcf7 .wpcf7-form .radio-list .wpcf7-radio label,
.wpcf7 .wpcf7-form .radio-list .wpcf7-radio{
    display: flex;
    flex-wrap: wrap;
}
.wpcf7 .wpcf7-form .checkbox-list .wpcf7-checkbox label .wpcf7-list-item-label,
.wpcf7 .wpcf7-form .radio-list .wpcf7-radio label .wpcf7-list-item-label{
    width: calc(100% - 18px);
    padding: 0 0 0 5px;
}
.wpcf7 .wpcf7-form .checkbox-list .wpcf7-checkbox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.wpcf7 .wpcf7-form [type="checkbox"],
.wpcf7 .wpcf7-form [type="radio"]{
    width: 18px;
    height: 18px;
    border: 1px solid #242729;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    accent-color: #0484af;
}
.wpcf7 .wpcf7-form [type="radio"]{
    border-radius: 50%;
}
.wpcf7 .wpcf7-form .checkbox-list .wpcf7-list-item,
.wpcf7 .wpcf7-form .radio-list .wpcf7-list-item{
    margin: 0;
}
.wpcf7 .wpcf7-form .radio-list .wpcf7-radio{
    gap: 10px 20px;
}

.form-row{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    gap: 10px 0;
}
.form-col {
    width: 100%;
    padding: 0 15px;
}
.form-half{
    width: 50%;
}
body .wpcf7  form.wpcf7-form .form-group .wpcf7-form-control {
    border: none;
}
body .wpcf7  form.wpcf7-form .form-group .wpcf7-form-control::placeholder{
    opacity: 1;
}
body .wpcf7  form.wpcf7-form .submitbtn .wpcf7-submit {
    background-color: #323E48;
    color: #fff;
}
body .wpcf7  form.wpcf7-form .submitbtn .wpcf7-submit:hover {
    background-color: #fff;
    color: #323E48;
}




.accessories-item.hide {
    display: none;
}
.accessories-tabs-wrapper{
    background-color: #000;
    padding: 30px 0;
    border-bottom: 10px solid #fff;
}
.accessories-tabs{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
body .accessories-tabs .tab-btn{
    background-color: #000;
    border: 2px solid #5d6770;
    color: #fff;
    font-family: "Reservation Wide", sans-serif;
    font-weight: bold;
}
body .accessories-tabs .tab-btn:hover,
body .accessories-tabs .tab-btn.active{
    background-color: #0484af;
    border-color: #0484af;
    color: #fff;
}



.accessories-content-wrapper{
    background-color: #000;
    padding: 3rem 0 8rem 0;
    background-image: url('./images/accessories-page-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.accessories-item {
    padding: 5rem 0;
    border-bottom: 2px solid #fff;
}
.accessories-row{
    display: flex;
    flex-wrap: wrap;
    gap: 30px 0;
    align-items: center;
    margin: 0 -20px;
}
.accessories-item-content{
    width: 50%;
    padding: 0 20px;
}
.accessories-item-image{
    width: 50%;
    padding: 0 20px;
}
.accessories-item-image img{
    width: 100%;
    max-width: 500px;
    display: table;
    margin: 0 auto;
}
.accessories-item-content h3{
    color: #0484af;
    margin: 0 0 16px 0;
}
.accessories-item-content p{
    color: #fff;
    margin: 0 0 16px 0;
}




.show-accessories,
.show-imaging,
.show-irradiator,
.show-klinika{
    display: none;
    position: absolute;
    z-index: 11;
    width: 100%;
    margin-top: 0;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
.show-klinika{
    box-shadow:none;
}
.show-accessories.show,
.show-imaging.show,
.show-irradiator.show,
.show-klinika.show {
    display: block !important;
    
}

.banner-video .elementor-open-lightbox img{
    aspect-ratio: 1/1!important;
    object-fit: contain!important;
}
.inner-page-nav{
    position: sticky;
    top: 156px;
    z-index: 1;
    width: 100%;
}
/* .inner-page-nav ul li a{
    white-space: nowrap;
} */

.error-section{
    background-color: #f9f9f9;
    background-image: url('./images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.error-content-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
    padding: 6rem 0;
}
.error-content{
    text-align: center;
}
.error-content h1{
    font-size: 10rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0;
    color: #0484af;
}
.error-content h2{
    margin: 20px 0 20px 0;
}





.image-slider-wrapper{
    padding: 0 40px;
    position: relative;
}
.image-button-prev,.image-button-next{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 30px;
    cursor: pointer;
}
.image-button-next{
    left: auto;
    right: 0;
}
.image-slider-block{
    text-align: center;
}
.slider-block-img{
    margin-bottom: 20px;
}
.slider-block-img img{
    width: 100%;
    height: 260px!important;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
}
.slider-block-logo img{
    height: 45px!important;
    margin: 0 auto;
    display: table;
}



.news-events-row{
    display: flex;
    flex-wrap: wrap;
    gap: 50px 0;
    margin: 0 -20px;
}
.news-events-col-left{
    width: 70%;
    padding: 0 20px;
}
.news-events-col-right{
    width: 30%;
    padding: 0 20px;
}
.news-events-item{
    display: flex;
    flex-wrap: wrap;
    gap: 30px 0;
    margin: 0 0 3rem 0;
    padding-bottom: 3rem;
    border-bottom: 1px solid #ccc;
}
.news-events-item-image{
    width: 300px;
}
.news-events-item-image img{
    width: 100%;
}
.news-events-item-content{
    width: calc(100% - 300px);
    padding: 0 0 0 30px;
}
.news-events-row h3{
    margin: 0 0 4rem 0;
    color: #0484af;
}
.news-events-item-content h4{
    margin: 0 0 20px 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0;
    color: #5c666f;
}
.news-events-item-content h4 a{
    color: #5c666f;
    transition: all 0.3s ease;
    display: block;
}
.news-events-item:hover h4 a{
    color: #0484af;
}
.news-events-item-content h6{
    margin: 0 0 16px 0;
    font-weight: normal;
    color: #5c666f;
}
.news-events-item-content p{
    margin: 0 0 0 0;
    color: #5c666f;
}

.news-events-sidebar-item{
    margin: 0 0 30px 0;
}
.news-events-sidebar-item h4{
    color: #0484af;
    margin: 0 0 10px 0;
    font-family: "Reservation Wide", sans-serif;
}
.news-events-sidebar-item h4 a{
    color: #0484af;
}
.pagination ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.pagination ul li a{
    text-decoration: none;
    padding: 2px 0 0 0;
    width: 40px;
    height: 40px;
    background-color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    font-family: "Reservation Wide", sans-serif;
    justify-content: center;
    border: 1px solid #5c666f;
    color: #5c666f;
    border-radius: 0px;
    transition: all 0.3s ease;
}
.pagination ul li a:hover,
.pagination ul li.active a{
    background-color: #0484af;
    color: #fff;
    border-color: #0484af;
}


.publications-form{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 5rem 0;
}
.select-form{
    width: auto;
    padding: 12px 50px 12px 15px;
    height: 48px;
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    background-color: #0484af;
    font-family: "Reservation Wide", sans-serif;
    font-weight: 700;
    letter-spacing: 0;
    border: none;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('./images/down-arrow-st-wh.png');
    background-size: 20px;
    background-position: right 12px center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.publications-item{
    padding: 26px 0;
    border-top: 1px solid #ccc;
}
.publications-item p{
    margin: 0 0 12px 0;
}
.publications-item h6{
    margin: 0 0 12px 0;
    font-family: "Reservation Wide", sans-serif;
}
.read-more-btn{
    color: #0484af;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0;
    text-transform: uppercase;
    font-family: "Reservation Wide", sans-serif;
    transition: all 0.3s ease;
}
.read-more-btn:hover{
    opacity: 0.5;
}



.single-post-section{
    padding: 8rem 0;
}
.single-post-title{
    margin-bottom: 4rem;
}
.single-post-title h1{
    font-size: 3.5rem;
    line-height: normal;
    font-family: "Reservation Wide", sans-serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #0484af;
    margin: 0 0 10px 0;
}
.single-post-title p{
    margin: 0;
}
.single-post-row{
    display: flex;
    flex-wrap: wrap;
    gap: 30px 0;
}
.single-post-col-left{
    width: 68%;
    padding: 0 20px 0 0;
}
.single-post-col-right{
    width: 32%;
    padding: 0 0 0 20px;
}
.single-post-content p{
    margin: 0 0 16px 0;
}



.d-none{
    display: none;
}


.form-row.datasheetform {
    gap: 25px 0;
}
.datasheetform .form-control,.datasheetform .form-group select {
    width: 100%!important;
    height: 55px!important;
    background-color: #fff!important;
    border: 1px solid #b2c6cb!important;
    color: #000!important;
    font-size: 21px!important;
    line-height: 30px!important;
    border-radius: 0!important;
    font-family: "Museo Sans", sans-serif!important;
    padding: 10px 0!important;
    padding-left: 20px!important;
    margin: 0!important;
    box-shadow: none !important;
    outline: none !important;
}
.datasheetform .submitbtn .wpcf7-submit {
    text-transform: inherit!important;
    font-family: "Reservation Wide", sans-serif !important;
    background-color: #0484AF!important;
    color: #fff!important;
    border: none!important;
}
.datasheetform .submitbtn .wpcf7-submit:hover {
    background-color: #323E48!important;
    color: #fff!important;
}
.datasheetform .form-control:focus,.datasheetform .form-group select:focus  {
    border-color: #0484AF!important;
}




.thankyou-page{
    padding: 7rem 0;
}
.thankyou-text h1{
    font-size: var( --e-global-typography-350fed8-font-size );
    font-weight: var( --e-global-typography-350fed8-font-weight );
    line-height: var( --e-global-typography-350fed8-line-height );
    letter-spacing: var( --e-global-typography-350fed8-letter-spacing );
    color: var( --e-global-color-primary );
    margin: 0 0 4rem 0;
}
.thankyou-message{
    max-width: 788px;
    width: 100%;
}
.thankyou-message h4 {
    margin-bottom: 24px;
    color: #0484AF;
}
.back-btn-wrap {
    margin-top: 20px;
}
.back-btn-wrap .main-btn button{
    font-family: "Reservation Wide", sans-serif !important;
    font-size: var( --e-global-typography-c3e818d-font-size );
  font-weight: var( --e-global-typography-c3e818d-font-weight );
  text-transform: var( --e-global-typography-c3e818d-text-transform );
  line-height: var( --e-global-typography-c3e818d-line-height );
}



.inner-page-nav ul li a span {
    position: relative;
}
.inner-page-nav ul li a span::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
    transition: all 0.3s ease;
}
.inner-page-nav ul li.active a span::after{
    background-color: #fff;
}
.inner-page-nav ul li.active a span{
    color: #fff!important;
}
.inner-page-nav.white-bar ul li.active a span{
    color: #0484AF!important;
}
.inner-page-nav.white-bar ul li.active a span::after{
    background-color: #0484AF;
}




#wpcf7-f813-p6031-o1 form .wpcf7-response-output{
    color: #fff!important;
}




/* Responsive CSS */
@media (max-width: 1599px) {
    html{
        font-size: 55%;
    }

    
    .header-menu ul li a{
        font-size: 24px;
    }

    .header-menu ul li a::after{
        font-size: 24px;
    }

    .inner-page-nav{
        top: 147px;
    }


    .polygon p{
        line-height: normal;
    }



    .news-events-col-left{
        width: 66%;
    }
    .news-events-col-right{
        width: 34%;
    }




    
}
@media (max-width: 1299px) {
    html{
        font-size: 50%;
    }

    .inner-page-nav{
        top: 145px;
    }


    .polygon p{
        font-size: 16px;
    }



    .news-events-item-image{
        width: 250px;
    }
    .news-events-item-content{
        width: calc(100% - 250px);
        padding: 0 0 0 20px;
    }
    
}
@media (max-width: 1199px) {
    


    .top-menu ul{
        gap: 10px 15px;
    }
    .top-menu ul li a{
        font-size: 16px;
    }
    .header-menu ul{
        gap: 10px 40px;
    }   
    .header-menu ul li a{
        font-size: 18px;
    }
    .header-menu ul li a::after{
        font-size: 18px;
        right: -23px;
        top: 1px;
    }

    .inner-page-nav{
        top: 135px;
    }


    .polygon {
        padding: 30px 20px;
    }
    .polygon p{
        font-size: 14px;
        line-height: 14px;
    }


    .news-events-col-left,
    .news-events-col-right{
        width: 100%;
        padding: 0 10px;
    }
    .news-events-row{
        margin: 0 -10px;
    }
}
@media (max-width: 1024px) {
    html{
        font-size: 45%;
    }


    .wpcf7 .wpcf7-form .checkbox-list .wpcf7-checkbox{
        grid-template-columns: repeat(1, 1fr);
    }
    .form-row{
        gap: 0;
        margin: 0 -5px;
    }
    .form-col{
        padding: 0 5px;
    }
    .wpcf7 .wpcf7-form .input-row .wpcf7-form-control, .wpcf7 .wpcf7-form .wpcf7-select{
        font-size: 16px;
    }

    .accessories-row{
        margin: 0 -10px;
    }
    .accessories-item-content,
    .accessories-item-image{
        padding: 0 10px;
    }



    
    .accessories-tabs{
        gap: 7px;
    }
    body .accessories-tabs .tab-btn{
        font-size: 16px;
        padding: 10px 20px;
    }


    .show-accessories, .show-imaging, .show-irradiator,.show-klinika{
        position: fixed;
        z-index: 11;
        width: 100%;
        margin-top: 0;
        height: 100%;
        top: 0;
        left: -100%;
        max-width: 400px;
        overflow-y: auto;
        display: block!important;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        background-color: #CFD2D5;
    }
    .show-accessories.show, .show-imaging.show, .show-irradiator.show,.show-klinika.show  {
        left: 0;
    }

    .elementor-983,
    .elementor-957,
    .elementor-974,
    .elementor-1426{
        height: 100%;
    }

    .inner-page-nav{
        top: 121px;
    }
 
    

    .slider-block-img img{
        height: 200px!important;
    }
    .slider-block-logo img{
        height: 35px !important;
    }


    .news-events-item-content h4{
        font-size: 20px;
        line-height: 26px;
    }
    .news-events-item-content h6{
        font-size: 16px;
        line-height: 24px;
    }
}


@media (max-width: 767px) {
    .container{
        padding: 0 15px;
    }
    .polygon p{
        line-height: 20px;
    }
    .foot-col{
        width: 50%;
    }
    .form-col{
        width: 100%;
    }

    body .accessories-tabs .tab-btn{
        font-size: 14px;
        padding: 5px 10px;
    }

    .accessories-row{
        flex-direction: column-reverse;
    }
    .accessories-item-content, .accessories-item-image{
        width: 100%;
    }
    .accessories-item-image img{
        max-width: 100%;
    }

    .inner-page-nav{
        top: 101px;
    }


    .error-content-wrapper{
        min-height: 70vh;
    }


    .news-events-item-image{
        width: 100%;
    }
    .news-events-item-content{
        width: 100%;
        padding: 0;
    }


    .publications-select,.select-form{
        width: 100%;
    }
    .single-post-row{
        flex-direction: column-reverse;
    }
    .single-post-col-left,
    .single-post-col-right{
        width: 100%;
        padding: 0;
    }



    .inner-page-nav ul{
        gap: 15px 0;
    }

    
}
@media (max-width: 575px) {
    .foot-col{
        width: 100%;
    }
}