/*-----------------------------------------------------------------------------------

    Theme Name: Delport - Transport Business HTML5 Template
    Author: Bdevs
    Support: https://www.devsnews.com/support/
    Description: Delport - Transport Business HTML5 Template
    Version: 1.0

-----------------------------------------------------------------------------------

/************ TABLE OF CONTENTS ***************

		01. Common CSS
		02. Header CSS 
		03. Sidebar CSS
		04. Banner CSS
		05. Services CSS
		06. About Us CSS
		07. Delport CTA CSS
		08. Work Process CSS
		09. Testimonial CSS
		10. Brand CSS
		11. Price CTA CSS
		12. Blog CSS
		13. Team CSS
		14. Accordion CSS
		15. Contact CSS
		16. Portfolio CSS
		17. Approach CSS
		18. Mission CSS
		19. Pricing CSS
		20. funfact
		21. gallery
		22. shop
		23. modal
		24. awards
		25. career
		26. location
		27. partner
		28. quote
		29. footer CSS


**********************************************/
/*

/*----------------------------------------
    01. common CSS
----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Roboto:wght@400;500&display=swap");
html, body {
  scroll-behavior: smooth;
}

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

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--clr-common-text);
  line-height: 26px;
}

a {
  text-decoration: none;
}

.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

a,
.btn,
button,
span,
p,
i,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
.transition-5,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

input {
  outline: 0;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}



h1 {
  font-size: 80px;
}

h2 {
  font-size: 50px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 26px;
}

a:hover {
  color: var(--clr-common-color-red);
}

*::-moz-selection {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  text-shadow: none;
}

::selection {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  text-shadow: none;
}


/*-----------------------------------------
    - Common Classes
-----------------------------------------*/
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.t-right {
  text-align: right;
}

.z-index-1 {
  z-index: 1;
}

.z-index-3 {
  z-index: 3 !important;
}

.z-index-11 {
  z-index: 11;
}

.lh-1 {
  line-height: 1;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.pos-rel {
  position: relative;
}

.pos-abs {
  position: absolute;
}

.content-para {
  margin-bottom: 10px;
}

.bg-css {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*------------------------------------------
    - Background color
-----------------------------------------*/
.theme-bg {
  background: var(--clr-theme-1);
}

.red-bg {
  background: var(--clr-common-color-red);
}

.grey-bg {
  background: var(--clr-bg-gray);
}

.grey-bg-2 {
  background: var(--clr-bg-gray-2);
}

.grey-bg-3 {
  background: var(--clr-bg-gray-3);
}

.grey-bg-4 {
  background: var(--clr-bg-gray-4);
}

.green-bg {
  background: var(--clr-common-heading);
}

.pink-bg {
  background: var(--clr-common-black);
}

.white-bg {
  background: var(--clr-common-white);
}

.black-bg {
  background: var(--clr-common-black);
}

.footer-bg-1 {
  background: var(--clr-theme-1);
}

/*---------------------------------------
    - color
-----------------------------------------*/
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: var(--clr-common-white) !important;
}

.white-color {
  color: var(--clr-common-white);
}

.theme-color {
  color: var(--clr-common-black) !important;
}

.black-color {
  color: var(--clr-common-black);
}

.body-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 900;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.body-overlay:hover {
  cursor: pointer;
}

.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 575px) {
  .progress-wrap {
    right: 15px;
    bottom: 15px;
  }
}

.play-btn {
  width: 120px;
  height: 120px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  line-height: 120px;
  color: var(--clr-theme-1);
  display: inline-block;
  text-align: center;
  font-size: 18px;
  animation: pulse 2s infinite;
}
.play-btn:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
}
.play-btn-white {
  background: var(--clr-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .play-btn {
    width: 95px;
    height: 95px;
    line-height: 95px;
  }
}
@media (max-width: 575px) {
  .play-btn {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 16px;
  }
}
@media (max-width:450px) {
  .play-btn {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
}

/* pulse btn */
.pulse-btn {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 84px;
  text-align: center;
  background-color: var(--clr-common-white);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: var(--clr-common-black);
  animation: pulse 2s infinite;
}
.pulse-btn:hover {
  background-color: var(--clr-common-black);
  color: var(--clr-common-white);
}
.pulse-btn i {
  padding-left: 2px;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
:root {
  /**
     @color declaration
     */
  --clr-common-white: #fff;
  --clr-common-black: #000;
  --clr-common-blue: #2785ff;
  --clr-common-heading: #012863;
  --clr-common-text: #777777;
  --clr-common-border: #eaebee;
  --clr-common-border-2: #F3F3F3;
  --clr-common-border-3: #a4abbc;
  --clr-common-border-4: #ebebeb;
  --clr-common-border-5: #3d5375;
  --clr-common-border-6: #575757;
  --clr-common-border-7: #214170;
  --clr-common-border-8: #395173;
  --clr-common-border-9: #e0e3ed;
  --clr-common-border-10: rgba(255, 255, 255, 0.0705882353);
  --clr-common-border-11: #f0f0f0;
  --clr-common-placeholder: #bcbcbc;
  --clr-common-color-red: #db1c29;
  --clr-common-color-red-2: #bc101c;
  --clr-common-color-red-3: #d51b28;
  --clr-common-color-1: #8a9db9;
  --clr-common-color-2: #012863;
  --clr-common-color-3: #999999;
  --clr-common-color-4: #99abc6;
  --clr-common-color-5: #113771;
  --clr-common-color-6: #7e94b5;
  --clr-common-color-7: #001f4f;
  --clr-common-color-8: #8799b4;
  --clr-common-color-9: #465e82;
  --clr-common-color-10: #a2b0c7;
  --clr-common-color-11: #607696;
  --clr-common-color-12: #f2f2f2;
  --clr-common-color-13: #08306c;
  --clr-common-color-14: #f09aa0;
  --clr-common-color-15: #ffefef;
  --clr-common-color-16: rgba(255, 255, 255, 0.0901960784);
  --clr-common-color-17: rgba(153, 171, 198, 0.1098039216);
  --clr-common-color-18: #f1f1f1;
  --clr-common-color-19: #eeeeee;
  --clr-common-color-20: #d4d4d4;
  --clr-common-color-21: #f5f6f9;
  --clr-common-color-22: rgba(238, 238, 238, 0.1215686275);
  --clr-common-color-23: #454545;
  --clr-common-color-24: #333333;
  --clr-common-color-25: #777;
  --clr-common-gray: #f8f8f8;
  --clr-common-placeholder-color: #bcbcbc;
  --clr-common-input-border: #f6f6f6;
  --clr-common-gradient: linear-gradient(to left, #db1c29, #db1c29);
  --clr-theme-1: #012863;
  --clr-theme-2: #fb5050;
  --clr-bg-gray: #f3f4f6;
  --clr-bg-gray-2: #f5f5f5;
  --clr-bg-gray-3: #f8f8f8;
  --clr-bg-gray-4: #f7f7f7;
  --clr-bg-gray-5: rgba(247, 247, 247, 0.5019607843);
  --clr-bg-black: #000;
  --clr-bg-footer: #f6f6f6;
  --clr-bg-1: #3e976c;
  --clr-bg-2: #EAEAEA;
  --clr-bg-3: #f8f8f9;
}

.bg-gray {
  background-color: var(--clr-bg-gray);
}

.fill-btn {
    font-size: 16px;
    color: var(--clr-common-white);
    font-weight: 600;
    background: #8e793e;
    height: 60px;
    display: inline-block;
    line-height: 60px;
    padding: 0 38px;
    position: relative;
    overflow: hidden;
    text-align: center;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
}
.fill-btn i {
  margin-right: 20px;
}
    .fill-btn:hover {
        color: var(--clr-common-white);
        background: #495057;
    }
.fill-btn-white {
  background: var(--clr-common-white);
  color: var(--clr-common-heading);
}
.fill-lg-btn {
  padding: 0 50px;
}
.fill-xl-btn {
  padding: 0 53px;
}
.fill-border-btn {
  background: transparent;
  border: 2px solid var(--clr-common-white);
}

.border-btn {
  font-size: 16px;
  color: var(--clr-common-white);
  font-weight: 600;
  background: transparent;
  border: 1px solid var(--clr-common-white);
  height: 60px;
  display: inline-block;
  line-height: 58px;
  padding: 0 43px;
  position: relative;
  overflow: hidden;
  text-align: center;
  text-transform: uppercase;
}
.border-btn-lg {
  padding: 0 50px;
}
.border-btn-xl {
  padding: 0 53px;
}
.border-btn:hover {
  color: var(--clr-common-white);
  background: var(--clr-common-heading);
}

.clip-btn {
  clip-path: polygon(11% 0, 100% 0, 89% 100%, 0 100%);
}

.clip-sm-btn {
  clip-path: polygon(2% 0, 100% 0, 98% 100%, 0 100%);
}

.clip-md-btn {
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.skew-btn {
  background: transparent;
  height: 60px;
  padding: 0px 55px;
  line-height: 60px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--clr-common-white);
  font-family: "Oswald", sans-serif;
  position: relative;
  display: inline-flex;
  z-index: 2;
}
.skew-btn::before {
  position: absolute;
  content: "";
  width: calc(100% - 20px);
  height: 100%;
  border: 2px solid var(--clr-common-border-2);
  -webkit-transform: skew(-18deg);
  -moz-transform: skew(-18deg);
  -ms-transform: skew(-18deg);
  transform: skew(-18deg);
  z-index: -1;
  left: 10px;
}
.skew-btn:hover {
  color: var(--clr-common-heading);
}
.skew-btn:hover::before {
  background: var(--clr-common-white);
  border-color: var(--clr-common-white);
}

.btn-round {
  -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: var(--clr-common-heading);
  font-size: 18px;
  background: var(--clr-common-white);
}
.btn-round:hover {
  background: var(--clr-common-color-red);
  color: var(--clr-common-white);
}

.bounce {
  -moz-animation: bounce 3s infinite;
  -webkit-animation: bounce 3s infinite;
  animation: bounce 3s infinite;
}

.border-tb {
  border-top: 1px solid var(--clr-common-border-2);
  border-bottom: 1px solid var(--clr-common-border-2);
}

.section__title .sub-title, .section__title span {
  color: var(--clr-common-color-red-3);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
  font-weight: 400;
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  margin-top: -2px;
}
.section__title .sub-title.white, .section__title span.white {
  color: var(--clr-common-white);
}
.section__title .title {
  font-size: 50px;
  margin-bottom: 0;
}
.section__title .title-sm {
  font-size: 30px;
}
@media (max-width: 575px) {
  .section__title .title-sm {
    font-size: 26px;
  }
}
.section__title .title.white {
  color: var(--clr-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section__title .title {
    font-size: 40px;
  }
  .section__title .title br {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .section__title .title {
    font-size: 34px;
  }
  .section__title .title br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section__title .title {
    font-size: 34px;
  }
  .section__title .title br {
    display: none;
  }
}
@media (max-width:450px) {
  .section__title .title {
    font-size: 28px;
  }
}

.lh-1 {
  line-height: 1;
}

.clip-box {
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
}
.clip-box-common {
  position: relative;
  background: transparent;
  z-index: 2;
}
.clip-box-common::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--clr-common-white);
  z-index: -1;
}
.clip-box-xxs {
  clip-path: polygon(1.4% 0, 100% 0, 98.6% 100%, 0 100%);
}
.clip-box-xs {
  clip-path: polygon(1.5% 0, 100% 0, 98.5% 100%, 0 100%);
}
.clip-box-sm {
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
}
.clip-box-md {
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}
.clip-box-md-before {
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
}
.clip-box-lg-before {
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}
.clip-box-sm-before {
  clip-path: polygon(2% 0, 100% 0, 98% 100%, 0 100%);
}

.mt--35 {
  margin-top: -35px;
}

.mt--40 {
  margin-top: -40px;
}

.mt--45 {
  margin-top: -45px;
}

.mt--50 {
  margin-top: -50px;
}

.mt--60 {
  margin-top: -60px;
}

.mt--62 {
  margin-top: -62px;
}

.mt--85 {
  margin-top: -85px;
}

.mt--65 {
  margin-top: -65px;
}

.mt--100 {
  margin-top: -100px;
}

.hr1 {
  border-bottom: 1px solid #dcdcdc;
}

.breadcrumb-spacing {
  padding: 160px 0px;
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 2;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .breadcrumb-spacing {
    padding: 80px 0;
  }
}
.breadcrumb-spacing::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(1, 40, 99, 0.768627451) 0%, rgba(1, 40, 99, 0.6) 100%);
  z-index: -1;
}
.breadcrumb-menu li {
  display: inline-block;
  padding: 0 15px;
  position: relative;
}
.breadcrumb-menu li span {
  color: var(--clr-common-white);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}
.breadcrumb-menu li a:hover span {
  color: var(--clr-common-color-red);
}
.breadcrumb-menu li:not(:last-child)::after {
  display: inline-block;
  color: var(--clr-common-white);
  content: "\f101";
  position: absolute;
  right: -6px;
  top: 0px;
  font-family: "Font Awesome 5 Pro";
}

.page-title {
  color: var(--clr-common-white);
  font-size: 60px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .page-title {
    font-size: 50px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .page-title {
    font-size: 45px;
    margin-bottom: 10px;
  }
}
@media (max-width:450px) {
  .page-title {
    font-size: 35px;
  }
}

.vert-move {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
  }
}
@keyframes mover {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
  }
}
.hori-move {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover-hori 1s infinite alternate;
}

@-webkit-keyframes mover-hori {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateX(-50px);
    -moz-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
  }
}
@keyframes mover-hori {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateX(-50px);
    -moz-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
  }
}
@-webkit-keyframes mappulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(219, 28, 41, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(219, 28, 41, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(219, 28, 41, 0);
  }
}
@keyframes mappulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(219, 28, 41, 0.4);
    box-shadow: 0 0 0 0 rgba(219, 28, 41, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 20px rgba(219, 28, 41, 0);
    box-shadow: 0 0 0 20px rgba(219, 28, 41, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(219, 28, 41, 0);
    box-shadow: 0 0 0 0 rgba(219, 28, 41, 0);
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .main-menu-3 {
    margin-left: 0;
    text-align: center;
  }
}
.main-menu-3 ul li {
  margin-right: 60px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .main-menu-3 ul li {
    margin-right: 40px;
  }
}
.main-menu-3 ul li a {
  color: var(--clr-common-heading);
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), screen and (max-width: 575px) {
  .menu-none {
    display: none !important;
  }
}
.menu-bg {
  background: transparent;
  position: relative;
  margin-left: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .menu-bg {
    margin-left: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .menu-bg {
    margin-left: 65px;
  }
}
.menu-bg::before {
  content: "";
  position: absolute;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 1% 100%);
  left: 0;
  right: 0;
  top: 0;
  background: var(--clr-common-color-red);
  width: 100%;
  height: 100%;
  z-index: -1;
}
.menu-btn a {
  background: var(--clr-common-color-red-2);
  display: block;
  padding: 17px 40px;
  text-transform: uppercase;
  color: var(--clr-common-white);
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  display: inline-block;
}
.menu-btn a:hover {
  background: var(--clr-common-heading);
  color: var(--clr-common-white);
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .menu-sticky.sticky {
    padding: 18px 0;
  }
}
.menu-sticky .main-menu-1 {
  margin: auto;
  padding-left: 0;
}
.menu-sticky ul li a {
  color: var(--clr-common-heading);
  padding: 32px 0;
}
.menu-sticky ul li:hover a {
  color: var(--clr-common-color-red);
}

.menu-hidden {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.sticky {
  position: fixed;
  top: 0;
  background: var(--clr-common-white);
  z-index: 800;
  right: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  border: none;
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header__two.menu-sticky.sticky {
    padding: 18px 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .header__bottom.menu-sticky {
    padding: 10px 0;
  }
}
.menu-sticky.sticky.menu-area {
  margin-top: 0 !important;
}
.menu-sticky.sticky .logo {
  display: block !important;
}
.menu-sticky.sticky .menu-bg {
  position: inherit;
}
.menu-sticky.sticky .menu-bg::before {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.menu-sticky.sticky .main-menu li a {
  padding: 32px 0;
  display: block;
}
.menu-sticky.sticky .main-menu li li a {
  padding: 0px;
}
.menu-sticky.sticky .main-menu-1 nav ul li.menu-item-has-children a::after {
  color: var(--clr-theme-1);
}
.menu-sticky.sticky .main-menu-1 nav ul li.menu-item-has-children:hover a::after {
  color: var(--clr-common-color-red);
}
.menu-sticky.sticky .menu-btn a {
  padding: 15px 40px;
}

.header__bottom-3 .logo img {
  margin-top: -50px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header__bottom-3 .logo img {
    margin-top: 0px;
  }
}
.header__bottom-3.sticky .logo img {
  margin-top: 0px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header__bottom-3.sticky .logo img {
    margin-top: 0px;
  }
}
.header__bottom-3.menu-sticky ul li a {
  padding: 27px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header__bottom-3 {
    padding: 18px 10px;
  }
}

/*----------------------------------------
    03. Sidebar CSS
----------------------------------------*/
.sidebar__area {
  position: fixed;
  right: -485px;
  top: 0;
  width: 445px;
  height: 100%;
  background: var(--clr-common-white) none repeat scroll 0 0;
  overflow-y: scroll;
  -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  z-index: 999;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sidebar__area {
    width: 315px;
  }
}

.sidebar__area.sidebar-opened {
  right: 0px;
}

.sidebar__wrapper {
  position: relative;
  padding: 45px;
  border-left: 3px solid var(--clr-common-color-red);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sidebar__wrapper {
    padding: 20px;
  }
}

.sidebar__close {
  position: absolute;
  right: 45px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sidebar__close {
    right: 20px;
  }
}

.sidebar__close-btn {
  display: inline-block;
  font-size: 16px;
  height: 45px;
  width: 45px;
  line-height: 46px;
  color: var(--clr-common-white);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background: var(--clr-common-heading);
}
.sidebar__close-btn:hover {
  background: var(--clr-common-color-red);
  color: var(--clr-common-white);
}

.sidebar__search {
  position: relative;
}
.sidebar__search input {
  width: 100%;
  height: 50px;
  line-height: 40px;
  padding-right: 20px;
  background: var(--clr-theme-1);
  border: none;
  outline: none;
  color: var(--clr-common-white);
  font-size: 14px;
  padding: 0px 45px 0 20px;
  display: block;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.sidebar__search button {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--clr-common-white);
}
.sidebar__search .single-input-field {
  margin-bottom: 0;
}

.sidebar__social ul li {
  display: inline-block;
}
.sidebar__social ul li :not(:last-child) {
  margin-right: 5px;
}
.sidebar__social ul li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.sidebar__social ul li:hover a {
  background: var(--clr-common-color-red);
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}
.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}
.mean-container .mean-nav ul {
  display: block;
}
.mean-container .mean-nav ul li a {
  display: block;
  float: left;
  width: 100%;
  padding: 10px;
  margin: 0;
  text-align: left;
  color: var(--clr-common-white);
  border-top: 1px solid var(--clr-common-border-9);
  text-decoration: none;
  text-transform: uppercase;
  color: var(--clr-common-heading);
  font-weight: 600;
  font-family: "Oswald", sans-serif;
}
.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  color: var(--clr-common-heading);
}
.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 1px solid transparent;
}

.mean-container a.meanmenu-reveal span {
  display: none;
}

.sidebar__contact {
  margin-bottom: 10px;
}
.sidebar__info-item {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.sidebar__info-icon {
  font-size: 30px;
  color: var(--clr-common-color-red);
  margin-right: 20px;
}
@media (max-width:450px) {
  .sidebar__info-icon {
    font-size: 25px;
  }
}
.sidebar__info-text span {
  color: var(--clr-common-text);
  margin-bottom: 2px;
  display: block;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
}
.sidebar__info-text h5 {
  color: var(--clr-common-heading);
  font-size: 16px;
}

/*----------------------------------------
    05. Banner CSS
----------------------------------------*/
.banner-content.banner-content1.banner-content1-1 {
    background: rgba(34, 34, 34, 0.76);
    padding: 60px;
    margin: 50px 0 0 0;
}

.banner-830 {
  height: 550px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-830 {
    min-height: 760px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-830 {
    min-height: 450px;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 575px) {
  .banner-830 {
    min-height: 300px;
    display: flex;
    align-items: center;
    height: 450px;
  }
}

.banner-840 {
  min-height: 840px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-840 {
    min-height: 650px;
  }
    .banner-content.banner-content1.banner-content1-1 {
        background: rgba(34, 34, 34, 0.76);
        padding: 30px;
        margin: 50px 0 0 0;
    }
}

.banner-970 {
  min-height: 970px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-970 {
    min-height: 620px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-970 {
    min-height: 550px;
  }
}

.banner-overlay::before {
  position: absolute;
  width: 100%;
  height: 100%;
 
  top: 0;
  left: 0;
  content: "";
}
.banner-overlay-3::before {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #012863;
  top: 0;
  left: 0;
  content: "";
  opacity: 0.4;
}

.banner-overlay-white {
  z-index: 2;
}
.banner-overlay-white::before {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(202, 202, 202, 0.2392156863) 0%, rgba(202, 202, 202, 0.8) 100%);
  top: 0;
  left: 0;
  content: "";
  z-index: 0;
}

.banner-content .banner-btn {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  gap: 20px 10px;
}
.banner-content .banner-btn .skew-btn {
  padding: 0 39px;
}
.banner-content .banner-btn .skew-btn:hover::before {
  border-color: var(--clr-common-white);
}
.banner-content .banner-btn .skew-btn::before {
  border-color: #fff;
}

.banner-content1 {
  padding-top: 180px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-content1 {
    padding-top: 170px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-content1 {
    padding-top: 0px;
  }
}

.banner-content2 .banner-title {
  color: var(--clr-common-heading);
}

.banner-content3-round1 {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: var(--clr-common-color-2);
  position: absolute;
  left: 0;
  top: 0;
  width: 600px;
  height: 600px;
  right: 0;
  margin: auto;
  bottom: 0;
  z-index: -1;
  opacity: 0.902;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-content3-round1 {
    width: 400px;
    height: 400px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-content3-round1 {
    width: 300px;
    height: 300px;
  }
}

.banner-content3-round2 {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: var(--clr-common-color-2);
  position: absolute;
  left: -31%;
  top: -70%;
  width: 100px;
  height: 100px;
  right: 0;
  margin: auto;
  bottom: 0;
  z-index: -1;
  opacity: 0.902;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-content3-round2 {
    width: 80px;
    height: 80px;
  }
}

.slider__active-3 .slider-nav div {
  position: absolute;
  top: 0;
  left: 60px;
  display: inline-block;
  z-index: 100;
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  position: absolute;
  -webkit-transform: skew(-14deg);
  -moz-transform: skew(-14deg);
  -ms-transform: skew(-14deg);
  transform: skew(-14deg);
  background: transparent;
  border: 2px solid var(--clr-common-border-10);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.slider__active-3 .slider-nav div i {
  color: var(--clr-common-white);
}
.slider__active-3 .slider-nav div.slider-button-next {
  left: auto;
  right: 60px;
}
.slider__active-3 .slider-nav div:hover {
  background: var(--clr-common-color-red);
  border: 2px solid var(--clr-common-color-red);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider__active-3 .slider-nav div {
    display: none;
  }
}

.banner-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
  background-color: var(--clr-common-white);
  transform: scale(1);
  transition: all 8s linear 0s;
}

.swiper-slide-active .banner-bg {
  -webkit-transform: scale(1.12);
  -moz-transform: scale(1.12);
  transform: scale(1.12);
}

.banner-meta-text {
  margin-bottom: 10px;
}
@media (max-width:450px) {
  .banner-meta-text {
    margin-bottom: 5px;
  }
}
.banner-meta-text span {
  color: var(--clr-common-white);
  text-transform: uppercase;
  font-weight: 400;
  font-size: 20px;
  font-family: "Oswald", sans-serif;
}
@media (max-width:450px) {
  .banner-meta-text span {
    font-size: 16px;
  }
}

.banner-title {
  color: var(--clr-common-white);
  font-size: 50px;
  line-height: 1.12;
  margin-bottom: 42px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-title {
    font-size: 60px;
  }
  .banner-title br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-title {
    font-size: 52px;
  }
  .banner-title br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-title {
    font-size: 36px;
  }
  .banner-title br {
    display: none;
  }
}
@media (max-width:450px) {
  .banner-title {
    font-size: 32px;
  }
  .banner-title br {
    display: none;
  }
}

.banner-btn .clip-btn {
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

.banner-btn .border-btn {
  height: 60px;
  padding: 0 52px;
  line-height: 58px;
}

.banner-content1 {
  max-width: 1000px;
}
@media (max-width: 575px) {
  .banner-content1 {
    max-width: 400px;
  }
}

@media (max-width: 575px) {
  .banner-content2 {
    max-width: 400px;
  }
}

.banner-content2-3 {
  max-width: 780px;
  margin-left: auto;
}
@media (max-width: 575px) {
  .banner-content2-3 {
    max-width: 450px;
    margin-left: 0;
  }
}
@media screen and (max-width:414px) {
    .banner-content.banner-content1.banner-content1-1 {
        background: rgba(34, 34, 34, 0.76);
        padding: 20px;
        margin: 20px 0 0 0;
    }
    .banner-title {
        font-size: 28px;
    }
    .fill-btn {
        font-size: 16px;
        height: 50px;
        line-height: 50px;
        padding: 0 28px;
    }
    .skew-btn {
        height: 50px;
        line-height: 50px;
      }
    .banner-830 {
        min-height: 300px;
        display: flex;
        align-items: center;
        height: 380px;
    }
}
@media screen and (max-width:320px) {
    .fill-btn {
        font-size: 14px;
        height: 40px;
        line-height: 40px;
        padding: 0 28px;
    }
    .skew-btn {
        height: 40px;
        line-height: 40px;
    }
    .banner-content.banner-content1.banner-content1-1 {
        background: rgba(34, 34, 34, 0.76);
        padding: 10px;
        margin: 20px 0 0 0;
    }
    .banner-title {
        font-size: 24px;
        margin-bottom: 29px;
    }
}
    .slider-pagination.slider1-pagination {
        position: absolute;
        right: 30px;
        top: 50%;
        display: flex;
        flex-direction: column;
        left: auto;
        width: inherit;
        z-index: 10;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        height: 100%;
        justify-content: center;
        gap: 20px;
    }

    @media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
        .slider-pagination.slider1-pagination {
            display: none;
        }
    }

    .slider-pagination.slider1-pagination .swiper-pagination-bullet {
        width: 15px;
        height: 2px;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
        background: var(--clr-common-heading);
        opacity: 1;
        margin-left: auto;
    }

        .slider-pagination.slider1-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
            width: 30px;
        }

    .banner-area1 .slider-nav .dp-nav-btn {
        position: absolute;
        top: 46%;
        z-index: 100;
        width: 50px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        cursor: pointer;
        background: #9d0d0d;
        border: 1px solid #fff;
        transition: all 0.3s ease-out 0s;
        border-radius: 50%;
        right: 5%;
        color: #fff;
        transform: translateY(-50%);
    }

        .banner-area1 .slider-nav .dp-nav-btn.slider-button-next {
            top: 53%;
            transform: translateY(-45%);
        }

        .banner-area1 .slider-nav .dp-nav-btn:hover {
            border-color: #222;
            color: var(--clr-common-color-red);
            background: #222;
        }

    .portfolio__sd-box-content i {
        margin-bottom: 25px;
        display: block;
        color: var(--clr-common-color-red);
        font-size: 45px;
    }

    .portfolio__sd-box-content p {
        margin-bottom: 0;
        line-height: 20px;
    }

    .portfolio__sd-box-content h6 {
        font-size: 22px;
        color: var(--clr-common-heading);
    }

    @media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
        .portfolio__sd-box-content h6 {
            font-size: 18px;
        }
    }


    .office-wrapper {
        display: flex;
        gap: 35px;
        padding: 50px 45px 50px;
        background: var(--clr-common-white);
    }

    @media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
        .office-wrapper {
            margin-left: 0;
        }
    }

    @media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
        .office-wrapper {
            flex-wrap: wrap;
            flex-direction: column;
        }
    }

    .office-map iframe {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 10px;
        z-index: -1;
    }

    .office-item {
        position: relative;
        padding-right: 37px;
    }

    @media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
        .office-item {
            padding-right: 0;
        }
    }

    .office-item:after {
        position: absolute;
        content: "";
        height: 85%;
        width: 1px;
        border: 1px solid var(--clr-common-border-2);
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }

    @media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
        .office-item:after {
            display: none;
        }
    }

    .office-item:last-child {
        padding-right: 0px;
    }

        .office-item:last-child::after {
            display: none;
        }

    .office-item h4 {
        font-size: 24px;
        margin-bottom: 25px;
        color: var(--clr-common-heading);
    }

    @media (max-width: 575px) {
        .office-item h4 {
            font-size: 20px;
        }
    }

    .office-content .singel-addresss {
        margin-bottom: 10px;
    }

        .office-content .singel-addresss:last-child {
            margin-bottom: 0;
        }

    .office-content a {
        display: block;
    }

        .office-content a:last-child {
            margin-bottom: 0;
        }

        .office-content a i {
            margin-right: 10px;
        }

    .singel-addresss {
        display: flex;
        gap: 15px;
    }

    /*----------------------------------------
    27. Partner CSS 
----------------------------------------*/
    .partner-thumb {
        margin-bottom: 30px;
    }

        .partner-thumb img {
            max-width: 130px;
        }

    .partner-item {
        text-align: center;
        border: 1px solid var(--clr-common-border-4);
        padding: 40px 35px 40px;
    }

    @media (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 1200px) and (max-width: 1399px) {
        .partner-item {
            padding: 35px 25px 30px;
        }
    }

    .partner-content h3 a {
        font-size: 24px;
        display: block;
        margin-bottom: 20px;
        color: var(--clr-common-heading);
    }

        .partner-content h3 a:hover {
            color: var(--clr-common-color-red);
        }

    @media (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 1200px) and (max-width: 1399px) {
        .partner-content h3 {
            font-size: 20px;
        }
    }

    .partner-content p {
        margin-bottom: 0;
    }

    /*----------------------------------------
    28. Quote CSS 
----------------------------------------*/
    .order__form-button {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

        .order__form-button span {
            font-family: "Oswald", sans-serif;
            font-size: 16px;
            font-weight: 500;
            text-transform: uppercase;
            color: var(--clr-common-heading);
        }

        .order__form-button i {
            font-size: 20px;
            color: var(--clr-common-heading);
            margin-right: 8px;
        }

    .product__data label {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 10px;
        line-height: 1;
        color: var(--clr-common-heading);
    }

    .product__data input {
        width: 100%;
        padding: 0 18px;
        height: 51px;
        border: 2px solid var(--clr-common-border-2);
        margin-bottom: 20px;
    }

    .pr-select {
        width: 100%;
        height: 51px;
        margin-bottom: 20px;
    }

        .pr-select .current {
            color: var(--clr-common-placeholder);
            font-size: 16px !important;
            opacity: 1;
            text-transform: uppercase;
            font-family: "Oswald", sans-serif;
        }

        .pr-select .nice-select {
            height: 51px;
            line-height: 49px;
            width: 100%;
            border: 2px solid var(--clr-common-border-2);
            border-radius: 0;
        }

            .pr-select .nice-select .list {
                width: 100%;
            }

    .product__check {
        display: flex;
        column-gap: 40px;
        flex-wrap: wrap;
        row-gap: 20px;
    }

    @media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
        .product__check {
            column-gap: 30px;
            row-gap: 8px;
        }
    }

    .quote-tab .nav {
        flex-direction: column;
        display: flex;
        gap: 20px;
    }

    @media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
        .quote-tab .nav {
            flex-direction: row;
        }
    }

    .quote-tab .nav-tabs {
        border-bottom: 0;
    }

        .quote-tab .nav-tabs .nav-link {
            margin-bottom: -1px;
            border: 2px solid var(--clr-common-border-2);
            border-radius: 0;
            border-color: var(--clr-common-border-2);
        }

            .quote-tab .nav-tabs .nav-link.active {
                background: var(--clr-common-heading);
                color: var(--clr-common-white);
            }

                .quote-tab .nav-tabs .nav-link.active i {
                    color: var(--clr-common-white);
                }

                .quote-tab .nav-tabs .nav-link.active .order__form-button span {
                    color: var(--clr-common-white);
                }

    .quote-tab .nav-link {
        padding: 20px 30px;
        width: 100%;
    }

    .check-item {
        display: flex;
        gap: 10px;
        align-items: center;
        font-size: 16px;
        text-transform: capitalize;
        color: var(--clr-common-color-2);
    }

        .check-item label span {
            font-weight: 500;
            line-height: 1;
            color: var(--clr-common-heading);
            text-transform: capitalize;
        }

    input.e-check-input {
        margin: 0;
        appearance: none;
        -moz-appearance: none;
        display: block;
        width: 15px;
        min-width: 15px;
        height: 15px;
        background: var(--clr-common-white);
        border: 1px solid #b9bac1;
        outline: none;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        cursor: pointer;
    }

        input.e-check-input:checked {
            position: relative;
            background-color: var(--clr-theme-1);
            border-color: transparent;
        }

            input.e-check-input:checked::after {
                box-sizing: border-box;
                content: "\f00c";
                position: absolute;
                font-family: "Font Awesome 5 Pro";
                font-size: 10px;
                color: var(--clr-common-white);
                top: 50%;
                left: 50%;
                -webkit-transform: translate(-50%, -50%);
                -moz-transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
                font-weight: 500;
            }

    .product__data textarea {
        width: 100%;
        padding: 10px 18px;
        height: 150px;
        border: 2px solid #eaeaea;
        margin-bottom: 20px;
    }

    /*----------------------------------------
    29. footer CSS
----------------------------------------*/
    @media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
        .footer__padd-1 {
            padding-top: 280px;
        }
    }

    @media (max-width: 575px) {
        .footer__padd-1 {
            padding-top: 265px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
        .footer__padd-2 {
            padding-bottom: 50px;
        }
    }

    .footer-area1-bg {
        background: var(--clr-theme-1);
    }

    @media only screen and (min-width: 1200px) and (max-width: 1399px) {
        .footer-area1 {
            padding-bottom: 80px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
        .footer-area--86 {
            margin-top: -86px;
        }
    }

    .footer-widget-title {
        margin-bottom: 30px;
    }

        .footer-widget-title h4 {
            color: var(--clr-common-white);
            font-size: 20px;
        }

    @media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
        .footer-widget-title {
            margin-bottom: 30px;
        }
    }

    .footer-photo-gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 15px;
        max-width: 400px;
    }

    @media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
        .footer-photo-gallery {
            grid-gap: 10px;
        }
    }

    @media (max-width: 575px) {
        .footer-photo-gallery {
            grid-gap: 15px;
        }
    }

    @media (max-width:450px) {
        .footer-photo-gallery {
            grid-gap: 10px;
        }
    }

    @media only screen and (min-width: 576px) and (max-width: 767px) {
        .footer-photo-gallery {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .footer-widget {
        margin-top: -5px;
    }

        .footer-widget p {
            color: var(--clr-common-color-4);
        }

        .footer-widget .footer-widget-link {
            display: grid;
            grid-template-columns: 110px 1fr;
        }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .footer-widget .footer-widget-link {
            grid-template-columns: 140px 1fr;
        }
    }

    @media only screen and (min-width: 576px) and (max-width: 767px) {
        .footer-widget .footer-widget-link {
            grid-template-columns: 100px 1fr;
        }
    }

    @media (max-width: 575px) {
        .footer-widget .footer-widget-link {
            grid-template-columns: 170px 1fr;
        }
    }

    @media (max-width:450px) {
        .footer-widget .footer-widget-link {
            grid-template-columns: 135px 1fr;
        }
    }

    .footer-widget .footer-widget-link li {
        margin-bottom: 22px;
        line-height: 1;
    }

        .footer-widget .footer-widget-link li:last-child {
            margin-bottom: 0;
        }

        .footer-widget .footer-widget-link li a {
            font-size: 16px;
            color: var(--clr-common-color-4);
            position: relative;
        }

            .footer-widget .footer-widget-link li a::before {
                content: "";
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0%;
                height: 2px;
                background: var(--clr-common-border-3);
            }

        .footer-widget .footer-widget-link li:hover {
            color: var(--clr-common-white);
        }

            .footer-widget .footer-widget-link li:hover a {
                color: var(--clr-common-white);
            }

                .footer-widget .footer-widget-link li:hover a::before {
                    width: 100%;
                }

    .footer-widget .footer-widget-link-2 {
        display: block;
        line-height: 1;
    }

        .footer-widget .footer-widget-link-2 li {
            margin-bottom: 20px;
        }

            .footer-widget .footer-widget-link-2 li:last-child {
                margin-bottom: 0px;
            }

            .footer-widget .footer-widget-link-2 li a {
                color: var(--clr-common-white);
                position: relative;
            }

                .footer-widget .footer-widget-link-2 li a::before {
                    content: "";
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 0%;
                    height: 2px;
                    background: var(--clr-common-border-3);
                }

            .footer-widget .footer-widget-link-2 li i {
                color: var(--clr-common-white);
                opacity: 0.2;
                margin-right: 20px;
            }

            .footer-widget .footer-widget-link-2 li:hover i {
                opacity: 1;
            }

            .footer-widget .footer-widget-link-2 li:hover a::before {
                width: 100%;
            }

    .footer-widget .footer-photo-item img {
        width: 100%;
    }

    @media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
        .footer-widget {
            padding: 0px;
        }
    }

    @media (max-width: 575px) {
        .footer1-widget1, .footer2-widget1, .footer3-widget1, .footer1-widget3, .footer2-widget3, .footer3-widget3 {
            margin-bottom: 55px;
        }
    }

    .subscribe-form {
        position: relative;
    }

        .subscribe-form .s-clip {
            background: var(--clr-common-white);
            clip-path: polygon(3% 0, 100% 0, 97% 100%, 0% 100%);
        }

        .subscribe-form .s-input i {
            color: var(--clr-common-heading);
            position: absolute;
            top: 22px;
            left: 24px;
            bottom: 0;
        }

    @media (max-width: 575px) {
        .subscribe-form .s-input i {
            left: 40px;
        }
    }

    @media (max-width:450px) {
        .subscribe-form .s-input i {
            left: 20px;
        }
    }

    .subscribe-form input {
        width: 100%;
        height: 50px;
        background: var(--clr-common-white);
        border: 1px solid var(--clr-common-white);
        height: 60px;
        padding-left: 50px;
        padding-right: 20px;
    }

    @media (max-width: 575px) {
        .subscribe-form input {
            padding-left: 70px;
            padding-right: 40px;
        }
    }

    @media (max-width:450px) {
        .subscribe-form input {
            padding-left: 50px;
            padding-right: 20px;
        }
    }

    .subscribe-form button {
        display: inline-block;
        font-size: 16px;
        font-weight: 600;
        color: var(--clr-common-white);
        background: var(--clr-common-color-red);
        height: 60px;
        line-height: 60px;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
        clip-path: polygon(3% 0, 100% 0, 97% 100%, 0% 100%);
        text-transform: uppercase;
        padding: 0px 36px;
    }

        .subscribe-form button:hover {
            color: var(--clr-common-heading);
            border-color: var(--clr-common-heading);
            background: var(--clr-common-white);
        }

    @media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
        .footer-social-link {
            margin-top: 25px;
        }
    }

    .footer-social-link ul {
        display: flex;
        gap: 3px;
        flex-wrap: wrap;
        row-gap: 7px;
    }

    .footer-social-link li a {
        display: block;
        background: var(--clr-common-color-5);
        width: 60px;
        height: 50px;
        line-height: 52px;
        text-align: center;
        clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
        color: var(--clr-common-color-6);
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

        .footer-social-link li a:hover {
            background: var(--clr-common-color-red);
            color: var(--clr-common-white);
        }

    @media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
        .footer-social-link li a {
            width: 55px;
            height: 50px;
            line-height: 50px;
        }
    }

    @media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
        .footer-social-link li a {
            width: 45px;
            height: 45px;
            line-height: 46px;
        }
    }

    .footer-menu-area.position {
        width: 100%;
        left: 0;
        left: 0;
        right: 0;
        top: -40px;
    }

    .footer-menu-box {
        padding: 27px 50px 13px 50px;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
        .footer-menu-box {
            text-align: center;
        }
    }

    @media (max-width: 575px) {
        .footer-menu-box {
            padding: 20px 15px 13px 15px;
        }
    }

    .footer-menu-box.two {
        padding: 26px 0 12px 0;
    }

    .footer-menu-bg {
        background: var(--clr-common-color-red);
    }

    .footer-menu li {
        display: inline-block;
        margin-right: 42px;
    }

        .footer-menu li:last-child {
            margin-right: 0;
        }

    @media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
        .footer-menu li {
            margin-right: 25px;
        }
    }

    .footer-menu li a {
        text-transform: uppercase;
        color: var(--clr-common-white);
        font-weight: 600;
        font-family: "Oswald", sans-serif;
    }

    @media (max-width:450px) {
        .footer-menu li a {
            font-size: 14px;
        }
    }

    .footer-menu li:hover a {
        opacity: 0.8;
    }

    .footer-brand-item {
        display: inline-block;
        width: 20%;
    }

        .footer-brand-item img {
            width: 100%;
        }

    @media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
        .copy-right-area {
            padding-top: 109px;
        }
    }

    @media (max-width: 575px) {
        .copy-right-area {
            padding-top: 100px;
        }
    }

    .copy-right-text {
        padding-bottom: 27px;
        padding-top: 67px;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
        .copy-right-text {
            padding-top: 0;
        }
    }

    .copy-right-text p {
        line-height: 1;
        color: var(--clr-common-color-8);
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 0;
        font-family: "Oswald", sans-serif;
    }

        .copy-right-text p a {
            color: var(--clr-common-white);
        }

    .copy-right-text-2 p {
        color: var(--clr-common-color-14);
        font-size: 16px;
        text-transform: uppercase;
        font-weight: 600;
        margin-bottom: 0;
    }

    .copy-right-text-2 a {
        color: var(--clr-common-white);
    }

    .copy-right-text-3 p {
        color: var(--clr-common-heading);
    }

        .copy-right-text-3 p a {
            color: var(--clr-common-color-red);
        }

    .copy-right-text-2 {
        text-align: right;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
        .copy-right-text-2 {
            text-align: center;
        }
    }

    .copy-bg-1 {
        background: var(--clr-common-color-7);
    }

    .footer3-widget .footer-widget-title h4 {
        color: var(--clr-common-heading);
    }

    .footer3-widget .footer-widget-link a {
        color: var(--clr-common-text) !important;
    }

    .footer3-widget p {
        color: var(--clr-common-text) !important;
    }

    .footer3-widget .subscribe-form input {
        background: var(--clr-bg-gray-4);
    }

    .footer3-widget .subscribe-form button:hover {
        color: var(--clr-common-white);
        background: var(--clr-theme-1);
    }

    .footer3-widget .footer-social-link ul li a {
        background: var(--clr-common-color-12);
        color: var(--clr-common-heading);
    }

    .footer3-widget1 ul li:hover a {
        background: var(--clr-theme-1);
        color: var(--clr-common-white);
    }

    /*# sourceMappingURL=style.css.map */
