@import url('https://fonts.googleapis.com/css2?family=Kanit: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&display=swap'); 

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
ul {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

body {
    font-family: "Kanit", sans-serif;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0093d8, #f3762b);
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

@media only screen and (min-width: 300px) and (max-width: 500px) {
    html,body {
        overflow-x: hidden;
    }
}


/* Navbar */
#top_nav {
    background-color: #0b2453;
    padding: 10px;
}
#top_nav ul li {
    display: inline-block;
    margin-left: 10px;
}
#top_nav ul li:first-child {
    margin-left: 0;
}
#top_nav ul li a:hover {
    color: #EF6E2B;
}
#top_nav a {
    color: #ffffff;
}

@media only screen and (min-width: 300px) and (max-width: 500px) {
    #top_nav .d-flex {
        justify-content: center !important;
    }
    #top_nav .skype {
        display: none;
    }
    #top_nav .mobile {
        display: none;
    }
    #top_nav .phone {
        display: none;
    }
    #top_nav .top_social_icon {
        display: none;
    }
    #top_nav .whatsapp {
        margin-left: 0;
    }
}
@media only screen and (min-width: 510px) and (max-width: 800px) {
    #top_nav .d-flex {
        justify-content: center !important;
    }
    #top_nav .top_social_icon {
        display: none;
    }
}


/* Main Navbar */
.navbar {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 999;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 8px 32px rgba(124, 124, 124, 0.25),
        inset 0 0 20px rgba(255, 255, 255, 0.427);
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar_icons_item {
    flex-direction: row;
}
.navbar img {
    height: auto;
    width: 100px;
}
#nav_icons {
    display: none !important;
}
#nav_icons ul li {
    display: inline-block;
    padding-left: 10px;
}
#nav_icons ul li:last-child {
    padding-left: 0;
}
#navbarTogglerDemo01 ul li {
    display: block !important;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
    width: auto;
}
.nav-item {
    margin: 0 5px;
}
.nav-link {
    font-size: 18px;
}
#seo_items {
    width: 300px;
    height: auto;
}
#graphics_items {
    width: 300px;
    height: 300px;
    overflow-y: scroll;
}
#video_items {
    width: 300px;
    height: auto;
}
#social_items {
    width: auto;
    height: 300px;
    overflow-y: scroll;
}
#development_items {
    width: 300px;
    height: auto;
}
#destination_items img {
    height: auto;
    width: 35px;
}
#destination_item:hover #destination_items {
    display: block !important;
}
.navbar #event_btn {
    background-color: var(--second-color);
    color: var(--white-color);
}
@media only screen and (min-width: 300px) and (max-width: 500px) {
    .offcanvas {
        overflow-y: scroll;
    }
    #service_items {
        height: auto;
    }
    #development_items {
        height: auto;
    }
}

/* Top Category */
#top_category img {
    height: 70px;
    width: 70px;
    border-radius: 10px;
}
@media only screen and (min-width: 300px) and (max-width: 500px) {
    #top_category {
        overflow-x: scroll;
        padding-bottom: 15px;
        scrollbar-width: none;
    }
    #top_category .d-flex {
        justify-content: start !important;
    }
}

/* hero */
/* #hero {
    padding-bottom: 100px;
    background-image: url("../../image/bg.png");
    padding-top: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
} */
#hero {
    padding-bottom: 50px;
    background-image: url("../../image/bg.png");
    padding-top: 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#hero h1 {
    font-size: 50px;
}
#hero h1 span {
    color: #1666F7;
}
#hero h2 {
    font-size: 50px;
}

#hero .fa-circle-down {
    font-size: 40px;
    animation: downIcon linear 2s infinite;
}
#search_fill {
    position: relative;
    width: 70%;
    margin: auto;
}
.search_list {
    position: absolute;
    background-color: #ffffff;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    z-index: 800;
    border-radius: 5px;
    box-shadow: 1px 5px 15px #a8a8a8;
    display: none;
}
#search_fill {
    background-color: #0b2453;
    padding: 5px;
    border-radius: 12px;
}
.search_list.active {
    display: block !important;
}
.search_list img {
    border-radius: 5px;
}
.search_list ul a {
    color: #0b2453;
}
.search_list ul a:hover {
    color: #f3762b;
}
.search_list ul a li {
    border-bottom: 1px solid #cccccc;
    padding: 5px 0;
}
.search_list img {
    width: 50px;
}
@keyframes downIcon {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(50px);
    }
    100% {
        transform: translateY(0px);
    }
}
.hero_btn .together_btn {
    outline: 1px solid #0073B1;
    border-radius: 40px;
}
.hero_btn .together_btn:hover {
    background-color: #EF6E2B;
    outline: none;
    color: #ffffff;
}
.hero_btn .discover_btn {
    background-color: #0093d8;
    border-radius: 40px;
    color: #ffffff;
}
.hero_btn .discover_btn:hover {
    outline: none;
    color: #ffffff;
}

#hero h2 span {
    color: #EF6E2B;
}
@media only screen and (min-width: 300px) and (max-width: 500px) {
    .hero_btn {
        display: block !important;
        text-align: center;
    }
    .hero_btn .discover_btn {
        margin-top: 10px;
    }
    #hero h1 {
        font-size: 30px;
    }
    #hero h2 {
        font-size: 30px;
    }
}
/* .fa-location-arrow {
   font-size: 30px;
   color: #EF6E2B;
   position: absolute;
   margin-left: 50px;
   margin-top: -10px;
}
.round_text{
    display: flex;
    justify-content: end;
    align-items: center;
}
.round_text img {
    height: 130px;
    width: auto;
    animation: round-text 8s linear infinite;
} */

/* @keyframes round-text {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} */

/* Offer Section */
#offer_section {
    padding: 30px 0;
}
#offer_section .btn {
    background-color: #0093d8;
    border-radius: 40px;
    color: #ffffff;
}
#offer_section h2 {
    font-size: 50px;
    color: #0b2453;
}
#offer_section h2 span {
    color: #f3762b;
}
#offer_section .second_main_img {
    width: 100%;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    position: sticky;
    top: 110px;
}
.offer_second {
    margin-top: 30px;
}
.offer_second .card .card-body .offer_icon {
    width: 80px !important;
    margin-bottom: 20px;
}
@media only screen and (min-width: 300px) and (max-width: 500px) {
    #offer_section .second_main_img {
        margin-bottom: 20px;
    }
    #offer_section h2 {
        font-size: 30px;
    }
}
/* Offer Section */

/* Scroll Text */
.m-scroll {
  display: flex;
  position: relative;
  width: 100%;
  height: 100px;
  margin: auto;
  background-color: #e5feeb;
  overflow: hidden;
  z-index: -1;
}
.m-scroll__title {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  white-space: nowrap;
  transform: scale(2);
  transition: all 5s ease;
}
.m-scroll__title > div {
  display: flex;
  -webkit-animation: scrollText 50s infinite linear;
          animation: scrollText 50s infinite linear;
}
.m-scroll__title h1 {
  margin: 0;
  font-size: 35px;
  color: #1D9CEB;
  transition: all 5s ease;
}
.m-scroll__title i {
    font-size: 20px;
}
.m-scroll__title a {
  text-decoration: none;
  color: #0b2453;
}
.m-scroll__title a:hover {
  -webkit-text-stroke: 1px #0b2453;
  color: transparent;
}
div:hover {
  animation-play-state: paused;
}
@-webkit-keyframes scrollText {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes scrollText {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 300px) and (max-width: 500px) {
    .m-scroll__title h1 {
        font-size: 23px;
    }
    .m-scroll__title i {
        font-size: 13px;
    }
}

#home_form_section {
    padding: 50px 0;
    background-color: #f3fff5;
}
#home_form_section h2 {
    font-size: 50px;
}
#home_form_section h2 span {
    color: #f3762b;
}
#home_form_section .btn {
    background-color: #f3762b;
    border-radius: 40px;
    color: #ffffff;
}
#home_form_section .btn:hover {
    background-color: #0b2453;
}
#home_form_section img {
    width: 100%;
    border-radius: 10px;
}

@media only screen and (min-width: 300px) and (max-width: 500px) {
    #home_form_section {
        padding: 30px 0;
    }
    #home_form_section h2 {
        font-size: 30px;
    }
    #home_form_section img {
        display: none;
    }
}

/* second */
#second_section {
    padding-top: 30px;
}
#second_section h2 {
    font-size: 50px;
}
#second_section h2 span {
    color: #EF6E2B;
}
.home_category {
    background-color: #F8F9FA;
    padding: 15px;
    border-radius: 10px;
    transition: .5s ease-in-out;
}
.home_category:hover {
    transform: translateY(-10px);
    transition: .5s ease-in-out;
}
.home_category h5 {
    color: #0b2453;
}
.home_category img {
    height: auto;
    width: 100%;
    border-radius: 5px;
}
@media only screen and (min-width: 300px) and (max-width: 500px) {
    #second_section h2 {
        font-size: 30px;
    }
}

/* Third */
#third_section {
    padding-top: 30px;
}
#third_section img {
    height: auto;
    width: 100%;
    border-radius: 10px;
}
#third_section .swiper-wrapper {
    padding-bottom: 60px;
}

/* Fifth */
#fifth_section {
    padding-top: 30px;
}
#fifth_section img {
    height: auto;
    width: 100%;
    border-radius: 10px;
}
#fifth_section .swiper-wrapper {
    padding-bottom: 60px;
}

/* forth */
#forth_section {
    padding: 50px;
    background-color: #0b2453;
}
#forth_section h2 {
    font-size: 50px;
    color: #ffffff;
}
#forth_section .btn {
    outline: 1px solid #F8F9FA;
    color: #ffffff;
    border-radius: 40px;
}
#forth_section .forth_right_img {
    width: 100%;
    border-radius: 10px;
}
#forth_section .btn:hover {
    background-color: #EF6E2B;
    outline: none;
}
#forth_section p {
    color: #ffffff;
}
.forth_happy_box {
    outline: 1px solid #bdc3c7;
    padding: 10px;
    border-radius: 10px;
}
.forth_happy_box h3 {
    color: #ffffff;
}
.forth_happy_box p {
    color: #ffffff;
}
.forth_point {
    color: #ffffff;
    margin-top: 30px;
}
.forth_point h3 {
    font-size: 40px;
}
.forth_point h3 span {
    font-size: 60px;
}
.forth_point p {
    font-size: 20px;
}
.forth_point .pont_part {
    border: 1px solid #ffffff;
    padding: 15px 20px;
}
/* Price Plan */
#pricing_section {
    padding: 50px 0;
}
#pricing_section .fa-wand-sparkles {
    font-size: 40px;
    color: #ff3c00;
}
#pricing_section .fa-boxes-stacked {
    font-size: 40px;
    color: #ff3c00;
}
#pricing_section .fa-crown{
    font-size: 40px;
    color: #ff3c00;
}
#pricing_section h2 {
    font-size: 50px;
}
#pricing_section span {
    color: #f3762b;
}
.price_number {
    font-size: 50px;
}
.price_number span {
    font-size: 23px;
}
#pricing_section .btn {
    outline: 1px dashed #EF6E2B;
    width: 100%;
}
#pricing_section .btn:hover {
    background-color: #0b2453;
    color: #ffffff;
    outline: none;
}
#pricing_section ul li {
    padding: 5px 0;
}
.pricing_box {
    background-color: #e5feeb;
    border-radius: 10px;
    padding: 25px;
    transition: .5s;
}
.pricing_box:hover {
    transform: translateY(-10px);
    transition: .5s;
}
.pricing_box_two {
    background-color: #ffe78f;
    border-radius: 10px;
    padding: 25px;
    transition: .5s;
}
.pricing_box_two:hover {
    transform: translateY(-10px);
    transition: .5s;
}
.pricing_box_three {
    background-color: #ffdcc3;
    border-radius: 10px;
    padding: 25px;
    transition: .5s;
}
.pricing_box_three:hover {
    transform: translateY(-10px);
    transition: .5s;
}
.point_of_pricing {
    height: 200px;
    overflow-y: scroll;
}

/* Testimonial */
#testimonial {
    padding: 50px 0;
}
#testimonial h2 {
    font-size: 50px;
}
#testimonial h2 span {
    color: #f3762b;
}
#testimonial img {
    width: 60px;
    border-radius: 50%;
}
#testimonial .reviewSwiper .review_content {
    height: 100px;
    overflow-y: scroll;
}
#testimonial .review_box {
    background-color: #ffefe4;
    padding: 15px;
    border-radius: 10px;
}

@media only screen and (min-width: 300px) and (max-width: 500px) {
    #hero {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .forth_point h3 span {
        font-size: 40px;
    }
    #forth_section {
        padding: 30px 0;
    }
    #forth_section h2 {
        font-size: 30px;
    }
    #forth_section .btn {
        margin-bottom: 20px;
    }
    .forth_point {
        padding: 15px;
    }
    .forth_happy_box {
        margin-bottom: 20px;
    }
    #pricing_section {
        padding: 30px 0;
    }
    #pricing_section h2 {
        font-size: 35px;
    }
    #testimonial {
        padding: 30px 0;
    }
    #testimonial h2 {
        font-size: 35px;
    }
}

/* FAQ */
#faq_section {
    padding: 30px 0;
}
#faq_section h2 {
    font-size: 50px;
}
#faq_section h2 span {
    color: #f3762b;
}
#faq_section img {
    width: 100%;
    position: sticky;
    top: 100px;
}
@media only screen and (min-width: 300px) and (max-width: 500px)  {
    #faq_section h2 {
        font-size: 30px;
    }
    #faq_section img {
        margin-top: 30px;
    }
    #faq_section button {
        font-size: 18px;
    }
}
/* We Work */
#work_process {
    padding: 30px 0;
    background-color: #e5feeb;
}
#work_process h2 {
    font-size: 50px;
}
#work_process h3 {
    font-size: 60px;
}
#work_process p {
    font-size: 18px;
    background-color: #EF6E2B;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 5px;
}
#work_process img {
    width: 80px;
}
@media only screen and (min-width: 300px) and (max-width: 500px) {
    #work_process h2 {
        font-size: 30px;
    }
    #work_process .col-lg-3 {
        width: 50%;
    }
    #work_process h3 {
        font-size: 40px;
    }
}
.accordion-button {
    font-size: 23px;
}
.accordion-button:not(.collapsed) {
    box-shadow: none;
}

#together_section {
    padding: 50px 0;
    background-color: #FFE175;
}
#together_section h2 {
    font-size: 100px;
}
#together_section .btn {
    outline: 1px solid #f3762b;
    color: #0b2453;
    border-radius: 40px;
}
#together_section .btn:hover {
    background-color: #EF6E2B;
    outline: none;
    color: #ffffff;
}
@media only screen and (min-width: 300px) and (max-width: 500px) {
    #together_section {
        padding: 30px 0;
    }
    #together_section h2 {
        font-size: 50px;
    }
}

/* Contact Us */
.contact_form_section .contact_form {
    background: #e5feeb;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px;
    border-radius: 20px;
}
.contact_form_section img {
    width: 100%;
    border-radius: 20px;
}
.contact_form_section .btn {
    background-color: #f3762b;
    color: #ffffff;
}
.contact_form_section .btn:hover {
    background-color: #0093d8;
}
.contact_info_section i {
    font-size: 30px;
    margin-bottom: 10px;
    color: var(--second-color);
}
.contact_information {
    border: 1px solid var(--third-color);
    border-radius: 10px;
    padding: 10px;
    margin-top: 20px;
}
.contact_information:first-child {
    margin-top: 0;
}
@media only screen and (min-width: 300px) and (max-width: 500px) {
    .contact_form_section .contact_form {
        margin-top: 20px;
    }
}

/* Top Footer Section */
.footer_first_section {
    background-color: #bdc3c7;
}
.footer_first_section .sisterConSwiper a img {
    height: 130px;
    width: 130px;
    border-radius: 10px;
    filter: grayscale(1);
}
.footer_first_section .sisterConSwiper a img:hover {
    filter: grayscale(0);
}
.footer_first_section ul {
    text-align: center;
}

.footer_second_section {
    padding: 10px 0;
}
.footer_second_section ul {
    text-align: center;
}
.footer_second_section ul li {
    display: inline-block;
    margin: 10px;
}
.footer_second_section ul li a i {
    font-size: 30px;
    filter: grayscale(1);
}
.footer_second_section ul li a i:hover {
    filter: grayscale(0);
}
.fa-square-facebook {
    color: #1976D2;
}
.fa-square-twitter{
    color: #1D9CEB;
}
.footer_second_section .fa-linkedin {
    color: #0073B1;
}
.fa-square-pinterest {
    color: #C62026;
}
.fa-square-youtube {
    color: #F60002;
}
.fa-square-tumblr {
    color: #2F4156;
}
.fa-flickr {
    color: #A427BB;
}
.fa-instagram {
    color: #ff3c00;
}
.fa-square-behance {
    color: #1666F7;
}


/* Footer */
footer {
    background-color: #313743;
    padding: 50px 0;
}
footer ul {
    margin-top: 40px;
}
footer ul li {
    padding: 10px 0;
    border-bottom: 1px solid #ffffff;
}
footer h4 {
    color: #ffffff;
}
footer ul li a {
    color: #ffffff;
    transition: .5s ease-in-out;
    font-size: 15px;
}
footer ul li a:hover {
    color: #f1f1f1;
    padding-left: 10px;
    transition: .5s ease-in-out;
}
@media only screen and (min-width: 300px) and (max-width: 500px) {
    footer h4 {
        margin-top: 30px;
    } 
    footer ul {
        margin-top: 20px;
    }
}
@media only screen and (min-width: 510px) and (max-width: 800px) {
    footer h4 {
        margin-top: 30px;
    }
    footer ul {
        margin-top: 20px;
    }
}

.privacy_desclaim {
    background: #363636;
    padding: 20px 0;
}
.privacy_desclaim hr {
    color: #ffffff;
}
.privacy_desclaim ul {
    text-align: center;
}
.privacy_desclaim ul li {
    display: inline-block;
    margin: 0 15px;
}
.privacy_desclaim ul li a {
    color: #ffffff;
}



/* Main Section */
#main_section {
    padding: 30px 0;
}
#main_section img {
    height: auto;
    width: 100%;
    border-radius: 10px;
}
#main_section h5 {
    color: #0b2453;
}
.main_section {
    padding: 30px 0;
} 

/* Website */
.website_image {
    height: 300px;
    width: 100%;
    overflow-y: scroll;
    position: relative;
}
.website_image img{
    width: 100%;
}
.visit_btn {
    background-color: #0b2453;
    color: #ffffff;
    padding: 10px 0;
    cursor: pointer;
}
.hover_link {
    padding: 10px 30px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: #1666F7;
    color: #ffffff;
}