@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@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");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Bowlby+One+SC&family=Jost:ital,wght@0,100..900;1,100..900&family=Karla:ital,wght@0,200..800;1,200..800&family=Maven+Pro:wght@400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto+Slab:wght@100..900&display=swap');

@font-face {
  font-family: myriad;
  src: url(../fonts/MYRIADPRO-REGULAR.ttf);
}

@font-face {
  font-family: bliss;
  src: url(../fonts/BlissLightRegular.ttf);
}

:root {
  /*** theme colors ***/
  --theme-color: #33425b;
  --theme-color-2: #d8e9f0;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: myriad;
  background-color: #eeeeee;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "bliss";
}

a:hover {
  color: #000;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.2s all;
}

.theme-btn {
  display: inline-block;
  background-color: var(--theme-color);
  color: #fff !important;
  padding: 13px 30px;
  font-size: 15px;
  font-family: "myriad";
  border: 1px solid transparent;
  box-shadow: 0 0 0 0 black;
  text-transform: uppercase;
  display: inline-block;
  transition: .2s all;
}

.theme-btn:hover {
  background-color: transparent;
  color: #000 !important;
  border: 1px solid var(--theme-color);
  transform: translateY(-4px) translateX(-2px);
  box-shadow: 2px 5px 10px 0 var(--theme-color);
}

img.social-login {
    width: 6%;
    padding: 0% 0% 1% 0%;
}

.theme-btn-2 {
  display: inline-block;
  background-color: var(--theme-color-2);
  color: #000 !important;
  padding: 13px 30px;
  font-size: 15px;
  font-family: "myriad";
  border: 1px solid transparent;
  box-shadow: 0 0 0 0 black;
  text-transform: uppercase;
  font-family: myriad;
  display: inline-block;
  transition: .2s all;
}

.theme-btn-2:hover {
  background-color: transparent;
  color: #fff !important;
  border: 1px solid var(--theme-color-2);
  transform: translateY(-4px) translateX(-2px);
  box-shadow: 2px 5px 10px 0 var(--theme-color-2);
}

.top-bar {
  background-color: var(--theme-color-2);
  overflow: hidden;
}

.head-left {
  display: flex;
  align-items: center;
  gap: 0 30px;
  padding: 21px 0;
}

.email-flex {
  display: flex;
  align-items: center;
  gap: 0 15px;
}

.head-right {
  padding: 21px 0;
  position: relative;
  z-index: 2;
}

.head-right ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0 40px;
  margin: 0;
}

.head-right ul li a i {
  color: #fff;
  font-size: 20px;
}

.head-right::before {
  content: "";
  background-color: var(--theme-color);
  position: absolute;
  top: 0;
  left: -50px;
  clip-path: polygon(5% 0%, 100% 0%, 100% 100%, 0% 100%);
  width: 800px;
  height: 100%;
  z-index: -1;
}

.main-header {
  padding: 50px 0 40px;
  background-color: #fff;
}

.logo img {
  width: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links ul:first-child {
    display: flex;
    text-align: center;
    margin: 0 auto;
    padding: 0;
}

.nav-links ul {
  display: flex;
  align-items: center;
  gap: 0 24px;
  list-style: none;
  margin: 0;
}

.nav-links ul li a {
  text-transform: uppercase;
  font-family: "myriad";
  font-size: 15px;
  color: #000;
  position: relative;
  padding-bottom: 10px;
}

.nav-links ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--theme-color);
  transition: width 0.15s ease-in-out;
  left: 0;
}

.nav-links ul li a:hover:before {
  width: 100%;
}

.nav-links ul li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: var(--theme-color);
  transition: width 0.3s ease-in-out;
  left: 0;
}

.nav-links ul li a:hover:after {
  width: 100%;
}

.nav-links ul li:last-child a:hover:before,
.nav-links ul li:last-child a:hover:after {
  width: 0 !important;
}

section {
    overflow: hidden;
}

/* Banner Start */

.banner-section {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.banner-section img.d-block.w-100 {
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 0 83%, 0 0);
}

.banner-section .carousel-caption {
  bottom: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 20%;
  text-align: left;
}

.banner-left h5 {
  font-family: bliss;
  text-transform: uppercase;
  font-size: 23px;
}

.banner-left h1 {
  font-family: "myriad";
  text-transform: uppercase;
  font-size: 55px;
  font-weight: bold;
  letter-spacing: 4px;
}

.banner-left p {
  font-size: 16px;
  color: #fff;
  line-height: 30px;
}

/* Banner End */

/* About Section Start */

section.about-seciton {
  padding: 70px 0 40px;
}

.main-back-img {
  position: relative;
}

.main-back-img::before {
  background-image: url(../images/truck-back.png);
  background-size: cover;
  content: "";
  position: absolute;
  top: -7%;
  left: 0;
  width: 100%;
  height: 120%;
  display: block;
  z-index: -1;
}

.contact-section {}

.about-left {
  position: relative;
}

.about-left::before {
  content: "";
  width: 90%;
  height: 90%;
  background-color: var(--theme-color-2);
  border-radius: 100px;
  position: absolute;
  z-index: 9;
  left: -8%;
  transform: rotate(44deg);
  top: -2%;
}

.about-left img {
  width: 100%;
  position: relative;
  z-index: 9;
}

.about-right {
  padding: 0 50px;
}

.about-right h6 {
  font-size: 20px;
  font-family: "Poppins";
}

.about-right h2 {
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  font-size: 50px;
  font-family: "myriad";
  margin: 20px 0;
}

.about-right p {
  font-family: "Poppins";
  color: #999999;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px;
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 0 50px;
  margin: 20px 0 20px;
}

.about-flex-wrap p {
  color: #555555;
  position: relative;
  margin: 0 0 10px;
}

.about-flex-wrap p:before {
  content: "\f00c";
  font-family: "FontAwesome";
  padding-right: 11px;
  color: var(--theme-color);
}

/* About Section End */

/* Brand Section Start */

section.brand-section {
  padding: 30px 0 80px;
}

.brand-head {
  text-align: center;
}

.brand-head h6 {
  font-size: 20px;
  font-family: "Poppins";
  color: #000;
}

.brand-head h2 {
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  font-size: 57px;
  font-family: "myriad";
  margin: 20px auto;
  width: 45%;
  line-height: 74px;
}

.brand-head p {
  font-family: "Poppins";
  color: #999999;
  font-size: 16px;
  line-height: 28px;
  margin: 0 auto 30px;
  width: 51%;
}

.brand-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0;
  flex-wrap: wrap;
}

.brand-logos-wrap:hover {
  background-color: var(--theme-color);
}

.brand-logos-wrap:hover img {
  opacity: 100%;
}

.brand-logos-wrap {
  transition: 0.2s all;
  padding: 50px;
  border-radius: 100px;
}

.brand-logos-wrap img {
  width: 130px;
  height: 160px;
  object-fit: contain;
  opacity: 50%;
}

.brand-btn {
  text-align: center;
}

.brand-btn a {
  padding: 13px 50px;
}

/* Brand Section End */

/* Why Choose Us Section Start */

.why-choose-us-section {
  position: relative;
  padding: 80px 0;
  /* overflow: hidden; */
}

.why-choose-us-section::after {
  content: "";
  background-image: url(../images/truck-left.png);
  position: absolute;
  left: 0;
  top: 0;
  width: 64%;
  height: 100%;
  z-index: -1;
}

.why-choose-left {
  text-align: left;
}

.why-choose-left h6 {
  font-size: 20px;
  color: #fff;
  font-family: "Poppins";
}

.why-choose-left h2 {
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  font-size: 50px;
  font-family: "myriad";
  margin: 20px 0;
  width: 100%;
}

.why-choose-left p {
  font-family: "Poppins";
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  margin: 0 0 30px;
  width: 80%;
}

.why-flex {
  display: flex;
  align-items: center;
  gap: 0 0;
}

.why-wrap img {
  width: auto;
  height: 90px;
}

.why-wrap h4 {
  margin: 30px 0 10px;
  color: #fff;
  font-weight: 700;
}

.why-wrap p {
  width: 90%;
  color: #ffffff;
  opacity: 80%;
  font-size: 16px;
}

.why-right img {
  position: absolute;
  width: 56%;
  height: 68%;
  /* object-fit: cover; */
  /* top: -11%; */
  right: 0;
}

.why-box {
  position: absolute;
  bottom: 0;
  width: auto;
  right: 33%;
  background-color: var(--theme-color);
  padding: 40px 40px 20px;
  z-index: 1;
}

.watch-video a {
  text-align: center;
  background-color: var(--theme-color-2);
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: .6s all;
}

.watch-video a img {
  transition: .2s all;
}

.watch-video:hover a img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(33%) saturate(606%) hue-rotate(181deg) brightness(99%) contrast(87%);
}

.watch-video a::before {
  content: "";
  border: 1px solid #fff;
  position: absolute;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.why-box p {
  text-align: center;
  color: #fff;
  width: 100%;
  margin: 50px 0 0;
}

/* Why Choose Us Section End */

/* Contact Section Start */

section.contact-section {
  padding: 160px 0;
  height: 740px;
  position: relative;
}

section.contact-section::before {
  background-image: url(../images/truck-back.png);
  background-size: cover;
  content: "";
  position: absolute;
  top: -13%;
  left: 0;
  width: 100%;
  height: 120%;
  display: block;
  z-index: -2;
  background-position: 90px 51%;
}

.contact-left h6 {
  font-size: 20px;
  color: #000;
  font-family: "Poppins";
}

.contact-left h2 {
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  font-size: 50px;
  font-family: "myriad";
  margin: 10px 0 20px;
  width: 100%;
}

.contact-left p {
  font-family: "Poppins";
  color: #000;
  font-size: 16px;
  line-height: 28px;
  margin: 0 0 30px;
  width: 100%;
}

.contact-right {
  background-color: var(--theme-color);
  width: 84%;
  padding: 50px 40px;
  height: 395px;
  margin: 0 auto;
}

.contact-right h2 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 30px;
}

.contact-right form input,
.contact-right form textarea {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  padding: 15px;
  border: 0;
  color: #000;
  outline: 0;
}

.contact-right form input::placeholder,
.contact-right form textarea::placeholder {
  color: #00000050;
}

.contact-right form textarea {
  height: 160px;
}

.contact-right form button {
  padding: 15px 70px;
}

.contact-right form input:focus::placeholder,
.contact-right form textarea:focus::placeholder {
  position: absolute;
  top: 10%;
  font-size: 10px;
  transition: 0.4s all;
  font-weight: bold;
}

.call-flex {
  display: flex;
  align-items: center;
  gap: 0 20px;
}

.call-flex a:first-child {
  background-color: var(--theme-color);
  padding: 15px;
  border-radius: 50%;
}

.call-flex a:last-child {
  font-size: 25px;
  font-weight: 700;
  color: #000;
}

/* Contact Section End */

/* Footer Start */

footer {
  padding: 80px 0;
  background-color: #fff;
}

.col1 img {
  width: auto;
  margin-bottom: 63px;
}

.col1 p {
  font-family: 'Poppins';
  color: #999999;
  font-size: 20px;
}

.col2 h2 {
  font-size: 20px;
  font-family: 'myriad';
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  color: #000;
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
  padding-bottom: 13px;
}

.col2 h2::after {
  content: "";
  width: 20%;
  background-color: var(--theme-color);
  position: absolute;
  height: 2px;
  left: 0;
  bottom: 0;
}

.col2 ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.col2 ul li {
  display: flex;
  align-items: start;
  gap: 20px;
  margin-bottom: 30px;
}

.col2 ul li img {
  width: 44px;
  object-fit: none;
}

footer .col-md-3:nth-child(3) .col2 ul li img {
  width: unset;
}

.col2 ul li .address h5 {
  font-family: 'myriad';
  color: var(--theme-color);
  font-size: 23px;
  font-weight: 500;
}

.col2 ul li .address a {
  color: #999999;
  font-family: "jost";
}

.col2 ul li .address a:hover {
  color: var(--theme-color);
}

.col2 ul li .address h4 {
  font-family: "jost";
  font-size: 24px;
  color: #000;
}

.col2 ul li .address span {
  font-family: myriad;
  font-size: 15px;
  color: #999999;
}

.col2 form input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #cccccc;
  margin-bottom: 20px;
}

.col2 form input::placeholder {
  color: #999999;
  font-size: 16px;
  font-family: 'myriad';
}

.foot-links ul {
  display: flex;
  align-items: center;
  gap: 0 20px;
  margin-top: 50px;
}

.foot-links ul li a i {
  color: #fff;
  background-color: var(--theme-color);
  padding: 16px;
  transition: .2s all;
  border: 1px solid transparent;
}

.foot-links ul li a:hover i {
  color: var(--theme-color);
  background-color: transparent;
  border: 1px solid var(--theme-color);
  transform: translate(4px, -2px);
  box-shadow: 4px 5px 0px var(--theme-color);
}

.bottom-bar {
  background-color: var(--theme-color);
  width: 100%;
  padding: 15px 0;
}

.bottom-bar p {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  font-size: 16px;
}

/* Footer End */

/* Animations Start */

#anim-top {
  display: inline-block;
  background-color: var(--theme-color-2);
  width: 50px;
  height: 50px;
  text-align: center;
  position: fixed;
  bottom: 5%;
  right: 2%;
  transition: background-color .3s,
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#anim-top img {
  width: auto;
}

#anim-top:hover {
  cursor: pointer;
  background-color: var(--theme-color);
}

#anim-top:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(52deg) brightness(105%) contrast(101%);
}

#anim-top.show {
  opacity: 1;
  visibility: visible;
}

/* Animations End */


/*Inner banner */
section.innerpage-banner {
  background: url(../images/banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 200px 0;
  margin-bottom: 50px;
}

.inner-ban h1 {
  color: #fff;
  font-family: 'myriad';
  font-weight: 700;
  text-align: center;
  font-size: 70px;
}

/*Inner banner */
/* Service Page */
section.our-services {
  padding: 50px 0 100px;
}

.section-heading {
  text-align: center;
}

.section-heading h3 {
  font-size: 20px;
  font-family: 'myriad';
}

.section-heading h2 {
  font-size: 60px;
  font-weight: 700;
  font-family: 'myriad';
}

.section-heading p {
  opacity: 0.5;
  font-family: 'Poppins';
  font-weight: 500;
  width: 47%;
  margin: 0px auto 20px;
}

.service-image img {
  width: 100%;
}

.service-cont {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 30px 5px 10px 20px;
  width: 90%;
  position: absolute;
  bottom: -88px;
}

.service-cont h2 {
  font-size: 22px;
  font-family: 'myriad';
  text-transform: uppercase;
  font-weight: 600;
  color: #000;
  margin: 0;
  margin-bottom: 5px;
}

.service-cont p {
  font-family: 'Poppins';
  opacity: 0.5;
  font-size: 15px;
}

.service-card {
  position: relative;
  margin: 30px 30px 100px;
}

.read-arrow {
  text-align: right;
}

.read-arrow a {
  background: #35405C;
  padding: 13px 20px;
  font-size: 28px;
  color: #fff;
}

/* Service Page */
/* Purchase */
.package-one {
  margin: 10px 20px;
  background: #fff;
  border: 1px solid #bbb;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px #00000020;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

section.packages {
  padding: 50px 0 100px;
}

.package-one h2 {
  font-family: 'myriad';
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 30px;
  transition: all 0.3s ease-in-out;
}

.package-one p {
  font-family: 'Poppins';
  margin-bottom: 10px;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.package-one h3 {
  font-size: 35px;
  font-family: 'myriad';
  font-weight: 800;
  color: #33425b;
  padding: 15px 0;
  border: 1px solid #bbb;
  border-left: 0;
  border-right: 0;
  transition: all 0.3s ease-in-out;
}

.package-one h4 {
  text-align: left;
  margin: 20px 0;
  font-family: 'myriad';
  text-transform: uppercase;
  font-weight: 700;
  font-size: 22px;
  transition: all 0.3s ease-in-out;
}

.package-one ul {
  text-align: left;
  margin: 20px 0 30px;
  padding: 0;
}

.package-one ul li {
  list-style: none;
  font-family: 'Poppins';
  padding: 10px;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease-in-out;
  font-size: 15px;
}

.package-one:hover {
  background: var(--theme-color);
  transform: translateY(-20px);
}

.package-one:hover h2,
.package-one:hover h3,
.package-one:hover h4,
.package-one:hover p,
.package-one:hover ul li {
  color: #fff;
}

.package-one:hover a.theme-btn {
  background: #fff;
  color: #33425b !important;
  font-weight: 600;
}

.package-one a.theme-btn {
  transition: all 0.3s ease-in-out;
}

.alert-success {
  color: #ffffff;
  background-color: #00b894;
  border-color: #00b894;
}

.alert-danger {
  color: #FFF;
  background-color: #ff4949;
  border-color: #ff4949;
}

.section{
padding-top: 80px;
padding-bottom: 50px;
}

.section-heading{
text-align: center;
font-weight: 600;
margin-bottom: 60px;
color: var(--primary-color);
position: relative;
line-height: 24px;
}

.section-heading::after{
content: '';
  width: 60px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 10px;
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
}

#auth{
padding: 60px 0px;
}

.login_register{
background: #ffffff;
  padding: 50px;
  box-shadow: 1px 3px 10px #d8d8d8;
}

.login_register .form-control {
height: auto;
  display: block;
  width: 100%;
   padding: 15px;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #CCC;
  border-radius: .25rem;
  margin-top: 15px;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.login_register .form-control:focus{
outline: none;
-webkit-box-shadow: none;
  box-shadow: none;
border: 1px solid #000;
}

.login_register .btn-login {
  display: block;
  background: #33425b;
  padding: 18px 50px;
  border: 1px solid var(--primary-color);
  color: #fff;
  transition: all 0.3s;
  width: 100%;
  margin-top: 30px;
}
.login_register .btn-login:hover{
  background-color: transparent;
    color: #000 !important;
    border: 1px solid var(--theme-color);
    transform: translateY(-4px) translateX(-2px);
    box-shadow: 2px 5px 10px 0 var(--theme-color);
}

.login_register .right_link{
color: var(--primary-color);
margin-top: 15px;
transition: all 0.3s;
display: inline-block;
}

.login_register .right_link:hover{
text-decoration: underline;
}

.create-account-link{
color: var(--primary-color);
display: inline-block;
margin-top: 15px;
transition: all 0.3s;
}

.create-account-link:hover{
color: var(--primary-color);
text-decoration: underline;
}

.customer_dashboard{
box-shadow: 0 0 4px 0 #e9e9e9;
}

.customer_dashboard{
box-shadow: 0 0 4px 0 #d0cfcf;
}

.customer_dashboard .nav-tabs li.nav-item a {
  text-align: left;
  padding: 12px 20px;
  border-radius: 0;
  border-bottom: 1px solid #efefef;
  color: #2b2f4c;
}
.customer_dashboard .nav-tabs li.nav-item a.active{
  background: #33425b;
  color: #FFF;
}
.customer_dashboard .nav-tabs li.nav-item a i {
  margin-right: 8px;
  vertical-align: middle;
}

.dashboard_content .card-header {
    background-color: #33425b;
    border-color: #ffffff;
    padding: 14px 20px;
}

.dashboard_content .card-header > h4 {
font-size: 16px;
color: #FFF;
font-weight: 400;
margin: 0;
}

.account_details .form-control {
height: auto;
  display: block;
  width: 100%;
   padding: 15px;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #CCC;
  border-radius: .25rem;
  margin-top: 15px;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.account_details .form-control:focus{
outline: none;
-webkit-box-shadow: none;
  box-shadow: none;
border: 1px solid #000;
}

.account_details .btn-login{
  background: #FFF;
  padding: 18px 50px;
  border: 1px solid #303952;
  color: #303952;
transition: all 0.3s;
margin-top: 30px;
}
.account_details .btn-login:hover{
  background: #303952;
  color: #FFF;
}
.btn-add-address{
color: #FFF !important;
padding: 6px 16px;
display: inline-block;
font-size: 14px;
border: 1px solid #FFF;
border-radius: 50px;
}

@media only screen and (max-width: 1400px) {
}
@media only screen and (max-width: 1200px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 991px) {
}
@media only screen and (max-width: 767px) {
}
@media only screen and (max-width: 576px) {
    .logo img {
        width: 60%;
        margin: 0 auto 20px;
        display: block;
    }
    
    .main-header {
        padding: 20px 0 30px;
    }
    
    .nav-links ul {
        padding: 0;
    }
    
    .nav-links ul:first-child {
        margin: 0;
    }
    
    .nav-links {
    flex-direction: column;
    gap: 15px;
    }
    
    .banner-section .carousel-caption {
        top: 0;
    }
    
    .banner-left h1 {
        font-size: 40px;
    }
    
    .banner-left p {
        font-size: 15px;
        line-height: 23px;
    }
    
    .theme-btn-2 {
        font-size: 15px;
        padding: 10px 27px;
    }
    .why-right img {
        display: none;
    }
    
    .why-choose-us-section::after {
        width: 100%;
    }
    
    .why-choose-left p {
        font-size: 14px;
        line-height: 21px;
    }
    
    .why-choose-left h2 {
        margin: 10px 0;
    }
    
    .why-wrap img {
        height: 80px;
    }
    
    section.contact-section {
        height: auto;
        padding: 60px 0 150px;
    }
    
    .col1 img {
        width: 50% !important;
        display: block;
        margin: 0 auto 30px;
    }
    
    footer {
        padding: 30px 0;
    }
    
    .col2 {
        text-align: center;
    }
    
    .col2 ul li {
        justify-content: center;
    }
    
    .address {
        text-align: left;
    }
    section.innerpage-banner {
        padding: 80px 0;
        margin: 0;
    }
    
    .inner-ban h1 {
        margin: 0;
        font-size: 50px;
    }
    section.about-seciton {
        padding: 100px 0 40px;
    }
    
    .about-right {
        padding: 30px 0 0;
    }
    .brand-head h2 {
        width: 100%;
        font-size: 43px;
        line-height: 50px;
    }
    
    .brand-head p {
        width: 90%;
        margin: 0 auto;
        font-size: 14px;
    }
    
    .brand-logos-wrap {
        padding: 30px;
    }
    
    .brand-logos {
        gap: 0 20px;
    }
    .section-heading h2 {
        width: 100%;
        font-size: 43px;
        line-height: 50px;
    }
    
    .section-heading p {
        width: 90%;
        margin: 0 auto;
        font-size: 14px;
    }
}
@media only screen and (max-width: 450px) {
    .why-wrap p {
        width: 100%;
    }
    
    .why-flex {
        flex-direction: column;
        align-items: center;
    }
    
    .why-choose-us-section {
        padding: 60px 0 40px;
    }
    
    section.contact-section {
        padding: 60px 0 130px;
    }
    .banner-section .carousel-item img {
        height: 300px;
        object-fit: cover;
    }
    
    .nav-links ul li a {
        font-size: 14px;
    }
    
    .logo img {
        width: 50%;
    }
    
    .banner-section .carousel-caption {
        top: 8%;
    }
    .section-heading {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .login_register {
        padding: 50px 20px;
    }
    section.packages {
        padding: 50px 0;
    }
    .payment-price h5 {
        font-size: 16px;
        padding: 0 11px;
    }
}
@media only screen and (max-width: 400px) {
    .banner-section .carousel-item img {
        height: 300px;
        object-fit: cover;
    }
    
    .nav-links ul li a {
        font-size: 15px;
    }
    
    .logo img {
        width: 60%;
    }
    
    .banner-section .carousel-caption {
        top: 8%;
    }
    
    .contact-right {
        width: 100%;
        padding: 50px 30px;
    }
    
    .contact-left h2 {
        margin-bottom: 10px;
        font-size: 46px;
    }
    
    .contact-left p {
        margin-bottom: 20px;
    }
    
    .why-wrap:last-child p {
        margin: 0;
    }
    
    .why-choose-left h2 {
        font-size: 40px;
    }
    
    .why-choose-left p {
        width: 100%;
        font-size: 13px;
    }
    
    .banner-left h1 {
        font-size: 30px;
        letter-spacing: 2px;
    }
    .about-flex {
        gap: 0 20px;
    }
    .about-flex-wrap p {
        font-size: 14px;
    }
    .brand-logos {
        justify-content: center;
    }
    .brand-head p {
        width: 100%;
    }
    .shop.checkout.section.payment-section {
        padding: 40px 0;
    }
    .contact-left {
        text-align: center;
    }
    
    .why-wrap {
        text-align: center;
    }
    
    .banner-left {
        text-align: center;
    }
    
    .banner-left p {
        font-size: 13px;
    }
}