
/* contact us section */
.srilankan-contact
{
    display:flex;
    justify-content: start;

}

.dubai-contact
{
  display:flex;
 justify-content: end;
}

.address {
    font-size: 13px;
}

@media (max-width: 768px) {
    .address {
        font-size: 14px;
    }
    .srilankan-contact
    {
        display:flex;
        justify-content: center;
    
    }
    
    .dubai-contact
    {
      display:flex;
     justify-content: center;
    }
    


}
.form-control:focus
{
    box-shadow:none;
}
.label-mobile
{
    position:relative;
    margin-top:-8px;
    padding: 1px;
    margin-left:-90px;
}

*,
*:focus {
    outline: none;
}

.form-item {
    position: relative;
    margin-bottom: 15px;
}
.form-item input {
    display: block;
    width: 100%;
    height: 40px;
    background: transparent;
    border: solid 1px #ccc;
    border-top: none;
    border-left: none;
    border-right: none;
    transition: all 0.3s ease;
}
.form-item input:focus {
    border-color: blue;
}
.form-item label {
    position: absolute;
    cursor: text;
    z-index: 2;
    top: 13px;
    left: 10px;
    font-size: 12px;
    font-weight: bold;
    padding: 0 10px;
    color: #999;
    transition: all 0.3s ease;
}
.form-item input:focus + label,
.form-item input:valid + label {
    font-size: 11px;
    top: -5px;
}
.form-item input:focus + label {
    color: blue;
}

.contact-btn-submit {
    background: rgb(251, 186, 28);
    background: -moz-linear-gradient(
        0deg,
        rgba(251, 186, 28, 1) 0%,
        rgba(247, 157, 27, 1) 48%,
        rgba(249, 199, 25, 1) 100%
    );
    background: -webkit-linear-gradient(
        0deg,
        rgba(251, 186, 28, 1) 0%,
        rgba(247, 157, 27, 1) 48%,
        rgba(249, 199, 25, 1) 100%
    );
    background: linear-gradient(
        0deg,
        rgba(251, 186, 28, 1) 0%,
        rgba(247, 157, 27, 1) 48%,
        rgba(249, 199, 25, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fbba1c",endColorstr="#f9c719",GradientType=1);
    color: #ffffff;
    font-weight: 600;
    width: 120px;
    text-align: center;
    outline:none;
    border-radius:8px;
}


.contact-btn-submit:hover {
    background: rgb(251,195,0);
background: -moz-linear-gradient(0deg, rgba(251,195,0,1) 0%, rgba(251,195,0,1) 15%, rgba(251,195,0,1) 79%, rgba(251,195,0,1) 100%);
background: -webkit-linear-gradient(0deg, rgba(251,195,0,1) 0%, rgba(251,195,0,1) 15%, rgba(251,195,0,1) 79%, rgba(251,195,0,1) 100%);
background: linear-gradient(0deg, rgba(251,195,0,1) 0%, rgba(251,195,0,1) 15%, rgba(251,195,0,1) 79%, rgba(251,195,0,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fbc300",endColorstr="#fbc300",GradientType=1);
color:#ffffff;
outline:none;
}

.country-flag
{
    width: 50px;
    height: auto;
}






@media (max-width: 768px) {
    .srilankan-contact {
      display:flex;
      justify-content: center;
      align-items: center;
    }
}