body, html {
    background-color: white;
}
.wrapper {
    width: 100%;
    max-width: 1304px;
    margin-left: auto;
    margin-right: auto;
}

.row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.col {
    display: inline-block;
    padding-left: 12px;
    padding-right: 12px;
    width: 100%;
}

.col-1-3 {
    width: 33.333%;
}

.col-2-3 {
    width: 66.666%;
}

.section {
    float: left;
    width: 100%;
    clear: both;
    overflow: hidden;
}

.section.padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.img-container {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    aspect-ratio: 16/10;
}

.img-container img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 0;
}

.grid {
    display: grid;
    grid-template-columns: 50% 50%;
}

.grid .col .img-container {
    position: relative;
    height: 100%;
}

.img-container a, .img-container .lazy-load {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    overflow: hidden;
    border-radius: 15px;
}



.img-container  {
    border-radius: 5px;
    overflow: hidden;
}

.img-container a::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.img-container a .description {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 4;
    padding: 24px;
}

.button {
    display: inline-block;
    padding: 12px;
    padding-left: 24px;
    padding-right: 24px;
    background-color: black;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-size: 18px;
    line-height: 110%;
    border-radius: 100px;
    font-weight: 300;
    text-transform: capitalize;
}

.button i {
    margin-left: 12px;
    margin-right: 0;
    font-size: 80%;
}

.button.navy, .button.navy2 {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#00224f+0,011f2c+100 */
    background-color: #114675;
    border-color: #114675;
}

.button.orange {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffa654+0,ff850f+100 */
background-color: #f01f22 !important;
border-color: #f01f22 !important;
color: white;
}

.text-link {
    color: #011f2c;
    font-weight: 400;
    text-decoration: none;
    font-size: 15px;
    line-height: 120%;
}

.text-link:hover {
    text-decoration: underline;
}

.text-link i {
    margin-left: 12px;
    font-size: 80%;
    color: #ff850f;
}


/* The container */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* checkbox */
  .checkbox-container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
  }
  
  /* On mouse-over, add a grey background color */
  .checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .checkbox-container input:checked ~ .checkmark {
    background-color: #2196F3;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkbox-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .checkbox-container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .lazy-load::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #f2f2f2;
    z-index: 10;
  }

  .lazy-load.loaded::after {
    opacity: 0;
    visibility: hidden;
  }

  ::placeholder {
    opacity: 1;
  }
  
  .force-opaque::placeholder {
    opacity: 1;
  }

  .field {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 24px;
  }

  .field input, .field select, .field textarea {
    width: 100%;
    height: 50px;
    display: block;
    float: left;
    padding-left: 24px;
    padding-right: 24px;
    background-color: transparent;
    font-size: 16px;
    color: #011f2c;
    border: 2px solid #ff850f;
    border-radius: 25px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .field textarea {
    height: 180px;
    resize: none;
  }

  select {
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    appearance:none;
  }

  .field i {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 2;
    top: 50%;
    line-height: 20px;
    text-align: center;
    font-size: 12px;
    right: 18px;
    margin-top: -10px;
    color: #011f2c;
  }