@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Sarabun:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    /* font-family: 'Poppins', sans-serif; */
}

html{
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body{
    background-color: #f6f6f6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.container{
    width: 100%;
    margin: 0;
    padding: 0;
}

/* NAVBAR */

header{
    font-family: "Sarabun",sans-serif;
    background: #ffffff;
    padding: 20px 9.5rem;
    margin: 0;
    position: fixed;
    right: 0;
    left: 0;
    height: 6.25rem;
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 5px;
}

.navbar{
    padding: 20px 0px;
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.navbar .logo img {
    width: 180px;
    height: 50px;
    margin-top: 10px;
}

.navbar a{
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: "Sarabun", sans-serif;
}

.navbar a:hover{
    color:#6099fb;
}

.navbar .links{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.navbar li{
    list-style: none;
    padding: 20px;
}

.navbar .action-btn{
    padding: 10px 25px;
    background: #6099fb;
    color: #ffffff;
    border-radius: 6px;
    cursor: pointer;
    outline: none;
    border: none;
    transition: all ease 0.3s;
    font-weight: 500;
    font-style: normal;
}


.navbar .action-btn:hover{
    background: #001b90;
    color: #fff;
}

.toggle-btn {
    margin-top: 5px;
    color: #6099fb;
    font-size: 16px;
    padding: 5px 8px;
    border: 2px solid #6099fb;
    border-radius: 5px;
    display: none;
}


/* DROPDOWN MENU */

.dropdown-menu{
    margin-top:15px;
    position:absolute;
    left: 0;
    display: none;
    overflow: hidden;
    width: 100%;
    border-radius: 0 0 15px 15px;
    height: 0;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgb(255, 255, 255);
}

.dropdown-menu a{
    transition: all 0.4s ease;
    color: #000000;
}

.dropdown-menu a:hover{
    color: #6099fb;
}

.dropdown-menu li{
    list-style: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: 0.4s all ease;
}

.dropdown-menu.open{
    height:fit-content;
}

/* SUBMENU */

.links .submenu li{
    color: #000000;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition:  0.4s all ease;
}

.links li ul.submenu li{
    display: block;
}

.links li ul.submenu{
    width: 30%;
    background: #fff;
    position: absolute;
    z-index: 999;
    display: none;
    border-radius: 10px;
    padding: 1rem;
    transition: 0.6s all ease ;
}

.links li:hover ul.submenu{
    display: block;
    transition: all 0.3s ease;
} 

.down-icon i{
    position: relative;
    left: 5px;
    transition: transform 0.2 ease;
}

.down-icon:hover i{
    transform: rotate(180deg);
}

.dropdown-menu .action-btn{
    padding: 10px 25px;
    background: #6099fb;
    color: #ffffff;
    border-radius: 6px;
    cursor: pointer;
    outline: none;
    border: none;
    transition: all ease 0.3s;
    font-weight: 500;
    font-style: normal;
}

/* HERO */

.hero-section {
  font-family: "Sarabun",sans-serif;
  padding-top: 6.5REM;
  width: 100%;
  position: relative;
  height: 100vh; /* Or desired height */
  background-image: url("../assets/hero-3.webp");
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out; /* Smooth transition */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  z-index: 1;
  pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 70%;
    height: 100%;
    padding: 0 9.5rem;
    animation-name: hero-content;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

.hero-content h1{
    font-size: 60px;
    font-weight: 700;
    text-transform: capitalize;
    color:#fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h3{
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-content p{
    color: #fff;
    font-size: 1rem;
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.5;
    text-transform: capitalize;
}

.hero-buttons{
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-buttons span{
    padding-left: 5px;
}

.hero-button{
    background: #6099fb;
    color: #ffffff;
    border: 1px solid var(--tg-border-5);
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.4s all ease;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s all ease;
    margin-right: 20px;
}

.hero-button:hover{
    background: #fff;
    color: #000;
}

.hero-button-2{
    background: rgba(0, 0, 0, 0);
    color: #ffffff;
    border: 1px solid #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.4s all ease;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s all ease;
}

.hero-button-2:hover{
    background: #fff;
    color: #000;
}


/* SERVICES */

.Services{
    padding: 0 9.5rem;
    width: 100%;
    font-family: "Sarabun",sans-serif;
    /* background-color: rgba(246, 246, 246, 0.8);
    background-image: url("../assets/world-map.jpg"); */
}

.services-wrapper{
    padding: 6rem 0;
    width: 100%;
}

.services-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.services-main{
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    flex-basis: 40%;
    position: relative;
    transition: 0.4s all ease;
}

.services-main.animate {
    animation-name: services-main;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

.services-main h3{
    color: #6099fb;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.services-main h2{
    color: #000;
    margin-bottom: 0px;
    font-size: 40px;
    font-weight: 800;
    text-transform: capitalize;
}

.service-button{
    background: rgba(0, 0, 0, 0);
    color: #6099fb;
    border: 2px solid #6099fb;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.4s all ease;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s all ease;

}

.service-button:hover{
    background: #6099fb;
    color: #fff;
}

.card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    gap:2rem;
}

.services-card {
    background: #fff;
    box-shadow: 0 4px 20px #0000000d;
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 26px 26px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

.card-img img{
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.card-content h4{
    font-size: 24px;
}

.card-content p{
    font-size: 1rem;
}


/* CHOOSE */

.Choose{
    background: #001988;
    padding: 0 9.5rem;
    font-family: "Sarabun",sans-serif;
}

.Choose .container{
    width: 100%;
}

.choose-wrapper{
    padding: 6.5rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.choose-img{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-basis: 40%;
    position: relative;
}

.choose-img.animate{
    animation-name: choose-img;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-fill-mode: both;
}

.choose-img img{
    max-width: 580px;
    min-width: 200px;
    border-radius: 10px;
}

.choose-content{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    flex-basis: 60%;
    position: relative;
}

.choose-content.animate{
    animation-name: choose-content;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-fill-mode: both;
}

.choose-top{
    margin-bottom: 25px;
}

.choose-top h4{
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #29ABE2;
    margin-bottom: 8px;
}

.choose-top h1{
    color: #fff;
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 800;
    text-transform: capitalize;
}

.choose-bottom{
    display: flex;
    align-items: center;
}

.choose-info {
    border-right: 3px solid #2139a3;
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
    flex-basis: 70%;
    justify-content: start;
    align-items: start;
}

.choose-info p{
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.75;
}

.choose-button{
    background: #fff;
    color: #001b90;
    border: 1px solid var(--tg-border-5);
    padding: 16px 27px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.4s all ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose-botton:hover{
    background: #6099fb;
}

.choose-button span{
    padding-left: 10px;
}

.icons-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 4rem;
    padding-left: 1rem;
}

.icons-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.icons-group img{
    width: 75px;

}

.icons-group-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.icons-group-content h2{
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

.icons-group-content p{
    color: #fff;
}


/* MISSION */

.Mission{
    padding: 0 9.5rem;
    width: 100%;
}

.mission-wrapper {
    padding: 6rem 0;
    display: flex;
    justify-content: start;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
}

.mission-img {
    display: flex;
    align-items: end;
    justify-content: end;
    margin: auto;
    width: 100%;
    position: relative;
}

.mission-img.animate{
    animation: mission-img 1.3s forwards cubic-bezier(.645,.045,.355,1) .4s;
}

.mission-img img{
    max-width: 900px;
    border-radius: 10px;
}

.mission-img-medium img{
    max-width: 600px;
    border-radius: 10px;
    display: none;
}

.mission-content {
    max-width: 530px;
    padding: 50px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e9e9e9;
    font-family: "Sarabun", sans-serif;
    display: flex;
    position: absolute;
    flex-direction: column;
}

.mission-top{
    margin-bottom: 20px;
}

.mission-top h3{
    display: block;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #6099fb;
    margin-bottom: 8px;
}

.mission-top h2{
    margin-bottom: 0;
    font-size: 36px;
    font-weight: 800;
    text-transform: capitalize;
}

.mission-content p{
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 400;
    color: #666666;
    margin-bottom: 15px;
}

.mission-list li{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
    font-size: 18px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 10px;
    font-weight: 500;
}

.mission-list li i{
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #6099fb;
    color: #fff;
    width: 22px;
    height: 22px;
}

/* PARTNER */

.Partner{
    display: none;
    padding: 0 9.5rem;
    font-family: "Sarabun",sans-serif;
    margin-bottom: 6rem;
}

.partner-wrapper{
    width: 100%;
}

.partner-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.partner-content h4{
    font-size: 1rem;
    color: #6099fb;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.partner-content h2{
    font-size: 40px;
    font-weight: 800;
    text-transform: capitalize;
}

.partner-group{
    border-bottom: 2px solid #E2E2E2;
    border-left: 2px solid #E2E2E2;
    margin-bottom: 0;
    margin-top: 40px;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
}

.partner-item{
    padding: 40px 40px;
    border-right: 2px solid #E2E2E2;
    border-top: 2px solid #E2E2E2;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item img{
    width: 180px;
    height: 90px;
}


/* STATS */

.stats-section {
    padding: 0 9.5rem;
    font-family: "Sarabun",sans-serif;
    background: #001988;
}

.stats-wrapper {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.header-text {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #fff;
}

.highlight {
    color:#28a8e1;
}

.stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5rem;
    position: relative;
}

.stats.animate{
    animation-name: stats;
    animation-duration: 1.5s;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

.stat-box {
    /* border-right: 3px solid #2139a3; */
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.numbers-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.stat-box:last-child {
    border-right: none;
}

.number {
    font-size: 4.5rem;
    font-weight: bold;
    color: #fff;
}

.label {
    margin-top: 10px;
    color: #aaa;
    font-size: 1.5rem;
    font-weight: 600;
}

.plus {
    color:#28a8e1;
    font-size: 3.5rem;
    font-weight: 900;
}


/* FAQS */

.FAQs{
    padding: 0 9.5rem;
    font-family: "Sarabun",sans-serif;
}

.faq-wrapper{
    padding: 6rem ;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.faq-wrapper .title {
    text-align: center;
    margin-bottom: 40px;
}

.faq-wrapper .title h4{
    font-size: 1rem;
    color: #6099fb;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.faq-wrapper .title h2 {
    font-size: 40px;
    font-weight: 800;
    text-transform: capitalize;
    text-align: center;
}

.accordian {
    box-shadow: 0 4px 20px #0000000d;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 29px 90px 32px 42px;
    border: 2px solid #eee9e9;
    border-radius: 10px;
    margin: 8px;
}

.question {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.question h2{
    font-size: 1.5rem;
}

.question i{
    transition: 0.4s all ease;
    display: flex;
}

.icon{
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #6099fb;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    border-radius: 50px;
}

.icon.active{
    transform: rotate(-180deg);
}

.answer.active .question.title h2 {
    color: #29ABE2;
}

.answer{
    color: #000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease;
}

.answer p {
    text-transform: capitalize;
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 400;
    margin-top: 1rem;
    color: #666666;
}

.answer.active{
    max-height: fit-content;
}





/* FOOTER */

.footer{
    background: #00002f;
    padding: 0 9.5rem;
    margin-top: 6.25rem;
    width: 100%;
    font-family: "Sarabun",sans-serif;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.quote{
    background: #001b90;
    display: flex;
    padding: 50px 55px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-radius: 0 0 10px 10px;
    /* animation-name: quote;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-fill-mode: both; */
    position: relative;
}

.quote.animate {
  animation-name: quote;
  animation-duration: 2s;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}

.quote-text h3{
    font-family: "Sarabun",sans-serif;
    color: #fff;
    font-size: 30px;
    text-transform: capitalize;
    font-weight: 500;
}

.quote-button{
    background: #fff;
    color: #001b90;
    border: 1px solid var(--tg-border-5);
    padding: 16px 27px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.4s all ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-button:hover{
    background: #29ABE2;
    color: #fff;
}

.quote-button .quote-icon{
    padding-left: 5px;
    font-size: 1.5rem;
}






.footer-wrapper {
    font-family: "Sarabun",sans-serif;
    color: #fff;
    padding: 90px 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-bottom{
    margin-bottom: 5px;
}

.footer-mail {
    display: flex;
    flex-direction: column;
    flex-basis: 35%;
    align-items: start;
    justify-content: center;
}

.footer-logo img {
    width: 180px;
    height: 50px;
    margin-bottom: 10px;
}

.footer-mail p{
    color: #96A1B8;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.form-grp{
    display: flex;
    justify-content:center;
    align-items: center;
    margin-bottom: 12px;
}

.form-grp input{
    width: 100%;
    border: none;
    background: #d9d9d9;
    border-radius: 100px;
    padding: 13px 140px 13px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #96A1B8;
    height: 50px;
    text-transform: capitalize;
}

.form-button{
    border: none;
    border-radius: 100px;
    background: #001b90;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 17px 34px 19px;
    line-height: 1;
    position: relative;
    right: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s all ease;
    cursor: pointer;
}

.form-button:hover{
    background:#29ABE2 ;
}

.footer-services{
    display: flex;
    flex-basis: 25%;
    flex-direction: column;
}

.footer-links{
    flex-basis: 16%;
    display: flex;
    flex-direction: column;
}

.footer-information{
    display: flex;
    flex-basis: 25%;
    flex-direction: column;
}

.services-content {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: start;
}

.links-content{
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: start;
}

.information-content{
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: start;
}

.information-content li{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #96A1B8;
    transition: 0.4s all ease;
}

.information-content li:hover{
    color: #fff;
}

.information-content i{
    font-size: 22px;
    padding-right: 10px;
}

.footer-wrapper h3{
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 10px;
}

.footer-wrapper li{
    margin-bottom: 10px;
}

.footer-wrapper a{
    color: #96A1B8;
    text-transform: capitalize;
    transition: 0.4s all ease ;
}

.footer-wrapper a:hover{
    color: #fff;
}

.highlight-blue{
    width: 29px;
    height: 4px;
    background: #29ABE2;
    border-radius: 50px;
    margin-bottom: 15px;;
}

.footer-bottom{
    font-family: "Sarubun",sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 2rem 0;
    border-top: 1px solid #96A1B8;
}

.copyright-text{
    font-family: 'Sarubun',sans-serif;
    color: #96A1B8;
}

.social-icons{
    display: flex;
}

.footer-bottom a {
    padding: 20px;
    background: #1c1a4a;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin: 5px;
    transition: 0.4s all ease;
}

.footer-bottom a:hover{
    background: #29ABE2;
}

.footer-bottom i {
    color: #fff;
    font-size: 1rem;
    display: flex;
}


/* CONTACT US */

.location{
    padding: 6rem 9rem;
}

.location-wrapper{
    width: 100%;
}

#map-section {
  margin: 2rem auto;
}

#map-section iframe {
  border: none;
  border-radius: 12px;
  width: 100%;
}


.contact-section {
    padding: 0 9.5rem;
    font-family: "Sarabun",sans-serif;
    background: #001988;
}

.contact-wrapper {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-section .header-text {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #fff;
    text-transform: uppercase;
}

.contact-section .highlight {
    color:#28a8e1;
}

.contact-section .stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0rem;
    position: relative;
}

.contact-section .stat-box {
    /* border-right: 3px solid #2139a3; */
    padding: 0 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.contact-section .numbers-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-section .numbers-top i{
    font-size: 3rem;
    color: #29ABE2;
}

.contact-section .stat-box:last-child {
    border-right: none;
}

.contact-section .number {
    font-size: 4.5rem;
    font-weight: bold;
    color: #fff;
}

.contact-section .label {
    margin-top: 0px;
    color: #aaa;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: left;
}

.contact-section .label p{
    margin-top: 0px;
    color: #aaa;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.contact-section .label h3{
    font-size: 2rem;
}

.contact-section .plus {
    color:#28a8e1;
    font-size: 3.5rem;
    font-weight: 900;
}

section.Contact-form {
    padding: 6rem 9.5rem 0;
}

.form-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 4px 20px #0000000d;
    border: 1px solid #eee9e9;
    border-radius: 10px;
    padding: 30px 40px 40px;
    font-family: 'Sarabun',sans-serif;
}

.form-wrapper .form-grp {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
    gap: 1rem;
}

.form-wrapper input , .form-wrapper textarea {
    width: 100%;
    background: transparent;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    padding: 14px 20px 15px;
    font-size: 16px;
    font-weight: 400;
    color: var(--tg-color-black-2);
    height: 50px;
    display: block;
    font-family: 'Sarabun',sans-serif;
}

.form-wrapper textarea {
    min-height: 100px;
}

.form-wrapper .Form-button{
    padding: 14px 25px;
    background: #6099fb;
    color: #ffffff;
    border-radius: 6px;
    cursor: pointer;
    outline: none;
    border: none;
    transition: all ease 0.3s;
    font-weight: 500;
    font-style: normal;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
    font-family: 'Sarabun';
}

.form-wrapper .Form-button span{
    font-size: 0.8rem;
}

.form-wrapper .Form-button:hover{
    background: #000;
}