@font-face {
  font-family: 'neutraface2display-medium';
  src: url('../fonts/neutraface2display-medium.woff2') format('woff2'),
    url('../fonts/neutraface2display-medium.woff') format('woff');
  font-weight: 500;
  font-style: normal
}

@font-face {
  font-family: 'neutraface2display-light';
  src: url('../fonts/neutraface2display-light.woff2') format('woff2'),
    url('../fonts/neutraface2display-light.woff') format('woff');
  font-weight: 300;
  font-style: normal
}

@font-face {
  font-family: 'neutraface2display-bold';
  src: url('../fonts/neutraface2display-bold.woff2') format('woff2'),
    url('../fonts/neutraface2display-bold.woff') format('woff');
  font-weight: bold;
  font-style: normal
}

@font-face {
  font-family: 'gillsansstd';
  src: url('../fonts/gillsansstd.woff2') format('woff2'),
    url('../fonts/gillsansstd.woff') format('woff');
  font-weight: normal;
  font-style: normal
}

@font-face {
  font-family: 'gillSansbold';
  src: url('../fonts/gillsansaltonewgl.woff') format('woff'),
    url('../fonts/gillsansaltonewgl.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --black: #000000;
  --primary: #e22726;
  --secondary: #8E8E8E;

}

html {
  scroll-behavior: unset;
}

body,
html {
    width: 100%;
    height: 100%;
    color: #565353;
    font-size: 12px;
    line-height: 1.4rem;
    font-family: 'gillsansstd', Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-style: normal;
    overscroll-behavior: none;
}

main {
  overflow: hidden;
  font-size: 1.375rem;
  line-height: 2.0625rem;
}

hr {
  border-top: 1px solid #e9e9e9;
  opacity: 1;
}


a {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: #565353;
}

a:hover {
  color: #000;
}

.min-content {
    min-height: 150px;
}


h1,
h2,
h3 {
  font-family: 'neutraface2display-bold', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
  /* color: #565353; */
}

h1 {
  font-size: 2.5rem;
  line-height: 3rem;
}

h2 {
  font-size: 2.5rem;
  line-height: 2.75rem;
}

h3 {
  font-size: 1.875rem;
  line-height: 2.25rem;

}




h4 {
  font-size: 1.7rem;
  line-height: 2.2rem;
}

h5 {
  font-size: 1.5625rem;
  line-height: 1.875rem;
}


h6 {
  font-size: 1.25rem;
}

p,
ul,
div {
  font-size: 1.5rem;
  line-height: 2rem;
}

.color-primary {
  color: var(--primary);
}

.menu-link i {
  font-size: 2rem;
}

.menu-link {
  position: absolute;
  left: 40px;
  top: 40px;
  z-index: 2;
}

h2 i {
  color: var(--primary);
}


.banner {
  position: relative;
  background: #000000;
}

.banner-landing {
  height: 100vh;
  object-fit: cover;
  opacity: 0.9;
}

.banner-sub {
  opacity: 0.9;
}

.banner figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 0 10px;
}

.banner figcaption .btn-primary:hover{
  background: transparent;
  border-color: #fff;
  color: #fff;

}
.banner figcaption hr {
  border-top: 1px solid rgba(255,255,255,0.7);
}

.banner figcaption div {
  text-align: center;
  max-width: 660px;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255,255,255,0.9);
  padding: 25px;

  -webkit-box-shadow: 0px 0px 12px 7px rgba(255,255,255,0.3);
  -moz-box-shadow: 0px 0px 12px 7px rgba(255,255,255,0.3);
  box-shadow: 0px 0px 12px 7px rgba(255,255,255,0.3);
}

.banner figcaption h1 {
  font-size: 3rem;
  line-height: 3rem;
}

.banner aside {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 371px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 17px;
  color: #333;
  border: 1px solid #fff;
  transform: translate(-50%, -50%);
}

.left-menu {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-menu ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  font-size: 1.3rem;
  font-family: 'neutraface2display-bold';
  text-transform: uppercase;
  padding: 0;
}

.left-menu ul a {
  text-decoration: none;
}

.left-menu ul li {
  padding: 5px 15px;
  border-left: 4px solid var(--primary);
}

.left-menu ul li:hover {
  background: #fff;
}

/* .left-menu ul li:last-child {
  border: 0;
  padding-left: 0;
  margin-top: 16px;
  display: flex;
  gap: 22px;
}
.left-menu ul li:last-child:hover{
  background: transparent;
} */
.left-menu i {
  color: var(--primary);
}

#left-menu {
  background: rgba(255, 255, 255, 0.95);
}

.offcanvas-header .btn-close {
  font-size: 1.5rem;
  position: absolute;
  left: 40px;
  top: 40px;
}


.offer-text {
  list-style: none;
  border: 1px solid var(--primary);
  padding: 15px;
  display: inline-block;
  margin-top: 15px;
}


.form-control,
.form-select {
  border-radius: 0px;
  font-size: 1.3rem;
  padding: 0.6rem 1rem;
  border: 1px solid #bbb;
  color: #666;
}

.form-control::placeholder,
.form-select {
  color: #888;

}

select option {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.2rem;
}

.form-control.email {
  text-align: center;
  max-width: 400px;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border: 1px solid var(--primary);
}

.form-check .form-check-input {
  border-color: #bbb;
  margin-top: 0.2rem;
}

.form-check-input:focus {
  box-shadow: none;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.select2-container--default .select2-selection--single {
  border-radius: 0;
  height: 38px;
  padding-top: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #888;
  line-height: 28px;
}

.select2-search--dropdown .select2-search__field {
  font-size: 1.3rem;
  line-height: 1.3rem;
  color: #666;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 7px;
  right: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    height: 32px;
    margin-right: 23px;
    color: #888;
}

.iti--allow-dropdown {
    width: 100%;
}

.btn-language {
    background: var(--primary);
    color: #fff;
    border-radius: 0 0 10px 10px;
    padding: 12px 24px;
    display: inline-flex;
    font-family: 'neutraface2display-bold';
    text-decoration: none;
    font-size: 1.2rem;
}

.btn-primary {
  background: var(--primary);
  font-size: 1.4rem;
  line-height: 1.4rem;
  padding: 12px 30px;
  color: #fff;
  border-radius: 0px;
  border: 2px solid var(--primary);
  text-decoration: none;
  font-family: 'neutraface2display-bold';
  text-transform: uppercase;
}

.btn-primary:hover {
  color: var(--primary);
  background: #fff;
  border: 2px solid var(--primary);

}

div#loader {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    z-index: 10000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader img {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
}

.box-shadow {
  -webkit-box-shadow: 0px 0px 18px -5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 18px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 18px -5px rgba(0, 0, 0, 0.2);
}

.box-radius {
  border-radius: 10px;
}

.logo {
  width: 200px;
}

.breadcrumb li i {
  font-size: 1.1rem;
  margin: 0 0 0 10px;
}

.breadcrumb {
  margin: 10px 0;
  font-size: 1.3rem;
}

.breadcrumb li.active,
.breadcrumb li a,
.breadcrumb-item+.breadcrumb-item::before {
  text-decoration: none;
}

.profile-form {
  display: none;
}

.img-contact {
  aspect-ratio: 4/2.7;
  object-fit: cover;
}


.text-white a {
  color: #fff;
}


.templates figcaption {
  margin-top: 10px;
}

.btn-secondary {
    font-size: 1.3rem;
    line-height: 1.3rem;
    padding: 10px 15px 8px 15px;
    color: #fff;
    border-radius: 0px;
}

.unsub-list {
    display: none;
}

.toggleField {
    display: none;
    padding: 5px 10px;
    width: 200px;
}

.list02 .form-check-input {
    border-color: #bbb;
    margin: 0;
}

    .list02 .form-check-input:checked {
        background-color: #666;
        border-color: #333;
    }

.list01, .list02 {
    list-style: none;
}

.list02 {
    padding-left: 50px;
}
    /* .list01 li > i {
  color: var(--primary);
} */
    .list01 li, .list02 li {
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .list01 li a:hover {
            text-decoration: none;
        }


footer {
  background: #1b475d;
}

footer a {
  text-decoration: none;
}

footer hr {
  border-color: rgba(255, 255, 255, 0.5);
}


footer p {
  font-size: 1.2rem;
}

.social-media {
  display: flex;
  align-items: center;
  font-size: 1.375rem;
  gap: 20px;
  justify-content: center;
}

.social-media a:hover i {
  transform: scale(1.1);
}

.gj-datepicker-bootstrap button[role="right-icon"] {
  width: 2.5rem;
  border-radius: 0px;
  padding-right: 40px;
  border: 1px solid #bbb;
  border-left: 0px;
}

.gj-datepicker-bootstrap button[role="right-icon"] .gj-icon {
  top: 1rem;
  left: 0.9rem;
}

.btn-primary{
  -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.alert-404 i {
    font-size: 5rem;
}

.alert-404 h2 {
    font-size: 5rem;
}

@media screen and (min-width: 1400px) {}



@media only screen and (max-width:1400px) {}


@media only screen and (max-width:1300px) {

  .banner-landing {
    height: 100%;
    position: absolute;
  }

  .banner figcaption {
    position: relative;
    z-index: 2;
    margin: 100px auto 20px;
  }
}

@media only screen and (max-width:991px) {

  h1 {
    font-size: 2rem;
    line-height: 2.8rem;
  }

  .banner-sub {
    height: 300px;
    object-fit: cover;
  }

    .list01 li {
        display: flex;
        flex-wrap: wrap;
    }

}



@media only screen and (max-width:767px) {

  .menu-link,
  .offcanvas-header .btn-close {
    left: 20px;
    top: 20px;
  }

  .img-contact {
    aspect-ratio: unset;
    object-fit: cover;
    margin-bottom: 20px;
  }


}


@media only screen and (max-width:576px) {}

@media only screen and (max-width:420px) {}