:root {
  --theme-color-light: #ffffff;
  --theme-color-dark: #050B20;
  --theme-color-gray: #F6F6F6;
  --theme-color1: #fee901;
  --theme-color2: #00B67A;
  --theme-color3: #faf7f2;
  --bg-theme-color1: var(--theme-color1);
  --bg-theme-color1-clr: #000;
  --bg-theme-color1-soft: #fbfbee;
  --bg-theme-color2: var(--theme-color2);
  --bg-theme-color3: var(--theme-color3);
  --text-color: #050B20;
  --text-color2: #616670;
  --headings-color: #050B20;
  --link-color: var(--headings-color);
  --link-hover-color: var(--headings-color);
  --title-font: "DM Sans", sans-serif;
  --text-font: "DM Sans", sans-serif;
  --title-font2: "Bebas Neue", sans-serif;
  --body-font-size: 16px;
  --body-line-height: 28px;
  --body-font-weight: 400;
  --line-height-heading-h1: 1.2em;
  --line-height-heading: 54px;
  --line-height-heading-small: 1.35em;
  --h1-font-size: 68px;
  --h2-font-size: 40px;
  --h3-font-size: 30px;
  --h4-font-size: 24px;
  --h5-font-size: 22px;
  --h6-font-size: 20px;
  --h1-font-weight: 400;
  --h2-font-weight: 400;
  --h3-font-weight: 400;
  --h4-font-weight: 400;
  --h5-font-weight: 400;
  --h6-font-weight: 400;
  --sec-title-subtitle-font-size: 14px;
  --sec-title-subtitle-color: var(--headings-color);
  --sec-title-subtitle-font-family: var(--text-font);
  --sec-title-subtitle-font-weight: 700;
  --sec-title-subtitle-line-height: 20px;
  --sec-title-color: var(--headings-color);
  --sec-title-font-size: var(--h2-font-size);
  --sec-title-font-family: var(--title-font);
  --sec-title-font-weight: var(--h2-font-weight);
  --theme-light-background: #F2F3F5;
  --theme-light-background-text-color: var(--headings-color);
  --theme-black: #131313;
  --container-width: 1430px;
  --small-container-width: 1000px;
  --large-container-width: 1730px;
  --container-pt: 120px;
  --container-pb: 120px;
}


/*** 

====================================================================
  banner section five
====================================================================

***/
.boxcar-banner-section-five {
  position: relative;
  padding-bottom: 0;
  padding-top: 100px;
  height: unset;
  position: relative;
  z-index: 1;
  /* margin-bottom: -180px; */
}

.boxcar-banner-section-five:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% - 220px);
  /* background: #EEF1FB; */
  background: var(--bg-theme-color1-soft);
  z-index: -1;
}

.boxcar-banner-section-five .image-column {
  margin-top: -120px;
  pointer-events: none;
}

.boxcar-banner-section-five .banner-content {
  width: 924px;
  margin: 0 auto;
  text-align: center;
  margin: auto;
  border-radius: 50px;
}

.boxcar-banner-section-five .banner-content>span {
  display: block;
  color: var(--theme-color-dark);
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px;
}

.boxcar-banner-section-five .banner-content h2 {
  color: var(--theme-color-dark);
  font-size: 70px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 48px;
}

.boxcar-banner-section-five .banner-content .form-tabs-list {
  margin-bottom: 22px;
}

.boxcar-banner-section-five .banner-content .form-tabs-list li {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  margin-right: 26px;
  cursor: pointer;
  position: relative;
  padding-bottom: 3px;
}

.boxcar-banner-section-five .banner-content .form-tabs-list li:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.boxcar-banner-section-five .banner-content .form-tabs-list li.current:before {
  opacity: 1;
  visibility: visible;
}

.boxcar-banner-section-five .banner-content .form-tabs-list li:last-child {
  margin-right: 0;
}

.boxcar-banner-section-five .banner-content .form-tab-pane {
  margin-bottom: 60px;
  display: none;
}

.boxcar-banner-section-five .banner-content .form-tab-pane.current {
  display: block;
}

.boxcar-banner-section-five .banner-content .form-tab-pane form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 0 10px;
  height: 76px;
}

.boxcar-banner-section-five .banner-content .form-tab-pane form .form_boxes {
  width: 23%;
  height: 76px;
  position: relative;
}

.boxcar-banner-section-five .banner-content .form-tab-pane form .form_boxes:nth-child(4):before {
  display: none;
}

.boxcar-banner-section-five .banner-content .form-tab-pane form .form_boxes:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 36px;
  background: #e1e1e1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.boxcar-banner-section-five .banner-content .form-submit {
  margin-left: auto;
}

.boxcar-banner-section-five .banner-content .form-submit button {
  color: var(--theme-color1-clr);
  font-size: 20px;
  font-weight: 500;
  width: 56px;
  height: 56px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color1);
  padding-top: 3px;
}

.boxcar-banner-section-five .banner-content .form-tab-content>span {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 31px;
}

.boxcar-banner-section-five .banner-content .form-tab-content .model-links li {
  display: inline-block;
  margin-right: 6px;
}

.boxcar-banner-section-five .banner-content .form-tab-content .model-links li:last-child {
  margin-right: 0;
}

.boxcar-banner-section-five .banner-content .form-tab-content .model-links li a {
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  height: 44px;
  line-height: 44px;
  padding: 0 30px;
  border-radius: 30px;
}

.boxcar-banner-section-five .banner-content .form-tab-content .model-links li a img {
  margin-right: 5px;
}

.boxcar-banner-section-five.banner-style-three {
  background-image: url(../images/banner/banner-hp3.jpg);
}

.boxcar-banner-section-five.banner-style-three:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #050B20;
  opacity: 0.4;
}

.boxcar-banner-section-five.banner-style-three .banner-content-three {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.boxcar-banner-section-five.banner-style-three .banner-content-three .banner-content {
  position: static;
  -webkit-transform: unset;
  transform: unset;
  text-align: left;
  margin: unset;
}

.boxcar-banner-section-five.banner-style-three .form-tab-pane form {
  border-radius: 15px;
}

.boxcar-banner-section-five.banner-style-three .drop-menu .dropdown {
  border-radius: 15px;
}









.form-submit .theme-btn {
  background: #405FF2;
  color: #fff;
  height: 54px;
  line-height: 54px;
  border-radius: 12px;
  padding: 0 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}


.drop-menu {
	position: relative;
	font-size: 15px;
	color: #050B20;
	height: 100%;
	text-align: left;
	height: 76px;
  }
  
  .drop-menu .select {
	cursor: pointer;
	display: block;
	color: #050B20;
	font-size: 15px;
	text-transform: capitalize;
	line-height: 76px;
	padding: 0 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
  }
  
  .drop-menu .select i {
	font-size: 14px;
	margin-top: 0;
	cursor: pointer;
	float: right;
	position: relative;
	right: 10px;
  }
  
  .drop-menu.active {
	border-radius: 5px 5px 0 0;
  }
  
  .drop-menu.active:hover,
  .drop-menu.active:focus {
	border-radius: 5px 5px 0 0;
  }
  
  .drop-menu.active .select {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	outline: none;
  }
  
  .drop-menu.active .select i {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
  }
  
  .drop-menu:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
  }
  
  .drop-menu .dropdown {
	position: absolute;
	width: 100%;
	left: 0;
	margin-top: 1px;
	overflow: hidden;
	display: none;
	max-height: 144px;
	overflow-y: auto;
	z-index: 9999;
	background: #fff;
	padding: 0;
	list-style: none;
	padding: 10px 15px;
	top: 110%;
	border-radius: 10px;
	border: 1px solid #e1e1e1;
  }
  
  .drop-menu .dropdown li {
	padding: 10px 0;
	cursor: pointer;
	color: #242526;
	border-bottom: 1px solid #e0dfe5;
  }
  
  .drop-menu.active .select>span,
  .drop-menu.active .select i,
  .drop-menu .dropdown li:hover {
	color: #7686e6;
  }
  
  .drop-menu .dropdown li:last-child {
	border-bottom: 0;
  }



  


  
.theme-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: var(--title-font);
}

.theme-btn .btn-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.theme-btn:hover {
  background: #0146A6 !important;
  border-color: transparent !important;
}

/*Btn Style One*/
.btn-style-one {
  position: relative;
  font-size: 16px;
  line-height: 25px;
  padding: 14px 32px 18px;
  overflow: hidden;
  color: var(--theme-color1);
  border: 1px solid var(--theme-color1);
  background: #f8f5f0;
  text-transform: uppercase;
  font-family: var(--text-font);
}

.btn-style-one i {
  position: relative;
  display: block;
  margin-left: 10px;
}

.btn-style-one:hover {
  color: var(--theme-color-light);
}

.theme-btn.small {
  padding: 10px 30px;
  line-height: 20px;
  font-size: 10px;
}

.theme-btn.large {
  padding: 20px 60px;
  line-height: 25px;
}

.image {
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.image img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.inner-box:hover .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
  
  
  
  
  
  
  
  
  
  
  
  


  