/*-----------------------------------------------------------------------------------

[Table of contents]

1. Font
2. Css Variable for colors
3. Common CSS
4. Preloader CSS
5. Header - Main Navigation ( section )
6. Hero Slider ( section )
7. Trusted Logo Slider ( section )
8. Features ( section )
9. About us ( section )
10. Modern UI ( section )
11. How it works ( section )
12. Testimonials ( section )
13. Pricing ( section )
14. Faq ( section )
15. Interface ( section )
16. Download app ( section )
17. Latest story ( section )
18. Newsletter ( section )
19. Footer ( section )
20. Animation CSS ( section )


-----------------------------------------------------------------------------------*/

/* --------Font--------------- */
/* poppins-300 - latin */
@import url('https://fonts.googleapis.com/css2?family=Brygada+1918:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* -----------Css-variable------ */


/* ------Common-Css------------- */

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    line-height: 30px;
    color: #4B4747;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
}

.page_wrapper {
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--body-text-purple);
}

a:hover {
    text-decoration: none;
    color: var(--body-text-purple);
}

ul,
li {
    padding: 0;
    list-style-type: none;
    margin: 0;
}

button:focus,
.btn.focus,
.btn:focus {
    outline: none;
    box-shadow: none;
}

@media screen and (min-width:1500px) {
    .container {
        max-width: 1410px;
    }
}

.section_title {
    /* text-align: center; */
    margin: 0 0 30px;
}

/* section heading h2 */
.section_title h2 {
    line-height: 50px;
    color: #373737;
    font-family: 'Kanit';
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 16px;
}

.section_title p {
    color: #000;
    text-align: center;
    font-family: 'Poppins';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 110px;
}

.row_am {
    padding: 110px 0 50px;
}

/* purple button */
.puprple_btn {
    background-color: var(--purple);
    color: var(--text-white);
    border-radius: 50px;
    padding: 10px 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 500;
}

.puprple_btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: var(--bg-white);
    border-radius: 50px;
    transition: .6s all;
    z-index: -1;
}

.puprple_btn:hover::before {
    width: 100%;
}

.puprple_btn:hover {
    color: var(--purple);
}

/* white button */
.white_btn {
    padding: 10px 45px;
    border: 1px solid var(--purple);
    color: var(--purple);
    border-radius: 50px;
    background-color: var(--bg-white);
    font-weight: 700;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-weight: 500;
}

.white_btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: var(--bg-purple);
    border-radius: 50px;
    transition: .6s all;
    z-index: -1;
}

.white_btn:hover::before {
    width: 110%;
}

.white_btn:hover {
    color: var(--text-white);
}

.highlited_block .white_btn:hover {
    border-color: var(--bg-white);
}

/* slider controls */
.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 20px;
}

.owl-carousel .owl-dots button {
    display: block;
    width: 15px;
    height: 15px;
    background-color: rgba(217, 217, 217, 0.5);
    border-radius: 15px;
    margin: 0 5px;
}

.owl-carousel .owl-dots button.active {
    background-color: #FFFFFF;
}

/* -------------Preloader-Css-Start-------------- */

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 999999;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--bg-purple);
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--body-text-purple);
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--dark-purple);
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

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

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

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

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}




/* -----------Header-Css-Start------------------- */
/* header wraper */
header {
    position: absolute;
    width: 100%;
    z-index: 99999;
    transition: .4s all;
}

header.fix_style {
    position: fixed;
    top: 0;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.5);
    padding: 15px 0;
    transition: none;
    opacity: 0;
    pointer-events: none;
}

header.fixed {
    pointer-events: all;
    opacity: 1;
    transition: .4s all;
}

header.fixed .navbar {
    padding: 0;
}

/* navigation bar */
.navbar-nav {
    flex-direction: row;
}

.navbar {
    padding-left: 0;
    padding-right: 0;
    padding-top: 10px;
}

.navbar-expand-lg .navbar-nav {
    align-items: center;
    margin: 0 auto;
}

.navbar-expand-lg .navbar-collapse {
    display: flex !important;
    justify-content: center;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 5px 20px;
    color: #4B4747;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #E85B5B;
}

.nav-link.active-highlight.tour-details-section-active {
    color: #E85B5B;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn {
    color: var(--purple);
    background-color: var(--bg-white);
    font-size: 16px;
    padding: 9px 40px;
    border-radius: 25px;
    margin-left: 20px;
    position: relative;
    border: 1px solid var(--bg-purple);
}


.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before,
.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 42px;
    z-index: -1;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before {
    animation: pulse-blue-medium-sm 3.5s infinite
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after {
    animation: pulse-blue-small-sm 3.5s infinite
}

/* .navbar-brand img {
    width: 150px;
} */

/* navigation bar dropdown */
.navbar-expand-lg .navbar-nav .has_dropdown {
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 10px 10px 0 0;
    transition: .4s all;
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover {
    background-color: var(--bg-white);
    box-shadow: 0px 4px 10px #c5c5c580;
}

.navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {
    position: relative;
    right: 15px;
    color: var(--text-white);
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu {
    position: absolute;
    top: 100%;
    background-color: var(--bg-white);
    border-radius: 0 10px 10px 10px;
    min-width: 210px;
    max-width: 230px;
    margin-top: -10px;
    transition: .4s all;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0px 4px 10px #c5c5c580;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul {
    margin-left: 0;
    padding: 10px 20px;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {
    font-size: 15px;
    position: relative;
    transition: .4s all;
    line-height: 35px;
    font-weight: 500;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    border: 2px solid var(--purple);
    border-radius: 10px;
    margin-right: 5px;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: .4s all;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover {
    padding-left: 15px;
    color: var(--purple);
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover>a,
.navbar-expand-lg .navbar-nav .has_dropdown:hover>.drp_btn {
    color: var(--purple);
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover .sub_menu {
    opacity: 1;
    pointer-events: all;
    margin-top: -1px;
}

.xis-dia-main-navigation li.btn-gta {
    margin: 0 0 0 200px;
}

.xis-dia-main-navigation li.btn-gta a.nav-link {
    border-radius: 4px;
    background: #E85B5B;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 16px 20px;
}

.xis-dia-main-navigation li.btn-gta a.nav-link:hover {
    background: #fff;
    color: #E85B5B;
}

/* navigation toggle menu */
.toggle-wrap {
    padding: 10px;
    position: relative;
    cursor: pointer;

    /*disable selection*/
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.toggle-bar,
.toggle-bar::before,
.toggle-bar::after,
.toggle-wrap.active .toggle-bar,
.toggle-wrap.active .toggle-bar::before,
.toggle-wrap.active .toggle-bar::after {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.toggle-bar {
    width: 25px;
    margin: 10px 0;
    position: relative;
    border-top: 4px solid var(--bg-white);
    display: block;
}

.toggle-bar::before,
.toggle-bar::after {
    content: "";
    display: block;
    background: var(--bg-white);
    height: 4px;
    width: 30px;
    position: absolute;
    top: -12px;
    right: 0px;
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -ms-transform-origin: 13%;
    -webkit-transform-origin: 13%;
    transform-origin: 13%;
}

.toggle-bar::after {
    top: 4px;
}

.toggle-wrap.active .toggle-bar {
    border-top: 6px solid transparent;
}

.toggle-wrap.active .toggle-bar::before {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.toggle-wrap.active .toggle-bar::after {
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


/* ---------Hero-banner-Css-Start------------------ */
/* hero banner wraper */
.banner_section {
    padding-top: 150px;
    position: relative;
    /* background: #F3FFF5; */
    background-image: url("../images/hero-bg.png");
    height: 1040px;
    margin-bottom: 117px;
    background-repeat: no-repeat;
}

.banner_section .container {
    position: relative;
    z-index: 99;
    height: 100%;
}

.banner_section .row {
    align-items: center;
    height: 100%;
}

.banner_section .row.right-sec {
    height: unset;
}

.banner_section .banner_text {
    margin: 0 0 0;
}

.banner_section .text-sec {
    width: 51%;
    margin-top: -145px;
}

.banner_section .img-sec {
    width: 49%;
}

/* hero banner heading h1 */
.banner_section .banner_text h1 {
    font-size: 73px;
    color: #000000;
    line-height: 85px;
    letter-spacing: 0px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    font-family: 'Kanit';
    margin-bottom: 0;
}

.banner_section .banner_text span {
    font-size: 39px;
    color: #000000;
    line-height: 45px;
    letter-spacing: 0px;
    font-weight: 600;
    font-family: 'kanit';
}

.banner-btn-group {
    display: flex;
    flex-direction: row;
    margin: 41px 0;
}

.banner-btn-group a.btn-primary {
    padding: 16px 20px;
    margin: 0 30px 0 0;
    border-radius: 4px;
    border: 1px solid #0B62E2;
    background: #FFF;
    color: #0B62E2;
    font-family: 'Poppins';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
}

.banner-btn-group a.btn-primary:hover {
    border: 1px solid #0B62E2;
    ;
    background: #0B62E2;
    ;
    color: #fff;
}

.banner-btn-group a.btn-secondary {
    border-radius: 4px;
    background: #0B62E2;
    padding: 16px 20px;
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    border: 1px solid #0B62E2;
}

.banner-btn-group a.btn-secondary:hover {
    border: 1px solid #0B62E2;
    background: #fff;
    color: #0B62E2;
}

.banner_section .banner_image {
    display: flex;
    /* position: relative; */
    width: 100%;
    justify-content: center;
}

.banner_section .banner_image img {
    /* max-width: 100%;*/
    position: absolute;
    right: 0;
    top: 110px;
    -webkit-animation: simple-scale 2s 1s linear infinite alternate;
    animation: simple-scale 2s 1s linear infinite alternate;    
}

/* -----------------About-App-Section-Css-Start------------------ */

/* about us section wraper */
.about_section {
    background: #FFF4DC;
}

.about-text h2 {
    color: #373737;
    font-family: 'Kanit';
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 52px;
    margin: 0 0 30px;
}

.about-text p {
    color: #595959;
    font-family: 'Poppins';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.about-listing ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    width: 100%;
    display: inline-block;
}

.about-listing ul li {
    margin: 0 0 30px;
    padding: 0 0 0 25px;
    background: url('../images/right-arrow.png') no-repeat 0 4px;
    color: #595959;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    font-family: 'Poppins';
}

/* .about-listing {
    margin: 30px 0 0 0;
} */

.about-listing h2 {
    font-size: 48px;
    color: #373737;
    line-height: 50px;
    letter-spacing: 0px;
    font-weight: 600;
    font-family: 'Kanit';
    margin: 0 0 30px;
}

.bg-img {
    position: relative;
}

.about_section .bg-img img {
    position: absolute;
    top: -70px;
    /* -webkit-animation: simple-move 2s 1s linear infinite alternate;
    animation: simple-move 2s 1s linear infinite alternate; */
    -webkit-animation: simple-move 1.5s 1.5s linear infinite alternate;
    animation: simple-move 1.5s 1.5s linear infinite alternate;
}

.about_section .bg-img::before {
    content: "";
    width: 620px;
    height: 620px;
    display: block;
    border-radius: 620px;
    background: rgba(255, 255, 255, 0.70);
    filter: blur(140px);
    margin-top: -10px;
    -webkit-animation: simple-move 1.5s 1.5s linear infinite alternate;
    animation: simple-move 1.5s 1.5s linear infinite alternate;
}

/* -----------------Value we value-Css-Start------------------ */
.value_section {
    background: #FFCCD0;
    position: relative;
    height: 791px;
}

.value-img-sec .banner_image img {
    position: absolute;
    right: 300px;
    top: 49px;
    /* -webkit-animation: simple-scale 2s 1s linear infinite alternate;
    animation: simple-scale 2s 1s linear infinite alternate; */
    animation: float 1.5s ease-in-out infinite;
}

.value-img-sec .banner_image::before {
    content: "";
    width: 406px;
    height: 406px;
    display: block;
    border-radius: 406px;
    background: #FFF;
    filter: blur(175px);
    right: 394px;
    position: absolute;
    top: 182px;
    /* -webkit-animation: simple-scale 2s 1s linear infinite alternate;
    animation: simple-scale 2s 1s linear infinite alternate; */
    animation: float 1.5s ease-in-out infinite;
}

.value-text {
    margin-top: 35px;
}



/* -------------Service-Section-Css-Start----------------- */

/* faq wraper */
.service_section.row_am {
    padding: 150px 0;
}

.service_section {
    background: #FCFCFF;
}

.row.service-we-offer {
    margin-bottom: 143px;
    position: relative;
    left: 50px;
}

.service-we-offer .service-left {
    position: relative;
    margin-right: 78px;
}

.service-we-offer .service-right {
    position: relative;
    max-width: 638px;
}

.service-we-offer .service-left .text-sec,
.service-we-offer .service-right .text-sec {
    background: #FFF5DE;
    padding: 17px 10px 40px 93px;
    min-height: 228px;
}

.service-we-offer .service-right .text-sec.green {
    background: #EAFFF3;
}

.service-we-offer .service-left .text-sec.purple {
    background: #F0EEFF;
    /* padding: 17px 20px 40px 93px; */
}

.service-we-offer .service-right .text-sec.pink {
    background: #FFEAF6;
    /* padding: 17px 45px 40px 93px; */
}

.service-we-offer .service-left .text-sec.orange {
    background: #FFEDED;
    /* padding: 17px 45px 40px 93px; */
}

.service-we-offer .service-right .text-sec.blue {
    background: #E8F4FF;
    /* padding: 17px 55px 40px 93px; */
}

.service-we-offer .service-left .text-sec h5,
.service-we-offer .service-right .text-sec h5 {
    color: #373737;
    font-family: 'Kanit';
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 16px;
}

.service-we-offer .service-left .text-sec p,
.service-we-offer .service-right .text-sec p {
    color: #373737;
    font-family: 'Poppins';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0;
}

.service-we-offer .service-left .img-sec,
.service-we-offer .service-right .img-sec {
    position: absolute;
    top: 50%;
    left: -62px;
    transform: translateY(-50%);
}

.service-we-offer .service-left .img-sec::before, .service-we-offer .service-right .img-sec::before {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.20);
    content: "";
    width: 134px;
    height: 135px;
    display: block;
    position: absolute;
    border-radius: 50%;
}



/* ------Footer-Css-Start-------------- */
/* footer wraper */
footer {
    position: relative;
}

footer .top_footer {
    background: #fff;
    border-top: 1px solid #EBEBEB;

    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

footer .top_footer .container {
    position: relative;
}


/* footer logo */
footer .top_footer .logo {
    margin-bottom: 0px;
}

footer .top_footer .logo img {
    width: 100px;
}



/* footer social media icon */
footer .top_footer .social-media {
    display: flex;
    flex-direction: row;
    margin: 20px 0 0 0;
}

/* footer link list */
footer .top_footer .social-media a {
    display: inline-flex;
    margin: 0 10px 0 0;
}

footer .top_footer .social-media a:last-child {
    margin: 0;
}

footer .top_footer .social-media a:hover {}

footer .top_footer .social-media a:hover svg path {
    fill: #4B4747;
}


/* footer heading and text colors variable */

footer p {
    color: #4B4747;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

footer .links {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

footer .links ul {
    display: flex;
    flex-direction: column;
    margin: 0 50px;
}

footer .links ul li {
    display: inline-block;
    margin: 0 0 30px 0;
}

footer .links ul li:last-child {
    margin: 0;
}

footer .links ul li a {
    color: #4B4747;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

footer .links ul li a:hover {
    color: #E85B5B;
}

@keyframes mymove {
    50% {
        transform: rotate(180deg);
    }
}

.modal-header .button.close {
    background: #E85B5B;
}

.othet-link {
    text-align: center;
    margin: 50px 0 0 0;
}

.othet-link a {
    color: #4B4747;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
}

.othet-link a:hover {
    color: #E85B5B;
}

.othet-link span {
    color: #4B4747;
    margin: 0 10px;
}

#text {
    display: none;
}


/* Contact Page Css Start */

.contact_page_section {
    display: flex;
    align-items: center;
    position: relative;
    /* background: #FEF6F1; */
    background-image: url("../images/footer-bg.png");
    padding: 50px 0 60px;
}

.contact_page_section h2 {
    color: #000;
    font-family: 'Kanit';
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 70px;
    text-align: center;
    margin-bottom: 34px;
}

.contact_page_section h2 span {
    color: #fff;
}

.footer_banner_image {
    position: absolute;
    right: 230px;
    top: 255px;
    -webkit-animation: simple-scale-bg 2s 1s linear infinite alternate;
    animation: simple-scale-bg 2s 1s linear infinite alternate;
    background-image: url("../images/footer-img-bg.png");
    background-repeat: no-repeat;
    width: 568px;
    height: 700px;
    /* -webkit-animation: bounce 1.2s infinite ease-in-out;
    animation: bounce 1.5s infinite ease-in-out; */
}

.footer_banner_image img{
    -webkit-animation: simple-scale 2s 1s linear infinite alternate;
    animation: simple-scale 2s 1s linear infinite alternate;
}



.contact_page_section .contact_form {}

.contact_page_section .contact_form h2 {
    margin-bottom: 0;
}

.contact_page_section .contact_form {
    margin-top: 113px;
}

.contact_page_section .contact_form .form-group {
    margin-bottom: 30px;
}

.contact_page_section .contact_form .form-group label {
    color: #FFF;
    font-family: 'Poppins';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    display: block;
    margin: 0 0 10px;
}

.contact_page_section .contact_form .form-group .form-control {
    border-radius: 4px;
    border: 1px solid #CDD9E3;
    background: #FFF;
    padding: 16px 20px;
    height: 60px;
    color: #595959;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.contact_page_section .contact_form .form-group .form-control::placeholder {
    color: #D1D1D1;
    font-family: 'Poppins';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
}

.contact_page_section .contact_form .form-group .form-control:focus {
    box-shadow: none;
    border-color: var(--purple);
    color: var(--purple);
}

.contact_page_section .contact_form .form-group textarea.form-control {
    height: 140px;
    padding-top: 15px;
}

.contact_page_section .contact_form .form-group select {
    border-radius: 4px;
    border: 1px solid #CDD9E3;
    background: #FFF;
    padding: 16px 20px;
    height: 60px;
    color: #595959;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 100%;
}

.contact_page_section .contact_form .form-group .btn.puprple_btn {
    width: 300px;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
    background: #000;
    color: #fff;
    font-size: 18px;
    border: 1px solid #000;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 16px 20px;
}

.contact_page_section .contact_form .form-group .btn.puprple_btn:hover {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

.contact_page_section .contact_form .form-group .btn.puprple_btn:before {
    display: none;
}

.address-sec, .address, .call {
    display: flex;
}

.address-sec{
    margin-top: 110px;
    margin-bottom: 20px;
}

.address, .call {
    display: flex;
    margin-right: 20px;
}

.email {
    display: flex;
    flex-direction: column;
    margin-right: 20px;
}

.address i {
    margin: 0 10px 0 0;
}

.address-text {
    line-height: 30px;
    color: #000;
    font-family: 'Kanit';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
}

.email i {
    margin: 0 10px 0 0;
}

.email a {
    margin: 0 0 10px;
    line-height: 28px;
    color: #000;
    font-family: 'Kanit';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
}


.call i {
    margin: 0 10px 0 0;
}

.inr-call {
    display: flex;
    flex-direction: column;
}

.inr-call a {
    margin: 0 0 10px;
    line-height: 28px;
    color: #000;
    font-family: 'Kanit';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
}

.foo-social-icon-sec h3 {
    color: #595959;
    font-family: 'Brygada 1918', serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.foo-social-icon a {
    width: 30px;
    height: 33px;
    display: inline-block;
    overflow: hidden;
    margin: 0 20px 0 0;
}

.foo-social-icon a:last-child {
    margin: 0 0px 0 0;
}

.foo-social-icon a .soc {
    display: inline-block;
}

.foo-social-icon a .soc-h {
    display: none;
}

.foo-social-icon a:hover .soc {
    display: none;
}

.foo-social-icon a:hover .soc-h {
    display: inline-block;
}

.xis-footer-content {
    padding: 30px 0 0;
}

.xis-footer-content p {
    margin: 0;
    font-family: 'Kanit';
    color: #000;
}

img {
    max-width: 100%;
}



  @-webkit-keyframes simple-scale {
    100% {
      -webkit-transform: scale(0.8);
    }
  }
  
  @keyframes simple-scale {
    100% {
      transform: scale(0.8);
    }
  }

  @-webkit-keyframes simple-scale-bg {
    100% {
      -webkit-transform: scale(1.2);
    }
  }
  
  @keyframes simple-scale-bg {
    100% {
      transform: scale(1.2);
    }
  }
  
  @-webkit-keyframes simple-move {
    100% {
      -webkit-transform: translate(50px, 0);
    }
  }
  
  @keyframes simple-move {
    100% {
      transform: translate(50px, 0);
    }
  }


  @keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}