
.contact-us{
    width: 100%;
    position: static;
    padding: 40px 100px;
    background-image: url(../media/cont-background_fixed.png);
    background-size: cover;
}

.contact-us .title{
    font-size: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-us .title h2{
    font-weight: 700;
    color: #fff;
}

.form{
    grid-area: form;
}

.info{
    grid-area: info;
}

.map{
    grid-area: map;
}

.contact{
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 35px rgba(0, 0, 0, 0.15);
}

.box{
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 5fr 4fr;
    grid-template-areas: 
    "form info"
    "form map";
    grid-gap: 20px;
    margin-top: 20px;
}

.contact h3{
    color: #fff;
    font-weight: 500;
    font-size: 1.4em;
    margin-bottom: 10px;
}

/* form */

.form-box{
    position: relative;
    width: 100%;
}

.form-box .row50{
    display: flex;
    gap: 20px;
}

.input-box{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    width: 50%;
}

.form-box .row100 .input-box{
    width: 100%;
}

.input-box span{
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 500;
    color: #fff;
}

.input-box input{
    padding: 10px;
    font-size: 1.1em;
    outline: none;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
}

.input-box textarea{
    padding: 10px;
    font-size: 1.2em;
    outline: none;
    border: 1px solid #fff;
    background: transparent;
    resize: none;
    min-height: 220px;
    margin-bottom: 10px;
    color: #fff;
}

.row100 .btn-2{
    background: rgb(0,172,238);
    width: 180px;
    height: 40px;
    line-height: 42px;
    padding: 0;
    border: none;
}

.row100 .btn-2 span{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 18px;
}
.row100 .btn-2:before, .btn-2:after{
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    background: rgba(2,126,251,1);
    transition: all 0.3s ease;
}
.row100 .btn-2:before {
    height: 0%;
    width: 2px;
}
.row100 .btn-2:after {
    width: 0%;
    height: 2px;
}
.row100 .btn-2:hover{
    background: transparent;
    box-shadow: none;
}
.row100 .btn-2:hover:before {
    height: 100%;
  }
.row100 .btn-2:hover:after {
    width: 100%;
}
  .row100 .btn-2 span:hover{
     color: rgba(2,126,251,1);
  }
  .row100 .btn-2 span:before,
  .row100 .btn-2 span:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
     background: rgba(2,126,251,1);
    transition: all 0.3s ease;
  }
  .row100 .btn-2 span:before {
    width: 2px;
    height: 0%;
  }
  .row100 .btn-2 span:after {
    width: 0%;
    height: 2px;
  }
  .row100 .btn-2 span:hover:before {
    height: 100%;
  }
  .row100 .btn-2 span:hover:after {
    width: 100%;
  }



/* info  18:14 */

.info{
    background: #223C50;
}

.info h3{
    color: #fff;
}

.info .info-box div{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.info .info-box div span{
    min-width: 40px;
    height: 40px;
    color: #fff;
    background: #3E9DF5;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    border-radius: 50%;
    margin-right: 15px;
}

.info .info-box div p{
    color: #fff;
    font-size: 1.1em;
}

.info .info-box div a{
    color: #fff;
    text-decoration: none;
}

.info .info-box .sci{
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.info .info-box .sci a{
    font-size: 2em;
    color: #ccc;
}

.info .info-box .sci a:hover{
    color: #fff;
}

.map{
    padding: 0;
}

.map iframe{
    width: 100%;
    height: 100%;
}

/* reesponsive */

@media (max-width: 990px){

    .contact-us{
        padding: 20px;
        background-position: center;
        background-size: cover;
    }

    .box{
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas: "form" "info" "map";
    }

    .form-box .row50{
        display: flex;
        gap: 0;
        flex-direction: column;
    }

    .input-box{
        width: 100%;
    }

    .contact{
        padding: 30px;
    }

    .map{
        min-height: 300px;
        padding: 0;
    }
}