* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box !important;
    font-family: 'Proxima Nova', sans-serif;
}
:root {
    --white: #eeeef9;
    --lighter: #63BCD6;
    --accent: #2AAAE1;
    --gray: #737487;
    --darker: #1D2138;
}
body {
    font-size: 16px;
    color: var(--darker);
    margin-top: 81px;
}
p, li, .bt_bb_service_content {
    font-size: clamp(1rem, calc(0.92rem + 0.39vw), 1.2rem);
    line-height: 1.5;
}

h5 {
    font-size: clamp(1.27rem, calc(1.03rem + 1.19vw), 1.88rem);
}
h4 {
    font-size: clamp(1.42rem, calc(1.06rem + 1.8vw), 2.34rem);
}
h3 {
    font-size: clamp(1.42rem, calc(1.06rem + 1.8vw), 2.34rem);
/*    font-size: clamp(1.6rem, calc(1.08rem + 2.59vw), 2.93rem);
    line-height: 1;*/
}
h2 {
        font-size: clamp(1.6rem, calc(1.08rem + 2.59vw), 2.93rem);
    /*font-size: clamp(1.8rem, calc(1.08rem + 3.63vw), 3.66rem);
    line-height: 1;*/
}
h1 {
    font-size: clamp(2.03rem, calc(1.03rem + 4.98vw), 4rem);
}

a {
    color: var(--accent);
    text-decoration: underline;
    transition: all 169ms ease-in-out;
}
a:hover {
    color: inherit;
    filter: brightness(1.1);
}
p {
    text-align: justify;
}
ul {
    list-style: none;
    color: var(--darker);
}
li {
    color: var(--darker);
}

/*
=========================
    Header
=========================
*/
.header_section {
    padding: 0.382em 0;
    background: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
    box-shadow: 0 0 10px;
}
.header_section_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.headerlogo img {
    max-width: 100%;
    height: 69px;
}

.header_nav {
    display: none;
}
.header_nav > ul {
    display: flex;
    align-items: center;
    margin: 0px;
    gap: 20px;
}
.header_nav > ul > li {
    position: relative;
}
.header_nav_icon > a {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 1px solid var(--darker);
}
.header_nav_icon:hover > a {
    border-color: var(--accent);
}
.header_nav_icon > a > span > svg {
    display: block;
}
.header_nav  ul  li  a {
    font-size: clamp(1rem, calc(0.7rem + 0.24vw), 1.2rem);
    display: flex;
    align-items: center;
    font-weight: 600;
    justify-content: center;
    text-transform: uppercase;
    color: var(--darker);
    text-decoration: none;
}

.header_nav ul li a:hover {
   color: var(--accent);
}
.header_nav ul li a i {
    font-size: clamp(1rem, calc(0.7rem + 0.24vw), 1.2rem);
}
.header_Hover_menu {
    position: absolute;
    top: 36px;
    left: -25px;
    z-index: 4;
    background: #fff;
    width: 240px;
    margin: 0px;
    padding: 0px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 25%);
    padding: 9px 19px;
    height: auto;
    border-top: 5px solid var(--accent);
    visibility: hidden;
    transition: all 169ms ease-in-out;
    opacity: 0;
}
.header_nav > ul > li:hover .header_Hover_menu {
    visibility: visible;
    opacity: 1;
    top: 36px;
    left: -25px;
}
.header_Hover_menu li {
    padding: 6px 0px;
}
.header_Hover_menu li a {
    justify-content: flex-start !important;
    align-items: flex-start !important;
}
.dropdown-menu {
    position: relative !important;
    z-index: 1000;
    display: none;
    width: 240px;
    padding: 0px;
    margin: 0px;
    margin: 0;
    /*font-size: 1rem;*/
    text-align: left;
    top: 0px;
    list-style: none;
    background-color: transparent !important;
    border-radius: 0px;
    border: none;
    transform: translate3d(-13px, 0px, 0px) !important;
}
.mobile_toggler {
    display: block;
    position: relative;
    z-index: 999999;
}
.mobile_toggler ul {
    margin: 0px;
    padding: 0px;
    height: 50px;
    width: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.mobile_toggler ul li {
    height: 3px;
    width: 30px;
    background-color: var(--darker);
}
.mobile_toggler ul li:nth-child(2) {
    margin: 6px 0px;
}
.offcanvas.show {
    visibility: visible;
}
.offcanvas-end {
    width: 100%;
    border-left: none;
    background: transparent;
    transition: all 99ms ease-in-out;
}
.offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100vw;
    height: 100%;
    background-color: #000;
}
.sidebar_content {
    position: fixed;
    top: 81px;
    right: 0;
    width: 100%;
    min-height: calc(100vh - 81px);
    background: #FFFFFF;
    z-index: 9999;
    border-top: 1px solid var(--gray);
}
.sidebar_wrapper {
    height: 100vh;
    overflow-y: auto;
    padding: 0 25px;
}
.sidebar_nav ul {
    padding: 0px;
    margin: 0px;
}
.sidebar_nav ul li {
    padding: 8px 0px;
    border-bottom: 1px solid rgb(102 102 102 / 20%);
}
.sidebar_nav ul li a {
    color: var(--darker);
}
ul.sub-menu.mobile_sub_menu {
    margin-left: 1em;
}
ul#menu-mobile li.menu-item-has-children {
    border-bottom: none;
}
ul#menu-mobile li.menu-item-has-children > a {
    font-weight: bold;
}
ul#menu-mobile a {
    text-decoration: none;
}
/*
=========================
    Products Page
=========================
*/
.product_banner_section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    min-height: 699px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product_banner_content {
    padding: 3.236em 2em;
    background: #1d2138f0;
    border-radius: 4px;
    text-align: justify;
}
.product_banner_content h1 {
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0px;
    color: #fff;
}
.product_banner_title span {
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0px;
    color: var(--accent);
    font-size: 90%;
}
.product_banner_text {
    width: 100%;
    color: #fff;
    font-weight: 400;
    margin: 1.618em 0;
}
.product_banner_button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px 10px;
    flex-wrap: wrap;
}

/*
=========================
    Product item
=========================
*/
.product_item {
    border: 2px solid var(--white);
    padding: 30px 20px;
    background-color: #fefefe;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    display: block;
    background: url(/wp-content/themes/cryo/images/background-cryo-1024x1024.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}
.product_item::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--accent);
    transition: all 169ms ease-in-out;
    top: 0px;
    left: 0px;
    opacity: 0;
    z-index: 1;
}
.product_item:hover::after {
    opacity: 1;
}
.product_item_thumbnail {
    border: 9px solid var(--accent);
    border-bottom: none;
    position: relative;
}
.product_item_thumbnail::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-color: var(--accent);
    height: 9px;
    width: 15%;
}
.product_item_thumbnail img {
    position: relative;
    z-index: 2;
}
.product_item_caption {
    position: absolute;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 900;
    margin: 0px;
    bottom: -10px;
    left: 20%;
    z-index: 3;
    transition: all linear 169ms;
    line-height: 1;
}
.product_item:hover .product_item_caption {
    color: #FFF;
}
.product_badge {
    background-color: var(--white);
    display: block;
    padding: 2px 12px;
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
    position: absolute;
    width: 100%;
    top: 16%;
    right: -32%;
    text-align: center;
    transform: rotate(45deg);
    font-weight: 600;
    z-index: 2;
    border: 1px solid;
}
.home .product_item_caption {
    left: 10%;
}
.product_item_thumbnail.home::after {
    width: 5%;
}
.home {
    position: relative;
}
.home::after {
    display: block;
    content: '';
    padding-bottom: 100%;
    border-bottom: 9px solid;
    position: unset;
    background-color: unset;
}
.home img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/*
=========================
    Contact Form
=========================
*/
.contact_form_box {
    padding: 1em;
    background-color: #fff;
    margin-left: auto;
    box-shadow: 0 0 20px 9px #0000001a;
}
.contact_form_box_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.contact_form_item {
    width: 100%;
}
.contact_form_item label,
.contact_form_item_input label {
    color: var(--darker);
    line-height: 1;
}
.contact_form_item label span,
.contact_form_item_input label span {
    font-size: 82%;
}
.input_control {
    border: 1px solid transparent;
    outline: none;
    background-color: var(--white);
    width: 100%;
    padding: 0.618em;
    border-radius: 5px;
    color: var(--darker);
    display: block;
    z-index: 1;
    margin-bottom: 1em;
}
.input_control.wpcf7-not-valid {
    border-color: #dc32328a;
}

.input_control:focus {
    border: 1px solid var(--accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.contact_form_item_input_icon {
    position: absolute;
    bottom: 1px;
    right: 2px;
    background-color: #e1e6eb;
    height: 45px;
    width: 50px;
    border-radius: 0px 5px 5px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact_form_item_input_icon span i {
    display: block;
    transform: rotate(90deg);
    font-size: 10px;
    color: var(--darker);
}
.contact_form_item_checkbox {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}
.contact_form_item_textarea {
    width: 100%;
}
.input_control_textarea {
    height: 120px;
}
.contact_form_item_button .wpcf7-submit {
    display: block;
    background-color: var(--darker);
    color: var(--white);
    font-size: 1em;
    letter-spacing: 1px;
    border-radius: 5px;
    height: 50px;
    width: 100%;
    text-transform: uppercase;
    display: grid;
    place-content: center;
    font-weight: bold;
    outline: none;
    border: none;
}
.Input_checkbox {
    width: 1.3em;
    height: 1.3em;
    margin-right: 0.382em;
}
.wpcf7-acceptance label {
    display: flex;
    align-items: center;
}

span.wpcf7-not-valid-tip {
    position: absolute;
    bottom: -20px;
    left: 5px;
    font-size: 90%;
}
.intl-tel-input .country-list,
.country-select .country-list {
    background-color: var(--white);
    box-shadow: 1px 1px 5px rgb(0 0 0 / 30%);
    border-radius: 5px;
}
.country-list li {
    font-size: 1em;
}

.country-list::-webkit-scrollbar {
    width: 0.618em;
}
.country-list::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0.382em rgba(0,0,0,0.2);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.country-list::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 0.382em var(--darker);
    background: var(--darker);
}

/*
=========================
    Misc
=========================
*/
a#scrollUp {
    height: 40px;
    width: 40px;
    background-color: var(--darker);
    position: absolute;
    bottom: 50px;
    right: 50px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}
.bt_bb_headline_content:after {
    border-color: var(--lighter);
}
.service_list ul li{
    color: var(--darker);
    line-height: 1.3;
    position: relative;
    padding: 5px 0px 5px 0px;
}
.service_list ul li span {
    margin-right: 14px;
    height: 10px;
    width: 10px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
}
.button.white {
    padding: 1em 2.618em;
    background: var(--white);
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--darker);
    transition: all 169ms ease-in-out;
    text-decoration: none;
}
.button:hover {
    filter: brightness(1.1);
}
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.embed-container iframe, .embed-container object, .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
button.slick-arrow {
    background-color: rgb(0,174,239,0.38);
}
button.slick-arrow:hover {
    background-color: rgb(0 174 239);
}

/* ==================== */
/* MODAL */
/* ==================== */
#modal-overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: #000000ba;
    top: 0;
    z-index: 99999;
}
#close-modal {
    background: var(--darker);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.1em;
    width: 1.7em;
    height: 1.7em;
    position: fixed;
    right: 0;
    top: 0;
    cursor: pointer;
    z-index: 9999999;
}
#contact-modal {
    position: fixed;
    top: 1em;
    left: calc(50% - 300px);
    margin: 0 auto;
    z-index: 999999;
}
#contact-modal .contact_form_box {
    margin: 0!important;
    overflow: auto;
    max-height: 100%;
    height: 100%;
    box-shadow: none;
    padding-bottom:0;
}
#contact-modal form {
    max-width: 600px;
    margin: 0 auto;
    max-height: 100vh;
    overflow: auto;
    background:white;
}
#contact-modal .wpcf7-response-output {
  margin-top: 0;
}

@media(max-width: 767px){
  #contact-modal {
      position: fixed;
      width: 100%;
      left: unset;
      top:0;
      z-index: 999999;
  }
}

/*.section-padding {
    padding: 40px 0px;
}
button.popup {
    color: #ffffff;
    background: #8fd400;
    border: none;
    padding: 1em 1.618em;
    font-weight: 700 !important;
    text-transform: uppercase;
    border-radius: 5px;
    -webkit-box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 75%);
    -moz-box-shadow: 0px 1px 3px 0px rgba(0,0,0,.75);
    box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 75%);
    transition: all 169ms ease-in-out;
}
button.popup:hover {
    background: #b0d369;
}
.contact_button {
    color: #ffffff;
    background: #8fd400;
    border-width: 0px;
    letter-spacing: 0px;
    cursor: pointer;
    text-transform: uppercase;
}
.contact_button:hover {
    background: #b0d369;
    letter-spacing: 0px;
    padding-left: 0.7em;
    padding-right: 2em;
}*/


.mfp-title {
  display: none;
}
.product_banner_title, .section__title {
    line-height: 1;
}