
  .menu {
    position: absolute;
    right: 10rem;
    padding-top: 20px;
  }
  
  .menu1,
  .menu2,
  .menu3 {
    padding: 15px;
    color: black;
    text-decoration: none;
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
  }
  
  .logo {
    width: 14%;
  }
  
  .team_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
  
  .team {
    margin: auto;
    max-width: 1400px;
  }
  
  .profile_card {
    width: 250px;
    -webkit-box-shadow: 12px 20px 120px #dfdfdf;
            box-shadow: 12px 20px 120px #dfdfdf;
    padding: 2em;
    margin-right: 1em;
    margin-left: 1em;
  }
  
  .profile_image {
    width: 100%;
    outline: black solid;
  }
  
  .profile_name {
    color: black;
    font-family: "Poppins", monospace;
  }
  
  .profile_desc {
    font-family: "Poppins", monospace;
    font-size: small;
  }
  
  .button {
    color: blue;
    font-weight: 600;
    width: 100%;
    font-family: "Poppins", monospace;
  }
  
  .button:hover {
    text-decoration: none;
  }
  
  .profile_icons {
    padding-right: 115px;
    font-size: 20px;
    vertical-align: middle;
  }
  
  .profile_icons i {
    color: #777777;
  }
  
  .profile_icons i:hover {
    color: blue;
  }
  /*# sourceMappingURL=teams.css.map */
  
  
  
  
  /*//////////////////////////////////////////////////////////////////
  [ FONT ]*/
  
  
  /*//////////////////////////////////////////////////////////////////
  [ RESTYLE TAG ]*/
  
  * {
      margin: 0px; 
      padding: 0px; 
      box-sizing: border-box;
  }
  
  body, html {
      height: 100%;
      font-family: Raleway-SemiBold, sans-serif;
  }
  
  /*---------------------------------------------*/
  a {
      font-family: Raleway-SemiBold;
      line-height: 1.7;
      color: #666666;
      margin: 0px;
      transition: all 0.4s;
      -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
  }
  
  a:focus {
      outline: none !important;
  }
  
  a:hover {
      text-decoration: none;
  }
  
  /*---------------------------------------------*/
  h1,h2,h3,h4,h5,h6 {
      margin: 0px;
  }
  
  p {
      font-family: Raleway-SemiBold;
      font-size: 14px;
      line-height: 1.7;
      color: #666666;
      margin: 0px;
  }
  
  ul, li {
      margin: 0px;
      list-style-type: none;
  }
  
  
  /*---------------------------------------------*/
  input {
      outline: none;
      border: none;
  }
  
  textarea {
    outline: none;
    border: none;
  }
  
  textarea:focus, input:focus {
    border-color: transparent !important;
  }
  
  input:focus::-webkit-input-placeholder { color:transparent; }
  input:focus:-moz-placeholder { color:transparent; }
  input:focus::-moz-placeholder { color:transparent; }
  input:focus:-ms-input-placeholder { color:transparent; }
  
  textarea:focus::-webkit-input-placeholder { color:transparent; }
  textarea:focus:-moz-placeholder { color:transparent; }
  textarea:focus::-moz-placeholder { color:transparent; }
  textarea:focus:-ms-input-placeholder { color:transparent; }
  
  input::-webkit-input-placeholder { color: #adadad;}
  input:-moz-placeholder { color: #adadad;}
  input::-moz-placeholder { color: #adadad;}
  input:-ms-input-placeholder { color: #adadad;}
  
  textarea::-webkit-input-placeholder { color: #adadad;}
  textarea:-moz-placeholder { color: #adadad;}
  textarea::-moz-placeholder { color: #adadad;}
  textarea:-ms-input-placeholder { color: #adadad;}
  
  /*---------------------------------------------*/
  button {
      outline: none !important;
      border: none;
      background: transparent;
  }
  
  button:hover {
      cursor: pointer;
  }
  
  iframe {
      border: none !important;
  }
  
  
  
  /*//////////////////////////////////////////////////////////////////
  [ Contact ]*/
  
  .container-contact100 {
    width: 100%;  
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  
  .wrap-contact100 {
    max-width: 960px;
    background: #fff;
    border-radius: 2px;
    padding: 66px 115px 59px 115px;
    position: relative;
  }
  
  
  /*==================================================================
  [ Form ]*/
  
  .contact100-form {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .contact100-form-title {
    display: block;
    width: 100%;
    font-size: 30px;
    color: #333333;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: left;
    padding-bottom: 32px;
  }
  
  
  
  /*------------------------------------------------------------------
  [ Input ]*/
  
  .wrap-input100 {
    width: 100%;
    position: relative;
    background-color: transparent;
    margin-bottom: 35px;
  }
  
  .rs1-wrap-input100 {
    width: calc((100% - 30px) / 2);
  }
  
  .label-input100 {
  
    font-size: 20px;
    color: #555555;
    line-height: 1.5;
  }
  
  .input100 {
    display: block;
    width: 100%;
    background: #f2f2f2;
    border-radius: 2px;
  
    font-size: 20px;
    color: #686868;
    line-height: 1.2;
    padding: 0 28px;
  
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
  
    margin-top: 10px;
  }
  
  
  /*---------------------------------------------*/
  input.input100 {
    height: 62px;
    border-radius: 10px;
  }
  
  
  textarea.input100 {
    min-height: 162px;
    padding-top: 19px;
    padding-bottom: 13px;
    border-radius: 10px;
  }
  
  .input100:focus {
    background: #e6e6e6;
  }
  
  /*------------------------------------------------------------------
  [ Button ]*/
  .container-contact100-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 5px;
    border-radius: 20px;
  }
  
  .wrap-contact100-form-btn {
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .contact100-form-bgbtn {
    position: absolute;
    z-index: -1;
    width: 300%;
    height: 100%;
    background: #df2351;
    background: -webkit-linear-gradient(right, #2f91ff, #00c513, #2f91ff, #00c513);
    background: -o-linear-gradient(right, #2f91ff, #00c513, #2f91ff, #00c513);
    background: -moz-linear-gradient(right, #2f91ff, #00c513, #2f91ff, #00c513);
    background: linear-gradient(right, #2f91ff, #00c513, #2f91ff, #00c513);
    top: 0;
    left: -100%;
  
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
  }
  
  .contact100-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    min-width: 150px;
    height: 62px;
  
  
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
  }
  
  .wrap-contact100-form-btn:hover .contact100-form-bgbtn {
    left: 0;
  }
  
  
  /*------------------------------------------------------------------
  [ Responsive ]*/
  
  @media (max-width: 992px) {
    .wrap-contact100 {
      padding: 66px 80px 59px 80px;
    }
  }
  
  @media (max-width: 768px) {
    .rs1-wrap-input100 {
      width: 100%;
    }
  }
  
  @media (max-width: 576px) {
    .wrap-contact100 {
      padding: 66px 15px 59px 15px;
    }
  }
  
  
  /*------------------------------------------------------------------
  [ Alert validate ]*/
  
  .validate-input {
    position: relative;
  }
  
  .alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: #fff;
    border: 1px solid #c80000;
    border-radius: 2px;
    padding: 4px 25px 4px 10px;
    bottom: calc((100% - 34px) / 2);
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
    right: 10px;
    pointer-events: none;
  
  
    color: #c80000;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
  
    visibility: hidden;
    opacity: 0;
  
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  
  .alert-validate::after {
    content: "\f12a";
    font-family: FontAwesome;
    display: block;
    position: absolute;
    color: #c80000;
    font-size: 16px;
    bottom: calc((100% - 34px) / 2);
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
    right: 18px;
  }
  
  .alert-validate:hover:before {
    visibility: visible;
    opacity: 1;
  }
  
  @media (max-width: 992px) {
    .alert-validate::before {
      visibility: visible;
      opacity: 1;
    }
  }
  
  
  /*==================================================================
  [ Contact more ]*/
  
  .contact100-more {
    display: block;
    max-width: 960px;
  
    font-size: 20px;
    color: #fff;
    line-height: 1.4;
    text-align: center;
    padding: 40px 0 10px 0;
  }
  
  .mapmedi
  {
    margin-top: 80px;
  }
  @media(max-width: 992px) {
    .mapmedi{
      margin-top: 0px;
      width: 100%;
      height: 300px;
    }
  
  }



  .wrimagecard{	
    margin-top: 0;
      margin-bottom: 1.5rem;
      text-align: left;
      position: relative;
      background: #3e5c76;
      box-shadow: 12px 15px 20px 0px rgba(46,61,73,0.15);
      border-radius: 10px;
      transition: all 0.3s ease;
  }
  .wrimagecard-2{	
    margin-top: 0;
      margin-bottom: 1.5rem;
      text-align: left;
      position: relative;
      background: #fff;
      box-shadow: 12px 15px 20px 0px rgba(46,61,73,0.15);
      border-radius: 10px;
      transition: all 0.3s ease;
  }
  .wrimagecard .fa{
    position: relative;
      font-size: 70px;
  }
  .wrimagecard-topimage_header{
  padding: 20px;
  }
  a.wrimagecard:hover, .wrimagecard-topimage:hover {
      box-shadow: 2px 4px 8px 0px rgba(46,61,73,0.2);
  }
  .wrimagecard-topimage a {
      width: 100%;
      height: 100%;
      display: block;
  }
  .wrimagecard-topimage_title {
      padding: 20px 24px;
      height: 80px;
      padding-bottom: 0.75rem;
      position: relative;
  }
  .wrimagecard-topimage a {
      border-bottom: none;
      text-decoration: none;
      color: #525c65; 
      transition: color 0.3s ease;
  }
  
  #element-with-background-image {
    position: relative;
 }
  
 #color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.8;
 }
