/*** 
==========================
   Contact Style1 Css
==========================
***/
.contact-style1 {
    background-color: var(--thm-gray-bg);
    padding: 120px 0px 0px;
    z-index: 10;
}

.contact-style1::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 200px;
    background-color: var(--thm-white);
    z-index: 1;
}

.contact-style1__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 200px;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: top center;
}

.contact-style1__inner {
    position: relative;
    display: block;
}

.contact-style1__img1 {
    position: absolute;
    left: -200px;
    bottom: 200px;
}

.contact-style1__img1 img {
    width: auto;
}

.contact-style1__img2 {
    position: absolute;
    right: -200px;
    bottom: 200px;
}

.contact-style1__img2 img {
    width: auto;
}



.contact-style1__content {
    position: relative;
    display: block;
    padding: 0px 0px 80px;
    z-index: 3;
}

.contact-style1__content .sec-title {
    padding-bottom: 20px;
}

.contact-style1__content .sec-title .sub-title h4 {
    background-color: var(--thm-primary-color);
}

.contact-style1__content .sec-title .sub-title h4::before {
    background-color: var(--thm-primary-color);
}

.contact-style1__content .phone-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-style1__content .phone-box .icon {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 24px;
    line-height: 24px;
    margin-right: 15px;
    top: 1px;
}

.contact-style1__content .phone-box h3 {
    font-size: 30px;
    line-height: 40px;
}

.contact-style1__content .phone-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-style1__content .phone-box h3 a:hover {
    color: var(--thm-primary-color);
}

.contact-style1__content .text {
    position: relative;
    display: block;
    padding-top: 15px;
}

.contact-style1__content .text p {
    margin: 0;
}

.contact-style1__content .text p+p {
    margin-top: 3px;
}

.contact-style1__content .text p span {
    color: var(--thm-black);
}

.contact-style1__content .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 32px;
}

.contact-style1__content .btn-box .btn-one::before {
    background-color: var(--thm-primary-color);
}

.contact-style1__content .btn-box .btn-one::after {
    background-color: var(--thm-black);
}



.contact-style1__form {
    position: relative;
    display: block;
    max-width: 970px;
    width: 100%;
    margin: 0 auto;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    padding: 40px 40px 30px;
    z-index: 3;
}

.contact-style1__form .row {
    --bs-gutter-x: 10px;
}

.contact-style1__form form {
    position: relative;
    display: block;
}

.contact-style1__form form .form-group {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.contact-style1__form form .nice-select {
    position: relative;
    display: block;
    border-radius: var(--thm-border-radius);
    background-color: transparent;
    border: 1px solid var(--thm-border-color);
    border-bottom: 1px solid var(--thm-border-color);
    width: 100%;
    height: 60px;
    color: var(--thm-body-font-color);
    font-size: 16px;
    line-height: 60px;
    font-family: var(--thm-font);
    font-weight: 400;
    padding-left: 30px;
    padding-right: 30px;
    transition: all 500ms ease;
}

.contact-style1__form form .nice-select:focus {
    border-color: var(--thm-black);
}

.contact-style1__form form .nice-select::after {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #aca3a3;
    border-right: 2px solid #aca3a3;
    right: 30px;
    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: var(--thm-border-radius);
    border: 1px solid var(--thm-border-color);
    background-color: transparent;
    width: 100%;
    height: 60px;
    color: var(--thm-body-font-color);
    font-size: 16px;
    font-family: var(--thm-font);
    font-weight: 400;
    font-style: normal;
    padding-left: 30px;
    padding-right: 30px;
    transition: all 500ms ease;
}

.contact-style1__form form textarea {
    height: 100px;
    padding-top: 16px;
    padding-left: 30px;
    padding-right: 110px;
    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-black);
}

.contact-style1__form form .form-group .btn-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 10px;
    right: 10px;
    bottom: 10px;
    width: 80px;
    height: 80px;
    background-color: var(--thm-black-bg);
    border-radius: var(--thm-border-radius);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.contact-style1__form form .form-group .btn-box:hover {
    background-color: var(--thm-primary-color);
}

.contact-style1__form form .form-group .btn-box span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--thm-white);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.contact-style1__form form .form-group .btn-box:hover span {
    color: var(--thm-white);
}

.contact-style1__form form .form-group .btn-box span i {
    font-size: 15px;
    margin-bottom: 2px;
}

.contact-style1__form form input[type="text"]::-webkit-input-placeholder {
    color: var(--thm-body-font-color);
}

.contact-style1__form form input[type="text"]:-moz-placeholder {
    color: var(--thm-body-font-color);
}

.contact-style1__form form input[type="text"]::-moz-placeholder {
    color: var(--thm-body-font-color);
}

.contact-style1__form form input[type="text"]:-ms-input-placeholder {
    color: var(--thm-body-font-color);
}

.contact-style1__form form input[type="email"]::-webkit-input-placeholder {
    color: var(--thm-body-font-color);
}

.contact-style1__form form input[type="email"]:-moz-placeholder {
    color: var(--thm-body-font-color);
}

.contact-style1__form form input[type="email"]::-moz-placeholder {
    color: var(--thm-body-font-color);
}

.contact-style1__form form input[type="email"]:-ms-input-placeholder {
    color: var(--thm-body-font-color);
}

.contact-style1__form form textarea::-webkit-input-placeholder {
    color: var(--thm-body-font-color);
}

.contact-style1__form form textarea:-moz-placeholder {
    color: var(--thm-body-font-color);
}

.contact-style1__form form textarea::-moz-placeholder {
    color: var(--thm-body-font-color);
}

.contact-style1__form form textarea:-ms-input-placeholder {
    color: var(--thm-body-font-color);
}



/*** 
================================
    Contact Info Style3 Css
================================
***/
.contact-info-style3 {
    background-color: var(--thm-white);
    padding: 120px 0px 120px;
}

.single-contact-info-style3 {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    padding: 0px 160px 0px;
    padding-right: 0;
    margin-bottom: 30px;
}

.single-contact-info-style3 .icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0px;
    bottom: 0;
    width: 160px;
    font-size: 60px;
    line-height: 60px;
}

.single-contact-info-style3 .icon .icon-call-center .path1:before {
    color: var(--thm-black);
}

.single-contact-info-style3 .icon .icon-call-center .path2:before {
    color: var(--thm-primary-color);
}

.single-contact-info-style3 .icon .icon-location .path1:before {
    color: var(--thm-black);
}

.single-contact-info-style3 .icon .icon-location .path2:before {
    color: var(--thm-black);
}

.single-contact-info-style3 .icon .icon-location .path3:before {
    color: var(--thm-black);
}

.single-contact-info-style3 .icon .icon-location .path4:before {
    color: var(--thm-black);
}

.single-contact-info-style3 .icon .icon-location .path5:before {
    color: var(--thm-black);
}

.single-contact-info-style3 .icon .icon-location .path6:before {
    color: var(--thm-black);
}

.single-contact-info-style3 .icon .icon-location .path7:before {
    color: var(--thm-black);
}

.single-contact-info-style3 .icon .icon-location .path8:before {
    color: var(--thm-primary-color);
}

.single-contact-info-style3 .icon .icon-location .path9:before {
    color: var(--thm-primary-color);
}

.single-contact-info-style3 .icon .icon-time .path1:before {
    color: var(--thm-primary-color);
}

.single-contact-info-style3 .icon .icon-time .path2:before {
    color: var(--thm-primary-color);
}

.single-contact-info-style3 .icon .icon-time .path3:before {
    color: var(--thm-black);
}

.single-contact-info-style3 .icon .icon-time .path4:before {
    color: var(--thm-black);
}

.single-contact-info-style3 .icon .icon-time .path5:before {
    color: var(--thm-black);
}

.single-contact-info-style3 .icon .icon-faq .path1:before {
    color: var(--thm-primary-color);
}

.single-contact-info-style3 .icon .icon-faq .path2:before {
    color: var(--thm-black);
}

.single-contact-info-style3 .icon .icon-faq .path3:before {
    color: var(--thm-black);
}

.single-contact-info-style3 .icon .icon-faq .path4:before {
    color: var(--thm-black);
}

.single-contact-info-style3 .icon .icon-faq .path5:before {
    color: var(--thm-black);
}

.single-contact-info-style3 .icon .icon-faq .path6:before {
    color: var(--thm-black);
}

.single-contact-info-style3 .icon .icon-faq .path7:before {
    color: var(--thm-black);
}

.single-contact-info-style3 .text {
    position: absolute;
    top: 50%;
    left: 140px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 125px;
    text-align: center;
    border-radius: 20px;
    background-color: var(--thm-white);
    border: 1px solid var(--thm-border-color);
    writing-mode: vertical-rl;
    transform: translateY(-50%) rotate(180deg);
    padding: 0px 6px 0px;
    z-index: 5;
}

.single-contact-info-style3 .text h4 {
    font-size: 16px;
    line-height: 26px;
}

.single-contact-info-style3 .content-box {
    position: relative;
    display: block;
    border-left: 1px solid var(--thm-border-color);
    padding: 33px 60px 31px;
}

.single-contact-info-style3 .content-box .phone-email {
    position: relative;
    display: block;
}

.single-contact-info-style3 .content-box .phone-email p {
    margin: 0;
}

.single-contact-info-style3 .content-box .phone-email p+p {
    margin-top: 5px;
}

.single-contact-info-style3 .content-box .phone-email p span {
    color: var(--thm-black);
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font-2);
    font-weight: 700;
}

.single-contact-info-style3 .content-box .phone-email p a {
    color: var(--thm-body-font-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-contact-info-style3 .content-box .phone-email p a:hover {
    color: var(--thm-primary-color);
}

.single-contact-info-style3 .content-box .btn-box {
    position: relative;
    display: block;
    padding-top: 15px;
}

.single-contact-info-style3 .content-box .btn-box--2 {
    padding-top: 22px;
}

.single-contact-info-style3 .content-box .btn-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-contact-info-style3 .content-box .btn-box a i {
    margin-right: 6px;
}

.single-contact-info-style3 .content-box .btn-box a:hover {
    color: var(--thm-primary-color);
}

.contact-info-style3-social-links {
    position: relative;
    display: block;
    padding-top: 23px;
}

.contact-info-style3-social-links .title {
    position: relative;
    display: block;
}

.contact-info-style3-social-links .title h3 {
    font-size: 20px;
    line-height: 30px;
}

.contact-info-style3-social-links ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 32px;
}

.contact-info-style3-social-links ul li {
    position: relative;
    display: block;
}

.contact-info-style3-social-links ul li+li {
    margin-left: 10px;
}

.contact-info-style3-social-links ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background: transparent;
    border: 1px solid var(--thm-border-color);
    border-radius: var(--thm-border-radius);
    color: var(--thm-black);
    font-size: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.contact-info-style3-social-links ul li:hover a {
    color: var(--thm-white);
    border-color: var(--thm-primary-color);
    background-color: var(--thm-primary-color);
}
























/*** 
=============================================
    Main Contact Form Css
=============================================
***/
.main-contact-form {
    background-color: var(--thm-white);
    padding: 120px 0px 120px;
}

.main-contact-form .container {
    max-width: 1320px;
}

.main-contact-form__inner {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    padding: 52px 60px 37px;
}


.contact-form {
    position: relative;
    display: block;
}

.contact-form form {
    position: relative;
    display: block;
}

.contact-form form .form-group {
    position: relative;
    display: block;
    margin-bottom: 23px;
}

.contact-form form .form-group .label-box {
    position: relative;
    display: block;
    padding-bottom: 12px;
}

.contact-form form .form-group .label-box label {
    color: var(--thm-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    font-family: var(--thm-font-2);
}

.contact-form form .input-box {
    position: relative;
    display: block;
}

.contact-form form input[type="text"],
.contact-form form input[type="email"],
.contact-form form textarea {
    position: relative;
    display: block;
    border-radius: 4px;
    border: 1px solid var(--thm-border-color);
    background-color: var(--thm-white);
    width: 100%;
    height: 60px;
    color: var(--thm-body-font-color);
    font-size: 16px;
    font-family: var(--thm-font);
    font-weight: 400;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    transition: all 500ms ease;
}

.contact-form form textarea {
    height: 426px;
    padding-top: 22px;
    padding-left: 20px;
    padding-right: 20px;
    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: #97a69e;
}

.contact-form form input[type="text"]:-moz-placeholder {
    color: #97a69e;
}

.contact-form form input[type="text"]::-moz-placeholder {
    color: #97a69e;
}

.contact-form form input[type="text"]:-ms-input-placeholder {
    color: #97a69e;
}



.contact-form form input[type="email"]::-webkit-input-placeholder {
    color: #97a69e;
}

.contact-form form input[type="email"]:-moz-placeholder {
    color: #97a69e;
}

.contact-form form input[type="email"]::-moz-placeholder {
    color: #97a69e;
}

.contact-form form input[type="email"]:-ms-input-placeholder {
    color: #97a69e;
}



.contact-form form textarea::-webkit-input-placeholder {
    color: #97a69e;
}

.contact-form form textarea:-moz-placeholder {
    color: #97a69e;
}

.contact-form form textarea::-moz-placeholder {
    color: #97a69e;
}

.contact-form form textarea:-ms-input-placeholder {
    color: #97a69e;
}

.contact-form form .button-box {
    margin-top: -98px;
    margin-left: 20px;
    margin-right: 20px;
}

.contact-form form button {
    position: relative;
    display: block;
    line-height: 0;
}

.contact-form form button.btn-one {
    display: block;
    width: 100%;
    line-height: 35px;
}

.contact-form form button.btn-one::after {
    background-color: var(--thm-black-bg);
}







/*** 
=============================================
    End Css
=============================================
***/