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

.field input, .field textarea, .field select {
    display: block;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    min-height: 40px;
    border: 1px solid rgba(58, 139, 209, 0.5);
    padding: 12px;
    outline: none;
    border-radius: 5px;
    padding-left: 18px;
    padding-right: 18px;
    color: #01162b;
    font-weight: 400;
    box-shadow: inset 0px 0px 12px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease-in-out;
    font-size: 15px;
}


.field label.error {
  position: absolute;
  top: 0;
  right: 0;
  background-color: red;
  color: white;
  padding: 3px;
  font-size: 12px;
  display: block;
  font-weight: 500;
}


.field input:focus, .field textarea:focus, .field select:focus {
    border: 1px solid rgba(58, 139, 209, 0.5);
    box-shadow: inset 0px 0px 12px rgba(58, 139, 209, 0.25);
}

.field ::-webkit-input-placeholder { 
    color: #01162b;
}

.field  :-moz-placeholder { 
    color: #01162b;
}
.field  ::-moz-placeholder { 
    color: #01162b;
}
.field :-ms-input-placeholder {
    color: #01162b;
}

.field textarea {
    resize: none;
    min-height: 150px;
}

.errors {
    width: 100%;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 6px;
    padding-bottom: 6px;
    margin-bottom: 12px;
    margin-top: -12px;
}

.errors .error {
  margin: 3px;
}

.checkbox {
    width: 100%;
    float: left;
    clear: both;
    position: relative;
    margin-bottom: 24px;
    text-align: left;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 13px;
    line-height: 140%;
    font-weight: 400;
    color: #01162b;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  .checkbox-container .checkmark {
    position: absolute;
    top: -1px;
    left: 0;
    height: 25px;
    width: 25px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(58, 139, 209, 0.5);
    box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.01);
    border-radius: 5px;
  }
  
  .checkbox-container:hover input ~ .checkmark {
    background-color: rgba(255, 255, 255, 0.7);
  }
  
  .checkbox-container input:checked ~ .checkmark {
    background-color: #369ffb !important;
  }
  
  .checkbox-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  .checkbox-container input:checked ~ .checkmark:after {
    display: block;
  }
  
  .checkbox-container .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }



.field input.error, .field textarea.error, .field select.error, .section:nth-child(2n) .field input.error, .section:nth-child(2n) .field textarea.error, 
.section:nth-child(2n) .field select.error, .checkbox-container input.error ~ .checkmark {
  border-color: red !important;
  box-shadow: none !important;
}

.contact .errors {
  position: absolute;
  display: none;
}

.contact {
  background: url(../../img/mainbg.jpg);
  background-position: center center;
  background-size: 2720px;
  background-repeat: no-repeat;
  padding-top: 36px;
  padding-bottom: 36px;
  position: relative;
}

.contact .row {
  position: relative;
  z-index: 2;
  justify-content: center;
  align-items: center;
}


.contact::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  position: absolute;
  opacity: 0.6;
  background: linear-gradient(to right, rgba(30,87,153,1) 0%,rgba(125,185,232,1) 52%,rgba(30,87,153,1) 100%);
}

.contact .form {
  background-color: rgba(255, 255, 255, 0.75);
  width: 100%;
  padding: 36px;
  float: left;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 1);
  box-shadow: 0 0 18px rgba(58, 139, 209, 0.5);
  border-radius: 25px;
  backdrop-filter: blur(4px);
}

.contact .form .button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .form .button .icon {
  height: 16px;
  width: 16px;
  margin-top: -3px;
  margin-bottom: -3px;
  margin-left: 24px;
}

.contact .form .field.field1, .contact .form .field.field3 {
  width: calc(50% - 9px);
  margin-right: 9px;
}

.contact .form .field.field2, .contact .form .field.field4 {
  width: calc(50% - 9px);
  margin-left: 9px;
  clear: none;
}

.contact .col:nth-child(1) {
  width: 35%;
  padding-right: 24px;
}

.contact .col:nth-child(2) {
  width: 43%;
  padding-left: 48px;
  padding-right: 48px;
}

.contact .col:nth-child(3) {
  width: 22%;
  padding-left: 24px;
}

.contact .h2 {
  margin-top: 0;
  margin-bottom: 18px;
  color: white;
  font-size: 44px;
  font-weight: 700;
  text-shadow: 0 2px 46px #6a8dbc, 0 2px 36px #6a8dbc, 0 2px 24px #6a8dbc;
}

.contact .col:nth-child(1) p {
  margin: 0;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 0;
  margin-top: 3px;
  margin-bottom: 3px;
  color: white;
  text-shadow: 0 2px 46px #6a8dbc, 0 2px 36px #6a8dbc, 0 2px 24px #6a8dbc;
  font-size: 21px;
  font-weight: 500;
}

.contact .info2 ul {
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
    width: 100%;
    padding-left: 0;
    color: white;
}

.contact .info2 ul li {
    width: 50%;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-right: 9px;
    margin-bottom: 6px;
    margin-top: 6px;
    font-weight: 500;
    text-shadow: 0 2px 46px #6a8dbc, 0 2px 36px #6a8dbc, 0 2px 24px #6a8dbc;
}

.contact .info2 ul li .iconwrapper {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  height: 40px;
  margin-right: 12px;
  border-radius: 100px;
  padding: 0;
  border: 1px solid rgba(58, 139, 209, 0.15);
  box-shadow: 0 0 18px rgba(58, 139, 209, 0.15);
}

.contact .info2 ul li .icon {
    margin-right: 0;
    color: #fcb109;
    width: 20px;
    height: 20px;
}

.contact .card  {
  width: 100%;
  margin-bottom: 18px;
  min-height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 25px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  min-height: 466px;
  background-color: transparent;
}

.contact a {
  text-decoration: none;
}

.contact .card a {
  width: 100%;
}

.contact .card .item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
  margin-bottom: 18px;
}

.contact .card:last-child {
  margin-bottom: 0;
}

.contact .card .img {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #01162b !important;
  border: 1px solid rgba(58, 139, 209, 0.5);
  box-shadow: 0 0 18px rgba(58, 139, 209, 0.5);
  border-radius: 1000px;
  background-image: linear-gradient(to bottom, #369ffb, #2c7abd);
  background-image: linear-gradient(to bottom, #fece5d, #ffb300);
}

.contact .card .img .icon {
  width: 30px;
  height: 30px;
  color: #fcb109;
  color: white;
}

.contact .card .text {
  width: calc(100% - 70px);
  padding-left: 24px;
}

.contact .card .h4, .contact .card .h5, .contact .card p {
  margin: 0;
}

.contact .card .h4 {
  font-size: 17px;
  color: #03182d;
  color: white;
  text-shadow: 0 2px 46px #6a8dbc, 0 2px 36px #6a8dbc, 0 2px 24px #6a8dbc;
  font-weight: 900;
}

.contact .card .h5 {
  margin-top: 6px;
  color: white;
  text-shadow: 0 2px 46px #6a8dbc, 0 2px 36px #6a8dbc, 0 2px 24px #6a8dbc;
  font-size: 22px;
}


.contact .card p {
  font-size: 16px;
  color: white;
  margin-top: 3px;
  font-weight: 500;
  text-shadow: 0 2px 46px #6a8dbc, 0 2px 36px #6a8dbc, 0 2px 24px #6a8dbc;
}

@media screen and (max-width: 1600px) {

  .contact {
    background-position: bottom center;
    background-size: cover;
  }

  .contact .row {
    flex-wrap: wrap;
  }

  .contact .col:nth-child(1) {
  width: 50%;
  padding-right: 24px;
  }

  .contact .col:nth-child(2) {
    width: 50%;
    padding-right: 9px;
  }

  .contact .col:nth-child(3) {
    width: 100%;
  }

  .contact .card {
    min-height: unset;
    flex-wrap: nowrap;
    flex-direction: unset;
    justify-content: space-between;
    width: 100%;
    padding: 18px;
  }

  .contact .card .item, .contact .card a {
    width: calc(33.333% - 18px);
    margin: 0;
    width: auto;
  }

  .contact .card a .item {
    width: 100%;
  }

  .contact .h2 {
    font-size: 40px;
  }

  .contact .col:nth-child(1) p {
    font-size: 18px;
  }

  .contact .card .h4 {
    font-size: 16px;
  }

  .contact .card .h5 {
    font-size: 19px;
  }

  .contact .card p {
    font-size: 15px;
  }

    .contact .col:nth-child(3) {
    padding-left: 9px;
  }

}

@media screen and (max-width: 1280px) {
  .contact .col:nth-child(1) {
  width: 45%;
  padding-right: 9px;
  }

  .contact .col:nth-child(2) {
    width: 55%;
    padding-left: 9px;
  }


  .contact .h2 br {
    display: none;
  }


  

}

@media screen and (max-width: 890px) {
   .contact .h2 {
    font-size: 28px;
    text-shadow: none;
  }

  .contact .col:nth-child(1) p {
    font-size: 16px;
    text-shadow: none;
  }

  .contact .info2 ul li {
    width: 100%;
    font-size: 15px;
    text-shadow: none;
  }

  .contact .info2 ul li .iconwrapper {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .contact .info2 ul li .iconwrapper .icon {
    width: 20px;
    height: 20px;
  }

  .contact .form {
    backdrop-filter: unset;
  }

  .contact .form {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 24px;
    padding-bottom: 24px;
    border-radius: 15px;
  }

  .field input, .field textarea, .field select {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 14px;
  }

  .contact .card .img {
    width: 40px;
    height: 40px;
  }

  .contact .card .img .icon {
    width: 21px;
    height: 21px;
  }

  .contact .card  {
    padding-left: 18px;
    padding-right: 18px;
    background-color: rgba(54,159,251,0.25);
    border-radius: 15px;
  }

  .contact .card .text {
  width: calc(100% - 40px);
  padding-left: 18px;
  }

  .contact {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .contact .card .h4, .contact .card .h5, .contact .card p {
    text-shadow: unset;
  }

}

@media screen and (max-width: 800px) {
    .contact .col {
      width: 100% !important;
    }

    .contact .info2 ul li {
      width: 50%;
    }  

    .contact .card {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
    }

    .contact .card .item {
      width: auto;
      margin: 18px;
    }

    .contact .card a {
      width: auto;
      margin: 18px;
    }

    .contact .card a .item {
      width: 100%;
      margin: 0;
    }

}

@media screen and (max-width: 540px) {
  .contact .form .field.field1, .contact .form .field.field3, .contact .form .field.field2, .contact .form .field.field4 {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  }

  .contact .card {
    padding-left: 9px;
    padding-right: 9px;
  }

  .contact .card .item {
    width: 50%;
    margin-top: 18px;
    margin-left: 0;
    margin-right: 0;
  }

  .contact .card a {
    width: 100%;
  }

  .contact .card a .item {
    width: 100%;
  }

  .contact .card .item {
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
  }

  .contact .card .item .text {
    padding-left: 0;
    padding-top: 18px;
  }

  .contact .card .h5 {
    font-size: 17px;
  }

  .contact .card br {
    display: none;
  }

  .contact {
    background-position: bottom center;
    background-size: 2500px;
    background-color: #72b2e4;
  }

  .contact::before {
  opacity: 1;
  background: linear-gradient(to bottom, #72b2e4 0%,rgba( 30,87,153,0.5) 100%);
  top: auto;
  bottom: 0;
  height: 50%;
  }


}

@media screen and (max-width: 380px) {
    .contact .info2 ul li {
      width: 100%;
    }

    .contact .card a, .contact .card .item {
      width: 100%;
      max-width: 100%;
      margin-left: 0;
      margin-right: 0;
    } 

    .contact .card a .item {
      max-width: unset;
    }
}