/*** 
==========================
   Contact Style1 Css
==========================
***/
.contact-style1 {
    background-color: var(--thm-white);
    padding: 0px 0px 0px;
}

.contact-style1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 335px;
    background-color: var(--thm-gray-bg);
    z-index: -1;
}

.contact-style1 .auto-container {
    max-width: 1670px;
}

.contact-style1__inner {
    position: relative;
    display: block;
    background-color: var(--thm-black-bg);
}

.contact-style1__bg {
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0px;
    right: 0;
    opacity: 0.15;
    width: calc((100% + 0px) / 2);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
}

.contact-style1__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(28, 29, 25);
    background: linear-gradient(0deg, rgba(28, 29, 25, 1) 0%, rgba(28, 29, 25, 0.7539390756302521) 25%, rgba(28, 29, 25, 0) 50%, rgba(28, 29, 25, 0.7987570028011204) 75%, rgba(28, 29, 25, 1) 100%);
}

.contact-style1__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(28, 29, 25);
    background: linear-gradient(90deg, rgba(28, 29, 25, 1) 0%, rgba(28, 29, 25, 0.7539390756302521) 25%, rgba(28, 29, 25, 0) 50%, rgba(28, 29, 25, 0.6026785714285714) 93%, rgba(28, 29, 25, 0.700717787114846) 100%);
}

.contact-style1__inner .big-title {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-lr;
    color: #262723;
    font-size: 150px;
    line-height: 1.0em;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    padding-right: 31px;
}



.contact-style1 .row {
    --bs-gutter-x: 0px;
}

.contact-style1__form {
    position: relative;
    display: block;
    padding: 140px 0px 140px;
    padding-right: 115px;
    z-index: 3;
}

.contact-style1__form::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    background-color: #3e3f3b;
    z-index: 2;
}

.contact-style1__form .row {
    --bs-gutter-x: 10px;
}

.contact-style1__form .sec-title {
    padding-bottom: 13px;
}

.contact-style1__form .sec-title h2 {
    color: var(--thm-white);
}

.contact-style1__form .text-box {
    position: relative;
    display: block;
}

.contact-style1__form .text-box p {
    color: #a4a5a0;
}

.contact-style1__form form {
    position: relative;
    display: block;
    padding-top: 53px;
}

.contact-style1__form form .form-group {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.contact-style1__form form .form-group .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    color: var(--thm-primary-color);
    font-size: 20px;
    line-height: 20px;
}

.contact-style1__form form .form-group .icon1 {
    top: 25px;
}

.contact-style1__form form .nice-select {
    position: relative;
    display: block;
    border-radius: 0;
    background-color: #292a26;
    border: 1px solid #3e3f3b;
    width: 100%;
    height: 60px;
    color: #5d5e59;
    font-size: 17px;
    line-height: 60px;
    font-family: var(--thm-font);
    font-weight: 400;
    padding-left: 25px;
    padding-right: 25px;
    transition: all 500ms ease;
}

.contact-style1__form form .nice-select:focus {
    border-color: var(--thm-primary-color);
}

.contact-style1__form form .nice-select::after {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #aeb0a9;
    border-right: 2px solid #aeb0a9;
    right: 25px;
    margin-top: 0px;
    top: 25px;
    z-index: 10;
}

.contact-style1__form form .nice-select .list {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 0px 0 0px;
    margin-top: 10px;
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: scale(1.0) translateY(30px);
    -ms-transform: scale(1.0) translateY(30px);
    transform: scale(1.0) translateY(30px);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    height: 0;
    width: 100%;
    right: 0 !important;
    left: auto !important;
    z-index: 100;
}

.contact-style1__form form .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    height: auto;
}

.contact-style1__form form .nice-select .option {
    color: var(--thm-black);
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
    line-height: 40px;
    min-height: 40px;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.contact-style1__form form .nice-select .option+.option {
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.contact-style1__form form .nice-select .option:hover,
.contact-style1__form form .nice-select .option.focus,
.contact-style1__form form .nice-select .option.selected.focus {
    color: var(--thm-white) !important;
    background-color: var(--thm-primary-color);
}

.contact-style1__form form .input-box {
    position: relative;
    display: block;
}

.contact-style1__form form input[type="text"],
.contact-style1__form form input[type="email"],
.contact-style1__form form textarea {
    position: relative;
    display: block;
    border-radius: 0;
    border: 1px solid #3e3f3b;
    background-color: #292a26;
    width: 100%;
    height: 60px;
    color: #5d5e59;
    font-size: 17px;
    font-family: var(--thm-font);
    font-weight: 400;
    font-style: normal;
    padding-left: 25px;
    padding-right: 60px;
    transition: all 500ms ease;
}

.contact-style1__form form textarea {
    height: 183px;
    padding-top: 13px;
    padding-left: 25px;
    padding-right: 60px;
    padding-bottom: 10px;
}

.contact-style1__form form input[type="text"]:focus,
.contact-style1__form form input[type="email"]:focus,
.contact-style1__form form textarea:focus {
    border-color: var(--thm-primary-color);
}

.contact-style1__form form input[type="text"]::-webkit-input-placeholder {
    color: #5d5e59;
}

.contact-style1__form form input[type="text"]:-moz-placeholder {
    color: #5d5e59;
}

.contact-style1__form form input[type="text"]::-moz-placeholder {
    color: #5d5e59;
}

.contact-style1__form form input[type="text"]:-ms-input-placeholder {
    color: #5d5e59;
}

.contact-style1__form form input[type="email"]::-webkit-input-placeholder {
    color: #5d5e59;
}

.contact-style1__form form input[type="email"]:-moz-placeholder {
    color: #5d5e59;
}

.contact-style1__form form input[type="email"]::-moz-placeholder {
    color: #5d5e59;
}

.contact-style1__form form input[type="email"]:-ms-input-placeholder {
    color: #5d5e59;
}

.contact-style1__form form textarea::-webkit-input-placeholder {
    color: #5d5e59;
}

.contact-style1__form form textarea:-moz-placeholder {
    color: #5d5e59;
}

.contact-style1__form form textarea::-moz-placeholder {
    color: #5d5e59;
}

.contact-style1__form form textarea:-ms-input-placeholder {
    color: #5d5e59;
}

.contact-style1__form form .btn-box {
    position: relative;
    display: block;
    width: 100%;
}

.contact-style1__form form .btn-one::before {
    background: var(--thm-primary-color);
}

.contact-style1__form form .btn-one::after {
    background: transparent;
    border: 1px solid #3e3f3b;
}




.contact-style1__right {
    position: relative;
    display: block;
    padding: 140px 114px 140px;
    padding-right: 0;
}

.contact-style1__right .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.contact-style1__right .img-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: var(--thm-black-bg);
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.contact-style1__right .img-box:hover::before {
    opacity: 0.7;
}

.contact-style1__right .img-box img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.contact-style1__right .img-box:hover img {
    transform: scale(1.05) rotate(0deg);
}



.contact-style1__content {
    position: relative;
    display: block;
    margin-top: 20px;
}

.contact-style1__content .accordion-box-style1 {}

.contact-style1__content .accordion-box-style1 .accordion {
    margin-bottom: 20px;
}

.contact-style1__content .accordion-box-style1 .accordion .accord-btn {
    background-color: #292a26 !important;
    border: 1px solid #3e3f3b;
    padding-top: 15px;
    padding-left: 25px;
    padding-bottom: 15px;
    padding-right: 25px;
    border-radius: 0px;
}

.contact-style1__content .accordion-box-style1 .accordion .accord-btn:before {
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: #292a26;
    border-radius: 0px;
}

.contact-style1__content .accordion-box-style1 .accordion .accord-btn::after {
    color: #5d5e59;
    content: "\e907";
    border-color: transparent;
    background-color: transparent;
    border-radius: 0;
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    width: 60px;
    height: 60px;
    right: 0;
    left: auto;
}

.contact-style1__content .accordion-box-style1 .accordion .accord-btn.active::after {
    color: var(--thm-white);
    content: "\e93a";
    border-color: transparent;
    background-color: transparent;
    border-radius: 0;
}

.contact-style1__content .accordion-box-style1 .accordion .accord-btn h4 {
    color: #5d5e59;
    font-size: 18px;
    line-height: 28px;
    text-transform: uppercase;
}

.contact-style1__content .accordion-box-style1 .accordion .accord-btn.active h4 {
    color: var(--thm-white);
}

.contact-style1__content .accordion-box-style1 .accordion .accord-content {
    position: relative;
    background-color: #292a26;
    border: 1px solid #3e3f3b;
    border-top: 0px solid transparent;
    padding-top: 34px;
    padding-left: 25px;
    padding-bottom: 32px;
    padding-right: 25px;
    display: none;
    border-radius: 0;
    z-index: 2;
}

.contact-style1__content .accordion-box-style1 .accordion .accord-content .list-item {
    position: relative;
    display: block;
}

.contact-style1__content .accordion-box-style1 .accordion .accord-content .list-item li+li {
    margin-top: 17px;
}

.contact-style1__content .accordion-box-style1 .accordion .accord-content .single-list-item {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.contact-style1__content .accordion-box-style1 .accordion .accord-content .single-list-item .icon-box {
    position: relative;
    display: block;
    width: 50px;
    color: var(--thm-primary-color);
    font-size: 25px;
    line-height: 20px;
    top: 5px;
}

.contact-style1__content .accordion-box-style1 .accordion .accord-content .single-list-item .title-box {
    position: relative;
    display: block;
    flex: 1;
}

.contact-style1__content .accordion-box-style1 .accordion .accord-content .single-list-item .title-box h4 {
    color: var(--thm-white);
    font-size: 16px;
    line-height: 26px;
    text-transform: uppercase;
}

.contact-style1__content .accordion-box-style1 .accordion .accord-content .single-list-item .title-box p {
    color: #a4a5a0;
}

.contact-style1__content .accordion-box-style1 .accordion .accord-content .single-list-item .title-box p a {
    color: #a4a5a0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-style1__content .accordion-box-style1 .accordion .accord-content .single-list-item .title-box p a:hover {
    color: var(--thm-white);
}



/*** 
================================
    Contact Style1 Style2 Css
================================
***/
.contact-style1--style2 {
    background-color: var(--thm-white);
}

.contact-style1--style2::before {
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background-color: var(--thm-gray-bg);
}

.contact-style1--style2 .contact-style1__bg {
    mix-blend-mode: luminosity;
}

.contact-style1--style2 .contact-style1__bg::before {
    background: rgb(42, 35, 23);
    background: linear-gradient(90deg, rgba(42, 35, 23, 1) 12%, rgba(42, 35, 23, 0.7987570028011204) 30%, rgba(42, 35, 23, 0.10127801120448177) 50%, rgba(42, 35, 23, 0.5046393557422969) 66%, rgba(42, 35, 23, 0.804359243697479) 82%);
}

.contact-style1--style2 .contact-style1__bg::after {
    background: rgb(42, 35, 23);
    background: linear-gradient(0deg, rgba(42, 35, 23, 1) 12%, rgba(42, 35, 23, 0.7987570028011204) 30%, rgba(42, 35, 23, 0.10127801120448177) 50%, rgba(42, 35, 23, 0.5046393557422969) 66%, rgba(42, 35, 23, 0.804359243697479) 82%);
}




.contact-style1__inner--style2 .big-title {
    color: #362f24;
}

.contact-style1__form--style2 .text-box p {
    color: #bfbdb9;
}

.contact-style1__form--style2::before {
    background-color: #484035;
}

.contact-style1__form--style2 form .nice-select {
    background-color: #362f24;
    border: 1px solid #484035;
    color: #bfbdb9;
}

.contact-style1__form--style2 form .nice-select::after {
    border-bottom: 2px solid #bfbdb9;
    border-right: 2px solid #bfbdb9;
}

.contact-style1__form--style2 form input[type="text"],
.contact-style1__form--style2 form input[type="email"],
.contact-style1__form--style2 form textarea {
    background-color: #362f24;
    border: 1px solid #484035;
    color: #575045;
}

.contact-style1__form--style2 form input[type="text"]::-webkit-input-placeholder {
    color: #bfbdb9;
}

.contact-style1__form--style2 form input[type="text"]:-moz-placeholder {
    color: #bfbdb9;
}

.contact-style1__form--style2 form input[type="text"]::-moz-placeholder {
    color: #bfbdb9;
}

.contact-style1__form--style2 form input[type="text"]:-ms-input-placeholder {
    color: #bfbdb9;
}

.contact-style1__form--style2 form input[type="email"]::-webkit-input-placeholder {
    color: #bfbdb9;
}

.contact-style1__form--style2 form input[type="email"]:-moz-placeholder {
    color: #bfbdb9;
}

.contact-style1__form--style2 form input[type="email"]::-moz-placeholder {
    color: #bfbdb9;
}

.contact-style1__form--style2 form input[type="email"]:-ms-input-placeholder {
    color: #bfbdb9;
}

.contact-style1__form--style2 form textarea::-webkit-input-placeholder {
    color: #bfbdb9;
}

.contact-style1__form--style2 form textarea:-moz-placeholder {
    color: #bfbdb9;
}

.contact-style1__form--style2 form textarea::-moz-placeholder {
    color: #bfbdb9;
}

.contact-style1__form--style2 form textarea:-ms-input-placeholder {
    color: #bfbdb9;
}

.contact-style1__form--style2 form .btn-one::after {
    border: 1px solid #484035;
}

.contact-style1__form--style2 form .btn-one:hover {
    color: var(--thm-black);
}



.contact-style1__content--style2 .accordion-box-style1 .accordion {
    margin-bottom: 20px;
}

.contact-style1__content--style2 .accordion-box-style1 .accordion .accord-btn {
    background-color: #362f24 !important;
    border: 1px solid #484035;
}

.contact-style1__content--style2 .accordion-box-style1 .accordion .accord-btn:before {
    background-color: #362f24;
}

.contact-style1__content--style2 .accordion-box-style1 .accordion .accord-btn h4 {
    color: #575045;
}

.contact-style1__content--style2 .accordion-box-style1 .accordion .accord-btn::after {
    color: #575045;
}

.contact-style1__content--style2 .accordion-box-style1 .accordion .accord-content {
    background-color: #362f24;
    border: 1px solid #484035;
    border-top: none;
}

.contact-style1__content--style2 .accordion-box-style1 .accordion .accord-content .single-list-item .title-box p {
    color: #bfbdb9;
}

.contact-style1__content--style2 .accordion-box-style1 .accordion .accord-content .single-list-item .title-box p a {
    color: #bfbdb9;
}



/*** 
=============================================
    Contact Style2 Css
=============================================
***/
.contact-style2 {
    background-color: var(--thm-white);
    padding: 140px 0px 110px;
}

.single-contact-style2 {
    position: relative;
    display: block;
    background-color: var(--thm-gray-bg);
    padding: 0px 40px 31px;
    margin-bottom: 30px;
}

.single-contact-style2 .big-icon {
    position: absolute;
    right: 20px;
    bottom: 0;
    color: #e6e6e6;
    font-size: 100px;
    line-height: 0;
}

.single-contact-style2 .big-icon--style2 {
    right: 12px;
    bottom: -8px;
}

.single-contact-style2 .top-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    background-color: var(--thm-white);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    padding: 0px 0px 16px;
    margin-left: -40px;
    top: -5px;
    padding-right: 80px;
}

.single-contact-style2 .top-box .icon {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 25px;
    line-height: 0;
    margin-right: 13px;
}

.single-contact-style2 .top-box h3 {
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
}


.single-contact-style2 .text {
    position: relative;
    display: block;
    padding-top: 29px;
}

.single-contact-style2 .text p {
    margin: 0;
}

.single-contact-style2 .text p span {
    color: var(--thm-black);
}

.single-contact-style2 .text p a {
    color: var(--thm-body-font-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-contact-style2 .text p a:hover {
    color: var(--thm-primary-color);
}

.single-contact-style2 .btn-box {
    position: relative;
    display: block;
    padding-top: 17px;
}

.single-contact-style2 .btn-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-contact-style2 .btn-box a i {
    font-size: 20px;
    line-height: 0;
    margin-right: 10px;
}

.single-contact-style2 .btn-box a:hover {
    color: var(--thm-primary-color);
}



/*** 
=============================================
    Main Contact Form Css
=============================================
***/
.main-contact-form {
    background-color: transparent;
    z-index: 11;
}

.main-contact-form .auto-container {
    max-width: 1670px;
}

.main-contact-form__inner {
    position: relative;
    display: block;
    background-color: var(--thm-black-bg);
    padding: 140px 0px 140px;
    margin-bottom: -140px;
    z-index: 111;
}

.main-contact-form .sec-title h2 {
    color: var(--thm-white);
}

.main-contact-form .sec-title .text p {
    color: #aeb0b4;
}

.main-contact-form__inner-box {
    position: relative;
    display: block;
}

.main-contact-form__inner-box .big-title {
    position: absolute;
    top: 10px;
    right: 0;
    color: #1f2022;
    font-size: 150.416px;
    line-height: 1.0em;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    z-index: 1;
}

.main-contact-form__inner-box .big-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: -5px;
    right: 0;
    background: rgb(25, 26, 28);
    background: linear-gradient(0deg, rgba(25, 26, 28, 1) 0%, rgba(25, 26, 28, 0.5046393557422969) 30%, rgba(25, 26, 28, 0) 71%);
    z-index: 2;
}



.contact-form {
    position: relative;
    display: block;
}

.contact-form form {
    position: relative;
    display: block;
}

.contact-form form .form-group {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.contact-form form .input-box {
    position: relative;
    display: block;
}

.contact-form form .input-box .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    color: var(--thm-primary-color);
    font-size: 20px;
    line-height: 0px;
    z-index: 1;
}

.contact-form form .input-box .icon1 {
    top: 30px;
}

.contact-form form input[type="text"],
.contact-form form input[type="email"],
.contact-form form textarea {
    position: relative;
    display: block;
    border-radius: 0px;
    border: 1px solid #303235;
    background-color: #212325;
    width: 100%;
    height: 60px;
    color: #45474c;
    font-size: 17px;
    font-family: var(--thm-font);
    font-weight: 400;
    font-style: normal;
    padding-left: 25px;
    padding-right: 35px;
    transition: all 500ms ease;
}

.contact-form form textarea {
    height: 285px;
    padding-top: 14px;
    padding-left: 25px;
    padding-right: 35px;
    padding-bottom: 10px;
}

.contact-form form input[type="text"]:focus {
    border-color: var(--thm-primary-color);
}

.contact-form form input[type="email"]:focus {
    border-color: var(--thm-primary-color);
}

.contact-form form textarea:focus {
    border-color: var(--thm-primary-color);
}

.contact-form form input[type="text"]::-webkit-input-placeholder {
    color: #45474c;
}

.contact-form form input[type="text"]:-moz-placeholder {
    color: #45474c;
}

.contact-form form input[type="text"]::-moz-placeholder {
    color: #45474c;
}

.contact-form form input[type="text"]:-ms-input-placeholder {
    color: #45474c;
}



.contact-form form input[type="email"]::-webkit-input-placeholder {
    color: #45474c;
}

.contact-form form input[type="email"]:-moz-placeholder {
    color: #45474c;
}

.contact-form form input[type="email"]::-moz-placeholder {
    color: #45474c;
}

.contact-form form input[type="email"]:-ms-input-placeholder {
    color: #45474c;
}



.contact-form form textarea::-webkit-input-placeholder {
    color: #45474c;
}

.contact-form form textarea:-moz-placeholder {
    color: #45474c;
}

.contact-form form textarea::-moz-placeholder {
    color: #45474c;
}

.contact-form form textarea:-ms-input-placeholder {
    color: #45474c;
}

.contact-form form .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    text-align: center;
    margin: 20px 0px 0px;
}

.contact-form form button.btn-one::before {
    background-color: #212325;
}



/*** 
=============================================
    Map Style1 Css
=============================================
***/
.map-style1 {
    position: relative;
    display: block;
}



.map-style1__content {
    position: absolute;
    top: 190px;
    left: 0;
    right: 0;
    max-width: 240px;
    width: 100%;
    margin: 0 auto 0;
    background-color: var(--thm-white);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.12);
    padding: 32px 10px 10px;
    z-index: 10;
}

.map-style1__content::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    right: 0;
    width: 15px;
    height: 10px;
    margin: 0 auto;
    background-color: var(--thm-white);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.map-style1__content .title {
    position: relative;
    display: block;
}

.map-style1__content .title h3 {
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 11px;
}

.map-style1__content .title p {
    color: #545956;
}

.map-style1__content .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 12px;
}

.map-style1__content .btn-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.map-style1__content .btn-box a i {
    font-size: 20px;
    margin-right: 9px;
}

.map-style1__content .btn-box a:hover {
    color: var(--thm-primary-color);
}

.map-style1__content .phone-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--thm-black-bg);
    padding: 10px 30px 10px;
    margin-top: 16px;
}

.map-style1__content .phone-box .icon {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 20px;
    line-height: 0;
}

.map-style1__content .phone-box .number {
    position: relative;
    display: block;
    margin-left: 10px;
    flex: 1;
}

.map-style1__content .phone-box .number h3 {
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
}

.map-style1__content .phone-box .number h3 a {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.map-style1__content .phone-box .number h3 a:hover {
    color: var(--thm-primary-color);
}

.map-style1 .google-map {
    position: relative;
    display: block;
    background-color: #646464;
    z-index: 1;
}

.contact-page__map-box {
    position: relative;
    display: block;
    width: 100%;
    height: 750px;
    mix-blend-mode: luminosity;
}



/*** 
=============================================
    End Css
=============================================
***/