/*===========================================================
 Common CSS
============================================================*/

body {
    font-size: 17px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #000;
    background: #fff;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}

ul {
    padding: 0;
    margin: 0;
}


li,
li:hover,
a:hover,
.btn,
.btn:hover {
    transition: all .3s ease;
}

a:hover {
    text-decoration: none !important;
}

*:active,
*:focus {
    outline: none;
    border: 0;
}

img {
    max-width: 100%;
    height: auto;
}

strong {
    font-weight: 700;
}

u {
    border-bottom: 1px solid #fff;
    line-height: 1;
    text-decoration: unset;
}

.cboth {
    overflow: hidden;
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

button {
    background-color: transparent;
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

button:active,
button:focus {
    outline: 0;
    outline: 0;
}

/*===========================================================
 Placeholder Style
============================================================*/

::-webkit-input-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-moz-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

::-moz-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-ms-input-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}



/*===========================================================
Preloader CSS
============================================================*/
.preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    z-index: 99999999;
}

#preloader-logo {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.loading-msg {
    width: 100%;
    font-size: 0.75em;
    color: #555;
    position: fixed;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, 50%);
    text-align: center;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 2px solid #f3f3f3;
    border-top: 3px solid #2489CE;
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-animation: spin 1s infinite ease;
    animation: spin 1s infinite ease;
}

@-webkit-keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#loading-msg {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 25px;
    text-align: center;
    color: #333;
    font-size: 0.8em;
}

/*===========================================================
 Scroll To Top
============================================================*/

.go-top {
    bottom: 15px;
    display: none;
    position: fixed;
    right: 15px;
    z-index: 999;
}

.go-top img {
    width: 35px;
}

.go-top span {
    /*background-color: #4285F4;*/
    color: rgba(255, 255, 255, .6);
    cursor: pointer;
    float: right;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    padding: 5px 10px;
}

.go-top span:hover {
    color: #fff;
}


/*===========================================================
 Navigation Menu Desktop
============================================================*/
.header-area {
    padding-top: 25px;
    padding-bottom: 14px;
    box-shadow: 0 2px 0 0 #e6e5e5;
    background-color: #fff;
}

.header {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.menu ul li {
    list-style: none;
    display: inline-block;
}

.menu ul li a {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.75;
    color: #555659;
    text-decoration: none;
    margin-left: 22px;
}

.menu ul li:hover > a,
.menu ul li.current-menu-item > a,
.menu ul li.current_page_item > a,
.menu ul li.current-menu-ancestor > a,
.menu ul li.current_page_ancestor > a {
    color: #557ca1;
}



.header-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding-bottom: 12px;
}

.header-top a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.14;
    color: #555659;
    margin-left: 25px;
}

.header-top a:hover {
    color: #557ca1;
}


/*===========================================================
 Navigation Menu slideout
============================================================*/
main .mobileMenuOpener {
    display: none;
}

.panel-header {
    display: none;
}

.slideout-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 256px;
    min-height: 100vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 0;
    display: none !important;
}

.slideout-menu-left {
    left: 0;
}

.slideout-menu-right {
    right: 0;
}

.slideout-panel {
    position: relative;
    z-index: 1;
    background-color: #FFF;
    min-height: 100vh;

}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
    overflow: hidden;
}

.slideout-open .slideout-menu {
    display: block !important;
}

.slideout-open .slideout-menu {
    background: #557ca1;
}

.btn-hamburger {
    cursor: pointer;
}

.menu-section-list {
    padding: 25px 10px;
}

.menu-section-list li a:hover {
    color: #bdc3c7;
}

.menu-section-list li a {
    line-height: 2;
    color: #fff;
}

.menu-section-list li {
    display: block;
}

.btn-hamburger img {
    width: 27px;
}

/*Hamburger Menu Icon*/
.hamburger .line {
    width: 40px;
    height: 5px;
    background-color: #557ca1;
    display: block;
    margin: 8px auto;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

.hamburger:hover .line {
    opacity: .8;
}

.slideout-open .line:nth-child(2) {
    opacity: 0;
}

.slideout-open .line:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
}

.menu ul li .dropdown-menu li {
    display: block;
}

.menu ul li .dropdown-menu li a {
    padding: 5px 15px;
    line-height: 1.2;
    display: block;
}

.dropdown-menu {
    margin: 0;
    border: 0;
    border-radius: 0;
    min-width: 250px;
    box-shadow: 1px 1px 1px 0px #ededed;
}

.dropdown a {
    position: relative;
}

.dropdown>a:hover::after {
    color: #d25419;
}

.dropdown>a::after {
    display: inline-block;
    margin-left: .260em;
    vertical-align: middle;
    content: "";
    background-image: url(../img/arrow-down.svg);
    width: 20px;
    height: 12px;
    background-repeat: no-repeat;
}

/*===========================================================
 Header
===========================================================*/

/*===========================================================

===========================================================*/


/*===*/
.search-icon-button {
    margin-left: 18px;
    cursor: pointer;
}

.search-form:not(body) {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    display: none;
}

.search-form:not(body).open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    z-index: 106;
    display: block;
}

.search-form input[type="search"] {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -51px;
    width: 60%;
    margin-left: 20%;
    color: rgb(255, 255, 255);
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, .8);
    border-bottom: 2px solid rgba(255, 255, 255, .5);
    border-left: 0px solid transparent;
    border-right: 0px solid transparent;
    font-size: 30px;
    font-weight: 300;
    text-align: center;
    outline: none;
    padding: 10px;
}

.search-form ::-webkit-input-placeholder {
    color: #fff;
    font-size: 30px;
    text-transform: uppercase;
}

.search-form :-ms-input-placeholder {
    color: #fff;
    font-size: 30px;
    text-transform: uppercase;
}

.search-form ::placeholder {
    color: #fff;
    font-size: 30px;
    text-transform: uppercase;
}

.search-form:not(body) .close {
    position: fixed;
    top: 15px;
    right: 15px;
    opacity: 1;
    font-size: 27px;
    color: #fff;
}

.search-form:not(body) .close:hover {
    color: #FC2121;
    cursor: pointer;
}

/*===========================================================
 Banner
===========================================================*/

.banner-area {
    margin-top: 40px;
    position: relative;
    padding-bottom: 95px;
}

.shadow-img {
    position: absolute;
    bottom: -200px;
    right: 0;
    z-index: -2;
}

.banner-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    position: relative;
    z-index: 1;
}

.banner-text {
    max-width: calc(100% - 740px);
    width: 100%;
}

.banner-text {
    margin-top: 50px;
}

.banner-text h2 {
    font-size: 60px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -1.8px;
    color: #2d2f34;
}

.banner-text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.56;
    color: #555659;
    margin-bottom: 35px;
    margin-top: 20px;
}

.banner-img {
    max-width: 740px;
    width: 100%;
}

.vc_btn3-container a {
    line-height: 50px;
    flex-grow: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    text-decoration: none;

    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.48px;
    color: #fff;
    text-decoration: none;
    width: 100%;
    text-align: center;
}

/*===========================================================

===========================================================*/



.about-us-left {
    margin-top: 60px;
}

.about-us-right {
    position: relative;
    min-height: 520px;
}

.about-box {
    position: absolute;
    right: 0;
    top: 0;
    width: 536px;
    height: 496px;
    border-radius: 32px;
    background-image: linear-gradient(to bottom, #b4cdfe 0%, rgba(180, 205, 254, 0) 100%);
    z-index: -1;
}

.about-img-1 {
    position: absolute;
    top: 40px;
    left: 60px;
}

.about-img-2 {
    position: absolute;
    right: 0;
    bottom: 0;
}

.about-img-1,
.about-img-2 {
  width: 60%;
}

.about-img-1 img,
.about-img-2 img {
  border-radius: 15px;
}

/*===========================================================

===========================================================*/

.content-area {
    background-image: url(../img/bg-2.png);
    width: 100%;
    padding: 30px 0;
    background-size: cover;
    /*background-position: center center;*/
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.content-area:before {
    position: absolute;
    content: '';
    width: 200px;
    height: 16px;
    background-color: #557ca1;
    top: 0;
    left: 50%;
    margin-left: -100px;
    border-radius: 0 0 30px 30px;
}

.content-area:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #0000002b;
}

.content-area .container {
  z-index: 1;
}

.content-text h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -1.32px;
    color: #fff;
    margin-bottom: 30px;
}

.content-text p {
    max-width: 570px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.56;
    letter-spacing: -0.54px;
    color: #fff;
    margin-bottom: 40px;
}

.news-area {
    padding: 95px 0;
}

.news-title {}

.news-title h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -1.32px;
    color: #2d2f34;

    margin-bottom: 60px;
}

.single-news {
    border-radius: 10px;
    border: solid 1px #e6e5e5;
    background-color: #fff;
    padding: 20px 16px;
}

.single-news h6 {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.14;
    letter-spacing: -0.42px;
    color: #555659;
    margin-bottom: 22px;

}

.single-news h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.6px;
    color: #2d2f34;
    margin-bottom: 15px;
}

.single-news p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: -0.48px;
    color: #555659;
    margin-bottom: 5px;
}

.single-news a {
    font-size: 14px !important;
    font-weight: 600;
    line-height: 1.14 !important;
    letter-spacing: -0.42px;
    color: #557ca1 !important;
    text-decoration: none !important;
	border: none !important;
	background: none !important;
	padding-left: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.news-bttn .bttn {
    margin-left: auto;
    margin-right: auto;
}

.news-bttn {
    text-align: center;
    margin-top: 50px;
}

.about-us-area {
    padding-bottom: 125px;
    padding-top: 100px;
}

.about-us {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.about-us-left {
    max-width: 540px;
    width: 100%;
}

.about-us-right {
    max-width: calc(100% - 540px);
    width: 100%;
}

.about-us-left h2 {
    font-size: 44px;
    font-weight: bold;
    line-height: 1.18;
    letter-spacing: -1.32px;
    color: #2d2f34;
    margin-bottom: 30px;
}

.about-us-left p {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 400;
    line-height: 1.75;
    color: #555659;

}

.vc_btn3-color-default {
    background-color: #edf2fc !important;
    color: #557ca1 !important;
    background-image: none !important;
    border: 0 !important;
}

.vc_btn3-color-default:hover {
    background-color: #557ca1 !important;
    color: #fff !important;
    background-image: none !important;
    border: 0 !important;
}

.contact-area {
    position: relative;
    min-height: 525px;
    margin-bottom: 115px;
}

.contact-area:after {
    position: absolute;
    background-color: #e6effe;
    content: '';
    width: 176px;
    height: 100%;
    top: 0;
    left: 0;
}

.contact-area:before {
    position: absolute;
    content: '';
    width: 42%;
    height: 405px;
    /*box-shadow: inset 0 2px 0 0 #fff;*/
    background-color: #fff;
    box-shadow: 5px 5px 10px #ddd;
    z-index: 2;
    border-radius: 0 5px 5px 0;
    border-top: 2px solid #1a65f6;
}

.contact-title h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -1.32px;
    color: #2d2f34;
    margin-bottom: 65px;
}

.map-area {
    width: 60%;
    text-align: right;
    margin-left: auto;
    position: absolute;
    right: 0;
    top: 30px;
}

.map-area iframe {
    width: 100%;
}

.contact {
    /*max-width: 340px;*/
    width: 100%;
}

.contact-text {
    position: relative;
    z-index: 3;
}

.contact-text address span {
    font-weight: 600;

}

.contact-text address {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #555659;
}

.contact-text {
    padding: 30px 0;
    max-width: 390px;
    width: 100%;
    padding-left: 50px;
}

.contact-single {
    margin-top: 35px;
}

.contact-single h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: #2d2f34;
}

.contact-single a {
    text-decoration: none;
    font-size: 16px;
    line-height: 1.9;
    color: #555659;
    display: block;
}

.footer-area {
    background-color: #17181a;
    padding-top: 95px;
}

.footer-left {
    max-width: 255px;
    width: 100%;
}

.footer-left p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.71;
    color: #b8b9be;
    margin: 20px 0;
}

.single-footer form {
    position: relative;
    width: 100%;

}

.single-footer h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 24px;
}

.single-footer button img {
    margin-left: 7px;
}

.single-footer button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 32px;
    flex-grow: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background-color: #557ca1;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.71;
    letter-spacing: 0.42px;
    color: #fff;
}

.single-footer input {
    width: 100%;
    line-height: 48px;
    border-radius: 6px;
    background-color: #fff;
    border: 0;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0.42px;
    color: #555659;
    padding: 0 12px;
}

.single-footer a {
    display: block;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.71;
    color: #b8b9be;
    margin-bottom: 25px;
    display: flex;
    /*align-items: center;*/

}

.single-footer a img {
    position: absolute;

}

.single-footer a span {
    padding-left: 27px;
    line-height: 19px;
}

.single-footer a address br {
    margin-bottom: 5px;
}

.single-footer a address {
    line-height: .86;
    margin: 0;
    display: inline-block;
}

.footer-last {
    float: right;
}

.footer-mdl {
    width: 276px;
    margin-left: auto;
    margin-right: auto;
}

.copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: wrap;
    padding-top: 120px;
    padding-bottom: 25px;
}

.copyright p {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.71;
    color: #81848c;
}

.copyright a {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.71;
    color: #81848c;
    text-decoration: none;
}


/*===========================================================

===========================================================*/




/*===========================================================
 Responsive Menu
===========================================================*/
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

@media (max-width: 991px) {
    .header-area {
        display: none;
    }

    .mobile-logo {
        width: 100px;
    }

    .dropdown-menu {
        padding-top: 0;
        display: block;
        box-shadow: none;
        margin-left: 20px;
    }

    #menu ul li .dropdown-menu li {
        padding-left: 10px;
    }

    #menu ul li .dropdown-menu li a {
        padding-left: 0;
        padding-right: 0;
    }

    #menu ul li a {
        display: block;
        text-decoration: none;
    }

    .dropdown-menu {
        width: 100%;
        background-color: transparent;
        background-clip: padding-box;
        border: none;
        position: unset;
        top: unset;
    }

    main .mobileMenuOpener {
        display: block;
        position: absolute;
        width: 20px;
        height: 100%;
        z-index: 10;
    }

    #menu ul li {
        display: block;
    }

    #menu ul li a {
        color: #fff;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        line-height: 2;
    }

    #menu ul li .dropdown-menu li a {
        line-height: 2;
    }

    .dropdown>a::after {
        right: 10px;
        position: absolute;
        top: 50%;
        margin-top: -1px;
    }

    /*Menu Activation*/
    .panel-header {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #fff;
        box-shadow: 0px 1px 3px #eee;
        padding: 10px 15px;
    }
}

/*===========================================================
 Responsive
============================================================*/

@media (max-width: 1399px) {
    .about-us-left {
        max-width: 440px;
    }

    .about-us-right {
        max-width: calc(100% - 450px);
    }

    .single-news h4 {
        font-size: 18px;
    }

    .banner-img {
        max-width: 600px;
        width: 100%;
    }

    .banner-text {
        max-width: calc(100% - 600px);
    }
}

@media (max-width: 1199px) {
    .banner-area {
        padding-bottom: 45px;
    }

    .banner-img {
        max-width: 530px;
        width: 100%;
    }

    .banner-text {
        max-width: calc(100% - 530px);
        margin-top: 40px;
    }

    .banner-text h2 {
        font-size: 50px;
        font-weight: bold;
        line-height: 1.2;
        letter-spacing: -1.8px;
        color: #2d2f34;
    }

    .about-us-left {
        max-width: 390px;
    }

    .about-us-right {
        max-width: calc(100% - 390px);
    }

    .about-img-1 {
        position: absolute;
        top: 40px;
        left: 20px;
    }

    .single-news h4 {
        font-size: 17px;
    }

    .about-us-area {
        padding-bottom: 85px;
        padding-top: 70px;
    }
}

@media (max-width: 991px) {
    .search-icon-button {
        margin-left: 0;
        position: absolute;
        right: 150px;
        top: 50%;
        transform: translateY(-50%);
        margin-top: -4px;
    }

    .panel-header {
        position: relative;
    }

    .banner-area {
        padding-bottom: 40px;
    }

    .banner-img {
        max-width: 100%;
        width: 100%;
    }

    .banner-text {
        max-width: 100%;
        position: absolute;

        padding: 30px 25px;
    }

    .banner-text p {
        margin-bottom: 30px;
        margin-top: 10px;
    }

    .banner-inner {
        flex-direction: column;
        position: relative;
    }

    .about-us {
        flex-direction: column;
    }

    .about-us-left {
        max-width: 100%;
        margin-top: 50px;
    }

    .about-us-right {
        max-width: 100%;
    }

    .contact-text {
        padding: 30px 55px;
        padding-left: 0;
    }

    .contact-area:before {
        width: 46%;
    }

    .footer-mdl {
        width: 255px;
    }

    .copyright {
        padding-top: 70px;
    }

    .dropdown>a::after {
        background-image: url(../img/arrow-down-white.svg);
    }

    .menu ul li a:hover {
        color: #fff;
    }
}

@media (max-width: 767px) {
    .banner-area {
        padding-bottom: 20px;
    }

    .banner-text h2 {
        font-size: 38px;
    }

    .banner-text {
        margin-top: 10px;
    }

    .about-box {
        width: 80%;
    }

    .about-img-1 {
        position: absolute;
        top: 40px;
        left: 0;
    }

    .about-us-left h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .content-text h2 {
        font-size: 37px;
        margin-bottom: 30px;
    }

    .content-text p {
        margin-bottom: 20px;
    }

    .single-news {
        margin-bottom: 20px;
    }

    .contact-area:before {
        width: 100%;
    }

    .map-area {
        width: 100%;
        position: unset;
        margin-top: 60px;
    }

    .contact-area {
        position: relative;
        min-height: auto;
        margin-bottom: 70px;
    }

    .contact-area:after {
        z-index: -1;
    }

    .news-title h2 {
        font-size: 38px;
        margin-bottom: 40px;
    }

    .news-area {
        padding: 75px 0;
    }

    .footer-mdl {
        margin: 25px 0;
        width: 100%;
    }

    .footer-left {
        max-width: 100%;
        width: 100%;
    }

    .map-area iframe {
        width: 100%;
        height: 350px;
    }

    .contact-title h2 {
        font-size: 38px;
        margin-bottom: 45px;
    }

    .footer-last {
        float: unset;
    }

    .copyright {
        padding-top: 30px;
    }

    .search-form input[type="search"] {
        position: absolute;
        top: 50%;
        left: 0;
        margin-top: -51px;
        width: 80%;
        margin-left: 10%;

    }

    @media (max-width: 575px) {
        .banner-text {
            max-width: 100%;
            position: unset;
            padding: 0;
            margin-top: 0;

        }

        .banner-text h2 {
            font-size: 28px;
            margin-top: 15px;
        }

        .banner-text p {
            margin-bottom: 20px;
            margin-top: 10px;
            font-size: 17px;
        }

        .about-box {
            width: 95%;
            border-radius: 17px;
        }

        .about-us-area {
            padding-bottom: 75px;
            padding-top: 60px;
        }

        .about-us-left h2 {
            margin-bottom: 20px;
        }

        .news-title h2 {
            font-size: 30px;
            margin-bottom: 30px;
        }

        .news-area {
            padding: 65px 0;
        }

        .news-bttn {
            margin-top: 30px;
        }

        .map-area {
            margin-top: 40px;
        }
    }
