@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;
    gap: 5rem;
}

.about-img-box{
   width: 100%;
   position: relative;
}

.about-content-box{
   width: 100%;
}

.about-img-box img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    aspect-ratio: 1/1;
    position: relative;
}

.about-img-box.animate{
    animation: about-img-box 1.3s forwards cubic-bezier(.645,.045,.355,1) .4s;
}

.about-content-box .about-content h4{
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #A51808;
}

.about-content-box .about-content h2{
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 600;
    text-transform: capitalize;
    color: #000;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.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-items-wrapper .about-group .about-items li i{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    color: #A51808;
}

.about-group .about-items li{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: #151515;
    line-height: 1.6;
    margin-bottom: 10px;
}

.about-button {
    background: #A51808;
    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;
    width: 180px;
    margin-top: 25px;
}

.about-button:hover{
    background: #000000;
    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;
    position: relative;
}

.process-icons.animate{
    animation: process-icons .8s 0.8s both;
}

.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.Outlook{
    width: 100%;
    padding: 6rem 9rem;
    background: #a51808;
    position: relative;
}

.outlook-wrapper {
    display: flex;
    gap: 3rem;
    position: relative;
    z-index: 444;
    justify-content:space-around;
    align-items: center;
}

.outlook-content-box {
    color: #fff;
    width: 33.33%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.outlook-content-box h4{
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 8px;
}

.outlook-content-box h2{
    margin-bottom: 15px;
    font-size: 36px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.3;
    letter-spacing: 0;
}

.outlook-content-box p{
    font-size: 1rem;
    text-transform: capitalize;
    line-height:normal;
}

.outlook-img-box {
    width: 33.33%;
    position: relative;
}

.outlook-img-box img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.outlook-img-box .main-img{
    width: 90%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    margin-left: 40px;
}

.main-img.animate{
    animation: main-img .8s .8s both;
}

.outlook-img-box .main-img-2{
    position: absolute;
    width: 140px;
    top: -30px;
    object-fit: cover;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    height: auto;
    border: 3px solid #eaca5b;
    z-index: 99;
}

.main-img-2.animate{
    animation: main-img-2 1.5s 1.5s both;
}

.outlook-img-box .main-img-3 {
    position: absolute;
    width: 140px;
    object-fit: cover;
    height: auto;
    border: 3px solid #eaca5b;
    right: 0;
    bottom: 30px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    left: 300px;
}

.main-img-3.animate{
    animation: main-img-3 2s 2s both;
}

.outlook-img-box .img-box-list{
    display: flex;
    background: #fff;
    position: absolute;
    width: 100%;
    justify-content: start;
    align-items: center;
    border-radius: 10px;
    bottom: 0;
    padding: 15px;
    gap: 10px;
}

.outlook-img-box .img-box-list.animate{
   animation: img-box-list 2s .8s both;
}

.outlook-img-box .img-box-list .icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    padding: 10px;
    background-color: #a51808;
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 30px;
}

.img-box-list .exp-text {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}

.img-box-list .exp {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 800;
}

.img-box-list h3{
    font-size: 12px;
}

.outlook-btn{
    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;
    margin-top: 5px;
    gap: 10px;
    width: fit-content;
}

.outlook-btn:hover{
    background: #fff;
    color: #000;
}

.outlook-shape{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
}

ul.outlook-list-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding-top: 1.5rem;
}

.outlook-list-items .icon{
  position: relative;   /* make it a positioning context */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #a51808; /* solid circle */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: #fff; /* icon color */
  margin-right: 15px;
}

.outlook-list-items .icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(165, 24, 8, 0.2); /* low opacity */
  transform: translate(-50%, -50%) scale(1.3); /* slightly bigger */
}

.outlook-list-items span::before{
    background: #53211b;
    width: 100px;
    height: 100px;
}

.outlook-list-box {
    width: 33.33%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.outlook-list-items li{
    background: #fff;
    margin-bottom: 24px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 15px 15px 15px 25px;
    gap: 10px;
    width: 100%;
    color: #000;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.outlook-list-items li.animate{
   animation: outlook-list-items 2s .8s both;
}

.outlook-list-items span{
    font-size: 40px;
}

.outlook-list-items h3{
   font-size: 18px;
   font-weight: 600;
}

.outlook-list-items p{
    font-size: 12px;
}

.outlook-list-box .list-content {
    display: flex;
    flex-direction: column;
    align-items: start;
}



/* OUTLOOK SECTION */

/* .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;
} */


/* 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;
}



/* 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;
}



/* MISSION */

section.Mission {
    padding: 6rem 9rem;
}

.mission-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}

.mission-img-box {
    width: 100%;
    position: relative;
}

.mission-img-box.animate{
    animation: mission-img-box 1.3s forwards cubic-bezier(.645,.045,.355,1) .4s;
}

.mission-img-box img{
    width: 100%;
    border-radius: 10px;
}

.mission-img-box .pad-img{
    width: 100%;
    border-radius: 10px;
    display: none;
}

.mission-content-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.mission-items-wrapper {
    /* display: grid;
    grid-template-columns: repeat(2, 2fr); */
    display: flex;
}

.mission-group{
    display: flex;
    flex-direction: column;
}

div#m1 {
    border-bottom: 2px solid #9f9fa4;
    padding-bottom: 20px;
}

div#m3 {
    border-bottom: 2px solid #9f9fa4;
    padding-bottom: 20px;
}

.mission-items {
    padding: 10px 10px 10px 0;
    max-width: 85%;
}

.mission-items-wrapper .mission-items h2{
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
}

.mission-items-wrapper .mission-items span{
  font-size: 38px;
  font-weight: 700;
  padding-right: 5px;
}

.mission-items-wrapper .mission-items p{
  font-size: 12px;
  text-transform: capitalize;
}

.mission-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mission-content h4 {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #A51808;
}

.mission-content h2{
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 600;
    text-transform: capitalize;
    color: #000;
    line-height: 1.35; 
}

.mission-content p{
    font-size: 16px;
    text-transform: capitalize;
    line-height: normal;
}

.mission-btn{
    background: #A51808;
    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;
    width: 180px;
    margin-top: 15px;
}

.mission-btn span{
    padding-left: 5px;
}

.mission-btn:hover{
    background-color: #000;
}


/* 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;
}
