@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&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: #eaeef1;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.container{
    width: 100%;
    margin: 0;
    padding: 0;
}

/* NAVBAR */

header{
    background: #000;
    padding: 20px 9rem;
    margin: 0;
    position: fixed;
    right: 0;
    left: 0;
    height: 6.25rem;
    z-index: 1000;
}

.navbar{
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.navbar .logo img {
    width: 90px;
    height: 65px;
    margin-top: 10px;
}

.navbar a{
    color: #eaeef1;
    font-size: 18px;
}

.navbar a:hover{
    color:#A51808;
}

.navbar .links{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.navbar li{
    list-style: none;
    padding: 20px;
}

.header-btn{
    background: #A51808;
    color: #ffffff;
    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;
}

.header-btn:hover{
    background: #fff;
    color: #000;
}

.toggle-btn{
    color: #fff;
    font-size: 25px;
    display: none;
}


/* DROPDOWN MENU */

.dropdown-menu{
    margin-top: 5px;
    position:absolute;
    left: 0;
    display: none;
    overflow: hidden;
    width: 100%;
    border-radius: 15px;
    height: 0;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(0,0,0,1);
}

.dropdown-menu a{
    color: #fff;
}

.dropdown-menu li{
    list-style: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.dropdown-menu.open{
    height:280px;
}

/* SUBMENU */

.links .submenu li{
    color: #fff;
    cursor: pointer;
    padding: 0.8rem;
    border-radius: 0.5rem;
    transition: background 0.2 ease;
}

.links li ul.submenu li{
    display: block;
}

.links li ul.submenu{
    width: 30%;
    background: #000;
    position: absolute;
    z-index: 999;
    display: none;
    border-radius: 10px;
    padding: 1rem;
    transition: all ease 0.3s;
}

.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);
}

#scroll-indicator {
      position: fixed;
      top: 0;
      left: 0;
      height: 6px;
      width: 0%;
      background: linear-gradient(90deg, #A51808, #001f97);
      z-index: 9999;
      transition: width 0.3s ease-out;
}

/* HERO */

.hero-section {
  font-family: "Poppins",sans-serif;
  padding-top: 6.5REM;
  width: 100%;
  position: relative;
  height: 100vh; /* Or desired height */
  background-image: url("../images/hero-3.jpeg");
  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: 100%;
    height: 100%;
    padding: 0 9rem;
    animation-name: hero-content;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-fill-mode: both;
    gap: 0.5rem;
}

.hero-content h1{
    font-size: 5rem;
    font-weight: 600;
    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: 500;
    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: #A51808;
    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;
}


/* HERO THIRD PARTY */

section.hero-TP {
    width: 100%;
    height: 120vh;
    background-color: #ffffff;
    display: flex;
}

.hero-TP .container{
    width: 100%;
    padding: 50px 100px;
}


/* ABOUT */

section.About {
    padding: 6rem 9rem;
}

.title{
    margin-bottom: 40px;
}

.title h2{
    font-size: 38px;
    line-height: 44px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: "Roboto",sans-serif;
}

.title span{
    font-weight: 300;
    color: #a51808;
}

.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-box img {
    width: 360px;
    height: 58vh;
    border-radius: 10px;
    box-shadow: -50px 50px 0 0 #A51808;
    margin: 0 50px 50px;
}

.about-content-box .exp-text{
    border-left: 10px solid #A51808;
    padding: 20px;
    margin-bottom: 30px;
}

.about-content-box .exp-text h1{
    font-size: 68px;
    font-weight: 700;
    display: inline-block;
    line-height: 50px;
    color: #A51808;
}

.about-content-box .exp-text h3{
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-content-box h2{
    font-size: 34px;
    font-weight: 600;
    line-height: 50px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.about-content-box p{
    line-height: 26px;
    margin-bottom: 24px;
}

.about-button{
    background: transparent;
    color: #A51808;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s all ease;
    border: 2px solid #a51808;
    width: 200px;
}

.about-button:hover{
    background: #a51808;
    color: #fff;
}


/* PROCESS */

section.Process{
    padding: 8rem 9rem;
    background-color: #A51808;
    position: relative;
    z-index: 1;
}

.Process .container{
    position: relative;
    z-index: 222;
    color: #fff;
}

.process-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.process-title {
    text-align: center;
    margin-bottom: 50px;
}

.process-title h4{
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 8px;
}

.process-title h2{
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1.45;
}

.process-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.process-content h4{
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}

.process-content p{
    color: #ffffffb3;
}

.process-icons {
    width: 115px;
    height: 115px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #a51808;
    margin-bottom: 20px;
}

.process-icons span{
    font-size: 50px;
}

.process-shape {
  position: absolute;   /* keep it behind the section */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;           /* send behind */
}

.process-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* makes sure it fills */
  opacity: 0.1;         /* reduce visibility */
}


/* CAROUSEL */

section.carousel{
    padding: 6rem 9rem;
}

.carousel-content h2{
    color: #A51808;
    font-size: 30px;
    font-weight: 700;
}

.carousel-content {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    padding-left: 15px;
}

.content-section {
    display: flex;
    flex-direction: column;
    flex-basis: 60%;
}

.carousel-card {
    display: flex;
    padding: 20px;
}

.cards:hover{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.01);
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    height: 100%;
    justify-content: space-between;
}

.card-content p {
    color: #fff;
}

.card-content h4 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
}

/* SWIPER  */

.card-wrapper .cards {
    margin: 10px;
    padding: 20px;
    width: 95% !important;
    height: 26rem!important;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 20px;
    transition: all cubic-bezier(1, 0, 0, 1) ease;
}

.card-wrapper{
  width: 100%;
}

.card-list{
  width:100%
}

.swiper-wrapper{
  padding-bottom: 2rem;
}

.swiper-scrollbar {
  height: 8px;                      
  border-radius: 4px;        
  background:none;
}

/* Swiper scrollbar drag/handle */
.swiper-scrollbar-drag {
  background: linear-gradient(90deg, #A51808,#bb1705,#0898a5, #001f97) !important;
  border-radius: 4px;        /* round handle */
  width: 300px !important;
}

/* SATURATION EFFECT */

/* #C1 {
    filter: saturate(0);
    transition: 0.3 ease;
}

#C1:hover {
    filter: saturate(100%);
}

#C2 {
    filter: saturate(0);
    transition: 0.3 ease;
}

#C2:hover {
    filter: saturate(100%);
}

#C3 {
    filter: saturate(0);
    transition: 0.3 ease;
}

#C3:hover {
    filter: saturate(100%);
}

#C4 {
    filter: saturate(0);
    transition: 0.3 ease;
}

#C4:hover {
    filter: saturate(100%);
} */

/* SATURATION END */

#C1 {
    background: linear-gradient(rgba(0, 0, 0, 0.204)), url(../images/C1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.3 ease;
}

#C2 {
    background: linear-gradient(rgba(0, 0, 0, 0.204)), url(../images/C2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.3 ease;
}


#C3 {
    background: linear-gradient(rgba(0, 0, 0, 0.204)), url(../images/C3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.3 ease;
}

#C4 {
    background: linear-gradient(rgba(0, 0, 0, 0.204)), url(../images/C4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.3 ease;
}

#C5 {
    background: linear-gradient(rgba(0, 0, 0, 0.204)), url(../images/C5.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.3 ease;
}

.carousel-icon {
    border: #fff solid 2px;
    padding: 4px 8px;
    border-radius: 50px;
    color: #fff;
}

.carousel-icon:hover {
    background: #fff;
    color: #000;
}


/* OUTLOOK SECTION */

section.outlook{
    padding: 4rem 6.5rem;
    width: 100%;
    overflow: hidden;
    /* background: linear-gradient(rgba(221, 7, 7, 0.504)), url(./world-map.jpg); */
    background: #A51808;
    display: none;
}

.outlook-box .outlook-image img{
    max-width: 380px;
    height: 500px;
    border-radius: 10px;
    box-shadow: -20px 20px 0 0 #000000;
}

.outlook-content {
    color: #fff;
    align-items: center;
    padding: 60px 60px 60px 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    flex-basis: 60%;
}

.outlook-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.outlook-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.outlook-content h1{
    font-size: 45px;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 24px;
}

.outlook-btn{
    background: #000000;
    font-size: 20px;
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
    transition: 0.3s all ease;
    margin-top: 1.5rem;
}

.outlook-btn:hover{
    background: #fff;
    color: #000;
}

.outlook-btn:hover a{
    color: #000;
}

.outlook-btn a{
    color: #fff;
    font-weight: 500;
}


/* FORM */

/* section.FAQ-Quote {
    padding: 6rem 6.5rem;
    background: #A51808;
    margin-top: 6rem;
    background: linear-gradient(rgba(165, 24, 8, 1)), url(../images/contact-bg.png);
    background-size: 100%;
} */

section.FAQ-Quote {
    position: relative;
    padding: 6rem 9rem;
    margin-top: 3rem;
    background: #c01a07; /* solid color always visible */
    overflow: hidden;
}

section.FAQ-Quote::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/form-bg.jpg) center/cover no-repeat;
    opacity: 0.5; /* image faded */
    z-index: -1; /* keep image behind content */
}

.FAQ-Quote-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-wrapper {
    display: flex;
    flex-basis: 50%;
    flex-direction: column;
    z-index: 222;
}

.form-card .title{
    margin-bottom: 15px;
}

.FAQ-Quote-wrapper .faq-wrapper .title{
    margin-bottom: 20px;
}

.FAQ-Quote-wrapper .faq-wrapper .title h4{
    display: block;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color:#fff;
    margin-bottom: 8px;
}

.FAQ-Quote-wrapper .faq-wrapper .title h2 {
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;
    line-height: 1.35;
}

.faq-shape img {
    position: absolute;
    right: 40px;
    top: 85px;
    z-index: 0;
    width: 100%;
}

.accordian {
    box-shadow: 0 4px 20px #0000000d;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    border: 1px solid #d9b9b9;
    border-radius: 10px;
    margin: 8px;
    background: rgb(255 255 255 / 10%);
}

.question {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.question h2{
    font-size: 20px;
    color: #fff;
    font-weight: 400;
}

.question i{
    transition: 0.4s all ease;
    display: flex;
}

.icon{
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    border-radius: 50px;
}

.icon.active{
    transform: rotate(-90deg);
}

.accordian.active .question {
  background: #fff;
}

.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: 1rem 0;
    color: #ffffff;
}

.answer.active{
    max-height: fit-content;
}

.Form-wrapper {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 50%;
}

.form-card{
    margin-left: 100px;
    background: #fff;
    padding: 50px 60px 60px;
    border-radius: 15px;
    width: 70%;
    z-index: 222;
}

.Form-wrapper .form-button{
    width: 100%;
    background: #000000;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    margin-top: 1.5rem;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
    border-radius: 6px;
    padding: 17px 28px;
    transition: 0.3s ease-out;
}


.input-box input{
    background-color: rgb(245, 245, 245);
    color: #404040;
    font-weight: 400;
    font-size: 15px;
    text-transform: capitalize;
    appearance: none;
    width: 100%;
    line-height: 1.4;
    height: 50px;
    cursor: pointer;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    outline: none;
    padding: 13px 50px 13px 20px;
    border-radius: 4px;
    margin: 10px 0;
}

/* section.Contact-form {
    padding: 3rem 6.5rem;
}

section.Contact-form .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.form-wrapper {
    display: flex;
    width: 100%;
    padding: 50px;
    align-items: center;
    justify-content: space-between;
    background: #000000;
    border-radius: 20px;
    position: relative;
    animation-duration: 3s;
    animation-delay: 0s;
    animation-fill-mode: forwards;
    animation-name: example;
}

.form-content {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 20px;
    gap: 2rem;
}

.form-para {
    color: #fff;
}

.form-para h1{
    font-size: 3.125rem;
    font-weight: 600;
}

.form-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-links a{
    padding: 10px 0;
    color: #fff;
}

.form-links i{
    padding-right: 15px;
    color: #a51808;
}

.form-social {
    display: flex;
    align-items: center;
    justify-content: start;
}

.form-social i{
    color: #A51808;
    padding-right: 15px;
    font-size: 20px;
}

.form-social i:hover{
    color: #fff;
}

.form-card {
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
}

.input-box {
    padding: 10px 0;
}

.user-details .input-box input {
    height: 45px;
    width: 100%;
    outline: none;
    font-size: 16px;
    border-radius: 5px;
    padding-left: 15px;
    border: 1px solid #ccc;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
}

.user-details .form-button{
    padding: 5px 15px;
    background: #A51808;
    color: #ffffff;
    border-radius: 20px;
    cursor: pointer;
    outline: none;
    border: none;
    transition: all ease 0.3s;
    font-size: 1rem;
    margin-top: 15px;
}

.user-details .form-button:hover{
    background: #000;
    color: #fff;
    transform: scale(1.05);
} */

/* CONTACT */

section.contact {
    padding: 6rem 6.5rem;
}

.Contact-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.contact-card {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 20px;
    border: 2px solid;
    margin: 10px;
    border-radius: 20px;
    max-width: 340px;
    width: 340px;
}

.contact-card i{
    color: #A51808;
    font-size: 40px;
    padding: 10px;
}


/* SOCIAL  */


section.social-items {
    display: none;
    align-items: center;
    background: #000;
    flex-direction: column;
    margin-top: 40px;
}

.social {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.social a{
    background: #A51808;
    color: #ffffff;
    padding: 20px;
    margin: 10px;
    display: flex;
    border-radius: 87px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    transition: 0.5s all ease;
}

.social a:hover{
    /* transform: scale(1.1); */
    border: 2px solid #ffffff;
    background: #fff;
    color: #000;
}

.social-items .logo img{
    width: 100px;
    height: 65px;
}

.copyright-text {
    color: #fff;
    padding: 20px;
    text-align: center;
}

/* FOOTER */

.footer{
    background: linear-gradient(145deg, #000107, #000000,  #A51808);
    padding: 0 9rem;
    /* 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: #A51808;
    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: #000;
    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-mail {
    display: flex;
    flex-direction: column;
    flex-basis: 35%;
    align-items: start;
    justify-content: center;
}

.footer-logo img {
    width: 130px;
    height: 75px;
    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;
}

.footer-wrapper .form-button{
    border: none;
    border-radius: 100px;
    background: #A51808;
    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: #A51808;
    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: #c50101;
    color: #000;
}

.footer-bottom i {
    color: #fff;
    font-size: 1rem;
    display: flex;
}
