
.contact-us{
    background: linear-gradient(150deg, #90c0f3, transparent 30%),
    linear-gradient(330deg, rgb(214, 210, 247), transparent 30%),
    linear-gradient(225deg, #f6eac0, #f6d1de, #dcf2db, #ccecf0);
}

.contact-us .container {
    background: url('../img/bg-contact.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin:auto;
    padding-top: 20px;
    width: 95%;
    gap: 30px;
}
.contact-us .container h2 {
   color: #070707;
   font-size: 45px;
   text-align: center;
   margin-top: 75px;
   width: 450px;
   box-shadow: 0 0 15px rgb(9, 9, 9);
   opacity: 0;
}
.anim{
    animation: slideUp 1s linear forwards;
    animation-delay: 1s;
}
@keyframes slideUp{
    0%{
        transform: translateY(100px);
        opacity: 0;
    }
    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}

.contact-us .contact-info {    
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 90%;
    padding-bottom: 20px;
    gap: 5px;
}

.contact-us form {
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 15px rgb(60, 59, 59);
    justify-items: center;
    text-align: center;
    background: 15px rgba(46, 196, 149, 0.5);
    color: rgb(4, 4, 4);
    font-size: 25px;
    border-radius: 10px;
    padding: 10px;
}

.contact-us .details {
    display: flex;
    flex-direction: column;
    background: 15px rgb(46, 119, 196, 0.5);
    box-shadow: 0 0 15px rgb(60, 59, 59);
    font-size: 25px;
    color: rgb(5, 5, 5);
    border-radius: 5px;    
    padding: 30px 20px;
}
.contact-us .contact-items{
    align-items: center;
    font-size: 16px;
    line-height:2.5em;
}
.contact-us .contact-items-wrapper{
    padding: 25px;
}

.contact-us .details h3 {
    text-align: center;
}

.contact-us .details p {
    font-size: 18px;
    margin-left: 15px;
    
}

.contact-us .details p a{
color: white;
}
.contact-us .details p a:hover{
color: rgb(160, 154, 154);
}

.contact-us .contact-items .icons{
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.contact-us input {
    margin: 5px 15px;
    height: 35px;
}

.contact-us textarea {
    height: 200px;
    margin: 5px 15px;
}

.contact-us button {
    /* margin: 10px 15px; */
    width: 100px;
    background: #0069f7;
    padding: 10px 20px;
    border: 0;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    margin: auto;
    width: 120px;
}
.contact-us button:hover {
    color: #fff;
    border: 1px solid #fe0404;
    filter: brightness(120%);
  }
.map .container{
    padding: 8px;
    border: 4px solid #0069f7;
    border-radius: 5px;
    background: #87888a;
}
.mapbox {
    position: relative;
    height: 250px;
    width: 100%;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px solid var(--jet);
    overflow: hidden;
  }
  
  .mapbox figure { height: 100%; }
  
  .mapbox iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(1);
  }
  .mapbox {
    height: 380px;
    border-radius: 18px;
  }

.container-msg{
    background: #1b1c1e;
    text-align: center;
    margin: auto;
    color: white;
}
.container-msg .inner{
    padding: 25%;    
}
.container-msg h1{
    font-size: 25px;
    color: white;
    font-weight: 600;
}
.container-msg a{
    color: #828282;
    font-style: italic;
}
.container-msg a:hover {
    color: #fff;
}
             
@media screen and (max-width:780px) {
    .contact-us .container{
        height: auto;
    }
    .contact-us .contact-info {
        display: grid;
        grid-template-columns: 1fr;
}
.contact-us form{
    width: 100%;
    margin-bottom: 5px;
}
.contact-us .details{
    width: 100%;
}
}
