:root {
  --white: #ffffff;
  --black: #000000;
  --primary: #0F2030;
  --thick: #F7F7F7;
  --thin: #F6F6F6;
  --menu: rgba(0, 0, 0, 0.4);  
  --form-field: #E5E5E5;
  --shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.4) 0px 3px 6px;
  --card: 0px 4px 4px rgba(0,0,0,0.25);  
  --border-light: 1px solid rgba(0, 0, 0, 0.2);
  --border--thick: 1px solid rgba(0, 0, 0, 0.8);
}

.l-page-listing {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 20px;
  grid-row-gap: 0;
  grid-column-gap: 0;
  width: 100%;
  background: transparent;
}

.l-wrapper {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 10px;
}

.l-page-header {
  background-color: var(--primary);
  min-height: 100%;
}

html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body, html {
  background-color: var(--white);
  color: var(--primary);
  min-height: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 100%;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  /*  background: $body-background;
    font-size: $base-font-size;
    color: $body-color;*/
  line-height: 1.5;
  min-height: 100%;
  height: 100%;
}

address,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, ol, ul,
figure,
hr,
table,
fieldset {
  margin-bottom: 10px;
}

dd, ol, ul {
  margin-left: 10px;
}

input::placeholder {
  opacity: 0.5;
}

textarea::placeholder {
  opacity: 0.5;
}

/**
 * Undo the red box-shadow glow added by Firefox on invalid inputs.
 * See https://developer.mozilla.org/en-US/docs/Web/CSS/:-moz-ui-invalid
 */
input:-moz-ui-invalid {
  box-shadow: none;
}

input[type=text]::-ms-clear {
  display: none;
}

a svg,
button svg,
label svg {
  pointer-events: none;
}

body,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, dd, ol, ul,
figure,
hr,
fieldset, legend {
  margin: 0;
  padding: 0;
}

li > ol,
li > ul {
  margin-bottom: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 1. Reset Chrome and Firefox behaviour which sets a `min-width: min-content;`
 *    on fieldsets.
 */
fieldset {
  min-width: 0;
  /* [1] */
  border: 0;
}

:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
}

.t1 {
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .t1 {
    font-size: 60px;
  }
}

.t2 {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .t2 {
    font-size: 40px;
  }
}

.t3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .t3 {
    font-size: 30px;
  }
}

.t4 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .t4 {
    font-size: 25px;
  }
}

.s5 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .s5 {
    font-size: 20px;
  }
}

.s6 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .s6 {
    font-size: 20px;
  }
}

.ts-white {
  color: var(--white);
}

.ts-light {
  color: var(--light);
}

.ts-dark {
  color: var(--primary);
}

.ts-bg-white {
  background-color: var(--white);  
}

.ts-flex {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
}

.ts-flex-center {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.ts-flex-end {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
}

.ts-flex-between {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}


.ts-trans {
  transition: all 0.3s ease-out;
}

.ts-shadow {
  box-shadow: var(--shadow);
}

.ts-center {
  text-align: center;
}

a,
a:link,
a:active,
a:visited,
a:focus {
  color: rgba(var(--black), 0.8);
  text-decoration: none;
}

a:hover {
  color: var(--black);
}

.a-ul-list {
  margin: 0 0 0 30px;
  padding: 10px;
}
.a-ul-list li {
  margin-bottom: 5px;
}

.a-radio-field {
  background: var(--form-field);
  padding: 20px 20px 20px 30px;
  border-radius: 30px;
}

.a-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 10px;
  outline: 0;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  box-sizing: border-box;
  border-radius: 10px;
}

.a-btn--light {
  background: var(--thick);
  color: var(--light);
  border: 2px solid var(--light);
  min-width: 160px;
  transition: all 0.3s ease-out;
}
.a-btn--light:hover {
  box-shadow: var(--shadow);
}

.a-btn--dark {
  background: var(--thick);
  color: var(--primary);
  border: 2px solid var(--primary);
  min-width: 160px;
  transition: all 0.3s ease-out;
}
.a-btn--dark:hover {
  box-shadow: var(--shadow);
}

.a-btn--submit {
  background: var(--black);
  color: var(--white);
  border: none;
  min-width: 160px;
  transition: all 0.3s ease-out;
}
.a-btn--submit:hover {
  box-shadow: var(--shadow);
}

.a-btn--primary {
  font-size: 20px;
  height: 40px;
  padding: 5px 20px;
}
.a-btn--primary:hover {
  box-shadow: var(--shadow);
}

.a-btn-icon {
  max-width: 35px;
}

.a-form-input {
  font-family: "Poppins", sans-serif;
  font-size: 20px !important;
  font-style: normal;
  font-weight: 400;
    
  line-height: inherit;
  color: var(--black);
  background: var(--form-field);
  border-radius: 100px;
  border: none;
  outline: none;
  position: relative;
  height: 60px;
  width: 100%;
  padding: 20px 30px;
}

.a-form-textarea {
  border-radius: 20px; 
  height: auto;  
}

.a-form-label {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0em;
  box-sizing: content-box;
  width: auto;
}
@media screen and (min-width: 740px) {
  .a-form-label {
    width: 100%;
  }
}

.a-form-field {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
.a-form-field + .a-form-field {
  margin-top: 40px;
}

.a-form-field-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.a-radio-container {
  font-size: 20px;
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.a-radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 5px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--white);
  border: var(--border-light);
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.a-radio-container:hover input ~ .checkmark {
  background-color: var(--white);
  border: none;
}

/* When the radio button is checked, add a blue background */
.a-radio-container input:checked ~ .checkmark {
  background-color: var(--black);
  border: none;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.a-radio-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.a-radio-container .checkmark:after {
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.a-input-option {
  position: absolute;
  opacity: 1 !important;
  cursor: auto !important;
  background: transparent;
  border: none;
  border-bottom: 1px solid gray;
  top: 0px;
  margin-left: 10px;
  font-size: 20px;
  width: 130px;
}
@media screen and (min-width: 420px) {
  .a-input-option {
    width: 200px;
  }
}
@media screen and (min-width: 600px) {
  .a-input-option {
    width: 300px;
  }
}
@media screen and (min-width: 768px) {
  .a-input-option {
    width: 400px;
  }
}
@media screen and (min-width: 1024px) {
  .a-input-option {
    width: 600px;
  }
}

.c-header__row {
  display: block;
  width: 100%;
    padding: 10px 0;
}

.c-body__row {
  display: block;
  width: 100%;
}

.c-card__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-row-gap: 50px;
  grid-column-gap: 30px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-card__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .c-card__grid {
    max-width: 85%;
  }
}

.c-card {
  display: flex;
  flex-flow: column;
  align-items: start;
  width: 100%;
  max-width: 360px;
  background-color: var(--thin);
  margin: 0 auto;
  border-radius: 3px;
  transition: all 0.5s ease-out;
  border-radius: 20px; 
  box-shadow: var(--card);
}

.c-card__head {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  width: 100%;
  border-radius: 20px 20px 0 0;
}

.c-card__head--light {
  background-color: var(--light);
}

.c-card__head--dark {
  background-color: var(--primary);
}

.c-card__body {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 20px 40px 20px;
}

.c-card__list {
  margin: 0 0 0 30px;
  padding: 10px;
}
.c-card__list li {
  margin-bottom: 20px;
}

.c-card__wrap {
  min-height: 360px;
}

.c-sign-up {
  display: block;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 767px) {
  .c-sign-up {
    max-width: 80%;
  }
}

.u-mt-5 {
  margin-top: 5px;
}

.u-mt-10 {
  margin-top: 10px;
}

.u-mt-15 {
  margin-top: 15px;
}

.u-mt-20 {
  margin-top: 20px;
}

.u-mt-30 {
  margin-top: 30px;
}

.u-mt-40 {
  margin-top: 40px;
}

.u-mt-50 {
  margin-top: 50px;
}

.u-mr-5 {
  margin-right: 5px;
}

.u-mr-10 {
  margin-right: 10px;
}

.u-mr-20 {
  margin-right: 20px;
}

.u-mr-30 {
  margin-right: 30px;
}

.u-mr-40 {
  margin-right: 40px;
}

.u-mr-50 {
  margin-right: 50px;
}

.u-mb-5 {
  margin-bottom: 5px;
}

.u-mb-10 {
  margin-bottom: 10px;
}

.u-mb-15 {
  margin-bottom: 15px;
}

.u-mb-20 {
  margin-bottom: 20px;
}

.u-mb-30 {
  margin-bottom: 30px;
}

.u-mb-40 {
  margin-bottom: 40px;
}

.u-mb-50 {
  margin-bottom: 50px;
}

.u-ml-5 {
  margin-left: 5px;
}

.u-ml-10 {
  margin-left: 10px;
}

.u-ml-15 {
  margin-left: 15px;
}

.u-ml-20 {
  margin-left: 20px;
}

.u-ml-30 {
  margin-left: 30px;
}

.u-ml-40 {
  margin-left: 40px;
}

.u-ml-50 {
  margin-left: 50px;
}

.u-m-0 {
  margin: 0 !important;
}

.hero {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 190px;
    width: 100%;
    padding: 0 30px;
    text-align: center;
    box-sizing: border-box;
}
@media screen and (min-width: 768px) {
    .hero {    
      min-height: 220px;  
    }
}

@media screen and (min-width: 1024px) {
    .hero {    
      /* min-height: 330px; */ 
        min-height: 430px;
    }
}

.hero--sub {
   min-height: 190px; 
}
@media screen and (min-width: 768px) {
    .hero--sub {
       min-height: 270px; 
    }
}

.hero--bg {
    background-image: url("../images/hero-img.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-title {
    display: flex;
    justify-content: center;
    color: var(--white);
    margin: 30px 0 0 0;
}


/* Menu */
.c-main-menu {
  display: inline-flex;
  align-items: center;  
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.c-main-menu li {
  margin: 0 20px;
}
.c-main-menu li:last-child {
  margin-right: 0;
}

.c-global-header__nav input[type="checkbox"],
.c-global-header__nav .hamburger-lines{
    display: none;
}

.c-main-menu{
    order: 2;
}

.c-main-menu li{
    list-style: none;
    margin-left: 0;
}

.c-global-header__nav a{
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.c-global-header__nav a:hover{
    color: var(--black);
}

@media (max-width: 600px){
    .navbar{
        opacity: 0.95;
    }

    .c-global-header__nav input[type="checkbox"],
    .c-global-header__nav .hamburger-lines{
        display: block;
    }

    .c-global-header__nav{
        display: block;
        position: relative;
        height: 64px;
    }

    .c-global-header__nav input[type="checkbox"]{
        position: absolute;
        display: block;
        height: 32px;
        width: 30px;
        top: 15px;
        right: 24px;
        z-index: 5;
        opacity: 0;
    }

    .c-global-header__nav .hamburger-lines{
        display: block;
        height: 28px;
        width: 35px;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .c-global-header__nav .hamburger-lines .line{
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: var(--white);
    }
    
    .c-global-header__nav .hamburger-lines .line1{
        transform-origin: 0% 0%;
        transition: transform 0.3s ease-in-out;
    }

    .c-global-header__nav .hamburger-lines .line2{
        transition: transform 0.2s ease-in-out;
    }

    .c-global-header__nav .hamburger-lines .line3{
        transform-origin: 0% 100%;
        transition: transform 0.3s ease-in-out;
    }

    .c-global-header__nav .c-main-menu{
        background: var(--menu);
        min-height: 120px;
        max-width: 250px;
        min-width: 200px;
        width: auto;
        transform: translate(400%);
        flex-direction: column;
        padding: 30px;
        transition: transform 0.5s ease-in-out;
        box-shadow:  5px 0px 10px 0px var(--gray);
        overflow: scroll;
        border-radius: 10px;
        display: none;
    }

    .c-global-header__nav .c-main-menu li{
        margin: 0 0 15px 0;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .c-global-header__nav input[type="checkbox"]:checked ~ .c-main-menu{
        transform: translateX(0);
        display: block;
    }
    @media screen and (min-width: 768px) {
        .c-global-header__nav input[type="checkbox"]:checked ~ .c-main-menu{
            transform: translateX(0);
            display: block;
        }
    }

    .c-global-header__nav input[type="checkbox"]:checked ~ .hamburger-lines .line1{
        transform: rotate(45deg);
    }

    .c-global-header__nav input[type="checkbox"]:checked ~ .hamburger-lines .line2{
        transform: scaleY(0);
    }

    .c-global-header__nav input[type="checkbox"]:checked ~ .hamburger-lines .line3{
        transform: rotate(-45deg);
    }

}
/* Menu end */

.mobile-view {
  display: none
}
@media screen and (min-width: 420px) {
    .mobile-view {
      display: block
    }
}