
.banner-section {
    position: relative;
    z-index: 1;
    max-height: 100vh;
    direction: ltr;
}

.banner-section .bg-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center top;
    background-size: cover;
    z-index: 1;
    max-height: 100vh;
}

.banner-section .left-based-text {
    position: absolute;
    left: 50px;
    top: 50px;
    bottom: 50px;
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 24px;
    letter-spacing: 0.1em;
    font-weight: 500;
    z-index: 10;
}

.banner-section .left-based-text .base-inner {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 730px;
    height: 24px;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.owl-stage-outer{
    max-height: 100vh;
}
.banner-section .left-based-text .social-links {
    position: absolute;
    left: 0;
    top: 0;
}

.banner-section .left-based-text .social-links ul li {
    float: left;
    margin-right: 35px;
}

.banner-section .left-based-text .social-links ul li a {
    position: relative;
    display: block;
    color: #ffffff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.banner-section .left-based-text .social-links ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.banner-section .left-based-text .social-links ul li a:hover:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.banner-section .left-based-text .hours {
    position: absolute;
    right: 0;
    top: 0;
}

.banner-section .left-based-text .hours ul li {
    float: left;
    margin-left: 35px;
}


.banner-section .left-based-text .social-links ul li a:before {
    border-bottom-color: var(--thm-black);
}

.banner-carousel {
    position: relative;
    z-index: 1;
}

.banner-carousel .slide-item {
    position: relative;
    display: block;
    background-color: var(--thm-black);
    color: #ffffff;
    overflow: hidden;
}

.banner-carousel .slide-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--thm-black);
    opacity: 0.6;
    z-index: 1;
}

.banner-carousel .slide-item .right-bottom-curve {
    position: absolute;
    right: 0;
    top: 0;
    width: 655px;
    max-width: 100%;
    height: 100%;
    background: url(../images/right-curved-bg.png) right bottom no-repeat;
    z-index: 2;
    opacity: 0;
    -webkit-transform: translateX(700px);
    transform: translateX(700px);
}

.banner-carousel .active .right-bottom-curve {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transition-delay: 1300ms;
    transition-delay: 1300ms;
}

.banner-carousel .slide-item .right-top-curve {
    position: absolute;
    right: 0;
    top: 0;
    width: 164px;
    max-width: 100%;
    height: 100%;
    background: url(../images/right-white-curve.png) right top no-repeat;
    z-index: 2;
    opacity: 0;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
}

.banner-carousel .active .right-top-curve {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.banner-carousel .slide-item .round-shape-1 {
    position: absolute;
    left: -500px;
    bottom: -500px;
    width: 1000px;
    height: 1000px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 2;
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

.banner-carousel .active .round-shape-1 {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transition-delay: 1500ms;
    transition-delay: 1500ms;
}


.banner-carousel .slide-item .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.banner-carousel .active .slide-item .image-layer {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-transition: all 7000ms linear;
    transition: all 7000ms linear;
}

.banner-carousel .content-box {
    position: relative;
    display: table;
    vertical-align: middle;
    width: 100%;
    height: 950px;
    padding: 0 0px;
    z-index: 11;
}

.banner-carousel .content-box .content {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    padding: 150px 0px 50px;
}

.banner-carousel .content-box .inner {
    position: relative;
    display: block;
    max-width: 800px;
}

.banner-carousel .content-box .sub-title {
    display: block;
    font-size: 20px;
    line-height: 1.5em;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    opacity: 0;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
}

.banner-carousel .active .content-box .sub-title {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-transition-delay: 800ms;
    transition-delay: 800ms;
}

.banner-carousel .content-box h1 {
    display: block;
    font-size: 40px;
    color: #ffffff;
    font-weight: 600;
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 0;
    margin: 0;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
}

.banner-carousel .active .content-box h1 {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transition-delay: 1300ms;
    transition-delay: 1300ms;
}

.banner-carousel .content-box .text {
    position: relative;
    color: var(--thm-black);
    margin: 5px 0 0;
    opacity: 0;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
}

.banner-carousel .active .content-box .text {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.banner-carousel .content-box .link-box {
    position: relative;
    display: block;
    padding-top: 50px;
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
}

.banner-carousel .active .content-box .link-box {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.banner-carousel .slide-item .round-image {
    position: absolute;
    right: -200px;
    top: -100px;
    width: 850px;
    height: 850px;
    border-radius: 50%;
    z-index: 2;
}

.banner-carousel .slide-item .round-image .image {
    position: absolute;
    left: 0;
    top: 0;
    width: 850px;
    height: 850px;
    background-size: cover;
    background-position: left top;
    border-radius: 50%;
    -webkit-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
    z-index: 2;
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    overflow: hidden;
}

.banner-carousel .slide-item .round-image .image::before {
    content: "";
    position: absolute;
    opacity: 0.5;
    background-color: var(--thm-black);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
}

.banner-carousel .active .round-image .image {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
}

.banner-carousel .slide-item .round-image:before {
    content: "";
    position: absolute;
    left: -100px;
    bottom: 120px;
    width: 100%;
    height: 100%;
    background: var(--thm-black);
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.banner-carousel .active .round-image:before {
    opacity: 0.1;
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transition-delay: 700ms;
    transition-delay: 700ms;
}

.banner-carousel .active .round-image:after {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.banner-carousel .owl-nav {
    position: absolute;
    left: 50%;
    margin-left: -600px;
    top: 50%;
    width: 1200px;
    height: 110px;
    text-align: right;
}

.banner-carousel .owl-nav .owl-next,
.banner-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: #ffffff !important;
    padding: 0;
    margin: 0;
    line-height: 50px;
    text-align: center;
    opacity: 0.2;
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.banner-carousel .owl-nav .owl-next {
    top: auto;
    bottom: 0;
}

.banner-carousel .owl-nav .owl-next span,
.banner-carousel .owl-nav .owl-prev span {
    vertical-align: middle;
}

.banner-carousel .owl-nav .owl-next:hover,
.banner-carousel .owl-nav .owl-prev:hover {
    opacity: 1;
}

.banner-section .owl-dots {
    position: absolute;
    left: 0;
    bottom: 50px;
    width: 100%;
    text-align: center;
    display: none;
}


.banner-section .owl-theme .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0px 3px;
}

.banner-section .owl-theme .owl-dots .owl-dot span {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}
@media only screen and (max-width: 1699px) {
    .banner-carousel .slide-item .round-image {
        top: 100px;
        right: -150px;
        width: 750px;
        height: 750px;
    }

    .banner-carousel .slide-item .round-image .image {
        width: 750px;
        height: 750px;
    }

    .banner-carousel .slide-item .round-image:before {
        bottom: 70px;
        left: -70px;
    }
}
@media only screen and (max-width: 1499px) {

    .banner-carousel .slide-item .round-image {
        top: 170px;
        right: -150px;
        width: 650px;
        height: 650px;
    }

    .banner-carousel .slide-item .round-image .image {
        width: 650px;
        height: 650px;
    }

    .banner-carousel .slide-item .round-image:before {
        bottom: 70px;
        left: -70px;
    }
}

@media only screen and (max-width: 1340px) {
    .banner-carousel .slide-item .shape-1 {
        left: -200px;
    }

    .banner-carousel .slide-item .shape-2 {
        left: -150px;
    }

    .banner-carousel .slide-item .shape-3 {
        right: -250px;
    }

    .banner-carousel .slide-item .shape-4 {
        right: -50px;
    }

    .banner-carousel .slide-item .shape-5 {
        right: -100px;
    }

}

@media only screen and (max-width: 1199px) {

    .banner-carousel .slide-item .round-image {
        right: -250px;
    }

    .banner-section .left-based-text {
        display: none;
    }

    .banner-carousel .content-box h1,
    .banner-three .banner-carousel .content-box h1 {
        font-size: 40px;
    }
}
@media only screen and (max-width: 767px) {

    .banner-carousel .slide-item .shape-1,
    .banner-carousel .slide-item .shape-2,
    .banner-carousel .slide-item .shape-3,
    .banner-carousel .slide-item .shape-4,
    .banner-carousel .slide-item .shape-5 {
        display: none;
    }

    .banner-section .owl-dots {
        bottom: 20px;
    }

    .banner-carousel .content-box h1 {
        font-size: 40px;
    }

    .banner-carousel .content-box {
        height: 600px;
        text-align: center;
    }

    .banner-carousel .slide-item .left-top-line,
    .banner-carousel .slide-item .right-bottom-curve,
    .banner-carousel .slide-item .right-top-curve {
        display: none;
    }
}
@media only screen and (max-width: 599px) {
    .banner-carousel .content-box h1 {
        font-size: 36px;
    }
}
.btn-style-one {
    position: relative;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: #299dee;
    color: #FFFFFF;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.btn-style-one .btn-title {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: 0.1em;
    padding: 19px 50px 16px;
    z-index: 1;
}

.btn-style-one:hover {
    background-color: #299dee;
    color: #ffffff;
}

.btn-style-one .btn-curve {
    position: absolute;
    right: -15px;
    top: 0;
    width: 26px;
    height: 100%;
    background: var(--thm-black);
    opacity: 0.2;
    z-index: 0;
    -webkit-transform: skewX(-22deg);
    transform: skewX(-22deg);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.btn-style-one:hover .btn-curve {
    opacity: 1;
    right: 0;
    width: 100%;
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
}
.theme-btn {
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.theme-btn i {
    position: relative;
    display: inline-block;
    font-size: 14px;
    margin-left: 3px;
}
.process-one {
    counter-reset: processCount;
}

.process-one .row {
    margin-bottom: 90px;
}

@media (min-width: 992px) {
    .process-one .row:nth-child(even) {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .process-one .row:nth-child(even) .process-one__image__column {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .process-one .row:nth-child(even) .process-one__image::before,
    .process-one .row:nth-child(even) .process-one__image::after {
        left: auto;
        right: 0;
        -webkit-transform: translate(50%, -50%);
        transform: translate(50%, -50%);
    }
}

@media (min-width: 992px) {
    .process-one .row {
        margin-bottom: 120px;
    }
}

.process-one__image {
    counter-increment: processCount;
    position: relative;
    display: inline-block;
    border-radius: 8px;
    background-color: var(--thm-black);
    text-align: center;
    margin: auto auto 50px auto;
}

@media (min-width: 992px) {
    .process-one__image {
        margin-bottom: 0;
    }
}

.process-one__image::before {
    content: '';
    border-radius: 50%;
    background-color: #f4f5f8;
    position: absolute;
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media (min-width: 992px) {
    .process-one__image::before {
        width: 227px;
        height: 227px;
        top: 50%;
        left: 0%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

.process-one__image::after {
    content: counters(processCount, ".", decimal-leading-zero);
    background-color: #299dee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    position: absolute;
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 30px;
    padding-top: 5px;
    width: 60px;
    height: 60px;
    top: 20%;
    left: 20%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media (min-width: 992px) {
    .process-one__image::after {
        width: 128px;
        height: 128px;
        top: 50%;
        left: 0;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        font-size: 50px;
        padding-top: 12px;
    }
}

.process-one__image img {
    max-width: 100%;
    max-height: 500px;
    border-radius: 8px;
    position: relative;
    mix-blend-mode: luminosity;
}

.process-one .sec-title {
    margin-bottom: 0;
}

.process-one__summery {
    margin: 0;
    font-size: 16px;
    color: var(--thm-text);
    line-height: 2.125em;
    font-weight: 400;
    margin-top: 34px;
    margin-bottom: 36px;
}

.process-one__list li {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    color: var(--thm-text);
    font-weight: 400;
}

.process-one__list li>i {
    position: absolute;
    top: 8px;
    left: 0;
    color: #299dee;
    font-size: 20px;
}
.process-one__image__column{
    text-align: center;
}
.sec-title h2{
    color: #0c0c0c;
}
.process-one__content ul{
    margin: 0 20px;
    list-style: disc;
}
.breadcrumbs{
    font-size: 13px;
    display: unset !important;
    color: #FFFFFF;
}

.contact-section {
    position: relative;
    padding: 120px 0px 100px;
}

.contact-section__one-page {
    padding-bottom: 0;
}

.contact-section .map-box {
    position: relative;
    display: block;
    margin: 0 0 120px;
    border-radius: 7px;
    overflow: hidden;
}

.contact-section .form-box {
    position: relative;
    display: block;
    max-width: 770px;
    margin: 0 auto;
    text-align: center;
}

.contact-section .form-box form .row {
    margin: 0 -10px;
}

.contact-section .form-box form .form-group {
    padding: 0px 10px;
    margin-bottom: 20px;
}

.contact-section .upper-info {
    position: relative;
    margin-bottom: 90px;
}

.contact-section .info-block {
    position: relative;
    margin-bottom: 30px;
}

.contact-section .info-block .inner-box {
    position: relative;
    display: block;
    height: 100%;
    min-height: 100%;
    padding: 45px 45px 40px;
    background: #ffffff;
    border-radius: 7px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-section .info-block .inner-box:hover {
    background: var(--thm-black);
}

.contact-section .info-block .inner-box h5 {
    font-size: 24px;
    text-transform: uppercase;
    color: var(--thm-black);
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.1em;
    margin: 0;
}

.contact-section .info-block .inner-box h5 a {
    color: var(--thm-black);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.contact-section .info-block .inner-box:hover h5,
.contact-section .info-block .inner-box:hover h5 a {
    color: #ffffff;
}

.contact-section .info-block .inner-box .text {
    position: relative;
    display: block;
    color: var(--thm-text);
    padding: 30px 0px 0px;
    z-index: 1;
}

.contact-section .info-block .inner-box .text a {
    position: relative;
    color: var(--thm-text);
}

.contact-section .info-block .inner-box:hover .text,
.contact-section .info-block .inner-box:hover .text a {
    color: #999b9f;
}

.contact-section .info-block .inner-box:hover h5 a:hover,
.contact-section .info-block .inner-box:hover .text a:hover {
    text-decoration: underline;
    color: #ffffff;
}

.contact-infos {
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: var(--thm-black);
}

.contact-infos .row {
    --bs-gutter-y: 20px;
}

@media (min-width: 992px) {
    .contact-infos {
        padding-top: 110px;
        padding-bottom: 110px;
    }
}

@media (min-width: 1200px) {
    .contact-infos [class*="col-"]:not(:first-child) p {
        padding-left: 55px;
    }
}

.contact-infos p {
    margin: 0;
    font-size: 16px;
    line-height: 36px;
    color: #a4a4a4;
    font-weight: 400;
}

.contact-infos p br {
    display: none;
}

@media (min-width: 768px) {
    .contact-infos p br {
        display: inherit;
    }
}

.contact-infos p a {
    color: inherit;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-infos p a:hover {
    color: #fff;
}

/* contact two */
.contact-two .form-box {
    text-align: left;
}

.contact-two .sec-title {
    margin-bottom: 34px;
}

.contact-two__text {
    max-width: 351px;
    margin: 0;
    font-size: 16px;
    line-height: 34px;
}

.contact-two__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 50px;
}

.contact-two__social a {
    color: #686a6f;
    font-size: 20px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}


.contact-two__social a+a {
    margin-left: 24px;
}

/* contact info two */
.contact-info-two {
    padding-bottom: 80px;
}

@media (min-width: 1200px) {
    .contact-info-two {
        padding-bottom: 0;
    }
}

.contact-info-two__card {
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.05);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 37px 30px;
    text-align: center;
    border: 1px solid #f4f5f8;
    margin-bottom: 20px;
}

@media (min-width: 1200px) {
    .contact-info-two__card {
        position: relative;
        margin-bottom: -37px;
        z-index: 91;
    }
}

.contact-info-two__card svg {
    font-size: 20px;
    margin-right: 20px;
}

.contact-info-two__card a {
    color: var(--thm-black);
    font-size: 20px;
}
.map-section {
    position: relative;
    padding: 0px 0px 120px;
}

.map-section .map-container {
    position: relative;
    display: block;
    width: 100%;
    margin-top: -120px;
    border-radius: 7px;
    overflow: hidden;
    z-index: 3;
}

.map-section__one-page {
    padding-bottom: 0;
}

.map-section__one-page .map-container {
    margin-top: 0;
}

.map-canvas,
.map-iframe {
    position: relative;
    display: block;
    width: 100%;
    height: 450px;
}

.map-section__one-page .map-iframe {
    height: 575px;
}

.map-data {
    text-align: center;
    font-size: 20px;
    color: #222222;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.7em;
}

.map-data h6 {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1em;
    color: #222222;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Default Form Style */
.default-form {
    position: relative;
}

.default-form .row {
    margin: 0 -15px;
}

.default-form .form-group {
    position: relative;
    margin-bottom: 30px;
}

.default-form .field-inner {
    position: relative;
    display: block;
}

.default-form .field-inner .alt-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -15px;
    line-height: 30px;
    font-size: 20px;
    color: #9b9fa6;
    z-index: 1;
    pointer-events: none;
}

.default-form .form-group .field-label {
    position: relative;
    display: block;
    color: #0f172b;
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.default-form .form-group .e-label {
    position: relative;
}

.default-form .form-group input[type="text"],
.default-form .form-group input[type="email"],
.default-form .form-group input[type="password"],
.default-form .form-group input[type="tel"],
.default-form .form-group input[type="url"],
.default-form .form-group input[type="file"],
.default-form .form-group input[type="number"],
.default-form .form-group textarea,
.default-form .form-group select {
    position: relative;
    display: block;
    height: 70px;
    width: 100%;
    font-size: 14px;
    color: #686a6f;
    line-height: 40px;
    font-weight: 400;
    padding: 14px 30px;
    background-color: #fcfdff;
    border: 1px solid #f4f5f8;
    border-radius: 7px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.default-form .form-group ::-webkit-input-placeholder {
    opacity: 1;
    color: inherit;
}

.default-form .form-group :-ms-input-placeholder {
    opacity: 1;
    color: inherit;
}

.default-form .form-group ::-ms-input-placeholder {
    opacity: 1;
    color: inherit;
}

.default-form .form-group ::placeholder {
    opacity: 1;
    color: inherit;
}

.default-form .form-group textarea {
    height: 220px;
    resize: none;
}
