* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

:root {
  --dark-blue: #041B33;
  --light-blue: #69B2FF;
  --secondary: #FFEBCD;
  --black-light: #121212;
  --black: #000000;
  --white: #ffffff;
  --gray-light: #2E2E2E;
  --btnbgclr: linear-gradient(0deg, #2073CA, #124982);

  /* font-family */
  --poppins: "Poppins", sans-serif;
  --prompt: "Prompt", sans-serif;
  ;

  /* font-size */
  --size-14: 0.875rem;
  --size-16: 1rem;
  --size-18: 1.125rem;
  --size-20: 1.25rem;
  --size-21: 1.313rem;
  --nav-font: 1.625rem;
  --size-22: 1.375rem;
  --size-24: 1.5rem;
  --size-26: 1.625rem;
  --size-27: 1.688rem;
  --size-28: 1.75rem;
  --size-32: 2rem;
  --size-33: 2.063rem;
  --size-35: 2.313rem;
  --size-42: 2.625rem;
  --size-46: 2.875rem;
  --size-48: 3rem;
  --size-56: 3.5rem;
  --size-60: 3.75rem;
  --size-62: 3.875rem;
  --size-70: 4.375rem;
  --size-80: 4.813rem;
}

body {
  padding: 0;
  margin: 0;
  font-family: var(--poppins);
  font-weight: normal;
  font-size: var(--size-16);
  line-height: var(--size-26);
}

.container-xxl {
  max-width: 1700px;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--prompt);
  font-weight: normal;
}

p {
  font-size: var(--size-18);
  font-weight: 400;
  margin-bottom: 1rem;
}

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

img {
  width: 100%;
  height: auto;
}


/* Buttons */

.SrwBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 1rem 3rem;
  color: var(--white);
  background: var(--btnbgclr);
  font-size: var(--size-20);
  font-family: var(--prompt);
  border: 1px solid rgba(255, 255, 255, 0).16;
  box-shadow: 0rem 0.688rem 0.938rem rgba(34, 91, 205, 0.28);
  border-radius: 5rem;
  background-size: 300% 100%;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.outline-btn-bg {
  background: linear-gradient(90deg, rgba(18, 73, 130, 0.12), rgba(32, 115, 202, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.SrwBtn img {
  max-width: 1.3rem;
  height: auto !important;
  margin-left: 0.4rem;
}

.SrwBtn:hover {
  opacity: 0.8;
}


/* Header */
.header {
  width: 100%;
  background: var(--dark-blue);
}

.headerinfo {
  width: 100%;
  position: relative;
  z-index: 9;
}

.headerinfo ul {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.headerinfo ul li {
  display: flex;
  justify-items: flex-start;
  align-items: center;
  gap: 0.625rem;
  margin-left: 3rem;
}

.headerinfo ul li img {
  width: 2rem;
}

.headerinfo ul li a {
  color: var(--white);
  font-size: var(--size-18);
  font-weight: 500;
  padding: 1rem 0;
}

/* navbar */
.navbar {
  width: 100%;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8;
  transition: all 0.5s ease-in-out;
  padding: 4.8rem 0rem 0rem;
}

.navbar::after {
  content: '';
  width: 15%;
  height: 84%;
  background: var(--white);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -5;
  border-bottom-right-radius: 1rem;
  transition: all 0.5s ease-in-out;
}

.navbar-brand {
  padding: 0;
  margin-top: -6.2rem;
  transition: all 0.5s ease-in-out;
  position: relative;
  z-index: 99;

}

.navbar-brand img {
  max-width: 300px;
  transition: all 0.5s ease-in-out;
}

.navbar-sticky {
  position: fixed;
  padding: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: var(--dark-blue);
}

.navbar-sticky::after {
  width: 15%;
  height: 100%;
  transition: all 0.5s ease-in-out;
}

.navbar-sticky .navbar-brand {
  margin-top: 0;
}

.navbar-sticky .navbar-brand img {
  width: 16rem;
}

.navbar-nav li {
  padding: 0rem;
}

.navbar-nav .nav-item.dropdown li {
  padding: 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
  font-size: var(--size-20);
  padding: 1rem 2rem;
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.navbar-sticky.navbar-expand-lg .navbar-nav .nav-link {
  font-size: var(--size-20);
}

.nav-link:focus,
.nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--light-blue);
}

.navbar-nav li .dropdown-menu {
  background-color: var(--dark-blue);
  padding: 0;
  border-radius: 0rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border: none;
  margin-top: 0.5rem;
}

.navbar-nav li .dropdown-item {
  font-size: var(--size-20);
  padding: 0.5rem 0.8rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 0.5rem;
}

.dropdown-toggle::after {
  margin-left: 0.455em;
}

.mobile-navbar-canva .navbar-nav li .dropdown-item {
  white-space: inherit;
}

.navbar-nav li .dropdown-item:focus,
.navbar-nav li .dropdown-item:hover,
.navbar-nav li .dropdown-item.active,
.navbar-nav li .dropdown-item:active {
  color: var(--white);
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
}

.contact-btn a {
  padding: 1rem 2.25rem;
  font-size: var(--size-18);
}

/* Mobile Navbar */
.offcanvas {
  background: var(--dark-blue);
}

.m-vertion .dropdown-toggle::after {
  border-top-color: var(--white);
}

.mobile-navbar .nav-link {
  font-size: var(--size-24);
  text-transform: uppercase;
  padding: 1rem 0;
  color: var(--white) !important;
}

.mobile-navbar .nav-link:focus,
.mobile-navbar .nav-link:hover,
.mobile-navbar .navbar-nav .nav-link.active,
.mobile-navbar .navbar-nav .nav-link.show {
  color: var(--white) !important;
}

.offcanvas-title {
  color: var(--white) !important;
}

.offcanvas-header .btn-close {
  filter: invert(1) brightness(1);
}

.navbar-toggler,
.navbar-toggler:focus {
  border: none;
  box-shadow: 0 0 0 transparent;
}

.mobile-navbar-canva {
  display: none;
}

.hamburger-cart {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
}

/* Banner */
.banner-ways-wrapper
{
  	padding: 10rem 0rem 5rem;
  	position: relative;
	
	overflow: hidden;
}

.banner-ways-wrapper::after {
  content: '';
  width: 100%;
/*   height: 80%; */
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), #00000080);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top:0;
  z-index: 1;
}
.banner-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}
.bannercontentswrap {
  width: 80%;
  margin: auto;
  position: relative;
  z-index: 2;
}

.content-banner {
  text-align: center;
  margin-top: auto;
}

.content-banner img {
  width: 14rem;
  margin: auto auto 0.6rem;
}

.content-banner h5
{
  font-size: var(--size-26);
  font-style: italic;
  color: var(--white);
  text-transform: uppercase;
}

.content-banner h1
{
  font-size: var(--size-48);
  color: var(--white);
  text-transform: uppercase;
  line-height: 120%;
  letter-spacing: 1px;
  font-weight: 800;
}

.content-banner p
{
  font-size: var(--size-18);
  color: var(--white);
  line-height: 1.5;
  letter-spacing: 1px;
}

.bannerbtn {
  margin: 2rem 0;
}

.content-banner .bannerbtn a {
  margin-right: 1em;
  box-shadow: 0rem 0rem 0rem transparent;
}

.content-banner .bannerbtn img {
  margin: 0 0 0 0.5rem;
}

.content-banner ul {
  width: 80%;
  margin: auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
}

.content-banner ul li {
  width: 48%;
  font-size: var(--size-18);
  color: var(--white);
  line-height: 130%;
  letter-spacing: 1px;
  font-weight: 500;
  list-style: none;
  background: url('../img/icon/done-circle.svg') no-repeat;
  background-size: 1.875rem;
  background-position: 0rem 1px;
  padding: 0rem 0rem 1rem 2.5rem;
}


/* .marquee{
	color: white;
	padding: 20px 0;
	display: flex;
    justify-content: center;
    align-items: center;
	background: var(--dark-blue);
} */
.marquee-container{
	display: flex;
    justify-content: center;
    align-items: center;
}

.marquee-inner {
	color: white;
	padding: 20px 0;
	overflow-x: hidden;
	position: relative;
    height: 80px;
	background: var(--dark-blue);
    display: flex;
    flex-direction: column;
    justify-content: center;
	
}
/* .marquee-item{
	font-size: var(--size-26);
	display: inline-block;
	animation: marquee 20s linear infinite;
} */

.marquee {
    width: 100%;
    overflow: hidden;
    background: var(--dark-blue);
}

.marquee-item {
    position: absolute;
    white-space: nowrap;
    font-size: var(--size-26);
    color: #fff;
	font-weight: 900;
    letter-spacing: 3px;
    text-shadow: 0px 3px #1f70c5;
    animation: marquee 10s linear infinite alternate;
}

/* Movement */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(100vw - 100%));
    }
}
/* Blink effect */
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Abouts Home*/
.about-us-wrapper {
  padding: 6rem 0rem 0rem;
}

.about-content {
  width: 100%;
  max-width: 688px;
  margin-left: auto;
  padding-bottom: 6rem;
  position: relative;
  left: 1rem;
}

.about-content img {
  width: 12.5rem;
  margin-bottom: 1rem;
}

.about-content h5
{
  font-size: var(--size-26);
  font-style: italic;
  color: var(--black-light);
  text-transform: uppercase;
}

.about-content h2 {
  font-size: var(--size-42);
  color: var(--black-light);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 1px;
  font-weight: 800;
  margin-bottom: 1.125rem;
}

.about-content p {
  color: var(--gray-light);
  letter-spacing: 1px;
  margin-bottom: 1.125rem;
}

.about-content .SrwBtn img {
  margin-bottom: 0;
}

.about-content h4 {
  font-size: var(--size-24);
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 1px;
  color: var(--black-light);
  text-transform: uppercase;
  margin-top: 3rem;
}

.about-content ul {
  margin: 2rem 0rem 0rem;
  padding: 0;
}

.about-content ul li
{
  font-size: var(--size-18);
  color: var(--gray-light);
  line-height: 100%;
  letter-spacing: 1px;
  position: relative;
  list-style: none;
  padding: 0.5rem 0rem 0.5rem 1.5rem;
}

.about-content ul li::before {
  content: '';
  width: 0.7rem;
  height: 0.7rem;
  background: #124982;
  position: absolute;
  top: 0.7rem;
  left: 0;
}

.about-img {
  text-align: center;
}

.brand-name-img {
  width: 25rem;
  margin: auto;
}

/*our-services */
.our-services-wrapper {
  padding: 6rem 0rem 9rem;
  background: url('../img/bg-img.jpg') no-repeat;
  background-size: 113.75rem 100%;
  background-position: center bottom;
}

.title-services {
  width: 100%;
  max-width: 75%;
  margin: auto auto 3.75rem;
  text-align: center;
}

.title-services img {
  width: 12rem;
  margin-bottom: 0.5rem;
}

.title-services h5
{
  font-size: var(--size-26);
  font-style: italic;
  color: var(--white);
  text-transform: uppercase;
}

.title-services h2 {
  font-size: var(--size-42);
  color: var(--white);
  text-transform: uppercase;
  line-height: 120%;
  letter-spacing: 1px;
  font-weight: 800;
  margin-bottom: 1.125rem;
}

.service-box {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: linear-gradient(90deg, #173C63, #123252);
  padding: 3rem;
  box-shadow: 0rem 0.4rem 2rem rgba(60, 115, 170, 0.20);
  border-radius: 1.125rem;
  text-align: center;
}

.service-box img {
  width: 8.125rem;
  margin-bottom: 1rem;
}

.service-box h4 {
  font-size: var(--size-20);
  color: var(--white);
  text-transform: uppercase;
  line-height: 120%;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-box p {
  font-size: var(--size-16);
  color: var(--white);
  line-height: 130%;
  letter-spacing: 1px;
  margin: 0;
  padding: 0;
}

.btnservices {
  margin-top: 2rem;
}

.btnservices a {
  border: 1px solid rgba(255, 255, 255, 0.16);
}

/* choose-us-wrapper */
.choose-us-wrapper {
  padding: 8rem 0;
  background: linear-gradient(0deg, #ffffff, #D0DBE7, #ffffff);
}

.choose-us-content {
  padding-left: 3rem;
}

.choose-us-content img {
  width: 12rem;
  margin-bottom: 0.5rem;
}

.choose-us-content h5 {
  font-size: var(--size-26);
  font-style: italic;
  color: var(--black-light);
  text-transform: uppercase;
}

.choose-us-content h2 {
  font-size: var(--size-42);
  color: var(--black-light);
  text-transform: uppercase;
  line-height: 120%;
  letter-spacing: 1px;
  font-weight: 800;
  margin-bottom: 1.875rem;
}

.choose-us-content p
{
  font-size: var(--size-16);
  color: var(--black-light);
  line-height: 130%;
  letter-spacing: 1px;
  margin: 0;
  padding: 0;
}

.choose-us-content ul {
  margin: 0rem 0rem 1.4rem;
  padding: 0;
}

.choose-us-content li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.choose-us-content li img {
  width: 2.875rem;
  flex: 0 0 auto;
  margin: 0;
}

.choose-us-content li p {
  font-size: var(--size-16);
  color: var(--black-light);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 1px;
  margin: 0;
  padding: 0;
}

/* Our Process */
.our-process-wrapper {
  padding: 9rem 0rem 12rem;
  background: url('../img/bg-img-up.jpg') no-repeat;
  background-size: 113.75rem 100%;
  background-position: center top;
}

.title-ways.max-width {
  width: 50%;
  margin: auto auto 3.75rem;
  text-align: center;
}

.title-ways img {
  width: 12rem;
  margin-bottom: 0.5rem;
}

.title-ways h5 {
  font-size: var(--size-26);
  font-style: italic;
  color: var(--white);
  text-transform: uppercase;
}

.title-ways h2 {
  font-size: var(--size-42);
  color: var(--white);
  text-transform: uppercase;
  line-height: 120%;
  letter-spacing: 1px;
  font-weight: 800;
  margin-bottom: 1.125rem;
}

.our-process
{
  width: 100%;
  position: relative;
  display: flex;
  /*justify-content: center;*/
  align-items: center;
  z-index: 2;
  margin-top: 3rem;
}

.our-process::before {
  content: '';
  width: 50%;
  height: 100%;
  margin-left: auto;
  background: url(../img/bg-arrow-right.png) no-repeat;
  background-size: contain;
  background-position: center right;
  position: absolute;
  right: 1.5rem;
  top: 0;
  z-index: -1;
}

.our-process .content {
  width: 11rem;
  height: 12rem;
  border-radius: 0.625rem;
  background: var(--white);
  padding: 2rem 1.4rem;
}

.our-process .content h4
{
  color: var(--black-light);
  font-size: var(--size-18);
  line-height: 110%;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.our-process .content p {
  color: var(--black-light);
  font-size: var(--size-15);
  line-height: 120%;
  padding-bottom: 0;
  margin: 0;
}

.steps {
  color: var(--white);
  font-size: var(--size-16);
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  padding-left: 1rem;
}

/* founder-wrappper */
.founder-wrappper {
  padding: 6rem 0;
  background: linear-gradient(0deg, #ffffff, #D0DBE7, #ffffff);
}

.founder-content {
  padding-left: 3rem;
}

.founder-content img {
  width: 12rem;
  margin-bottom: 0.5rem;
}

.founder-content h5 {
  font-size: var(--size-22);
  font-style: italic;
  color: var(--black-light);
  text-transform: uppercase;
}

.founder-content h2 {
  font-size: var(--size-42);
  color: var(--black-light);
  text-transform: uppercase;
  line-height: 120%;
  letter-spacing: 1px;
  font-weight: 800;
  margin-bottom: 1.125rem;
}

.founder-content p {
  color: #2E2E2E;
  font-size: var(--size-16);
  line-height: 1.5;
  letter-spacing: 1px;
  margin: 0;
}

.founder-img {
  width: 90%;
}

.founder-img img {
  border-radius: 1.125rem;
}

/* trusted-partner */
.trusted-partner {
  padding: 0rem 0rem 6rem;
}

.brand-partner {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}

.partnertitle {
  margin-bottom: 3rem;
}

.partnertitle h5,
.partnertitle h2 {
  color: var(--black-light);
}

.brand-partner img {
  width: 18rem;
  border: 1px solid var(--white);
  border-bottom-width: 0.4rem;
  border-radius: 0.625rem;
  transition: all 0.3s ease-in-out;
}

.marquee__inner {
  display: flex;
  animation: scroll 10s linear infinite;
}

.marquee__inner:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.brand-partner img:hover {
  border-color: rgba(0, 122, 255, 0.70);
}

/* ourmission-vission */
.ourmission-vission {
  padding: 9rem 0rem 12rem;
  background: url('../img/bg-img.jpg') no-repeat;
  background-size: 111rem 100%;
  background-position: center bottom;
}

.m-content img {
  width: 12rem;
  margin-bottom: 0.5rem;
}

.m-content {
  margin-bottom: 2rem;
}

.m-content,
.v-content {
  padding-right: 5rem;
}

.m-content h2,
.v-content h2 {
  font-size: var(--size-42);
  color: #F7F7F7;
  text-transform: uppercase;
  line-height: 120%;
  letter-spacing: 1px;
  font-weight: 800;
  margin-bottom: 1.125rem;
}

.m-content p,
.v-content ul li {
  color: var(--white);
  font-size: var(--size-16);
  line-height: 1.5;
  letter-spacing: 1px;
}

.v-content ul {
  margin: 0;
  padding: 0;
}

.v-content ul li {
  list-style: none;
  background: url('../img/icon/done-w.svg') no-repeat;
  background-size: 1.775rem;
  background-position: 0rem 0.2rem;
  padding: 0rem 0rem 1rem 2.5rem;
}

/* client-say-wrapper */
.client-say-wrapper {
  padding: 6rem 0;
}

.client-ttitle {
  margin-bottom: 3.9rem;
}

.client-ttitle h5,
.client-ttitle h2 {
  color: var(--black-light);
}

#clients .owl-stage {
  display: flex;
}

.item-client {
  width: 100%;
  height: 100%;
  background: #ECF5FF;
  padding: 3rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}

.item-client img {
  width: 4rem !important;
  margin-bottom: 1.125rem;
}

.item-client p {
  color: #2E2E2E;
  font-size: var(--size-16);
  line-height: 1.5;
  letter-spacing: 1px;
}

.divider {
  width: 100%;
  height: 100%;
  display: inline-block;
  margin: 2rem auto 1rem;
  border-bottom: 1px solid #9F9F9F;
}

.item-client h5 {
  color: #124982;
  font-weight: bold;
  font-size: var(--size-20);
}

/*#clients .owl-nav button.owl-prev:hover,
#clients .owl-nav button.owl-next:hover {
  background: transparent;
}*/

#clients .owl-nav button.owl-prev img,
#clients .owl-nav button.owl-next img {
  width: 3.125rem;
  filter: drop-shadow(0 0.688rem 0.938rem rgba(0, 0, 0, 0.30));
}

#clients .owl-nav button.owl-prev {
  position: absolute;
  right: 4rem;
  top: -8rem;
}

#clients .owl-nav button.owl-next {
  position: absolute;
  right: 0;
  top: -8rem;

}

/* faq-wrapper */
.faq-wrapper {
  padding: 0rem 0rem 30rem;
  background: url('../img/faq-bg.jpg') no-repeat;
  background-size: 100%;
  background-position: center bottom;
}

.faq-wrapper .accordion {
  width: 70%;
  margin: auto;
}

.accordion-item {
  color: var(--black-light);
  background-color: var(--white);
  border: 1px solid #949494 !important;
  border-radius: 1rem !important;
  overflow: hidden;
  margin-bottom: 1rem;

}

.accordion-button {
  font-size: var(--size-22);
  font-weight: 600;
}

.accordion-button span {
  color: #5B5B5B;
  margin-right: 0.5rem;
}

.accordion-button:not(.collapsed) {
  color: var(--black-light);
  background-color: var(--white);
  box-shadow: 0rem 0rem 0.2rem #949494
}

.accordion-body p {
  color: #2C2C2C;
  font-size: var(--size-16);
  line-height: 1.5;
  letter-spacing: 1px;
}

/* Remove hover effect */
.accordion-button:hover {
  background-color: var(--white) !important;
  color: var(--black-light) !important;
}

/* Remove focus effect */
.accordion-button:focus {
  box-shadow: none !important;
}

/* Remove active/open effect */
.accordion-button:not(.collapsed) {
  background-color: var(--white) !important;
  color: var(--black-light) !important;
}

/* .accordion-button::after{
  background: url('../img/icon/chevrondown.png') no-repeat;
  background-size: 1rem;
  background-position: center;
}
.accordion-button:not(.collapsed)::after{
    background: url('../img/icon/chevronup.png') no-repeat;
    background-size: 1rem;
  background-position: center;
} */

.accordion-button::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url('../img/icon/chevrondown.png') no-repeat center;
  background-size: contain;
  transition: 0.3s;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

/* footer navbar */
.footer {
  padding: 9rem 0rem 0rem;
  margin-bottom: 2rem;
  background: url('../img/footer-bg-img-up.jpg') no-repeat;
  background-size: 111rem 100%;
  background-position: center top;
  overflow: hidden;
}

.footer .bannerbtn {
  margin: 1rem 0;
}

.footer .bannerbtn a {
  margin-right: 1.5rem;
}

.footertitle {
  width: 100%;
}

.footertitle h2 {
  width: 100%;
  max-width: 75%;
  margin: auto auto 1rem;
}

.footertitle p {
  color: var(--white);
  font-size: var(--size-18);
  line-height: 130%;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.footer-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #5989BD, transparent);
  margin: 3rem 0rem 5rem;
}

.footer-row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.column-footer:first-child {
  width:30rem;
}

.footermain {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.footer-barnd img {
  width: 15rem;
}

.brand-content {
  margin-top: 2rem;
}

.brand-content p {
  color: #C4C4C4;
  font-size: var(--size-16);
  line-height: 1.5;
  letter-spacing: 1px;
}

.navbar-link {
  padding: 0;
  margin: 0;
}

.footer-navbar,
.footermain {
  width: 100%;
  height: 100%;
}

.footer-navbar h4 {
  color: var(--white);
  font-size: var(--size-28);
  font-weight: bold;
  margin-bottom: 1rem;
  display: inline-block;
  letter-spacing: 1px;
}

.navbar-link li {
  list-style: none;
}

.navbar-link li a {
  color: var(--white);
  font-size: var(--size-16);
  font-weight: 400;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  background: url('../img/icon/double-arrow.png') no-repeat left 12px;
  background-size: 1rem;
  padding: 0.5rem 0rem 0.5rem 1.75rem;
}

.navbar-link li a:hover {
  color: var(--light-blue);
}

.information li a img,
.footer-info-stay img {
  width: 0.875rem;
  margin-right: 0.5rem;
  position: relative;
  top: -1px;
}

.footer-info a {
  color: var(--white);
  margin: 0rem 0.5rem;
  font-size: var(--size-18);
}

.footer-info-main {
  margin-bottom: 3rem;
}

.footer-info-main,
.footer-info-stay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-info img {
  width: 2rem;
  position: relative;
  top: -3px;
}

.footer-info-stay {
  width: 45%;
}

.footer-info-stay img {
  width: 1.2rem !important;
  flex: 0 0 auto;
  margin-right: 0;
}

.footer-info-stay p {
  color: var(--white);
  font-size: var(--size-18);
  font-weight: bold;
  flex: 0 0 auto;
  display: inline-block;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.footer-info-stay .newsletter-form .wpcf7-form-control-wrap {
  background-image: url("../img/envelop.svg");
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: left center;
}

.footer-info-stay .newsletter-form .SrwBtn{
    background:linear-gradient(90deg,#2b6cb0,#1e4f8f);
    color:#fff;
    border:none;
    padding:12px 26px;
    border-radius:30px;
    text-transform:uppercase;
    display:flex;
    align-items:center;
    gap:8px;
}

.footer-info-stay .newsletter-form .SrwBtn::after{
    content:"";
    width:16px;
    height:16px;
    background:url("../img/chevron-right.svg") no-repeat center;
    background-size:contain;
}

.footer-info-stay .newsletter-form .form-control {
  padding: .375rem 2.1rem;
}

.input-group {
  align-items: center;
  background: rgb(217, 217, 217, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.39);
  border-radius: 5rem;
  padding-left: 1rem;
}

.input-group input {
  background: transparent;
  border: none;
}

.input-group input:focus {
  color: var(--white);
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.39);
  outline: 0;
  box-shadow: 0 0 0 .0rem rgba(13, 110, 253, .25);
}

.input-group input::placeholder {
  color: var(--white);
}

.input-group input::-ms-input-placeholder {
  color: var(--white);
}

.input-group input::-moz-placeholder {
  color: var(--white);
}

.input-group .SrwBtn {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5rem !important;
  font-size: var(--size-16);
  margin: 0.5rem;
}

.copyright {
  width: 93%;
  background: rgba(0, 0, 0, 0.10);
  text-align: center;
  margin: auto;
}

.copyright p {
  color: var(--white);
  font-size: var(--size-16);
  padding: 1rem;
  margin: 0;
}

/*/////////////////////////////
        Inner Pages Css
////////////////////////////*/

/* About us */
.banner-ways-inner-wrapper {
  width: 100%;
  height: 37.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1;
}

.banner-inner-content img {
  width: 12.5rem;
  margin-bottom: 0.875rem;
}

.banner-inner-content h1 {
  font-size: var(--size-48);
  color: var(--white);
  text-transform: uppercase;
  line-height: 120%;
  letter-spacing: 1px;
  font-weight: 800;
}

.breadcrumb {
  gap: 0;
  justify-content: center;
  margin: 1rem 0 0;
}

.breadcrumb a {
  color: var(--white);
  font-size: var(--size-22);
}

.breadcrumb-item+.breadcrumb-item::before {
  content: var(--bs-breadcrumb-divider, ">");
  color: var(--white);
  padding-top: 1px;
  font-size: var(--size-22);
}

.breadcrumb-item.active {
  color: var(--bs-breadcrumb-item-active-color);
  font-size: var(--size-22);
  color: var(--white);
}

/* transport-partner-wrapper */
.transport-partner-wrapper {
  width: 100%;
  padding: 6rem 0;
  background: url('../img/bg-img-road.jpg') no-repeat;
  background-size: 50%;
  background-position: left bottom;
}

.transport-content-p {
  padding-left: 3rem;
}

.transport-content-p img {
  width: 12.5rem;
  margin-bottom: 1rem;
}

.transport-content-p h5 {
  font-size: var(--size-26);
  font-style: italic;
  color: var(--black-light);
  text-transform: uppercase;
}

.transport-content-p h2 {
  font-size: var(--size-42);
  color: var(--black-light);
  text-transform: uppercase;
  line-height: 120%;
  letter-spacing: 1px;
  font-weight: 800;
  margin-bottom: 1.125rem;
}

.transport-content-p p {
  color: var(--gray-light);
  line-height: 130%;
  letter-spacing: 1px;
  margin-bottom: 1.125rem;
}

/* founder-message-wrapper */
.founder-message-wrapper {
  padding: 8rem 0;
  background: linear-gradient(0deg, #ffffff, #D0DBE7, #ffffff);
}

.transport-truck {
  width: 100%;
  position: relative;
}

/* services-wrapper */
.services-wrapper {
  width: 100%;
  padding: 6rem 0;
}

.service-provide {
  position: relative;
  margin-bottom: 1.5rem;
}

.service-provide img {
  width: 100%;
  height: 30rem;
  object-fit: cover;
  object-position: right bottom;
  background: transparent;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}

.servicecontent {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1rem 1rem 2rem;
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
}

.servicecontent h4 {
  color: var(--white);
  font-size: var(--size-24);
  text-transform: uppercase;
  margin: 0 0 10px 0;
  font-weight: 600;
}
.servicecontent p
{
  margin: 0;
  text-align: center;
  color: var(--white);
  font-size: var(--size-18);
  line-height: 1.3;
}
/* BLogs */
.blog-wrapper {
  padding: 6rem 0rem 4rem;
}

.blog-img,
.blog-content-sm {
  margin-bottom: 2rem;
}

.blog-img {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 70px), calc(100% - 70px) 100%, 0 100%);
}

.blog-content-sm {
  width: 100%;
  padding-left: 3rem;
}

.blog-content-sm h2 {
  font-size: var(--size-42);
  color: var(--black-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  margin-bottom: 1.125rem;
}

.blog-content-sm p {
  color: var(--gray-light);
  line-height: 1.5;
  letter-spacing: 1px;
  margin-bottom: 1.125rem;
}

.blog-main-wrap {
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(0deg, #123252, #173C63);
  border-radius: 1.125rem;
  margin-top: 2rem;
}

.blog-post-img {
  position: relative;
  margin-bottom: 1.5rem;
}

.blog-post-img img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  border-radius: 0.3rem;
  border: 2px solid var(--white);
  background: transparent;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0 100%);
}

.logistics {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: var(--dark-blue);
  border: 1px solid var(--white);
  color: var(--white);
  font-size: var(--size-16);
  border-radius: 1.125rem;
  filter: drop-shadow(0rem 0.4rem 1rem rgba(60, 115, 170, 0.3));
}

.blog-post-contant h4 a {
  color: var(--white);
  font-size: var(--size-20);
  font-family: var(--poppins);
  font-weight: bold;
}

.dividers {
  width: 100%;
  height: 1px;
  background: var(--white);
  margin: 1rem 0;
  display: inline-block;
}

.user-profiles {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.user-profiles img {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--white);
  border-radius: 100%;
  flex: 0 0 auto;
}

.user-profiles h4 {
  font-weight: 400;
  font-size: var(--size-16);
  color: var(--white);
}

.pagination {
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination .page-link {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 0.4rem;
  color: var(--black-light);
  font-size: var(--size-20);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border: 1px solid transparent;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border-color: #DEDEDE;
}

.pagination .page-link:focus,
.pagination .page-link.active {
  z-index: 3;
  color: var(--white);
  background-color: var(--dark-blue);
  outline: 0;
  box-shadow: 0rem 0rem 0rem transparent;
}

/* Details */
.blog-details-wrapper {
  padding: 6rem 0;
  background: linear-gradient(0deg, transparent, #D0DBE7, #ffffff);
}

.blog-details-pic {
  margin-bottom: 2rem;
}

.blog-details-pic img {
  width: 100%;
  height: 35rem;
  object-fit: cover;
  border-radius: 1.125rem;
  border: 1px solid #124982;
}

.blog-details-content h2,
.blog-details-content ul,
.blog-details-content p {
  margin-bottom: 3.2rem;
}

.blog-details-content .user-profiles h4 {
  color: var(--black-light);
}

.blog-details-content h2 {
  font-size: var(--size-42);
  color: var(--black-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  margin-bottom: 1.125rem;
}

.blog-details-content p {
  line-height: 1.5;
  color: #2E2E2E;
  letter-spacing: 1px;
}

.blog-details-content ul {
  margin-top: 0;
  padding: 0;
}

.blog-details-content ul li {
  font-size: var(--size-18);
  color: var(--gray-light);
  line-height: 100%;
  letter-spacing: 1px;
  position: relative;
  list-style: none;
  padding: 0.5rem 0rem 0.5rem 1.5rem;
}

.blog-details-content ul li::before {
  content: '';
  width: 0.7rem;
  height: 0.7rem;
  background: #124982;
  position: absolute;
  top: 0.7rem;
  left: 0;
}

.blog-details-content h5 {
  font-size: var(--size-20);
  color: #2E2E2E;
  letter-spacing: 1px;
  font-weight: 600;
}

.tags-main {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.tags-main h5 {
  color: var(--black-light);
  font-size: var(--size-26);
  font-weight: bold;
}

.postags {
  color: var(--white);
  font-size: var(--size-22);
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(0deg, #2073CA, #124982);
  border-radius: 10rem;
}

.post-comment h4 {
  color: var(--black-light);
  font-size: var(--size-42);
  font-weight: 800;
  line-height: 120%;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.flex-form {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}

.post-comment input,
.post-comment textarea {
  border: 1px solid #257CD5;
  background: transparent;
  color: var(--black-light);
  font-size: var(--size-18);
  padding: 1.25rem 1rem;
  margin-bottom: 2rem;
}

.post-comment input:focus,
.post-comment textarea:focus {
  color: var(--black-light);
  background-color: transparent;
  border-color: #257CD5;
  outline: 0;
  box-shadow: 0 0 0 0.0rem transparent;
}

.post-comment p {
  color: rgba(0, 0, 0, 0.55);
  line-height: 120%;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.post-comment input[type="submit"] {
  color: var(--white);
  font-size: var(--size-22);
  display: inline-block;
  padding: 1rem 3rem;
  background: linear-gradient(0deg, #2073CA, #124982);
  border-radius: 10rem;
  margin-bottom: 0;
}

/* Contact Us */
.contact-us {
  width: 100%;
  padding: 2rem;
  background: var(--white);
  border-radius: 1.125rem;
}

.contact-us h2 {
  color: var(--black-light);
  font-size: var(--size-42);
  text-transform: uppercase;
  font-weight: 800;
  line-height: 120%;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.contact-us input,
.contact-us textarea {
  border: 1px solid rgba(0, 0, 0, 0.40);
  background: transparent;
  color: var(--black-light);
  font-size: var(--size-18);
  padding: 1rem;
  margin-bottom: 1rem;
}

.contact-us input:focus,
.contact-us textarea:focus {
  color: var(--black-light);
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.40);
  outline: 0;
  box-shadow: 0 0 0 0.0rem transparent;
}

.contact-us button {
  border: none;
}

.contact-us {
  margin-bottom: 5rem;
}

.google-map iframe {
  width: 100%;
  height: 36rem;
  border-radius: 1.125rem;
}

.contact-inner {
  width: 100%;
  height: 100%;
  background: #113254;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
  padding: 4rem 2rem;
}

.contact-inner img {
  width: 3.5rem;
}

.contact-inner p {
  font-size: var(--size-20);
  color: #D3D3D3;
  line-height: 120%;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.contact-inner h4 {
  font-size: var(--size-24);
  color: var(--white);
  line-height: 100%;
  letter-spacing: -1px;
  margin-bottom: 0;
  word-break: break-all;
}

#clients .owl-prev {
  background: url(../img/icon/arrow-left-bg.png) no-repeat left top;
  background-size: 100% 100%;
  width: 50px;
  height: 50px;
  margin: 0;
}

#clients .owl-next {
  background: url(../img/icon/arrow-right-bg.png) no-repeat left top;
  background-size: 100% 100%;
  width: 50px;
  height: 50px;
  margin: 0;
}


/* 10.03.2026 */

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.newsletter-form .icon {
  width: 20px;
  height: 20px;
}

.newsletter-form .wpcf7-form-control-wrap {
  flex: 1;
}

.newsletter-form input.form-control {
  width: 100%;
  height: 45px;
  border-radius: 4px;
}

.newsletter-form .SrwBtn {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* post details form  */
.flex-form {
  display: flex;
  gap: 15px;
}

.flex-form .wpcf7-form-control-wrap {
  flex: 1;
}

.flex-form input {
  width: 100%;
  height: 45px;
}

/* Title */
.page-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Description text */
.page-content p {
  font-size: 18px;
  color: #666;
  margin-bottom: 25px;
}

/* Home button */
.page-content h2 a {
  display: inline-block;
  padding: 10px 25px;
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
}

.page-content h2 a:hover {
  background: #333;
}

/* 12.03.2026 */
h3#reply-title {
  display: none;
}

/* 404 */
.page-content {
  max-width: 100%;
}

.main-box {
  margin-top: 100px;
  padding: 30px 65px 30px 65px;
}

header.page-header {
  margin-top: 30px;
}

/* 13.03.2026 */

.comment-success{
    background:#e6ffed;
    border:1px solid #b7ebc6;
    color:#1a7f37;
    padding:12px 16px;
    border-radius:6px;
    margin-bottom:20px;
    font-size:15px;
}

/* service page image */
.service-provide{
    position: relative;
    overflow: hidden;
}

.service-provide img{
    width: 100%;
    display: block;
    clip-path: polygon(0 0,100% 0,100% 90%,92% 100%,0 100%);
}

/* overlay above image */
.service-provide::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #124982;
    opacity: 0.4;
    z-index: 1;
    clip-path: polygon(0 0,100% 0,100% 90%,92% 100%,0 100%);
}

/* about image  */
.founder-message-wrapper .transport-truck{
    position: relative;
    border-radius: 16px;
    overflow: hidden; /* keeps overlay inside rounded corners */
}

.founder-message-wrapper .transport-truck img{
    width: 100%;
    display: block;
    border-radius: 16px;
}

.founder-message-wrapper .transport-truck::after{
    content: "";
    position: absolute;
    inset: 0;
    background: url('../img/abtimgwhtebg.png') no-repeat center;
    background-size: cover;
    pointer-events: none;
}

 

/* Comment box */
.comment-body {
  border: 1px solid #e5e5e5;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  background: #fff;
}

/* Author section */
.comment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

/* Avatar + name */
.comment-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comment-author img {
  border-radius: 50%;
}

/* Author name */
.comment-author .fn {
  font-size: 18px;
  font-weight: 600;
  color: #124982;
}

/* hide "says:" */
.comment-author .says {
  display: none;
}

/* Date */
.comment-metadata a {
  font-size: 14px;
  color: #777;
  text-decoration: none;
}

/* Comment text */
.comment-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Phone style */
.comment-phone {
  font-size: 15px;
  color: #124982;
  font-weight: 500;
  margin-top: 5px;
}

.comment-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.comment-list li {
  list-style: none;
}

/* 16.03.2026  */

.footer-social{
    list-style: none;
    padding: 0;
    margin-top: 8px;
}

.footer-social li{
    margin-bottom: 12px;
}

.footer-social li a{
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: var(--size-18);
    font-weight: 400;
    text-decoration: none;
}

.footer-social li a:hover{
    color: #4da3ff;
}
/*ul#menu-footer-2nd-menu li a
{
  pointer-events: none;
}*/
.submitbut
{
  background: var(--btnbgclr) !important;
  color: var(--white) !important;
  box-shadow: 0rem 0.688rem 0.938rem rgba(34, 91, 205, 0.28);
  margin-top: 15px;
}

/* 17.03.2026 */
.copyright a {
    color: var(--white);
}
.copyright a:hover{
    color: var(--light-blue);
}
.wpcf7-response-output
{
    color: var(--white) !important;
    border: 0px !important;
    margin-top: 20px !important;
    padding:5px 10px !important;
}
.invalid .wpcf7-response-output
{
    background:#b40000;
}
.sent .wpcf7-response-output
{
    background:#597e13;
}


.whatsapp-icon-wrap {
    position: fixed;
    right: 10px;
    bottom: 100px;
    display: flex;
    gap: 7px;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.whatsapp-icon-wrap p {
    margin: 0;
}
  .whatsapp-icon-wrap p a {
    font-size: 15px;
    font-weight: 500;
    padding: 6px 10px;
    color: #333;
    background: #eefff0;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, .16) 0px 1px 4px;
    margin: 0;
}
.whatsapp-url-btn {
    padding: 0;
    z-index: 9999;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    outline: 0;
    border: 0;
    transition: var(--transition);
    box-shadow: rgba(0, 0, 0, .16) 0px 1px 4px;
}
.career-wrapper
{
  padding: 6rem 0rem 4rem;
  background: url(../img/careercontbg.png) no-repeat center top;
  background-size: 100% auto;
}
.career-wrapper h2
{
  text-transform: uppercase;
  font-weight: bold;
  font-size: var(--size-32);
  margin: 0;
  padding: 0 0 10px 0;
}
.career-wrapper p
{
  font-size: var(--size-16);
  margin: 0 0 15px 0;
}
.designnationpart
{
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
  padding: 25px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
/*   flex-direction: column; */
	transition: height 0.4s ease;
}
.designnationpart h3
{
  font-weight: 600;
  margin: 0;
}
.partfulltimesec
{
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.partfulltimesec span
{
  font-size: var(--size-16);
  display: inline-block;
  font-weight: 500;
  color: #124982;
  line-height: 1;
  border: 1px solid #124982;
  padding: 11px 21px;
  text-transform: capitalize;
  border-radius: 30px;
}
.designnationpart p
{
  font-size: var(--size-16);
  line-height: 1.5;
  color: var(--gray-light);
}
.careerformbg
{
  padding: 55px;
  background: var(--white);
  border-radius: 15px;
  border: 1px solid #2073CA;
}
.careerformbg h2
{
  padding-bottom: 40px;
}
.careerformwidth
{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 60px;
}
.formwidthsec
{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.formwidthsec .wpcf7-form-control-wrap
{
  width: 45%;
}
.inputfield
{
  width: 100%;
  border-bottom: 1px solid #585858;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  outline: 0;
  padding: 0 0 25px 0;
  font-size: 18px;
  font-weight: normal;
  color: #585858;
}
.selectfield
{
  width: 100%;
  border-bottom: 1px solid #585858;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  outline: 0;
  padding: 0 0 25px 0;
  font-size: 18px;
  font-weight: normal;
  color: #585858;
}
.msgtitlearea
{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 25px;
}
.msgtitlearea label
{
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  color: #585858;
}
.textareafield
{
  background: rgba(218, 218, 218, 0.6);
  width: 100%;
  height: 165px;
  padding: 15px;
  font-size: 18px;
  font-weight: normal;
  color: #585858;
  border: 0;
  outline: 0;
}
.sendbut
{
  background: #124982;
  color: var(--white);
  min-height: 60px;
  padding: 0 35px;
  text-transform: capitalize;
  font-size: var(--size-18);
  font-weight: normal;
  border: 0;
  outline: 0;
  transition: var(--transition);
}
.sendbut:hover
{
  background: var(--black);
}
.fullwidth .wpcf7-form-control-wrap
{
  width: 100%;
}


.designnationpart.collapsed {
    max-height: 470px;
/*     overflow: hidden; */
    position: relative;
}

.designnationpart.expanded {
    max-height: 100%;
}

.read-toggle-btn {
    margin-top: 10px;
    color: #124982;
    border: none;
    cursor: pointer;
	text-decoration:underline;
	background-color:transparent;
}