﻿/*Sticky button css*/
.stickybtn {
    position: relative;
}

.stickybtn a {
    background-color: #FBB001;
    border-radius: 45px 0px 0px 45px;
    opacity: 1;
    position: fixed;
    top: 18%;
    right: 0;
    width: 141px;
    height: 48px;
    line-height: 48px;
    white-space: nowrap;
    z-index: 1;
}
/*Contact form css*/
.contactAreawrapper {
    padding: 50px 0 50px;
    background-color: #F9F9F9;
}

.contactAreawrapper .card {
    height: 720px;
    width: auto;
    border-radius: 50px;
    border: none;
    box-shadow: 0px 20px 30px rgba(140,150,160,0.2);
}

.contactAreawrapper .card-body {
    padding: 43px;
}
/*Left hand side css*/
.leftSide .lblGETinTouch {
    margin-bottom: 20px;
    color: #0B3E6B;
    font-size: 50px;
    font-weight: 400;
    font-family: 'Josefin Sans', sans-serif;
}

.leftSide .contactForm .form-group {
    margin-bottom: 25px;
}

.leftSide .contactForm .form-control {
    border-radius: 20px;
}
.leftSide .contactForm .form-control:focus {
    border-color: #ced4da;
    box-shadow: none;
}
.leftSide .contactForm .contact-btn {
    background: #0B3E6B;
    border: 1px solid #0B3E6B !important;
    border-radius: 30px;
    color: #FFFFFF;
    margin: 30px 0;
    font-size: 14px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.leftSide .contactForm .contact-btn:hover {
    background: #0B3E6B;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.leftSide .contactForm .contact-btn:active {
    background: #0B3E6B;
}

.leftSide .contactForm .contact-btn .rightArrow {
    height: 20px;
    width: 20px;
    margin-left: 20px;
}

.leftSide .addressInfo .lblUAE {
    font-weight: 600;
}

.leftSide .addressInfo p {
    margin-bottom: 10px;
}

.leftSide .socialIcon {
    height: 20px;
    width: 20px;
    margin-right: 10px;
    cursor: pointer;
}
/*Right hand side css*/
.rightSide {
    text-align: right;
}

.rightSide .contactPic {
    height: 566px;
    width: 512px;
}
@media(device-width: 1024px) {
    .contactAreawrapper .card {
        height: 790px;
    }
}
@media(max-width: 768px) {
    .contactAreawrapper {
        padding: 7% 0 7%;
    }
    .contactAreawrapper .card {
        height: auto;
    }
    .rightSide {
        text-align: center;
        margin-bottom: 30px;
    }
    .rightSide .contactPic {
        height: 200px;
        width: auto;
    }
    .leftSide .lblGETinTouch {
        white-space: nowrap;
        font-size: 30px;
        text-align: center;
    }
}