
/*-------------------------------
         Contact CSS
-------------------------------*/
.contact-item {
    padding: 25px;
    border-radius: 0;
    margin: 0 0 25px;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
  }
  
  .contact-item .contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    text-align: center;
    background-color: transparent;
    border: 1px dashed #2490EB;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-item .contact-icon i {
    background-color: #2490EB;
    line-height: 0.8;
    font-size: 36px;
    position: relative;
    -webkit-transition: 0.34s;
    transition: 0.34s;
    width: 36px;
    height: 36px;
  }
  
  .contact-item .contact-info {
    width: calc(100% - 100px);
    margin-left: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  
  .contact-item .contact-info h3 {
    font-size: 22px;
    margin: 0 0 10px;
    font-weight: 600;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  
  .contact-item .contact-info a,
  .contact-item .contact-info p {
    display: block;
    margin: 0;
    line-height: 1.7;
    color: #666666;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  
  .contact-item:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  
  .contact-item:hover .contact-icon {
    background-color: #14467B;
  }
  
  .contact-item:hover .contact-icon i {
    background-color: #fff;
  }
  .contact-item .contact-icon .fa-map-marker-alt {
    width: 27px;
  }
  .contact-form {
    padding: 30px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.09);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.09);
  }
  
  .contact-form h3 {
    font-size: 24px;
    margin: 0  0 25px;
  }
  
  #contactForm .form-group {
    margin: 0 0 20px;
  }
  
  #contactForm .form-group input,
  #contactForm .form-group textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 15px;
    border-radius: 5px;
  }
  
  #contactForm .form-group input:focus,
  #contactForm .form-group textarea:focus {
    border: 1px solid rgba(0, 0, 0, 0.09);
  }
  
  #contactForm .form-group input {
    height: 60px;
  }
  
  #contactForm .form-group textarea {
    height: 163px;
    resize: none;
    padding-top: 18px;
  }
  
  .comp-map {
    height: 455px;
  }
  
  .comp-map iframe {
    width: 100%;
    height: 100%;
  }
  
  .contact-content .content-title {
    margin-bottom: 30px;
  }
  
  .contact-content .social-profile li a {
    width: 50px;
    height: 50px;
    background-color: #f9f9f9;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  
  .contact-content .social-profile li a i {
    color: #14467B;
    font-size: 20px;
  }
  
  .btn.disabled {
    opacity: 1;
  }
  
  .checkbox {
    display: block;
  }
  
  .checkbox.form-check {
    padding-left: 0;
  }
  
  .checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
  }
  
  .checkbox label {
    position: relative;
    cursor: pointer;
    padding-left: 20px;
  }
  
  .checkbox label:before {
    content: "";
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    background-color: transparent;
    border: 1px solid #2490EB;
    display: inline-block;
    width: 15px;
    height: 15px;
    position: absolute;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    position: absolute;
    left: 0;
    top: 4px;
  }
  
  .checkbox a {
    color: #2490EB;
  }
  
  .checkbox.style2 label:before {
    border-radius: 50%;
    border-color: #888888;
  }
  
  .checkbox input:checked + label:before {
    border-color: #2490EB;
  }
  
  .checkbox input:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 7px;
    left: 3px;
    width: 9px;
    height: 9px;
    border: none;
    background: #2490EB;
  }
  
  .checkbox.style2 input:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    left: 3px;
    width: 9px;
    height: 9px;
    border: none;
    background: #2490EB;
  }

  @media screen and (max-width: 768px) {
    .contact-item .contact-icon {
      width: 40px;
      height: 40px;
    }
    .contact-item .contact-icon i {
      width: 20px;
      height: 20px;
    }
    .contact-item .contact-icon .fa-map-marker-alt {
      width: 17px;
    }
    .contact-item {
      padding: 15px;
    }
  }