/* Variables */
:root {
    --orange:#ed553b;
    --almostBlack:#231f20;
    --lightGray:#939598;
    --darkGray:#404040;
    --lightBlue:#5cd9ff;
    --font13:0.929rem;
    --font14:1rem;
    --font16:1.142rem;
    --font18:1.286rem;
    --font2832:2.023rem; /* 28.32px */
    --font40:2.857rem;
}
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Page Setup */
html {
    font-size: 14px;
    color-scheme: light;
    --background:#fff;
    --foreground:#000;
    max-width: 100%;
    overflow-x: hidden;
}
html.dark {
    --background:#000;
    --foreground:#fff;

}
body{
    -webkit-user-select: none;
 -moz-user-select: none;
 -ms-user-select: none;
 user-select: none;
max-width: 100%;
    overflow-x: hidden;
}
*, p, a, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}
*, *::before, *::after {
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: inherit;
    transition: .3s;
}
a:hover {
    color: inherit;
    opacity: .7;
}
button, .btn {
    border: none;
    outline: none;
    color: inherit;
}
button {
    background-color: rgba(0,0,0,0);
}
hr {
    opacity: 1;
}
img, svg, video, picture {
    display: block;
    max-width: 100%;
}
img::selection, svg::selection, object::selection, video::selection, picture::selection {
    background-color: transparent;
}
img::-moz-selection, svg::-moz-selection, object::-moz-selection, video::-moz-selection, picture::-moz-selection {
    background-color: transparent;
}
input, textarea, button, select {
    font: inherit;
}
body {
    overflow-x: hidden;
    min-height: 100vh;
    font-size: var(--font14);
    background-color: var(--background);
    color: var(--foreground);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}
body::-webkit-scrollbar {
    width: .6em;
}
body::-webkit-scrollbar-track {
    margin-block: .6em;
}
body::-webkit-scrollbar-thumb {
    background-color: var(--orange);
    border: 2px solid var(--background);
}
/* Form Inputs */
input {
    outline: none;
    border: none;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}
/* Containers */
.container {
    width: 90%;
    max-width: 1540px;
    padding: 0;
    margin: 0 auto;
}
.fullHeightSection {
    min-height: 100vh;
    min-height: 100svh;
    height: auto;
    display: grid;
    place-items: center;
}

/* Bootstrap Overrides */

/* Global Style Classes */
/* Global Lists */
ul, ol, dl {
    list-style: none;
    margin: 0;
}
.sectionHeading {
    font-size: var(--font2832);
    font-weight: 100;
}
/* Infinite Carousels */
.infiniteCarouselWrapper {
    position: relative;
}
.infiniteCarouselHide {
    overflow: hidden;
}
.infiniteCarouselContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.6s ease;
}
.carouselSwitch {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}
.carouselSwitch svg {
    height: 2rem;
}
.carouselSwitch.left {
    left: -4em;
}
.carouselSwitch.right {
    right: -4em;
}
.carouselSwitch.right svg {
    transform: rotate(180deg);
}
.vwarning{
    color: var(--orange);
}
/* Top Banner */
.topBanner {
    background-color: var(--almostBlack);
    color: var(--background);
    font-size: var(--font13);
    padding: 0.5em 0;
}
.topBanner .container {
    width: 90%;
    max-width: 1820px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topBanner .topBannerRight svg {
    height: var(--font14);
    display: inline;
}
.topBanner .languageBtn {
    padding: 0;
}
/* Header */
.siteHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--foreground);
    z-index: 998;
    padding: 1.5em 0;
}
.siteHeader .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.siteHeader .siteLogo svg {
    height: 4rem;
}
.siteLogo  {
    max-width: 40%;
}
.siteHeader .searchWrapperBg {
    width: 70%;
    position: relative;
    margin-left: 2rem;
}
.siteHeader .searchWrapperSm {
    display: none;
    width: 90%;
    position: relative;
    margin: 0 auto;
    margin-top: 2em;
}
.siteHeader .searchBar {
    padding: 0.25rem 1.6em;
    padding-right: 4em;
    width: 100%;
    /* border-radius: .5em; */
    border: solid 1px #fff;
    background-color: #060606;
    color: #fff;
}
.searchBar::placeholder {
    color: #fff;
    opacity: 1; /* Firefox */
  }
  
  .searchBar:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:#fff;
  }
  
  .searchBar::-ms-input-placeholder { /* Microsoft Edge */
   color: #fff;
  }

.siteHeader .searchBar::-webkit-input-placeholder {
    opacity: .9;
}

.siteHeader .searchBar:-ms-input-placeholder {
    opacity: .9;
}

.siteHeader .searchBar::placeholder {
    opacity: .9;
}
.siteHeader .searchIcon {
    width: 1.1rem;
    position: absolute;
    top: 50%;
    right: 1.6em;
    transform: translate(0, -50%);
    pointer-events: none;
    z-index: 999;
}
.siteHeader .headerLinks ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.siteHeader .headerLinks li:not(:first-child) {
    margin-left: 1.6em;
}
.siteHeader .headerLinks svg {
    height: 1.5rem;
}
.parentfooter {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    }
    
    .div1footer { grid-area: 1 / 1 / 2 / 3; }
    .div2footer { grid-area: 2 / 1 / 2 / 3;
    margin-top: 2rem; }
    /* .div3footer { grid-area: 1 / 4 / 2 / 5; } */


/* Footer Container */
.siteFooter {
    background-color: var(--foreground);
}
.siteFooter .container {
    width: 80%;
    max-width: 1820px;
    color: var(--background);
    display: grid;
    padding: 6rem 0;
    grid-template-columns: repeat(1, 1fr);
}
.siteFooter .footerCol {
    /* text-align: justify; */
}
.siteFooter .footerColHead {
    /* margin-bottom: 3.4em; */
}
.siteFooter .footerColHead svg {
    /* height: 2.4rem; */
    width: 2.4rem;
}
.siteFooter .footerColHead h2 {
    /* margin-left: .8em; */
    font-size: var(--font18);
}
.siteFooter .footerCol h5 {
    font-size: var(--font14);
    /* font-weight: bold; */
    margin-bottom: 1em;
}
.siteFooter .footerCol p {
    font-size: var(--font14);
    font-weight: 100;
    opacity: .8;
    max-width: 96%;
}
.siteFooter .socialsIcons {
    display: flex;
    align-items: center;
    /* margin: 1.6em 0 1.2em 0; */
}
.siteFooter .socialsIcons svg {
    height: 1.4rem;
}
.siteFooter .socialsIcons > *:not(:last-child) {
    margin-right: 1.6em;
}
.siteFooter .newsLetterWrapper {
    display: flex;
}
.siteFooter .newsletterEmail {
    width: 100%;
    padding: .4em 1.4em;
    background-color: var(--darkGray);
    color: #fff;
}
.siteFooter .newsletterEmail::-webkit-input-placeholder {
    opacity: .9;
    font-weight: 600;
}
.siteFooter .newsletterEmail:-ms-input-placeholder {
    opacity: .9;
    font-weight: 600;
}
.siteFooter .newsletterEmail::placeholder {
    opacity: .9;
    font-weight: 600;
}
.siteFooter .newsletterBtn {
    border: 1px solid var(--darkGray);
    color: var(--darkGray);
    font-weight: 600;
    border-radius: 0px;
}
.siteFooter .newsletterBtn:hover {
    color: #fff;
}
/* Copyright Section */
.siteFooter .copyrightWrapper {
    border-top: 1px solid var(--background);
    font-weight: 100;
}
.siteFooter .copyrightWrapper .container {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    justify-content: center;
    padding: 1.4em;
}

/* Media Queries */
@media (max-width: 1600px) {
    html {
        font-size: 12px;
    }
}
@media (max-width: 991px) {
    .siteFooter .container .spacer {
        display: none;
    }
    .siteFooter .container {
        grid-template-columns: repeat(2, 1fr);
    }
    .siteFooter .container .contentBg {
        grid-column: span 2;
    }
}
@media (max-width: 700px) {
    .siteFooter .copyrightWrapper .container {
        flex-direction: column;
    }
    .siteFooter .copyrightWrapper .container p:last-child {
        margin-top: 1em;
    }
}
@media (max-width: 575px) {
    html {
        font-size: 10px;
    }
    .siteHeader{
        padding: 2em 0;
    }
    .siteHeader .searchWrapperBg {
        display: none;
    }
    .siteHeader .searchWrapperSm {
        display: block;
    }
}
@media (max-width: 399px) {
    .siteFooter .container {
        grid-template-columns: 1fr;
    }
    .siteFooter .container .contentBg {
        grid-column: unset;
    }
}