@import url('https://fonts.googleapis.com/css2?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&display=swap');

:root {
  --theme-color: #344E41;
  --theme-color2: #FEE074;
  --secondary-color: #588157;
  --title-color: #2D2D2D;
  --body-color: #F3ECDC;
  --text-color: #565656;
  --smoke-color: #F3ECDC;
  --black-color: #000000;
  --white-color: #ffffff;
  --yellow-color: #fec624;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: #e6edfd;
  --title-font: "Unbounded", sans-serif;
  --body-font: "Poppins", sans-serif;
  --icon-font: "Font Awesome 6 Pro";
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 80px;
  --ripple-ani-duration: 5s;
}

body{
	font-family: "Poppins", sans-serif;
	font-size: 16px;
    font-weight: 400;
	font-style: normal;
	letter-spacing: 0.5px;
}
*,ul,ol{
	margin:0;
	padding:0;
}
ul,ol{
	list-style-type: none;
}
a{
	color: inherit;
	text-decoration: none;
}
a:hover,a:focus{
	color: #ff9305;
	outline: none;
	text-decoration: none;
}
h1,h2,h3,h4,h5,h6{
	color: #1F1F25;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 15px;
}
.bg-color1{
	background-color: #2047a9;
}
.bg-color2{
	background-color: #ff9305;
}
.text-color1{
	color: #2047a9 !important;
}
.text-color2{
	color: #ff9305 !important;
}
.txt-hover:hover,
.txt-hover:focus{
    color: #2047a9 !important;
}
.width-30{
    width: 30%;
}
.width-40{
    width: 40%;
}
.width-50{
    width: 50%;
}
.width-70{
    width: 70%;
}
.width-60{
    width: 60%;
}
.flexbox {
    display: -webkit-box;
    display: flex;
}
.flexbox .element {
    height: 100%;
}
.homepage .header{
	position: absolute;
	top: 0;
	z-index: 999;
	width: 100%;
	background-color: #fff;
}
.header-top {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}
.header-top .info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
}
.header-top .info-item i {
  color: #ff9305;
  font-size: 25px;
}
.header-bottom{
	background: linear-gradient(45deg, rgb(2 47 105), rgb(4 123 220));
	padding: 20px 0;
	position: relative;
	/*box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.09019607843137255);*/
}
.logowrap{
	text-align: right;
	padding-right: 25px;
}
.logo{
	display: inline-block;
	margin: 5px auto;
}
.logo .img-fluid{
	max-width: 350px;
}
.header-right-wrap{
	background-color: #f9f9f9;
}
.mobile-menu{
	display: none;
}
.nav-wrapper{
	display: block;
	text-align: center;
}
.navigation > li{
	display: inline-block;
	vertical-align: middle;
	position: relative;
	margin-right: -4px;
}
.navigation > li:last-child{
	margin-right: 0;
}
.navigation li.dropdown > .dropdown-menu{
	opacity: 0;
	position: absolute;
	top: 130%;
	left: 0;
	width: 250px;
	z-index: 999;
	background-color: #ff8daa;
	visibility: hidden;
	border-radius: 0;
	box-shadow: none;
	border: 0;
	padding:0;
	margin:0;
	border-bottom: 3px solid #9a9a9a;
  	transition: all 500ms ease;
  	display: block;	
}
.navigation li.dropdown > .dropdown-menu li{
	border-bottom: 1px solid #e6e6e6;
	margin-right: 0;
}
.navigation li.dropdown > .dropdown-menu li:last-child{
	border-bottom: none;
}
.navigation li.dropdown > .dropdown-menu li a{
	background-color: #ffffff;
	padding:10px 15px;
	color: #000;
}
.navigation li.dropdown:hover > .dropdown-menu{
	top: 100%;
	opacity: 1;
	visibility: visible;
}
.navigation > li:first-child{
	display: none;
}
.navigation li:last-child a{
	/* padding-right: 0; */
}
.navigation a{
  /*text-transform: uppercase;*/
	letter-spacing: 1px;
	overflow: hidden;
	position: relative;
	display: block;
	font-weight: 600;
	color: #fff;
	padding: 0px 30px;
    transition: all 500ms ease 0s;
}
.navigation li.dropdown > a{
	padding-right:35px;
}
.navigation > li.dropdown > a:after {
    font-family:"bootstrap-icons";
    content: "\F282";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 12px;
/*    display: block;*/
    font-size: 14px;
    transition: all 500ms ease 0s;
}
.navigation li:hover a,
.navigation li:focus a,
.navigation li.active a{
	color: #ff8119;
}
.navigation li.dropdown > .dropdown-menu li a:hover,
.navigation li.dropdown > .dropdown-menu li a:focus,
.navigation li.dropdown > .dropdown-menu li.active a{
	color: #fff;
	background-color: #2047a9;
}
.slider-wrapper{
	position: relative;
}
.slider-wrapper .carousel-caption {
    position: absolute;
    right: 15%;
    bottom: auto;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}
.hero {
  background: url('../images/slider/1.jpg') no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-content {
  position: relative;
/*  max-width: 70%;*/
  padding: 30px;
  border-left: 6px solid #FF9305;
  border-radius: 10px;
}
.hero-content:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(2 55 118 / 73%) 0%, rgb(3 96 179 / 15%) 50%, rgb(255 255 255 / 0%) 100%);
  left: 0;
  top: 0;
}
.hero-content h5 {
  color: #f5d04c;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-content p {
  margin: 20px 0;
  color: #ccc;
  font-size: 1rem;
}

.fs-70{
	font-size: 70px;
}
.list1 li,
.list2 li,
.areas-list li{
	padding: 0px 0 15px 26px;
	position: relative;
}
.list1 li:before,
.list2 li:before,
.areas-list li:before{
	position: absolute;
	top: 0;
	left: 0;
	content: "\f26b";
	font-family: "bootstrap-icons";
	font-size: 18px;
	color: #ff9305;
}
.areas-list li:before{
	content: '\F3E7';
}
.list2 li:before{
	color: #ca4421;
}

.list3{
  margin-left: 16px;
}
.list3 li{
  list-style-type: decimal;
  padding-bottom:18px;
}
.parallax{
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.parallax .container,
.parallax .container-xxl,
.parallax .container-fluid,
.parallax .container-auto{
    position: relative;
    z-index: 1;
}
.overlap{
	position: relative;
}
.overlap:before,
.overlap1:before,
.overlap2:before{
	background-color: rgba(41, 42, 96, 0.85);
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.overlap1:before{
    background-color: rgba(0,0,0,0.7);
}
.overlap2:before{
    background-color: rgb(55 57 60 / 80%);
}
.section-padding{
	padding: 100px 30px;
}
.section-padding-120{
	padding-top: 140px;
	padding-bottom: 140px;
}
.widget-title{
	font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}
.widget-title a:hover{
    color: #a9a9a9;
}
.main-footer_bg {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 40px 40px 0 0;
    background-size: cover;
    z-index: -1;
}
.main-footer_bg:before {
    position: absolute;
    content: '';
    left: 0px;
    top: -1px;
    z-index: 1;
    width: 100px;
    height: 86px;
    background: url(../images/shape-4.png);
    background-repeat: no-repeat;
}
.main-footer_bg:after {
    position: absolute;
    content: '';
    right: 0px;
    top: -2px;
    z-index: 1;
    width: 100px;
    height: 86px;
    background: url(../images/shape-5.png);
    background-repeat: no-repeat;
}
.footer-menu li a{
	position: relative;
	  padding: 2px 0 10px 20px;
	  display: inline-block;
	  color: #fff;
	  font-weight: 400;
}
.footer-menu li a:before{
	position: absolute;
	top: 2px;
	left: 0;
	content: '\F231';
	font-family:'bootstrap-icons';
}
.footer-links{
	display: block;
	color: #fff;
}
.footer-menu li a:hover,
.footer-links a:hover{
	color: #a9a9a9;
}
.address-box {
  margin-bottom: 17px;
}
.address-box .address-icon-holder {
  float: left;
  margin-right: 15px;
  color: #000;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #ff9305;
  border-radius: 100%;
  text-align: center;
  position: relative;
}
.address-icon-holder i {
  color: #fff;
}
.address-box .address-content {
  position: relative;
  overflow: hidden;
  color: #fff;
}
.address-box .address-icon-holder::before {
  position: absolute;
  bottom: -16px;
  border-width: 10px;
  border-style: solid;
  border-color: #ff9305 transparent transparent transparent;
  content: '';
  left: 10px;
}
.navigation li.dropdown > .dropdown-menu.child-dropdown{
    top: 0;
    left: 100%;
    padding: 15px;
}
.footer-bottom{
	position: relative;
    padding: 24px 40px;
    border-radius: 50px;
    background-color: #ff9305;
}
.btn-1{
	position: relative;
    display: inline-block;
    overflow: hidden;
    width: 100%;
    height: 50px;
    max-width: 180px;
    margin: 1rem auto;
    text-align: center;
    line-height: 45px;
    text-transform: uppercase;
    border: 1px solid #fff;
    border-radius: 2px;
    color: #fff;
    background: rgb(32 71 169);
}
.btn-1:before, .btn-1:after {
    position: absolute;
    top: 50%;
    content: "";
    width: 20px;
    height: 20px;
    background-color: #ff8119;
    border-radius: 50%;
}
.btn-1:before{
	left: -20px;
    transform: translate(-50%, -50%);
}
.btn-1:after {
    right: -20px;
    transform: translate(50%, -50%);
}
.btn-1:hover:before {
    -webkit-animation: criss-cross-left 0.8s both;
    animation: criss-cross-left 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}
.btn-1:hover:after {
    -webkit-animation: criss-cross-right 0.8s both;
    animation: criss-cross-right 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}
.btn-1 span{
	position: relative;
	z-index: 1;
}
.btn-1:hover span{
	color: #fff;
}
.about-layout1 {
  position: relative;
}
.about-layout1 .title-area {
  margin-bottom: 32px;
}
.about-text {
  	color: var(--text-color);
}
p {
	margin: 0 0 18px 0;
	line-height: 1.63;
}
.about-box {
  display: inline-flex;
  align-items: center;
  margin-bottom: 40px;
}
.img-box1 {
  position: relative;
}
.img-box1 .box-inner {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}
.img-box1 .box-inner img {
  border-radius: 10px;
  width: 100%;
  transition: all 0.5s ease;
}
.img-box1 .box-inner .img1 {
  overflow: hidden;
  border-radius: 10px;
}
.img-box1 .box-inner .img1:hover img {
  transform: scale(1.1);
}
.img-box1 .box-inner .img2 img {
  display: block;
  transition: all 0.5s ease;
}
.img-box1 .box-inner .img2 .img {
  border-radius: 10px;
  overflow: hidden;
}
.img-box1 .box-inner .img2 .img:not(:last-child) {
  margin-bottom: 30px;
}
.img-box1 .box-inner .img2 .img:hover img {
  transform: scale(1.1);
}
.text-box {
    width: 160px;
    height: 160px;
    background-color: #2047a9;
    border-radius: 50%;
    text-align: center;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
}
.text-box__title {
    font-size: 13px;
  font-weight: 500;
  margin-bottom: 0;
  color: #fff;
  line-height: 160%;
  text-transform: uppercase;
}
.text-box__number {
    font-size: 30px;
    color: #ff9305;
    font-weight: 700;
    line-height: 132%;
    margin-bottom: 10px;
    display: block;
}
.img-box1 .text-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.img-box2 {
  position: relative;
}
.img-box2 .box-inner {
  position: relative;
}
.img-box2 .box-inner img {
  width: 100%;
}
.img-box2 .box-inner .img1 {
  max-width: 486px;
  overflow: hidden;
  border-radius: 10px;
}
.img-box2 .box-inner .img1 img {
  transform: scale(1);
  transition: all 0.5s ease;
}
.img-box2 .box-inner .img1:hover img {
  transform: scale(1.1);
}
.img-box2 .box-inner .img2 {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--body-color);
  padding: 20px 0px 0 20px;
  border-radius: 20px 0 0;
  overflow: hidden;
}
.img-box2 .box-inner .img2 img {
  border-radius: 20px 0 0;
  transform: scale(1);
  overflow: hidden;
  transition: all 0.5s ease;
}
.img-box2 .box-inner .img2:hover img {
  transform: scale(1.1);
}
.img-box2 .text-box2 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  transform: translate(90px, 90px) rotate(-90deg);
  overflow: hidden;
}
.img-box2 .text-box2 .box-body {
  display: inline-flex;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 28px 30px;
  transition: all 0.5s ease;
}
.img-box2 .text-box2 .box-body:hover {
  background-color: var(--theme-color);
}
.img-box2 .text-box2__text {
  font-size: 16px;
  color: var(--theme-color2);
  font-weight: 500;
  font-family: var(--title-font);
  text-transform: capitalize;
}
.img-box3 {
  position: relative;
  padding-bottom: 80px;
}
.img-box3 .box-inner {
  position: relative;
}
.img-box3 .img1 {
  text-align: right;
  overflow: hidden;
  border-radius: 20px;
  border-radius: 0 20px 20px 0px;
}
.img-box3 .img1 img {
  transform: scale(1);
  transition: all 0.5s ease;
}
.img-box3 .img1:hover img {
  transform: scale(1.1);
}
.img-box3 .img2 {
  position: absolute;
  top: 0;
  left: 0;
  border: 10px solid var(--body-color);
  border-radius: 20px 70px 0px 20px;
  overflow: hidden;
}
.img-box3 .img2 img {
  transform: scale(1);
  transition: all 0.5s ease;
}
.img-box3 .img2:hover img {
  transform: scale(1.1);
}
.img-box3 .img3 {
  position: absolute;
  bottom: -80px;
  left: 70px;
  border-top: 10px solid var(--body-color);
  border-right: 10px solid var(--body-color);
  border-radius: 0px 0px 20px 20px;
  overflow: hidden;
}
.img-box3 .img3 img {
  transform: scale(1);
  transition: all 0.5s ease;
}
.img-box3 .img3:hover img {
  transform: scale(1.1);
}
.img-box3 .text-box {
  position: absolute;
  bottom: 27%;
  right: 75px;
  z-index: 1;
  transition: all 0.5s ease;
}
.img-box3 .text-box:hover {
  background-color: var(--theme-color2);
}
.img-box3 .text-box:hover .text-box__number,
.img-box3 .text-box:hover .text-box__title {
  color: var(--theme-color);
}
.about-riding {
  background-color: var(--secondary-color);
  padding: 30px 40px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}
.about-riding .icon {
  width: 100%;
  max-width: 50px;
  height: 50px;
  display: block;
  margin-right: 20px;
}
.about-riding .icon img {
  width: 100%;
}
.about-riding .riding-title {
  color: var(--white-color);
  font-size: 20px;
  margin-bottom: 0;
  top: 2px;
  position: relative;
}
.sec-title {
    font-size: 48px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.2;
    margin: -0.25em 0 15px 0;
    letter-spacing: 0.01em;
}
.em_bar {
    background: #9B50DB none repeat scroll 0 0;
    height: 2px;
    margin: 0 auto 5px;
    width: 62px;
}
.text_left .em_bar {
    margin: 0;
}
.testipara{
	margin-right: 0;
}
.testimonial-card {
   background: #f8f9fa;
   border: 1px solid #ddd;
   border-radius: 15px;
   padding: 15px 20px;
   position: relative;
   margin-bottom: 15px;
}
.testimonial-img {
    width: 150px;
    height: 190px;
    border-radius: 10px;
    object-fit: cover;
    position: absolute;
    top: 50%;
    right: -75px;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%);
}
.testimonial-name {
   font-weight: 700;
   color: #ff5c00; /* orange text */
   text-transform: uppercase;
}
.centerpatch-bg{
	position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    width: 100%;
    height: 55%;
    transform: translateY(-50%);
    background-color: #dee7ff;
    z-index: -1;
}
.customer-block_one{
	position:relative;
	margin-bottom:30px;
}
.customer-block_one-inner{
	position:relative;
	padding:40px 25px;
	overflow:hidden;
	border-radius:25px;
	min-height: 470px;
	background-color:#fff;
	box-shadow:0px 0px 15px rgba(0,0,0,0.10);
}
.customer-block_one-bg{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	opacity:0;
	background-size:cover;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transform:scale(0.2,1);
}
.customer-block_one-inner:hover .customer-block_one-bg{
	opacity:1;
	transform:scale(1,1);
}
.customer-block_one-icon{
	position:relative;
	line-height:1em;
}
.customer-block_one-icon img{
	width: 150px;
}
.customer-block_one-number{
	position: absolute;
    right: 40px;
    top: 22px;
    font-size: 30px;
    line-height: 1em;
    opacity: 0.3;
    font-weight: 800;
    color: transparent;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
    font-family: "Raleway", serif;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgba(0,0,0,0.1);
}
.customer-block_one-inner:hover .customer-block_one-number{
	opacity:0.40;
	-webkit-text-stroke-color: rgba(0,0,0,0.1);
}
.customer-block_one-title{
	position:relative;
	font-weight:700;
	margin:25px 0px 15px;
}
.customer-block_one-title{
	position:relative;
	color:#000;
}
.customer-block_one-inner:hover .customer-block_one-text,
.customer-block_one-inner:hover .customer-block_one-title{
	color:#fff;
}
.customer-block_one-bg.overlap1:before{
	background: linear-gradient(0deg, rgb(2 47 105 / 84%) 0%, rgb(25 53 89 / 52%) 100%);
}
.customer-block_one-text{
	position:relative;
	color:#666666;
	font-size:16px;
	line-height:28px;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}
hr.hr-custom {
  border: 1px solid #FF7315;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(255, 115, 21);
  border-bottom: 0;
  display: inline-block;
  margin: 0 auto 15px auto;
  width: 4.20873rem;
  opacity: 1;
  display: inline-block;
  color: rgba(10, 45, 99, .2);
}
.customer-block_one-more{
	position:relative;
	font-weight:700;
	font-size:18px;
	margin-top:30px;
	display:inline-block;
	color:#2047a9;
}
.customer-block_one-more i{
	position:relative;
	font-size:16px;
}
.footer{
	margin-top: 120px;
}
.f-page .footer{
	margin-top: 0px;
}
.info-section {
  background: #0d6efd;
  color: #fff;
  text-align: center;
  position: relative;
}
.formsection.overlap1:before{
	background: #2047A9;
    background: linear-gradient(0deg, rgb(237 238 239 / 0%) 0%, rgb(13 46 129) 100%);
}
.formsection .form-control, .formsection .form-select {
  	border-radius: 0;
    color: #000;
    border: 1px solid #fff;
    background: #fff;
    height: 50px;
    border-radius: 5px;
}
select {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
  padding: 6px;
}
select{
  color: #727272;
}
.formsection textarea.form-control{
	height: 85px;
}
.formsection input::placeholder,
.formsection textarea::placeholder {
  color: #2047A9;
}
.formsection input::-moz-placeholder,
.formsection textarea::-moz-placeholder {
  color: #2047A9;
  opacity: 1;
}
.formsection input:-ms-input-placeholder,
.formsection textarea:-ms-input-placeholder {
  color: #2047A9;
}
.formsection input::-ms-input-placeholder,
.formsection textarea::-ms-input-placeholder {
  color: #2047A9;
}
.form-container {
  background: rgb(255 147 5 / 75%);
  /*background-color: rgb(0 0 0 / 31%);*/
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 9;
}
.form-container h1{
  color: #fff;
}
.form-container label{
  color: #fff;
}


.button1 {
  width: 100%;
  padding: 12px;
  background: #2047a9;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.button1:hover {
  background: #005f8a;
}
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.mapbg.overlap1:before{
	background: rgb(255 129 25 / 89%);
	/*rgb(255 255 255 / 89%)*/
}
.icon-plane-2 {
    position: absolute;
    top: 250px;
    left: 105px;
}
.bounce-y {
    -webkit-animation: bounce-y 10s infinite linear;
    animation: bounce-y 10s infinite linear;
}
.icon-plane-2 {
    width: 82px;
    height: 415px;
    background-image: url(../images/icons/icon-plane-2.png);
}
.icon-plane-4 {
    width: 455px;
    height: 420px;
    background-image: url(../images/icons/icon-plane-4.png);
}
.roate-round{
	animation: spin 12s linear infinite;
  transform-origin: center center;
}
.icon-plane-4 {
  position: absolute;
  bottom: 190px;
  right: -230px;
}
.icon-plane-3 {
  position: absolute;
  bottom: -10px;
  left: 20px;
}
.icon-plane-3 {
  width: 302px;
  height: 337px;
  background-image: url(../images/icons/icon-van-5.png);
  background-repeat: no-repeat;
}
.info-section h2 {
  font-weight: 700;
  margin: 15px 0;
}
.btn-custom {
  background: #fff;
  color: #0d6efd;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 25px;
  transition: 0.3s;
}
.btn-custom:hover {
  background: #e9ecef;
  color: #0d6efd;
}
.mb-90{
  margin-bottom: 90px;
}
.stats-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 45px;
  position: absolute;
  bottom: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.stat-item h3 {
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.4;
}
.why-choose-two__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .10;
  z-index: -1;
}
.why-choose-two__pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .10;
  z-index: -1;
}
.why-choose-two {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  overflow: hidden;
  background-color: rgb(32 71 169 / 99%);
  z-index: 1;
}
.why-choose-two__bg-box {
  position: absolute;
  top: 0;
  left: 0;
  bottom: -1px;
  width: calc((100% - -830px) / 2);
  background-color: rgb(255 129 25 / 86%);
  clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
  z-index: -1;
}
.shadowboxwarp{
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 35px;
  border-radius: 7px;
}
.feature-list li {
  margin-bottom: 10px;
  font-weight: 600;
}
.feature-list i {
  color: #d35400;
  margin-right: 8px;
}
.image-section-patch{
  position: relative;
  margin-right: 0;

}
.image-section-patch::before {
  content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -106%;
    width: 159%;
    height: 100%;
    border-radius: 0;
    background-color: #efefef;
    z-index: -1;
}
.formaraap{
  background: #fff;
    padding: 40px 25px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.about-two__left {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-right: 280px;
}
.about-two {
  position: relative;
  display: block;
  padding: 90px 0 0px;
  z-index: 1;
}
.about-two__left {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-right: 280px;
}
.about-two__img-box {
  position: relative;
  display: block;
}
.about-two__img {
  position: relative;
  display: block;
  z-index: 2;
  top: -40px;
}
.about-two__img::before {
  position: absolute;
  top: -10px;
  left: -10px;
  bottom: -10px;
  right: -10px;
  background: #ff9305;
  border-radius: 15px;
  content: "";
  z-index: -1;
}
.about-two__img img {
  width: 100%;
  border-radius: 15px;
}
.about-two__img-two {
  position: absolute;
  bottom: -70px;
  right: -300px;
}
.about-two__img-two img {
  width: auto;
  border-radius: 15px;
  border: 10px solid #ff9305;
}
.about-two__counter {
  position: absolute;
  top: 45px;
  right: -80px;
  background: 5px;
  padding: 25px 20px 29px;
  z-index: 5;
}

.about-two__counter .shape1 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.about-two__counter::before {
  position: absolute;
  top: -15px;
  right: 0px;
  width: 25px;
  border-bottom: 15px solid #e14110;
  border-left: 0px solid transparent;
  border-right: 70px solid transparent;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  content: "";
}

.about-two__counter .count-text-box {
  position: relative;
  display: flex;
  align-items: center;
}

.about-two__counter .count-text-box h2 {
  color: #fff;
  font-size: 36px;
  line-height: 45px;
  font-weight: 600;
}

.about-two__counter .count-text-box .plus {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  margin-left: 2px;
}

.about-two__counter p {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  text-transform: capitalize;
}

.about-two__shape-2 {
  position: absolute;
  top: -54px;
  right: -83px;
}

.about-two__shape-2 img {
  width: auto;
}

.about-two__shape-3 {
  position: absolute;
  top: 60px;
  left: -100px;
  z-index: -1;
}

.about-two__shape-3 img {
    width: auto;
    animation: topBottom 3s ease-in-out infinite;
}

.about-two__shape-4 {
    position: absolute;
    bottom: -50px;
    left: 171px;
    z-index: -1;
}

.about-two__shape-4 img {
    width: auto;
}

.about-two__right {
    position: relative;
    display: block;
}

.about-two__right .section-title {
    margin-bottom: 31px;
}

.about-two__progress-box-outer {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 32px;
    margin-bottom: 37px;
}

.about-two__progress-single {
    position: relative;
    display: flex;
    align-items: center;
}

.about-two__progress-box {
    position: relative;
    display: inline-block;
    height: 100px;
}

.about-two__progress-box canvas {
    transform: rotate(72deg);
}

.about-two__progress-box .about-two__pack {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    text-align: center;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
}

.about-two__progress-box .about-two__pack p {
    font-size: 20px;
    font-weight: 600;
    color: var(--tanspot-black);
    line-height: 20px;
}

.about-two__progress-box .about-two__pack span {
    font-size: 20px;
    font-weight: 600;
    color: var(--tanspot-black);
    line-height: 20px;
}

.about-two__progress-content {
    margin-left: 25px;
}

.about-two__progress-content p {
    font-size: 20px;
    color: var(--tanspot-black);
    font-weight: 600;
    line-height: 30px;
    font-family: var(--tanspot-font-two);
}


.about-two__point-box-one {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-two__point-one {
    position: relative;
    display: block;
    max-width: 315px;
    width: 100%;
}

.about-two__point-one li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.about-two__point-one li+li {
    margin-top: 9px;
}

.about-two__point-one li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    background-color: 5px;
    border-radius: 50%;
}

.about-two__point-one li .icon span {
    position: relative;
    display: inline-block;
    font-size: 10px;
    color: #fff;
}

.about-two__point-one li .text {
    position: relative;
    display: block;
    flex: 1;
}

.about-two__btn-and-author-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 38px;
}

.about-two__btn-box {
    position: relative;
    display: block;
}

.about-two__author-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.about-two__author-details {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.about-two__author-img-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 82px;
    width: 82px;
    border: 2px dashed 5px;
    border-radius: 50%;
}

.about-two__author-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    width: 72px;
    border-radius: 50%;
    overflow: hidden;
}

.about-two__author-img img {
    width: 100%;
    border-radius: 50%;
}

.about-two__author-content {
    position: relative;
    display: block;
    flex: 1;
}

.about-two__author-content h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1em;
    margin-bottom: 6px;
}

.about-two__video-link {
    position: relative;
    display: block;
    z-index: 3;
}

.about-two__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    background-color: rgba(var(--tanspot-base-rgb), 1);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.about-two__video-icon:hover {
    background-color: var(--tanspot-black);
    color: #fff;
}

.about-two__video-link .ripple,
.about-two__video-icon .ripple:before,
.about-two__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--tanspot-black-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--tanspot-black-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--tanspot-black-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--tanspot-black-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.about-two__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}
.about-two__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}
.submit-icon,
.submit-icon1{
    display: none;
}
.submit-icon.rotating-show,
.submit-icon1.rotating-show{
  display:inline-block;
  vertical-align: middle;
}
@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}

.em_bar_bg {
    height: 3px;
    width: 110px;
    background: #f8ad3a;
    margin: 30px auto 20px auto;
    position: relative;
    border-radius: 30px;
}
.em_bar_bg:before {
    content: '';
    position: absolute;
    left: 0;
    top: -11px;
    height: 15px;
    width: 40px;
    background-image: url(../images/icon_truck.png);
	  background-size: cover;
	  background-repeat: no-repeat;
	  background-position: bottom;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: MOVE-BG;
    animation-name: MOVE-BG;
}
.con-box i{
  color: #ff9305;
}
.con-box p strong{
  /* color: #2047a9; */
}
.booking-box{
  background-color: #ff8119;
}
@-webkit-keyframes MOVE-BG {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(88px);
            transform: translateX(88px);
  }
}

@keyframes MOVE-BG {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(88px);
            transform: translateX(88px);
  }
}
@-webkit-keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@-webkit-keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@-webkit-keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.bg-abslt-img{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0.1;
	background-image: url(../images/bg-trck1.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;
	z-index: -1;
}
.bottomemail a{
    font-size: 13px;
}


.site-map-list li{
    border-left: 1px solid #dfdfdf;
    padding:10px 0 10px 30px;
    position: relative;
}
.site-map-list li:before{
    position: absolute;
    top: 20px;
    left: 0;
    width: 20px;
    height: 1px;
    background-color: #dfdfdf;
    content: '';
}
.site-map-list li > ul.child-menu{
    margin:10px 0 10px 20px;
}


.contact-card {
        background: linear-gradient(45deg, rgb(2 47 105), rgb(4 123 220));
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 30px;
        padding: 60px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
    }

    .contact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.8s ease;
    }

    .contact-card:hover::before {
        left: 100%;
    }

    .section-title {
        text-align: center;
    }

    .section-title h1 {
        font-size: 4rem;
        font-weight: 700;
        background: linear-gradient(45deg, #fff, #ff9305);
        background-size: 300% 300%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientText 3s ease infinite;
        margin-bottom: 20px;
    }

    @keyframes gradientText {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }

    .contact-item {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 25px;
        padding: 40px 10px;
        text-align: center;
        position: relative;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
        overflow: hidden;
        display: flex;
        width: 100%;
        flex-direction: column;
    }

    .contact-item::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
        border-radius: 50%;
        transition: all 0.6s ease;
        transform: translate(-50%, -50%);
        z-index: -1;
    }

    .contact-item:hover::before {
        width: 300px;
        height: 300px;
    }

    .contact-item:hover {
        transform: translateY(-15px) scale(1.05);
        border-color: #ff9305;
        box-shadow: 0 30px 60px #ff930579;
    }

    .contact-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 25px;
        background: #ff9305;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
        position: relative;
        transition: all 0.4s ease;
    }

    .contact-item:hover .contact-icon {
        transform: rotateY(360deg) scale(1.1);
        box-shadow: 0 15px 30px #ff9305;
    }

    .contact-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: white;
        transition: all 0.3s ease;
    }

    .contact-item:hover .contact-title {
        color: #ff9305;
        transform: scale(1.1);
    }

    .contact-info {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.8;
        transition: all 0.3s ease;
    }

    .contact-item:hover .contact-info {
        color: white;
        transform: translateY(-5px);
    }

    .contact-link {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        display: block;
        margin: 5px 0;
    }

    .contact-link:hover {
        color: #ff9305;
        transform: translateX(10px);
    }

    .pulse-effect {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100px;
        height: 100px;
        border: 2px solid #ff9305;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        animation: pulse 2s infinite;
        opacity: 0;
    }

    .contact-item:hover .pulse-effect {
        opacity: 1;
    }

    @keyframes pulse {
        0% {
            transform: translate(-50%, -50%) scale(0.8);
            opacity: 1;
        }
        100% {
            transform: translate(-50%, -50%) scale(2);
            opacity: 0;
        }
    }

/* col-xxl */
@media (min-width: 1401px) and (max-width:1600px){
  .logo .img-fluid {
    max-width: 300px;
  }
  .navigation a{
    font-size: 16px;
    padding: 0px 15px;
  }
}
/* col-xl */
@media (min-width: 1200px) and (max-width:1400px){
  .logo .img-fluid {
    max-width: 250px;
  }
  .header-top{
    padding: 10px 40px 10px 0;
  }
  .header-bottom{
    padding: 10px 10px 10px 0;
  }
  .section-padding {
    padding: 70px 30px;
  }
  .hero{
      background-position: top;
  }
  .hero-content{
      margin-top: 100px;
  }
  .about-two__img{
    top: -90px;
  }
  .about-two__img-two{
    bottom: -110px;
  }
  .about-two__shape-4{
    left: 38px;
  }
  .section-padding-120 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .about-two__shape-2{
    display: none;
  }
  .customer-block_one-inner{
      min-height: 530px;
  }
  .sec-title{
      font-size: 40px;
  }
  .navigation a{
      font-size: 16px;
      padding: 0px 20px;
  }
  
}
/* col-lg */
@media (min-width: 992px) and (max-width:1200px){
    
  .navigation a{
      font-size: 16px;
      padding: 0px 15px;
  }
  .logo .img-fluid {
    max-width: 200px;
  }
  .header-bottom{
      padding: 20px 10px 20px 0;
  }
  .header-top{
     padding: 10px 10px 10px 0; 
  }
  .hero{
      background-position: top;
  }
  .hero-content{
      margin-top: 100px;
  }
}
/*for mobile to small tab */
@media (min-width: 220px) and (max-width:991px){
	.homepage .header{
    position: relative;
    top:auto;
  }
  .form-container{
      background-color: rgb(0 0 0 / 31%);
  }
  .mobile-menu{
		display: block;
		font-size: 20px;
		background: linear-gradient(45deg, rgb(2 47 105), rgb(4 123 220));
		padding:8px 20px;
		color: #fff;
		cursor: pointer;
		margin: 0 auto;
		text-align: left;
	}
	.mobile-menu i{
		float: right;
	}
	.nav-wrapper{
		position: fixed;
		top: 0;
		right: -300px;
		width: 255px;
		height: 100%;
		overflow-x: scroll;
		z-index: 999;
		border-radius: 0;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
		transition: all 0.5s;
		background: linear-gradient(45deg, rgb(2 47 105), rgb(4 123 220));
		padding: 0;
	}
	.hero{
	    height: auto;
	}
	.navigation{
		text-align: left;
	}
	.nav-wrapper.open{
		right: 0;
	}
	.navigation > li{
		display: block;
		margin:0;
		border-bottom: 1px solid #333;
	}
	.navigation > li:first-child{
		display: block;
	}
	.navigation > li:before{
		display: none;
	}
	.navigation li a{
		padding:10px 20px;
		color: #fff;
		text-transform: none;
	}
	.navigation li:hover > a,
	.navigation li:focus > a,
	.navigation li.active > a{
		background-color: #ff8119;
		color: #ffffff;
	}
	.navigation > li.dropdown > a:after{
		right: 20px;
	}
	.navigation li.dropdown > .dropdown-menu,
	.navigation li.dropdown:hover > .dropdown-menu{
		position: static;
		top: 0;
		visibility: visible;
		opacity: 1;
		width: 100%;
		float: none;
	}
	.navigation li.dropdown > .dropdown-menu li a{
		padding: 10px 10px 10px 30px; 
	}
	.fixed-top{
		position: static;
	}
  .logowrap{
    text-align: center;
  }
  .header-bottom{
    padding: 0;
  }
  .customer-block_one-inner{
      min-height: auto;
  }
  .section-padding,.why-choose-two,.section-padding-120 {
    padding: 40px 0;
  }
  .about-two__left{
    margin-right: 0;
  }
  .about-two__img{
    top: 0;
  }
  .about-two__shape-2{
    display: none;
  }
  .about-two__img-two {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 25px;
  }
  .about-two__img-two img{
    width: 100%;
  }
  .section6{
    background-color: #efefef;
    padding: 40px 0;
  }
  .section6 .icon-plane-2{
    display: none;
  }
  .stats-box{
    position: relative;
    bottom: 0;
    left: auto;
    transform: none;
    margin-bottom: 10px;
  }
  .mb-90 {
    margin-bottom: 20px;
  }
  .footer {
    margin-top: 40px;
  }
  .main-footer_bg:before,
  .main-footer_bg:after{
    display: none;
  }
  .why-choose-two{
    background-color: rgb(224 121 45);
  }
}
/* col-md */
@media (min-width: 768px) and (max-width:991px){
    .hero-content{
        width: 85%;
    }
    .hero-content h1{
        font-size: 2rem;
    }
    .hero{
        padding: 50px 0;
    }
}
/* for all mobile */
@media (min-width: 220px) and (max-width:767px){
  .logo .img-fluid{
    max-width: 250px;
  }
  .hero-content h1{
    font-size: 25px;
  }
  .hero-content{
    max-width: 90%;
  }
}
/* col-sm  */
@media (min-width: 576px) and (max-width:767px){
  .header-top .info-item.d-none-600{
    display: none;
  }
}
/* col-xs */
@media (min-width: 220px) and (max-width:575px){
  .logo .img-fluid{
    max-width: 250px;
  }
  .hero-content h1{
    font-size: 25px;
  }
  .hero-content{
    max-width: 90%;
  }
  .text-box{
    width: 110px;
    height: 110px;
  }
  .text-box__title{
    font-size: 11px;
  }
  .img-box1 .box-inner{
    gap: 15px;
  }
  .img-box1 .box-inner .img2 .img:not(:last-child) {
      margin-bottom: 15px;
  }
  .header-top{
    padding-right: 15px;
    padding-left: 15px  ;
  }
  .info-item{
    margin-bottom: 15px;
  }
  .header-top .info-item.callheder{
    display: flex;
  }
  .info-item.border-start{
    border: 0 !important;
  }
  .headeremail a{
    font-size: 12px;
  }
  .sec-title{
    font-size: 35px;
  }
  .shadowboxwarp{
    padding: 25px;
  }
  .section-padding, .why-choose-two, .section-padding-120,.section6 {
    padding: 1rem!important;
  }
  .contact-card{
    padding: 10px !important;
  }
  .contact-item{
    padding: 40px 2px !important;
  }
  .contact-link{
    font-size: 13px;
  }
  .section-title h1{
    font-size: 40px;
  }
}