:root {
    /* **Primary Colors** */
    --primary-color: #00D4E9;
    --black: #000;
    --white: #fff;
    /* **Secondary Colors** */
    --secondary-color: #041F56;
    --beige-color: #ECB569;
    /* **Gray Shades** */
    --gray-100: #F6F6F6;
    --gray-200: #BABABA;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: Roboto Condensed, Inter, sans-serif;
}
h1 {
    font-weight: 700;
    letter-spacing: 0;
    color: var(--black);
}
h2 {
    font-weight: 700;
    color: var(--black);
}
h3 {
    font-weight: 700;
    letter-spacing: 0;
    color: var(--black);
}
h4 {
    font-weight: 500;
    color: var(--black);
}
h5 {
    font-weight: 500;
    letter-spacing: 0;
    color: var(--black);
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span {
    color: var(--primary-color);
}
p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--black);
}
/* === Responsive Headings & Paragraph === */

/* XS - default: <576px */
h1 {
  font-size: 50px;
}
h2 {
  font-size: 46px;
}
h3 {
  font-size: 38px;
}
h4 {
  font-size: 28px;
}
h5 {
  font-size: 22px;
}
p {
  font-size: 18px;
}

/* SM - ≥576px */
@media (min-width: 576px) {
  h1 { font-size: 54px; line-height: 54px; }
  h2 { font-size: 42px; line-height: 42px; }
  h3 { font-size: 30px; line-height: 30px; }
  h4 { font-size: 22px; line-height: 22px; }
  h5 { font-size: 18px; line-height: 18px; }
  p   { font-size: 16px; line-height: 22px; }
}

/* MD - ≥768px */
@media (min-width: 768px) {
  h1 { font-size: 72px; line-height: 72px; }
  h2 { font-size: 50px; line-height: 50px; }
  h3 { font-size: 32px; line-height: 32px; }
  h4 { font-size: 24px; line-height: 24px; }
  h5 { font-size: 18px; line-height: 18px; }
  p   { font-size: 17px; line-height: 25px; }
}

/* LG - ≥992px */
@media (min-width: 992px) {
  h1 { font-size: 84px; line-height: 84px; }
  h2 { font-size: 58px; line-height: 58px; }
  h3 { font-size: 34px; line-height: 34px; }
  h4 { font-size: 25px; line-height: 25px; }
  h5 { font-size: 19px; line-height: 19px; }
  p   { font-size: 18px; line-height: 26px; }
}

/* XL - ≥1200px */
@media (min-width: 1200px) {
  h1 { font-size: 90px; line-height: 90px; }
  h2 { font-size: 62px; line-height: 62px; }
  h3 { font-size: 36px; line-height: 36px; }
  h4 { font-size: 26px; line-height: 26px; }
  h5 { font-size: 20px; line-height: 20px; }
  p   { font-size: 18px; line-height: 26px; }
}

/* XXL - ≥1400px */
@media (min-width: 1400px) {
  h1 { font-size: 96px; line-height: 96px; }
  h2 { font-size: 72px; line-height: 72px; }
  h3 { font-size: 36px; line-height: 36px; }
  h4 { font-size: 26px; line-height: 26px; }
  h5 { font-size: 20px; line-height: 20px; }
  p   { font-size: 18px; line-height: 26px; }
}

.main-header-logo-link {
    padding: 0;
    display: inline-block;
}

/* NAVIGATION */
header {
    /* height: 75px; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 101;
    -webkit-transform: translate3d(0,0,0);
    background-color: #fff;
}
.main-header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 18px 13px 22px;
    background: rgb(255,255,255);
    /* position: relative; */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}
.main-nav-links-holder-item span,
.main-nav-links,
.subnav-item-title {
    font-family: 'Inter', 'Roboto Condensed', Arial, sans-serif;
}
.main-nav-subnav-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.main-nav-links-holder-item > .main-nav-subnav {
    /* display: none; */
    max-height: 0;
    transition: max-height 1s ease;
    overflow: hidden;
    opacity: 1; /* Remove opacity animation on mobile */
    transform: translateY(0); /* Remove transform animation on mobile */
}
.main-nav-links-holder-item.active > .main-nav-subnav {
    /* display: block; */
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}
.subnav-items-holder {
    display: flex;
    flex-wrap: wrap;
}
.subnav-item {
    display: inline-block;
    width: calc(50% - 4px);
    /* margin: 10px; */
    padding: 20px 15px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 8px;;
    position: relative;
    overflow: hidden;
}
.subnav-item-img-holder {
    transition: transform 0.4s;
}
.subnav-item-img-holder svg path {
    transition: stroke 0.4s;
}
.subnav-item-h-holder {
    transition: transform 0.6s;
}
.subnav-item-img-holder img {
    max-height: 75px;
}
.subnav-item-img-holder svg {
    max-height: 75px;
    width: 100%;
}
.subnav-item h6 {
    margin-top: 50px;
    color: var(--black);
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 0;
}
.subnav-item-title {
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.subnav-item-cat {
    background: #f8f8f8;
    position: relative;
}
.subnav-item-supp {
    background: linear-gradient(180deg, #f8f8f8 0%, #f8f8f8 100%);
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    position: relative;
}
/* Pseudo-element za animirani gradient */
/* .subnav-item-supp::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #fff 0%, #E4E4E4 100%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
} */
/* .subnav-item-supp:hover::after {
    opacity: 1;
} */
.subnav-item-supp:hover .subnav-item-img-holder {
    transform: translateY(-10px);
}
.subnav-item-supp:hover .subnav-item-img-holder {
    transform: translateY(-12px);
}
.subnav-item-supp:hover .subnav-item-h-holder {
    transform: translateY(-10px);
}
.subnav-item-supp:hover .subnav-item-img-holder svg path {
    stroke: var(--black);
}
.subnav-item-supp:before {
    content: '';
    background: linear-gradient(#fff, #e4e4e4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border-radius: 10px;
    transition: all 1s ease;
}
.subnav-item-supp:hover:before {
    opacity: 1;
}
.subnav-item-cat:before {
    content: '';
    background: linear-gradient(#fff, #e4e4e4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border-radius: 10px;
    transition: all 1s ease;
}
.subnav-item-cat:hover:before {
    opacity: 1;
}
.subnav-item-cat:nth-of-type(odd), .subnav-item-supp:nth-of-type(odd) {
    margin-right: 4px;
}
.subnav-item-cat:nth-of-type(even), .subnav-item-supp:nth-of-type(even) {
    margin-left: 4px;
}
.subnav-item-cat img, .subnav-item-cat h6, .subnav-item-all img, .subnav-item-all h6 {
    transition: all 1s ease;
    display: inline-block;
    /* width: 100%; */
    max-width: 100%;
    height: auto;
}
.subnav-item-all {
    background-image: linear-gradient(#00EDFF, #008993);
    /* display: none; */
}
.subnav-item-all h6 {
    color: var(--white);
}
.subnav-item-all img{
    transition: all 1s ease;
    max-width: 100%;
    height: auto;
}
.main-header-logo-link {
    padding: 0;
    display: inline-block;
}
.main-header-logo {
    max-height: 24px;
}
.header-hamburger-menu {
    display: inline-block;
    width: 34px;
    height: 34px;
    position: relative;
}
.header-hamburger-menu span {
    display: inline-block;
    background: var(--black);
    width: 26px;
    height: 2px;
    position: absolute;
    right: 4px;
    top: 16px;
    border-radius: 1px;
}
.header-hamburger-menu span:first-of-type {
    top: 9px;
    width: 15px;
}
.header-hamburger-menu span:last-of-type {
    top: 23px;
    width: 15px;
}
.main-header-nav-holder {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    height: 100vh;
    width: calc(100vw - 40px);
    z-index: 9;
    padding: 45px 40px;
    /* text-align: center; */
    transform: translateX(100%);
    transition: .5s;
    /* background: silver; */
    /* box-shadow: -10px 0px 20px 0px #000; */
}
.main-header-nav-holder.mobile-menu-open {
    transform: translateX(0);
}
.mobile-nav-close {
    display: inline-block;
    width: 34px;
    height: 34px;
    /* border-radius: 50%; */
    position: absolute;
    top: 20px;
    right: 20px;
}
.mobile-nav-close span {
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--black);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.mobile-nav-close span:first-of-type {
    transform: translate(-50%, -50%) rotate(45deg);
}
.mobile-nav-close span:last-of-type {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.mobile-nav-logo-holder img {
    max-height: 40px;
}
.navbar {
    position: fixed;
    top: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100px;
    font-size: 20px;
}
.main-nav-links-holder-item {
    display: block;
    border-top: 1px solid #bfbfbf;
}
.main-nav-links-holder {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
}
.main-nav-links {
    color: var(--black);
    font-size: 20px;
    text-decoration: none;
    padding: 15px 0;
    transition: 0.3s;
    display: block;
}
.link-w-submenu {
    position: relative;
}
.link-w-submenu::after {
    content: url(/assets/img/chevron.svg);
    font-size: 12px;
    margin-left: 5px;
    position: absolute;
    right: 0;
    top: 22px;
    align-items: center;
    transition: all 1s ease;
}
.active .link-w-submenu::after {
    transform: rotate(90deg);
}
.main-nav-subnav {
    /* display: none; */
    background-color: #fff;
    position: relative;
    /* top: 60px; */
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out, transform 0.3s ease-out;
    /* border: 1px solid lime; */
    /* height: 300px; */
}
/* NOTIFICATION BUBLE*/
.notification-bubble {
    position: fixed;
    bottom: -100px; /* Start off screen */
    left: 50%;
    transform: translateX(-50%);
    background-color: #4CAF50; /* Green background */
    color: white;
    padding: 20px 30px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: bottom 0.5s ease; /* Smooth transition for the animation */
    z-index: 1000; /* Ensure it's above other content */
    font-size: 16px; /* Responsive font size */
}
/* LOADER STYLES */
#loader-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid var(--primary-color);
  animation:
    l20-1 0.8s infinite linear alternate,
    l20-2 1.6s infinite linear;
}
@keyframes l20-1{
   0%    {clip-path: polygon(50% 50%,0       0,  50%   0%,  50%    0%, 50%    0%, 50%    0%, 50%    0% )}
   12.5% {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100%   0%, 100%   0%, 100%   0% )}
   25%   {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100% 100%, 100% 100%, 100% 100% )}
   50%   {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100% 100%, 50%  100%, 0%   100% )}
   62.5% {clip-path: polygon(50% 50%,100%    0, 100%   0%,  100%   0%, 100% 100%, 50%  100%, 0%   100% )}
   75%   {clip-path: polygon(50% 50%,100% 100%, 100% 100%,  100% 100%, 100% 100%, 50%  100%, 0%   100% )}
   100%  {clip-path: polygon(50% 50%,50%  100%,  50% 100%,   50% 100%,  50% 100%, 50%  100%, 0%   100% )}
}
@keyframes l20-2{ 
  0%    {transform:scaleY(1)  rotate(0deg)}
  49.99%{transform:scaleY(1)  rotate(135deg)}
  50%   {transform:scaleY(-1) rotate(0deg)}
  100%  {transform:scaleY(-1) rotate(-135deg)}
}
.main-btn {
    display: inline-block;
    padding: 0 52px;
    height: 72px;
    min-width: 180px;
    border-radius: 36px;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 72px;
    text-align: center;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    user-select: none;
    text-decoration: none;
}

.main-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.main-btn:hover,
.main-btn:active {
    background: var(--secondary-color);
    color: var(--gray-100);
}

.main-btn:disabled,
.main-btn[aria-disabled="true"] {
    background: #b2eaf1;
    color: var(--white);
    cursor: not-allowed;
    opacity: 0.7;
}
.social-icons-item {
    display: inline-block;
    margin-right: 16px;
    width: 34px;
}
.social-icons-item svg {
    fill: #bababa
}

/* FOOTER  */
footer {
    background: var(--black);
    color: var(--white);
    position: relative;
    z-index: 99;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    will-change: transform;
}
.footer h3 {
    font-size: 18px;
    color: var(--primary-color);
}
.footer-container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    /* border: 1px solid lime; */
    padding: 0 30px;}
.footer-top {
    /* margin-top: 50px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
}
.footer-logo-holder {
    display: inline-block;
    /* flex-grow: 1; */
    margin-top: 30px;
}
.footer-logo-holder svg {
    height: 40px;
    width: auto;
    fill: var(--white);
}
.footer-nav {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.footer-nav-col {
    /* margin-left: 90px */
    text-align: center;
}
.footer-nav-col h3 {
    text-align: center;
    font-size: 16px;
    margin-top: 20px;
}
.footer-nav-col-wo-h6 {
    /* padding-top: 30px */
}
.footer-nav-mob-lg {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 35px;
}
.footer-nav-item:hover {
    color: var(--primary-color);
}
.footer-nav-item {
    display: block;
}
.footer-nav-item, .footer-nav-item a {
    color: var(--white);
    text-decoration: none;
    line-height: 30px;
    transition: color 0.3s ease;
}
.footer-nav-link {
    color: var(--white);
    text-decoration: none;
    line-height: 30px;
    transition: color 0.3s ease;
}
.footer-nav-link:hover {
    color: var(--primary-color);
}
.footer-social {
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    /* margin-left: 38px; */
    display: flex;
    padding: 12px 0;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.footer-social h6 {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    color: var(--primary-color);
}
.footer-social-icons {
    /* border: 1px solid red; */
}
.footer-social-icons-item {
    display: inline-block;
    margin-left: 20px;
}
.footer-social-icons-item-first {
    margin: 0;
}
.footer-social-icons-item svg {
    display: inline-block;
    width: 30px;
    fill: var(--white);
    transition: fill 0.3s ease;
}
.footer-social-icons-item svg:hover {
    fill: var(--primary-color);
}
.footer-bottom {
    color: var(--white);
}
.footer-bottom .footer-disclaimer {
    padding: 12px 0;
    color: var(--white);
    text-align: center;
    margin: 0;
    font-size: 12px;
}
/* BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 212, 233, 0.7);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 3px 8px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    z-index: 100;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
    visibility: hidden;
}

.back-to-top.show {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.back-to-top img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.back-to-top:hover {
    background-color: rgba(0, 212, 233, 0.8);
    transform: scale(1.1);
}

.back-to-top:hover img {
    transform: rotate(-30deg);
    /* transform: translateY(-6px); */
}

/* RESPONSIVE STYLES */
@media (min-width: 992px) {
    .footer-shadow-holder {
        position: relative;
        height: 100px;
        background: var(--black);
        overflow: hidden;
    }
    .footer-shadow {
        background-color: #00D4E9;
        filter: blur(60px);
        height: 400px;
        width: 100%;
        position: absolute;
        border-radius: 50%;
        top: 100px;
    }
    header {
        height: auto;
    }
    .main-header-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
        padding-left: 105px;
        padding-right: 105px;
        height: 60px;
    }
    .main-header-nav-holder {
        display: block;
        position: static;
        background: transparent;
        height: auto;
        width: auto;
        z-index: 9;
        padding: 0;
        text-align: initial;
        transform: none;
    }
    nav {
        display: flex;
    }
    .mobile-nav-logo-holder {
        display: none;
    }
    .mobile-nav-close {
        display: none;
    }
    .main-header-nav-holder .social-icons {
        display: flex;
        align-items: center;
        margin-left: 60px;
    }
    .main-nav-subnav {
        /* display: none; */
        background-color: #fff;
        position: absolute;
        /* top: 60px; */
        left: 0;
        width: 100%;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        /* border: 1px solid lime; */
        /* height: 300px; */
    }
    .subnav-item-img-holder img {
        max-height: none;
    }
    .subnav-item-img-holder svg {
        max-height: none;
    }
    .main-nav-links-holder-item:hover .main-nav-subnav {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
    }
    .navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
        color: var(--white);
    }
    .subnav-items-holder {
        display: flex;
        flex-wrap: nowrap;
    }
    .main-nav-links:hover {
        color: var(--primary-color);
    }
    .subnav-item-cat:nth-of-type(odd) {
        margin-right: 10px;
    }
    .subnav-item-cat:nth-of-type(even) {
        margin-left: 10px;
    }
    .subnav-item {
        display: inline-block;
        width: 20%;
        margin: 10px;
        padding: 45px 0;
        border-radius: 10px;
        text-align: center;
    }
    .subnav-item-title {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }
    .subnav-item-all {
        background-image: linear-gradient(#00EDFF, #008993);
    }
    .subnav-item-supp {
        /* background-image: linear-gradient(#00EDFF, #008993); */
    }
    .subnav-item-cat .subnav-item-img-holder, .subnav-item-all .subnav-item-img-holder, .subnav-item-supp .subnav-item-img-holder {
        display: flex;
        height: 170px;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
    }
    .subnav-item-cat .subnav-item-h-holder, .subnav-item-all .subnav-item-h-holder, .subnav-item-supp .subnav-item-h-holder {
        margin-top: 15px;
        position: relative;
        z-index: 1;
    }
    .subnav-item-supp .subnav-item-img-holder img {
        max-height: 100%;
        width: auto;
    }
    .subnav-item-supp .subnav-item-img-holder svg {
        max-height: 100%;
        width: auto;
    }
    .social-icons-item {
        display: inline-block;
        margin: 0;
        margin-left: 12px;
        width: 26px;
    }
    .social-icons-item svg {
        fill: #bababa;
        transition: .3s;
    }
    .social-icons-item:hover svg {
        /* fill: var(--primary-color); */
        transform: scale(1.1);
    }
    .main-header-logo-link {
        padding: 0;
        display: inline-block;
        /* padding: 10px 5px; */
        background: var(--white);
        /* position: absolute; */
        /* top: 0; */
    }
    .main-nav-links-holder-item > .main-nav-subnav {
        max-height: 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: max-height 0.4s ease-out, opacity 0.3s ease-out, transform 0.3s ease-out;
        overflow: hidden;
    }
    .main-nav-links-holder-item.active > .main-nav-subnav {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
    }
    .main-header-logo {
        max-height: 34px;
    }
    .header-hamburger-menu {
        display: none;
    }
    .main-nav-links-holder {
        margin-top: 0;
        flex-direction: row;
    }
    .main-nav-links-holder-item {
        display: inline-block;
        border: none;
    }
    .main-nav-links {
        color: var(--black);
        font-size: 18px;
        text-decoration: none;
        padding: 0 16px;
        transition: 0.3s;
        display: inline-block;
        line-height: 60px;
        cursor: pointer;
    }
    .subnav-item h6 {
        margin-top: 50px;
        color: var(--black);
        font-size: 18px;
        margin-top: 50px;
        margin-bottom: 0;
    }
    .subnav-item h6 {
        margin-top: 50px;
        color: var(--black);
        font-size: 18px;
        margin-top: 50px;
        margin-bottom: 0;
        margin: 0;
    }
    .link-w-submenu::after {
        content: "";
    }
    .subnav-item-all h6 {
        color: var(--white)
    }
    .footer-nav-mob-lg {
        font-size: 18px;
        margin: 0;
    }
    .main-nav-links.mobile-only-link {
        display: none;
    }
    .subnav-item-cat:hover h6 {
        transform: translateY(-5px);
    }
    .subnav-item-all:hover h6 {
        transform: translateY(-5px);
    }
    .subnav-item-cat:hover img {
        scale: 1.2;
    }
    .subnav-item-all:hover img {
        scale: 1.2;
    }
    .footer-top {
        padding-top: 50px;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: flex-start;
    }
    .footer-logo-holder {
        margin-top: 40px;
    }
    .footer-logo-holder svg {
        width: 206px;
        height: auto;
        fill: var(--white);
    }
    .footer-nav {
        display: flex;
        flex-direction: row;
        flex-grow: 1;
        justify-content: space-between;
        margin-left: 100px;;
    }
    .footer-social {
        padding-left: 42px;
        padding-top: 0;
        padding-bottom: 22px;;
        border: none;
        border-left: 1px solid var(--primary-color);
        margin-left: 38px;
        display: flex;
        width: auto;
        flex-direction: column;
    }
    .footer-social h6 {
        margin-bottom: 10px;
    }
    .footer-social-icons-item {
        display: inline-block;
        margin-left: 32px
    }
    .footer-social-icons-item-first {
        margin: 0;
    }
    .footer-social-icons-item svg {
        display: inline-block;
        width: 36px;
        fill: var(--white);
    }
    .footer-nav-col {
        /* margin-left: 90px; */
        text-align: initial;
        font-size: 18px;
    }
    .footer-nav-col-wo-h6 {
        padding-top: 30px
    }
    .footer-nav-col h3 {
        text-align: initial;
        font-size: 18px;
        margin-top: 0;
    }
    .footer-bottom {
        color: var(--white);
        border-top: 1px solid var(--white)
    }
    .footer-bottom .footer-disclaimer {
        padding: 20px 0;
        font-size: 12px;
    }
}
@media (min-width: 1200px) {
    .main-header-nav {
        margin-left: auto;
        margin-right: auto;
        padding: 0 15px;
    }
    .main-header-logo {
        max-height: 30px
    }
    .main-header-logo-link {
        /* margin-left:28px; */
    }
}
@media (min-width: 1400px) {
    .logo-icon-brown {
        width: 3.5rem;
    }
    .second-section-title {
        font-size:24px;
    }
    .main-header-nav {
        /* padding-left: 60px; */
        /* padding-right: 60px; */
        max-width: 1400px;
    }
    .main-nav-links {
        padding: 0 16px;
    }
}

@media (max-width: 1024px) {
    .back-to-top:hover img {
        transform: none;
    }
    .back-to-top:hover {
        transform: none;
    }
}