.tab {
    overflow: hidden;
    border: none;
    border-radius: 0;
    background-color: transparent;
    display: flex;
    padding: 0 50px;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 22px 16px;
    transition: 0.8s;
    width: 100%;
    border-radius: 0;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #FFC500;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: transparent;
    border-bottom: 1px solid #FFC500;
    border-radius: 0;
    font-weight: 600;

}

/* Style the tab content */
.tabcontent {
    border: none;
    animation: fadeEffect 1s;
    min-height: 200px;
    background-color: #fff;
    /* Fading effect takes 1 second */
}



#conatct_intro_details {
    border-top: 1px solid #acacac;
    box-sizing: border-box;
    padding-top: 50px;
    margin-top: 50px
}


#contact_social {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    margin-top: 40px
}

#contact_social>ul>li>a>svg {fill: #8B8A90;}

#contact_social>ul>li>a>svg :hover { fill: #FFC500;}


/* #contact_social>.social_links>li>a:hover i{color: #000 !important;} */

/* #contact_social>.social_links>li>a{font-size: 18px} */

#conatct_intro_details>.mcontact_detail>li>a>svg {
    margin-right: 15px;
    fill: #8B8A90;
    transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    height: 65px;
    display: inline-block;
    margin-bottom: -2px;
}

#conatct_intro_details>.mcontact_detail>li>a>svg:hover {fill: #FFC500;}


/*form styling*/

.form_wrapper.contact {
    max-width: 600px;
    /* margin-left: auto; */
    /* border: 2px solid #f5f5f5; */
    /* box-shadow: 6px 11px 20px 9px #e8e3e361; */
    box-sizing: border-box;
    padding: 50px;
    background: white;
}

.form_wrapper.contact>h2 {
    font-size: 30px;
    color: #16143C;
    margin-bottom: 0;
    text-align: center
}

.form_wrapper.contact>h6 {
    text-align: center;
    margin: 15px 0 30px;
    color: #868686;
    font-size: 18px;
    font-weight: 300;
}

.form_wrapper.contact .formRow .formCol input,
.form_wrapper.contact .formRow .formCol select,
.form_wrapper.contact .formRow .formCol textarea {
    border: 1px solid #edf1f8;
    background-color: #fafafd !important;
    width: 100%;
    margin: 10px 0px;
    padding: 7px 10px;
    border-radius: 0;

}

.form_wrapper.contact .formRow .formCol {
    padding: 0
}

.form_wrapper.contact label {
    color: #686868;
    font-size: 16px
}

.form_wrapper.contact .formRow textarea {
    height: 100px
}

.form_wrapper.contact .submitRow>.formCol>input {
    width: 100%;
    display: block;
    background-color: #FFC500 !important;
    color: #fff;
    font-weight: 500 !important;
    font-size: 18px;
    border: 2px solid #FFC500 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 17px;

}

.form_wrapper.contact .submitRow>.formCol>input:hover {
    background-color: #fff !important;
    color: #000;
    cursor: pointer;
}

.form_wrapper.contact .submitRow {
    margin-top: 30px
}

.form_wrapper.contact .submitRow .ajax-loader {
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    left: auto
}

.form_wrapper.contact .mdummy>span {
    display: block;
    position: relative
}

.form_wrapper.contact .mdummy>span:after {
    content: "\f107";
    display: block !important;
    font-family: "fontawesome" !important;
    color: #686868;
    font-size: 16px;
    position: absolute;
    top: 50%;
    right: 10px;
    line-height: 10px;
    transition: 0.3s ease-in;
    transform: translateY(-50%);
}

.form_wrapper.contact .mdummy select {
    color: #686868;
    padding-right: 15px
}

.form_wrapper.contact .mdummy select {
    -moz-appearance: none;
    -webkit-appearance: none;
}

.form_wrapper.contact .mdummy select::-ms-expand {
    display: none;
}

/*  */


.location>a>svg {
    fill: #204066;
    margin: 0 12px 0 0;
    width: 45px;

    /* height:80px; */
}

.image-class {
    height: 100%;
    width: 150%;
    max-width: 500%;
    /* Set left edge of inner element to 50% of the parent element */
    margin-left: 50%;
    /* Move to the left by 50% of own width */
    transform: translateX(-50%);
}

@media only screen and (max-width: 600px) {
    .image-class {
        width: 100%;
    }
}

@media (min-width:601px) and (max-width: 1500px) {
    .image-class {
        width: 200%;
    }
}