@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/* font-family: 'Comfortaa', cursive; */
/* font-family: 'Roboto', sans-serif; */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: #7edd59;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: 400;
  color: #000000;
  font-size: 16px;
  line-height: 1.5;
}

p {
  margin: 0 0 22px 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 25px 0;
  padding: 0;
  font-family: "Comfortaa", cursive;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1 {
  font-size: 64px;
  line-height: 1.2;
}

h2 {
  font-size: 40px;
  line-height: 1.2;
}

h3 {
  font-size: 30px;
  line-height: 1.2;
}

h4 {
  font-size: 20px;
  line-height: 1.2;
}

a {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: #feb620;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: #e92f11;
}

img {
  max-width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
  background-color: #fff;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  color: #000;
  border: 1px solid #b8b8b8;
  height: 61px;
  padding: 0 16px;
  outline: none;
  font-size: 17.36px;
  font-family: "Comfortaa", cursive;
}

textarea {
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  border: 1px solid #b8b8b8;
  padding: 12px 16px;
  width: 100%;
  height: 151px;
  outline: none;
  font-family: "Comfortaa", cursive;
  font-size: 17.36px;
}

select {
  border: 1px solid #b8b8b8;
  width: 100%;
  padding: 0 11px;
  background: url(images/arrow_bottom.svg) no-repeat calc(100% - 16px) center #fff;
  background-size: 18px;
  padding-right: 40px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  font-family: "Comfortaa", cursive;
}

select::-ms-expand {
  display: none;
}

input[type="submit"] {
  background: #69c745;
  color: #fff;
  height: 51px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 5px;
  padding-left: 25px;
  padding-right: 25px;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
          width:auto !important;
}

input[type="submit"]:hover {
  background: #00aeef;
}

::-webkit-input-placeholder {
  opacity: 1;
  color: #464646;
}

:-ms-input-placeholder {
  opacity: 1;
  color: #464646;
}

::-moz-placeholder {
  opacity: 1;
  color: #464646;
}

:-moz-placeholder {
  opacity: 1;
  color: #464646;
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
}

/* custom checkbox */
.form_input_check {
  position: relative;
  margin: 0;
  padding-left: 40px;
}

.form_input_check span {
  margin: 0;
  padding: 0;
}

.form_input_check input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.form_input_check input[type="checkbox"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 22px;
  height: 22px;
  border: 2px solid #feb620;
  background: #fff;
}

.form_input_check input[type="checkbox"] + span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/checked.svg) no-repeat center center;
  background-size: 15px;
}

.form_input_check input[type="checkbox"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {
  
} */
.form_input_check input[type="checkbox"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio */
.form_input_radio {
  position: relative;
  margin: 0;
  padding-left: 30px;
}

.form_input_radio span {
  margin: 0;
  padding: 0;
}

.form_input_radio input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_radio input[type="radio"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}

.form_input_radio input[type="radio"] + span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_input_radio input[type="radio"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {
  
} */
.form_input_radio input[type="radio"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio end */
/* navbar*/
.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar {
  background: none;
  margin: 0;
  padding: 0;
  min-height: inherit;
  height: inherit;
  border: none;
  border-radius: 0;
}

.navbar-nav li {
  position: relative;
  list-style: none;
}

.navbar-nav > li {
  margin: 0 30px;
  padding: 16px 0;
  position: relative;
}

.navbar-nav > li:last-child {
  margin-right: 0;
}

.navbar-nav > li:first-child {
  margin-left: 0;
}

.navbar-nav > li > a {
  color: #425964;
  font-family: "Comfortaa", cursive;
  font-weight: 600;
  position: relative;
  padding: 22px 0;
  font-size: 14px;
}

.navbar-nav > li > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #3791e9;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.navbar-nav > li:hover > a::before {
  width: 100%;
}

.navbar-nav > li.current-menu-item > a::before {
  width: 100%;
}

.navbar-nav > li.current-menu-item > a,
.navbar-nav > li > a:hover,
.navbar-nav > li.menu-item-has-children:hover > a {
  color: #00aeef;
}

/* navbar submenu*/
.sub-menu {
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  width: 132px;
  padding: 0;
}

.sub-menu > li > a {
  color: #425964;
  display: block;
  width: 100%;
  padding: 5px 10px;
  font-size: 13px;
}

.sub-menu > li {
  width: 100%;
  display: block;
}

.sub-menu > li > a:hover,
.sub-menu > li.menu-item-has-children:hover > a {
  background: #00aeef;
  color: #fff;
}

.navbar-nav > li:last-child > .sub-menu {
  right: 0;
  left: inherit;
  padding: 0;
}

/* 2nd level submenu */
.navbar-nav > li > .sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}

.cmn-gap {
  padding-top: 80px;
  padding-bottom: 80px;
}

.cmn-gap-top {
  padding-top: 80px;
}

.cmn-gap-bottom {
  padding-bottom: 80px;
}

.form-wrap .form-input {
  position: relative;
}

.form-wrap .form-input input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.form-wrap .form-input input[type="text"] {
  border-radius: 5px;
}

.top-head {
  padding: 19px 0;
  border-bottom: 1px solid #b7b7b7;
}

.top-head .form-section a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-left: 25px;
}

.top-head .form-section a span {
  display: inline-block;
  color: #000;
  font-weight: 700;
}

.top-head .form-section a i {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.form-section .form-wrap {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 90%;
  z-index: 999;
  background: #fff;
  padding: 20px;
  margin: 0 auto;
}

.main-head {
  position: relative;
}

.cart-section a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-left: 25px;
}

.cart-section a i {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.cart-section a span {
  display: inline-block;
  color: #000;
  font-weight: 700;
  text-transform: capitalize;
}

.top-head-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo a {
  display: inline-block;
}

.navbar-nav {
  margin: 0 auto;
}

.banner-sec {
  background-size: cover !important;
  padding: 50px 0 160px 0;
  position: relative;
}

.banner-sec::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(images/banner-shape.png) no-repeat center center;
  background-size: 100%;
  width: 100%;
  height: 115px;
}

.banner-sec .banner-row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.banner-sec .banner-cont p {
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0;
}

.banner-sec .banner-cont h1 span {
  display: block;
  text-transform: uppercase;
  color: #fff;
  font-size: 28px;
  font-weight: 400;
}

.banner-sec .banner-cont h1 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
}

.heading {
  text-align: center;
}

.heading h2 {
  margin-bottom: 10px;
}

.heading p {
  font-size: 20px;
  margin-bottom: 0;
}

.heading {
  margin-bottom: 50px;
}

.welcome .welcome-list {
  background: #f6f6f5;
  padding: 31px;
}

.welcome .welcome-list {
  border-left: 2px solid #169fda;
}

.welcome .welcome-list ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.welcome .welcome-list ul li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 10px;
  list-style-type: square;
}

.welcome .welcome-list ul li:last-child {
  margin-bottom: 0;
}

.welcome .welcome-cont {
  padding: 20px;
  max-width: 440px;
}

.welcome .welcome-cont p {
  font-size: 18px;
}

.welcome .welcome-cont p:first-child {
  margin-bottom: 50px;
}

.welcome .welcome-cont p span {
  display: block;
  font-weight: 300;
  font-size: 15px;
}

.our-crue .crue-image {
  max-width: 632px;
  border-radius: 5px;
  margin: 0 auto;
}

.our-crue {
  position: relative;
  overflow: hidden;
}

.our-crue::before {
  content: "";
  position: absolute;
  top: 0;
  left: 75%;
  background: url(images/cue-sec-shape.png) no-repeat center center;
  background-size: 100%;
  width: 660px;
  height: 590px;
}

.first-shipping .first-shipping-cont .heading {
  text-align: left;
  margin-bottom: 20px;
}

.first-shipping .first-shipping-cont p span {
  font-weight: 600;
  display: inline-block;
}

.first-shipping .first-shipping-cont p:nth-child(5) {
  font-size: 15px;
  font-weight: 400;
}

.first-shipping .first-shipping-cont ul {
  list-style: none;
  padding-left: 0;
}

.cmn-btn {
  display: inline-block;
  background: #69c745;
  padding: 14px 31px;
  font-size: 16px;
  color: #fff;
  border-radius: 5px;
  border: 1px solid #69c745;
}

.cmn-btn:hover {
  background: transparent;
  color: #69c745;
}

.first-shipping .first-shipping-cont ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.first-shipping .first-shipping-cont ul li {
  margin-right: 17px;
  margin-bottom: 17px;
}

.first-shipping .first-shipping-cont ul li:last-child {
  margin-right: 0;
  margin-bottom: 0;
}

.first-shipping .first-shipping-cont ul li:nth-child(2) a,
.first-shipping .first-shipping-cont ul li:nth-child(3) a {
  background: transparent;
  color: #69c745;
}

.first-shipping .first-shipping-cont ul li:nth-child(2) a:hover,
.first-shipping .first-shipping-cont ul li:nth-child(3) a:hover {
  background: #69c745;
  color: #fff;
}

.first-shipping .first-shipping-image {
  position: relative;
}

.first-shipping .first-shipping-image::before {
  content: "";
  position: absolute;
  top: 0;
  right: 4%;
  background: url(images/shipping-shape.png) no-repeat center center;
  background-size: 100%;
  width: 664px;
  height: 464px;
  z-index: -1;
}

.card-sec {
  background: #fff;
  padding: 8px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 42px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 42px 3px rgba(0, 0, 0, 0.15);
}

.card-sec .card-image img {
  width: 100%;
}

.card-sec .card-image {
  margin-bottom: 23px;
}

.card-sec .card-cont {
  padding: 29px;
  text-align: center;
}

.card-sec .card-cont h4 {
  min-height: 75px;
}

.card-sec .card-cont .cmn-btn {
  padding: 12px 31px;
  font-size: 15px;
}

.card-section .card-col {
  margin-bottom: 30px;
}

.card-sec .card-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.card-sec .card-wrap .card-col:first-child {
  width: 85%;
}

.card-sec .card-wrap .card-col:last-child {
  width: 15%;
}

.card-sec .card-wrap h2 span {
  display: block;
  font-size: 25px;
}

.card-sec .card-wrap {
  padding: 50px;
}

.card-section .card-col:last-child .card-sec {
  padding: 0;
}

.card-section {
  position: relative;
}

.card-section::before {
  content: "";
  position: absolute;
  bottom: 26px;
  right: 0;
  background: url(images/card-shape.png) no-repeat center center;
  background-size: 100%;
  width: 435px;
  height: 332px;
}

.footer-sec {
  position: relative;
}

.footer-sec::before {
  content: "";
  position: absolute;
  bottom: 96%;
  left: 0;
  background: url(images/footer-shape.png) no-repeat center center;
  background-size: 100%;
  width: 100%;
  height: 151px;
  z-index: 2;
}

.footer-sec .footer-top {
  padding: 55px 0;
  background: #282828;
}

.footer-sec .footer-top .footer-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer-sec .footer-top .footer-col:first-child {
  width: 37%;
}

.footer-sec .footer-top .footer-col:last-child {
  width: 63%;
}

.footer-sec .footer-top .footer-col ul {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}

.footer-sec .footer-top .footer-col ul li {
  margin-right: 40px;
  margin-bottom: 0;
}

.footer-sec .footer-top .footer-col .footer-menu ul li.current-menu-item a {
  color: #69c745;
}

.footer-sec .footer-top .footer-col ul li:last-child {
  margin-right: 0;
}

.footer-sec .footer-top .footer-col ul li a {
  color: #828282;
  font-size: 15px;
}

.footer-sec .footer-top .footer-col ul li a:hover {
  color: #69c745;
}

.footer-sec .footer-bottom {
  padding: 25px;
  text-align: center;
  background: #1b1a1a;
}

.footer-sec .footer-bottom p {
  color: #fff;
  font-size: 13px;
}

.about-sec {
  padding-bottom: 250px;
  padding-top: 45px;
}

.card-section {
  padding-bottom: 250px;
}

.about-banner {
  background: #169fda;
  padding: 53px 0;
}

.about-banner h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 0;
}

.about-sec .about-cont h4 {
  font-family: "Comfortaa", cursive;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.about-sec .about-cont span {
  display: block;
  font-size: 15px;
  font-family: "Comfortaa", cursive;
  margin-bottom: 21px;
}

.about-sec .about-cont p {
  color: #7e7d7d;
  font-size: 15px;
}

.about-sec .about-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-sec .about-image {
  padding-right: 30px;
}

.about-sec .about-row {
  /* align-items: center; */
  margin-bottom: 60px;
}

.about-sec .about-row:nth-child(even) .about-col-left {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.about-sec .about-row:nth-child(even) .about-col-left .about-image {
  padding-right: 0;
  padding-left: 30px;
}

.mission-sec {
  background: #fff;
  -webkit-box-shadow: 0px 0px 42px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 42px 3px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  text-align: center;
  padding: 65px 35px;
}

.mission-sec h3 {
  text-transform: uppercase;
}

.mission-sec p {
  font-size: 15px;
  color: #7e7d7d;
}

.crue-sec p {
  color: #7e7d7d;
  font-size: 15px;
  text-align: center;
  margin-bottom: 52px;
}

.crue-sec .crue-card .crue-image img {
  width: 100%;
}

.crue-sec .crue-card .crue-image {
  margin-bottom: 18px;
}

.crue-sec .crue-card .crue-cont h4 {
  text-transform: uppercase;
  margin-bottom: 0;
}

.crue-sec .crue-card .crue-cont span {
  font-family: "Comfortaa", cursive;
  display: block;
  font-size: 15px;
}

.about-sec {
  position: relative;
  overflow: hidden;
}

.about-sec::before {
  content: "";
  position: absolute;
  top: -119px;
  left: 81%;
  background: url(images/about-shape01.png) no-repeat center center;
  background-size: 100%;
  width: 515px;
  height: 426px;
}

.about-sec::after {
  content: "";
  position: absolute;
  top: 37%;
  right: 80%;
  background: url(images/about-shape02.png) no-repeat center center;
  background-size: 100%;
  width: 530px;
  height: 507px;
  z-index: -1;
}

.contact-list ul {
  padding-left: 0;
  list-style: none;
  position: relative;
  z-index: 2;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 67px;
}

.contact-list ul li {
  width: 33.33%;
  padding-left: 15px;
  padding-right: 15px;
}

.contact-list ul li i {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
}

.contact-list ul li .contact-card {
  background: #fff;
  -webkit-box-shadow: 0px 0px 77px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 77px 2px rgba(0, 0, 0, 0.1);
  padding: 35px;
  text-align: center;
}

.contact-list ul li .contact-card .cont-info h3 {
  text-transform: uppercase;
  font-size: 16px;
  color: #403f3f;
  padding-bottom: 7px;
  margin-bottom: 7px;
  position: relative;
}

.contact-list ul li .contact-card .cont-info h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #4989ac;
  width: 25px;
  height: 2px;
  border-radius: 1.5px;
  margin: 0 auto;
}

.contact-list ul li .contact-card .cont-info span,
.contact-list ul li .contact-card .cont-info a {
  color: #403f3f;
  display: inline-block;
  font-size: 15px;
}

.contact-list ul li .contact-card .cont-info a:hover {
  color: #024180;
}

.contact-wrap .map-sec img {
  width: 100%;
}

.contact-wrap .map-sec {
  padding-right: 16px;
}

.contact-wrap .contact-form h3 {
  text-transform: uppercase;
  font-size: 25px;
  margin-bottom: 35px;
}

.contact-wrap .form-input input[type="submit"] {
  padding-left: 74px;
  padding-right: 74px;
  text-transform: capitalize;
}

.contact-wrap .form-input {
  margin-bottom: 10px;
}

.contact-wrap .form-input:last-child {
  margin-bottom: 0;
}

.contact-wrap .form-input:nth-child(4) {
  margin-bottom: 35px;
}

.about-banner h2 span {
  display: block;
  font-size: 25px;
}

.gallery-sec ul {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.gallery-sec ul li {
  width: 25%;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
}

.gallery-sec ul li a {
  display: inline-block;
  width: 100%;
}

.gallery-sec ul li a img {
  width: 100%;
}

.gallery-sec {
  padding-bottom: 200px;
}

.button button {
  position: relative;
  padding-right: 50px;
}

.button button:disabled {
  opacity: 0.5;
  cursor: none;
  background: #69c745;
  font-size: 16px;
  color: #fff;
  border: 1px solid #69c745;
}

.button button:disabled::before {
  -webkit-filter: brightness(0) invert(1) !important;
          filter: brightness(0) invert(1) !important;
}

.button button:hover::before {
  -webkit-filter: sepia(1) saturate(1.5) hue-rotate(69deg);
          filter: sepia(1) saturate(1.5) hue-rotate(69deg);
}

.button button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 11px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(images/loading.svg) no-repeat center center;
  background-size: 100%;
  width: 25px;
  height: 25px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.button a:hover::before {
  -webkit-filter: none;
          filter: none;
}

.gallery-sec .gallery-list {
  position: relative;
  z-index: 2;
}

.gallery-sec .gallery-list::before {
  content: "";
  position: absolute;
  top: 91%;
  right: -167px;
  background: url(images/card-shape.png) no-repeat center center;
  background-size: 100%;
  width: 435px;
  height: 332px;
  z-index: -1;
}

.custom-graphic-sec {
  padding-bottom: 60px;
}

.custom-graphic-sec .custom-graphic-wrap {
  max-width: 799px;
  margin: 0 auto 64px auto;
}

.custom-graphic-sec .custom-cont p {
  color: #000;
}

.custom-graphic-sec .custom-row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.custom-graphic-sec .card-sec {
  background: #fff;
  -webkit-box-shadow: 0px 0px 46px 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 46px 2px rgba(0, 0, 0, 0.15);
  padding: 60px;
  text-align: center;
  border-radius: 5px;
  max-width: 900px;
  margin: 0 auto;
}

.custom-graphic-sec .card-sec .card-cont {
  padding: 0;
}

.custom-graphic-sec .card-sec .card-cont p {
  color: #000;
  margin-bottom: 8px;
  font-size: 15px;
}

.custom-graphic-sec .card-sec .card-cont p a {
  color: #7e7d7d;
}

.custom-graphic-sec .card-sec .card-cont p a:hover {
  color: #69c745;
}

.image-card-sec {
  padding-bottom: 220px;
}

.image-card-sec .image-card {
  min-height: 300px;
  padding: 15px;
  border: 1px solid #e5e5e5;
  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;
}

.image-card-sec .image-card-rows {
  margin-bottom: 50px;
}

.image-card-sec p {
  color: #000;
}

.image-card-sec {
  text-align: center;
}

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

.about-banner h2 {
  margin-bottom: 15px;
}

.about-banner h4 {
  color: #fff;
}

.about-banner p {
  color: #fff;
}

.about-banner .bnner-list ul {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about-banner .bnner-list ul li .list-cnt {
  background: #fff;
  width: 155px;
  height: 155px;
  border: 3px solid #169fda;
  border-radius: 50%;
  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;
  padding: 12px;
}

.about-banner .bnner-list {
  margin-bottom: -145px;
}

.about-banner .bnner-list ul li .list-cnt span {
  display: inline-block;
}

.about-banner .bnner-list ul li {
  margin-right: 93px;
}

.about-banner .bnner-list ul li:last-child {
  margin-right: 0;
}

.installation p {
  font-size: 18px;
  text-align: center;
}

.about-sec.installation::before {
  content: "";
  position: absolute;
  top: auto;
  bottom: 8px;
  left: auto;
  right: -51px;
  background: url(images/card-shape.png) no-repeat center center;
  background-size: 100%;
  width: 435px;
  height: 332px;
}

.about-sec.installation::after {
  content: "";
  position: absolute;
  top: -142px;
  right: auto;
  left: -152px;
  background: url(images/about-shape02.png) no-repeat center center;
  background-size: 100%;
  width: 530px;
  height: 507px;
  z-index: -1;
}

/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 160px auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: "";
  position: absolute;
  width: 2px;
  background-color: #bfbfbf;
  top: -41px;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.timeline-container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  min-height: 228px;
}

/* The circles on the timeline */
.timeline-container::after {
  content: "1";
  position: absolute;
  width: 35px;
  height: 35px;
  right: -16px;
  background-color: #fff;
  border: 2px solid #bfbfbf;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
  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;
  color: #8072ad;
  font-weight: 600;
}

.timeline-container:nth-child(2):after {
  content: "2";
}

.timeline-container:nth-child(3):after {
  content: "3";
}

.timeline-container:nth-child(4):after {
  content: "4";
}

.timeline-container:nth-child(5):after {
  content: "5";
}

/* Place the container to the left */
.left {
  left: 0;
}

/* Place the container to the right */
.right {
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  position: absolute;
  top: 31px;
  width: 78px;
  height: 2px;
  z-index: 1;
  right: -40px;
  background: #bfbfbf;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  position: absolute;
  top: 31px;
  width: 78px;
  height: 2px;
  z-index: 1;
  left: -40px;
  background: #bfbfbf;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -19px;
}

/* The actual content */
.content {
  padding: 15px;
  position: relative;
  border-radius: 6px;
}

.timeline-container .content span {
  color: #fe4747;
  font-size: 23px;
}

.timeline-container .content span {
  font-size: 16px;
}

.timeline-container .content p {
  font-size: 18px;
  line-height: 1.5;
  max-width: 254px;
  font-family: "Comfortaa", cursive;
  text-align: left;
}

.timeline-container.left .content p {
  margin-left: auto;
  text-align: right;
}

.right .content span {
  position: absolute;
  top: -50px;
  left: -80%;
  display: block;
}

.left .content span {
  position: absolute;
  top: -50px;
  right: -80%;
  display: block;
}

.installation {
  padding-top: 206px;
}

.contact-wrap .contact-form {
  -webkit-box-shadow: 0px 0px 77px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 77px 2px rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 25px;
  max-width: 66%;
  margin: 0 auto;
}

.chooseSectionWrap {
  padding: 100px 0 200px;
  position: relative;
}

.chooseSectionWrap::before {
  content: url("images/g1.svg");
  position: absolute;
  bottom: 100px;
  left: auto;
}

.chooseSectionWrap::after {
  content: "";
  position: absolute;
  top: 100px;
  right: 0;
  content:'';
  height: 200px;
  width: 116px;
  background: url("images/g2.svg") no-repeat;
  background-size: contain;
}

.chooseSectionWrap .chooseBox {
  position: relative;
  background-color: #f3f3f3;
  border-radius: 20px;
}

.chooseSectionWrap .chooseBox:hover {
  -webkit-box-shadow: 3px 5px 15px rgba(0, 0, 0, 0.25);
          box-shadow: 3px 5px 15px rgba(0, 0, 0, 0.25);
}

.chooseSectionWrap .chooseBox .isActive {
  position: absolute;
  top: 20px;
  right: 20px;
  display: none;
}

.chooseSectionWrap .chooseBox .content {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  font-size: 1.25rem;
  color: #000;
  font-weight: 500;
  text-align: center;
}

.steepWrap {
  padding: 100px 0 200px;
  position: relative;
  overflow: hidden;
}

.steepWrap::before {
  content: url("images/g3.svg");
  position: absolute;
  bottom: 100px;
  left: auto;
}

.steepWrap::after {
  content: "";
  position: absolute;
  top: 100px;
  right: 0;
  content: url("images/g4.svg");
}

.steepWrap .stepCount ul {
  margin-bottom: 120px;
}

.steepWrap .stepCount ul li {
  position: relative;
}

.steepWrap .stepCount ul li * {
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

.steepWrap .stepCount ul li::before {
  background-color: #ebebeb;
  height: 1px;
  content: "";
  left: 0;
  width: 100%;
  position: absolute;
  top: 15px;
  left: 0;
  z-index: -1;
}

.steepWrap .stepCount ul li:first-child::before {
  left: 50%;
}

.steepWrap .stepCount ul li:last-child::before {
  left: -50%;
}

.steepWrap .stepCount ul li:hover a, .steepWrap .stepCount ul li.finish a, .steepWrap .stepCount ul li.active a {
  color: #69c745;
}

.steepWrap .stepCount ul li:hover .number span, .steepWrap .stepCount ul li.finish .number span, .steepWrap .stepCount ul li.active .number span {
  background-color: #69c745;
  border-color: #69c745;
  color: #fff;
}

.steepWrap .stepCount ul li.onGoing a {
  color: #69c745;
}

.steepWrap .stepCount ul li.onGoing .number span {
  border-color: #69c745;
  color: #69c745;
}

.steepWrap .stepCount ul li.done a {
  color: #69c745;
}

.steepWrap .stepCount ul li.done .number span {
  font-size: 0;
  background-color: #69c745;
  border-color: #69c745;
  background-image: url("images/ticW.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 46%;
}

.steepWrap .stepCount ul li a {
  font-size: 14px;
  font-weight: 600;
  color: #747474;
}

.steepWrap .stepCount ul li .number span {
  background-color: #fff;
  border: 2px solid #d7d7d7;
  width: 32px;
  height: 32px;
  line-height: 28px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 10px;
  color: #d7d7d7;
  font-size: 12px;
  font-weight: 600;
}

.steepWrap h3 {
  font-weight: 500;
  color: #101010;
  font-family: "Roboto", sans-serif;
  margin-bottom: 15px;
}

.steepWrap .label {
  font-weight: 500;
  color: #5a5a5a;
  margin-bottom: 15px;
}

.steepWrap .label b {
  color: #5a5a5a;
  font-size: 1.12rem;
  font-weight: 500;
}

.steepWrap .label small {
  font-size: 0.75rem;
  color: #5a5a5a;
}

.steepWrap .label span {
  color: #ff2e2e !important;
}

.steepWrap .notBox {
  color: #000;
  font-size: 0.9;
}

.steepWrap .notBox b {
  color: #000;
  font-weight: 500;
}

.steepWrap .backgroundStep .bg-choose {
  position: relative;
}

.steepWrap .backgroundStep .bg-choose:hover .chooseDrop {
  opacity: 1;
  visibility: visible;
}

.steepWrap .backgroundStep .bg-choose .selectedBg {
  border-radius: 5px;
  border: 1px solid #69c745;
  padding: 12px 15px;
  cursor: pointer;
  background-color: #fff;
  background-image: url("images/drop.svg");
  background-repeat: no-repeat;
  background-position: 96% center;
  color: #585858;
  font-weight: 700;
}

.steepWrap .backgroundStep .bg-choose .selectedBg i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
  position: relative;
}

.steepWrap .backgroundStep .bg-choose .selectedBg i::after {
  content: "";
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  display: block;
}

.steepWrap .backgroundStep .bg-choose .chooseDrop {
  position: absolute;
  left: 0;
  width: 100%;
  padding-top: 14px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  z-index: 99;
  background-color: #fff;
}

.steepWrap .backgroundStep .bg-choose .chooseDrop ul {
  border: 2px solid #69c745;
  padding: 12px 15px;
  margin: 0;
}

.steepWrap .backgroundStep .bg-choose .chooseDrop ul li {
  border-bottom: 1px solid #dcdcdc;
}

.steepWrap .backgroundStep .bg-choose .chooseDrop ul li:last-child {
  border: 0;
}

.steepWrap .backgroundStep .bg-choose .chooseDrop ul label {
  margin-bottom: 0;
  padding: 10px;
  cursor: pointer;
}

.steepWrap .backgroundStep .bg-choose .chooseDrop ul label:hover {
  background-color: #f5f5f5;
}

.steepWrap .backgroundStep .bg-choose .chooseDrop ul label i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}

.steepWrap .backgroundStep .preViewBox {
  width: 380px;
  height: 377px;
  border-radius: 10px;
  z-index: 999;
}

.steepWrap .letterPositionWrap .position-choose {
  position: relative;
}

.steepWrap .letterPositionWrap .position-choose:hover .chooseDrop {
  opacity: 1;
  visibility: visible;
}

.steepWrap .letterPositionWrap .selectedPosition {
  border-radius: 5px;
  border: 1px solid #69c745;
  padding: 12px 15px;
  cursor: pointer;
  background-color: #fff;
  background-image: url("images/drop.svg");
  background-repeat: no-repeat;
  background-position: 96% center;
  color: #585858;
  font-weight: 700;
}

.steepWrap .letterPositionWrap .chooseDrop {
  position: absolute;
  left: 0;
  width: 100%;
  padding-top: 14px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  z-index: 99;
  background-color: #fff;
}

.steepWrap .letterPositionWrap .chooseDrop ul {
  border: 2px solid #69c745;
  padding: 12px 15px;
  margin: 0;
  background-color: #69c745;
  border-radius: 7px;
}

.steepWrap .letterPositionWrap .chooseDrop ul li {
  border-bottom: 1px solid #5cbc38;
}

.steepWrap .letterPositionWrap .chooseDrop ul li:last-child {
  border: 0;
}

.steepWrap .letterPositionWrap .chooseDrop ul label {
  margin-bottom: 0;
  padding: 10px;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
}

.steepWrap .letterPositionWrap .chooseDrop ul label:hover {
  background-color: #5cbc38;
}

.steepWrap .letterPositionWrap .preViewBox {
  width: 380px;
  height: 377px;
  border-radius: 10px;
  border: 2px solid #69c745;
}

.steepWrap .letterPositionWrap .preViewBox span {
  font-size: 42px;
  color: #121212;
  font-weight: 700;
}

.steepWrap .letterTypeWrap .form-control {
  border-radius: 5px;
  border: 1px solid #69c745;
  padding: 11px 15px;
  cursor: pointer;
  height: auto;
  background-color: #fff;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: #5a5a5a;
}

.steepWrap .letterTypeWrap .preViewBox {
  width: 380px;
  min-height: 377px;
  border-radius: 10px;
  border: 2px solid #69c745;
  /* padding: 10px; */
  word-break: break-word;
 
}

.steepWrap .letterTypeWrap .preViewBox span {
  font-size: 42px;
  color: #121212;
  font-weight: 700;
  text-align: center;

  overflow-y: auto;
  max-height: 400px;

}

.steepWrap .fontWrap .font-choose {
  position: relative;
}

.steepWrap .fontWrap .font-choose:hover .chooseDrop {
  opacity: 1;
  visibility: visible;
}

.steepWrap .fontWrap .selectedFont {
  border-radius: 5px;
  border: 1px solid #69c745;
  padding: 12px 15px;
  cursor: pointer;
  background-color: #fff;
  background-image: url("images/drop.svg");
  background-repeat: no-repeat;
  background-position: 96% center;
  color: #585858;
  font-weight: 700;
}

.steepWrap .fontWrap .chooseDrop {
  position: absolute;
  left: 0;
  width: 100%;
  padding-top: 14px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  z-index: 99;
}

.steepWrap .fontWrap .chooseDrop ul {
  border: 2px solid #69c745;
  padding: 12px 15px;
  margin: 0;
  background-color: #69c745;
  border-radius: 7px;
  max-height: 208px;
}

.steepWrap .fontWrap .chooseDrop ul li {
  border-bottom: 1px solid #5cbc38;
}

.steepWrap .fontWrap .chooseDrop ul li:last-child {
  border: 0;
}

.steepWrap .fontWrap .chooseDrop ul label {
  margin-bottom: 0;
  padding: 10px;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
}

.steepWrap .fontWrap .chooseDrop ul label:hover {
  background-color: #5cbc38;
}

.steepWrap .fontWrap .preViewBox {
  width: 380px;
  height: 410px;
  border-radius: 10px;
  background-color: #2f2f2f;
  padding: 0 5px;
  overflow-y: auto;
  position: relative;
}

.steepWrap .fontWrap .preViewBox span {
  font-size: 42px;
  color: #fff;
  font-weight: 700;

  overflow-wrap: anywhere;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100%;
}

.steepWrap .fontColorWrap p {
  font-size: 0.8rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 7px;
}

.steepWrap .fontColorWrap ul {
  margin: 0 -7px;
}

.steepWrap .fontColorWrap ul li {
  width: calc(100% / 9);
  padding: 2px;
}

.steepWrap .fontColorWrap ul li span {
  border-radius: 4px;
  width: 100%;
  height: 34px;
  cursor: pointer;
  position: relative;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  overflow-wrap: anywhere;
}

/* .steepWrap .fontColorWrap ul li span:hover {
  -webkit-transform: scale(1.2) skew(-5deg);
          transform: scale(1.2) skew(-5deg);
  -webkit-box-shadow: 2px 4px 7px rgba(0, 0, 0, 0.35);
          box-shadow: 2px 4px 7px rgba(0, 0, 0, 0.35);
} */

.steepWrap .fontColorWrap ul li span.selected {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: none;
          transform: none;
}

.steepWrap .fontColorWrap ul li span.selected::after {
  position: absolute;
  content: url("images/ticW.svg");
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.steepWrap .fontColorWrap .preViewBox {
  width: 380px;
  height: 400px;
  border-radius: 10px;
  background-color: #2f2f2f;
  overflow-y: auto;
  position: relative;
}

.steepWrap .fontColorWrap .preViewBox span {
  font-size: 42px;
  color: #fff;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}

@media (min-width: 1700px) {
  .footer-sec::before {
    background-size: 100% 100%;
  }
}

@media (max-width: 1600px) {
  .chooseSectionWrap::before {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    left: -120px;
  }
  /* .chooseSectionWrap::after {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    right: -60px;
  } */
  .steepWrap::before {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    left: -120px;
  }
  .steepWrap::after {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    right: -60px;
  }
}

@media (min-width: 1025px) {
  /* navbar*/
  .clickD {
    display: none;
  }
  .navbar-nav li.menu-item-has-children:hover > .sub-menu {
    display: block;
  }
}

@media (max-width: 1199px) {
  .chooseSectionWrap::before {
    display: none;
  }
  .chooseSectionWrap::after {
    display: none;
  }
  .steepWrap::before {
    display: none;
  }
  .steepWrap::after {
    display: none;
  }
  .navbar-nav > li > a {
    padding: 22px 0;
  }
  .banner-sec::before {
    height: 88px;
  }
  .footer-sec::before {
    height: 135px;
  }
  .card-sec .card-wrap .card-col:first-child {
    width: 80%;
  }
  .card-sec .card-wrap .card-col:last-child {
    width: 19%;
  }
  .right .content span {
    left: -98.8%;
  }
  .left .content span {
    right: -98.8%;
  }
}

@media (max-width: 1024px) {
  /* navbar*/
  .navbar-nav .clickD {
    position: absolute;
    right: 0;
    top: 19px;
    width: 20px;
    height: 20px;
    background: url(images/sort-down.svg) center center no-repeat;
    cursor: pointer;
    display: block;
    background-size: 10px;
  }
  .navbar-nav > li.menu-item-has-children {
    padding-right: 20px;
  }
  .sub-menu.show {
    display: block;
  }
}

@media (max-width: 991px) {
  .about-banner h2 {
    margin-bottom: 0;
  }
  .steepWrap {
    padding: 50px 0 140px;
  }
  .steepWrap .stepCount ul {
    overflow: auto;
    padding-bottom: 10px;
    margin-bottom: 70px;
  }
  .steepWrap .backgroundStep .preViewBox {
    width: 250px;
    height: 250px;
  }
  .steepWrap .letterPositionWrap .preViewBox {
    width: 250px;
    height: 250px;
  }
  .steepWrap .letterPositionWrap .preViewBox img {
    width: 70%;
  }
  .steepWrap .letterTypeWrap .preViewBox {
    width: 250px;
    height: 250px;
  }
  .steepWrap .fontWrap .preViewBox {
    width: 250px;
    height: 250px;
  }
  .steepWrap .fontColorWrap .preViewBox {
    width: 250px;
    height: 250px;
  }
  .main-head .bottom-head {
    padding: 15px 0;
  }
  .navbar-toggler {
    margin-left: auto;
    outline: none;
  }
  .navbar-toggler:focus {
    outline: none;
  }
  .main-head .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    z-index: 9;
    background: #fff;
    padding: 10px;
  }
  .navbar-nav > li {
    margin: 0;
    padding: 5px 0;
  }
  .navbar-nav > li > a {
    padding: 0;
  }
  .navbar-nav > li > a::before {
    display: none;
  }
  .navbar-nav .clickD {
    top: 8px;
  }
  .sub-menu,
  .navbar-nav > li > .sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: auto;
  }
  .navbar-nav > li.menu-item-has-children {
    padding-right: 0;
  }
  .banner-sec .banner-cont {
    margin-bottom: 40px;
    text-align: center;
  }
  .banner-sec .banner-image {
    text-align: center;
  }
  .banner-sec::before {
    height: 66px;
    bottom: -1px;
  }
  .banner-sec {
    padding: 50px 0 110px 0;
  }
  .cmn-gap {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .cmn-gap-bottom {
    padding-bottom: 95px;
  }
  .cmn-gap-top {
    padding-top: 50px;
  }
  .heading {
    margin-bottom: 30px;
  }
  .our-crue::before {
    width: 370px;
    height: 320px;
    z-index: -1;
  }
  .first-shipping .first-shipping-image::before {
    width: 463px;
    height: 333px;
  }
  .card-sec .card-wrap .card-col:first-child {
    width: 74%;
  }
  .card-sec .card-wrap .card-col:last-child {
    width: 26%;
  }
  .footer-sec::before {
    height: 103px;
  }
  .footer-sec .footer-top .footer-col:last-child,
  .footer-sec .footer-top .footer-col:first-child {
    width: 100%;
  }
  .footer-sec .footer-top .footer-col:first-child {
    text-align: center;
    margin-bottom: 30px;
  }
  .footer-sec .footer-top .footer-col ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer-sec .footer-top {
    padding: 35px 0;
  }
  .heading h2 {
    font-size: 30px;
  }
  .heading p {
    font-size: 16px;
  }
  .banner-sec .banner-cont p {
    font-size: 24px;
  }
  .banner-sec .banner-cont h1 span {
    font-size: 18px;
  }
  .banner-sec .banner-cont h1 {
    font-size: 40px;
  }
  .about-banner {
    padding: 30px 0;
  }
  h2 {
    font-size: 30px;
    line-height: 1.2;
  }
  .about-sec::before {
    width: 403px;
    height: 350px;
  }
  .about-sec::after {
    width: 400px;
    height: 304px;
    top: 43%;
  }
  .about-sec {
    padding-bottom: 155px;
  }
  /* .contact-list ul li i{ 
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
 } */
  /* .contact-list ul li .contact-card .cont-info h3{ 
  font-size: 19px;
  padding-bottom: 10px;
  margin-bottom: 10px;
 } */
  .contact-wrap .contact-form {
    max-width: 100%;
  }
  .contact-list ul li {
    width: 50%;
  }
  .contact-list ul li .contact-card {
    padding: 20px;
  }
  .contact-list ul {
    margin-bottom: 30px;
  }
  .gallery-sec ul li {
    width: 33.33%;
  }
  .image-card-sec .image-card {
    min-height: 200px;
  }
  .image-card-sec .image-card-rows {
    margin-bottom: 50px;
  }
  .custom-graphic-sec {
    padding-bottom: 45px;
  }
  .image-card-sec {
    padding-bottom: 140px;
  }
  .custom-graphic-sec .card-sec {
    padding: 30px;
  }
  /* Place the timelime to the left */
  .timeline::after {
    left: 31px;
  }
  /* Full-width containers */
  .timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  /* Make sure that all arrows are pointing leftwards */
  .timeline-container::before {
    left: 40px;
  }
  /* Make sure all circles are at the same spot */
  .left::after,
  .right::after {
    left: 15px;
  }
  /* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }
  .timeline-container .content span {
    position: static;
    margin-bottom: 10px;
  }
  .about-banner .bnner-list {
    margin-bottom: -120px;
  }
  .right::before,
  .left::before {
    width: 45px;
  }
  .timeline-container .content p {
    max-width: 100%;
    text-align: left;
  }
  .timeline-container.left .content p {
    text-align: left;
  }
  .timeline {
    margin: 0 auto 70px auto;
  }
  .about-sec.installation::after {
    width: 410px;
    height: 410px;
  }
  .installation {
    padding-top: 110px;
  }
  .about-sec.installation::before {
    width: 342px;
    height: 239px;
  }
}

@media (max-width: 767px) {
  .chooseSectionWrap {
    padding: 75px 0 120px;
  }
  .steepWrap .stepCount ul {
    margin-bottom: 30px;
  }
  .steepWrap .stepCount ul li {
    padding: 0 7px;
  }
  .steepWrap .stepCount ul li a {
    font-size: 11px;
    font-weight: 400;
  }
  .steepWrap .stepCount ul li .number span {
    width: 28px;
    height: 28px;
    line-height: 24px;
    font-size: 10px;
  }
  .steepWrap .fontColorWrap ul li {
    width: calc(100% / 7);
  }
  /* images alignment for wordpress content pages */
  .alignright,
  .alignleft,
  .aligncenter {
    float: none;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin: 0 0 22px 0;
    max-width: 100%;
  }
  /* navbar*/
  .navbar-nav .clickD {
    top: 6px;
    right: 10px;
  }
  .sub-menu,
  .navbar-nav > li > .sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
  }
  .navbar-nav > li.menu-item-has-children {
    padding-right: 0;
  }
  .navbar-nav > li {
    margin: 0;
    padding: 0;
  }
  .navbar-nav > li > a {
    padding: 6px 10px;
    display: inline-block;
    width: 100%;
  }
  .sub-menu > li > a {
    padding-left: 20px;
  }
  .sub-menu .sub-menu > li > a {
    padding-left: 40px;
  }
  .sub-menu .sub-menu .sub-menu > li > a {
    padding-left: 60px;
  }
  .banner-sec {
    padding: 45px 0 65px 0;
  }
  .banner-sec::before {
    height: 40px;
    bottom: -1px;
  }
  .cmn-gap {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .heading h2 {
    font-size: 25px;
  }
  .heading p {
    font-size: 14px;
  }
  .welcome .welcome-list {
    padding: 20px;
  }
  .welcome .welcome-cont {
    padding: 0;
    max-width: 100%;
  }
  .welcome .welcome-col {
    margin-bottom: 30px;
  }
  .welcome .welcome-cont p:first-child {
    margin-bottom: 20px;
  }
  .welcome .welcome-cont p {
    font-size: 16px;
  }
  .welcome .welcome-col:last-child {
    margin-bottom: 0;
  }
  .our-crue::before {
    width: 207px;
    height: 192px;
    z-index: -1;
    left: 67%;
  }
  .first-shipping .first-shipping-image::before {
    width: 393px;
    height: 361px;
  }
  .first-shipping .first-shipping-col {
    margin-bottom: 30px;
  }
  .first-shipping .first-shipping-col:last-child {
    margin-bottom: 0;
  }
  .first-shipping .first-shipping-cont ul {
    margin: 0;
  }
  .card-sec .card-cont h4 {
    min-height: inherit;
  }
  h2 {
    font-size: 23px;
    line-height: 1.2;
  }
  .card-sec .card-wrap h2 span {
    display: block;
    font-size: 19px;
  }
  .card-sec .card-wrap .card-col:first-child,
  .card-sec .card-wrap .card-col:last-child {
    width: 100%;
  }
  .card-sec .card-wrap .card-col:last-child {
    margin-bottom: 0;
  }
  .footer-sec .footer-top .footer-col ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -15px;
  }
  .footer-sec .footer-top .footer-col ul li {
    margin-bottom: 15px;
    margin-right: 0;
    width: 33.33%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .card-section::before {
    width: 264px;
    height: 170px;
  }
  .card-sec .card-image {
    margin-bottom: 0;
  }
  h4 {
    font-size: 18px;
    line-height: 1.2;
  }
  input[type="text"],
  input[type="tel"],
  input[type="password"],
  input[type="email"],
  select {
    height: 49px;
    font-size: 12.36px;
  }
  textarea {
    font-size: 12.36px;
  }
  .about-sec .about-row:nth-child(even) .about-col-left {
    -webkit-box-ordinal-group: inherit;
        -ms-flex-order: inherit;
            order: inherit;
  }
  .about-sec .about-image {
    padding-right: 0;
  }
  .about-sec .about-row:nth-child(even) .about-col-left .about-image {
    padding-left: 0;
  }
  .about-sec .about-row {
    margin-bottom: 30px;
  }
  .about-sec .about-col-left {
    margin-bottom: 30px;
  }
  .about-sec .about-row:last-child {
    margin-bottom: 0;
  }
  .about-banner h2 {
    margin-bottom: 0;
  }
  .contact-list ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .contact-list ul li:last-child {
    margin-bottom: 0;
  }
  .contact-list ul li .contact-card {
    min-height: inherit;
  }
  .contact-wrap .map-sec {
    padding-right: 0;
  }
  .contact-wrap .contact-col {
    margin-bottom: 30px;
  }
  .contact-wrap .contact-col:last-child {
    margin-bottom: 0;
  }
  .gallery-sec ul li {
    width: 50%;
  }
  .gallery-sec {
    padding-bottom: 110px;
  }
  .button {
    position: relative;
    z-index: 2;
  }
  .about-banner h2 span {
    font-size: 18px;
  }
  .image-card-sec .image-col {
    margin-bottom: 30px;
  }
  .image-card-sec .image-col:last-child {
    margin-bottom: 0;
  }
  .image-card-sec {
    padding-bottom: 110px;
  }
  .custom-graphic-wrap .custom-col {
    margin-bottom: 30px;
  }
  .custom-graphic-wrap .custom-col .custom-image img {
    width: 100%;
  }
  .custom-graphic-wrap .custom-col:last-child {
    margin-bottom: 0;
  }
  .custom-graphic-sec .custom-graphic-wrap {
    max-width: 100%;
    margin: 0 auto 40px auto;
  }
  .about-banner .bnner-list ul li {
    margin-right: 30px;
  }
  .about-banner .bnner-list {
    margin-bottom: -86px;
  }
  .about-banner .bnner-list ul li .list-cnt span {
    font-size: 11px;
  }
  .about-banner .bnner-list ul li .list-cnt {
    width: 100px;
    height: 100px;
  }
  .mission-sec {
    padding: 35px;
  }
  h3 {
    font-size: 22px;
  }
  .mission-sec h3 {
    margin-bottom: 10px;
  }
  .contact-wrap .contact-form {
    max-width: 100%;
  }
  .about-sec {
    padding-bottom: 110px;
  }
  .custom-graphic-sec {
    padding-bottom: 45px !important;
  }
  .footer-sec::before {
    height: 97px;
  }
}

@media (max-width: 640px) {
  .footer-sec::before {
    height: 93px;
  }
}

@media (max-width: 575px) {
  .chooseSectionWrap {
    padding: 50px 0 70px;
  }
  .footer-sec::before {
    height: 73px;
  }
  .steepWrap {
    padding: 50px 0 78px;
  }
  .steepWrap .backgroundStep .preViewBox {
    width: 100%;
    height: 250px;
    margin-top: 20px;
  }
  .steepWrap .letterPositionWrap .preViewBox {
    width: 100%;
    height: 250px;
    margin-top: 20px;
  }
  .steepWrap .letterPositionWrap .preViewBox img {
    width: 70%;
  }
  .steepWrap .letterTypeWrap .preViewBox {
    width: 100%;
    height: 250px;
    margin-top: 20px;
  }
  .steepWrap .fontWrap .preViewBox {
    width: 100%;
    height: 250px;
    margin-top: 20px;
  }
  .steepWrap .fontColorWrap .preViewBox {
    width: 100%;
    height: 250px;
    margin-top: 20px;
  }
}

@media (max-width: 479px) {
  .main-head .navbar-collapse {
    width: 100%;
  }
  .cart-section a span,
  .top-head .form-section a span {
    display: none;
  }
  .logo a {
    width: 180px;
  }
  .top-head-wrap {
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
  }
  input[type="submit"] {
    font-size: 15px;
  }
  .form-wrap .form-input input[type="submit"] {
    position: static;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    height: 40px;
  }
  .form-wrap .form-input input[type="text"] {
    margin-bottom: 10px;
  }
  .banner-sec .banner-cont p {
    font-size: 16px;
  }
  .banner-sec .banner-cont h1 span {
    font-size: 15px;
  }
  .banner-sec .banner-cont h1 {
    font-size: 30px;
  }
  .banner-sec .banner-cont {
    margin-bottom: 23px;
    text-align: center;
  }
  .banner-sec::before {
    height: 31px;
    bottom: -1px;
  }
  body {
    font-size: 14px;
  }
  .welcome .welcome-cont p {
    font-size: 14px;
  }
  .first-shipping .first-shipping-image::before {
    width: 303px;
    height: 228px;
  }
  .first-shipping .first-shipping-cont ul li {
    margin-right: 0;
    width: 100%;
  }
  .first-shipping .first-shipping-cont ul li a {
    width: 100%;
    text-align: center;
  }
  .cmn-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
  .card-sec .card-wrap {
    padding: 20px;
  }
  .card-sec h2 {
    font-size: 18px;
  }
  .card-sec .card-wrap h2 span {
    font-size: 15px;
  }
  .card-section::before {
    width: 199px;
    height: 110px;
  }
  .about-sec {
    padding-bottom: 90px;
  }
  textarea {
    height: 110px;
  }
  .contact-wrap .form-input input[type="submit"] {
    padding-left: 50px;
    padding-right: 50px;
  }
  .contact-wrap .form-input:nth-child(4) {
    margin-bottom: 20px;
  }
  .contact-wrap .contact-form h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .gallery-sec .gallery-list::before {
    width: 327px;
    height: 255px;
  }
  .gallery-sec ul li {
    width: 100%;
  }
  .about-banner .bnner-list {
    margin-bottom: 0;
  }
  .about-banner .bnner-list ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .about-banner .bnner-list ul li {
    margin-right: 14px;
    margin-bottom: 10px;
  }
  .installation {
    padding-top: 63px;
  }
  .timeline-container .content p,
  .installation p {
    font-size: 14px;
  }
  .about-sec.installation::before {
    width: 244px;
    height: 167px;
  }
  .about-sec.installation::after {
    width: 303px;
    height: 373px;
  }
  .timeline {
    margin: 0 auto 44px auto;
  }
  .mission-sec {
    padding: 20px;
  }
  .footer-sec .footer-top .footer-col ul li {
    width: 50%;
  }
  .footer-sec::before {
    bottom: 94%;
  }
}

@media (max-width: 360px) {
  .about-banner .bnner-list ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.galleryItem a img {
  height: 200px;
  width: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
/*# sourceMappingURL=style.css.map */

.cart-table {
  width:100%;
  margin-bottom: 150px;
  overflow-x: auto;
  margin-top: 10px;
}

.cart-table tbody tr td:nth-child(2) {
  width: 290px;
  display: flex;
  justify-content: center;
}

.cart-table button {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-table .btn-cs-width {
  width: 171px;
}

.cart-table tbody input {
  width: 100px;
}

/* .list-unstyled span{
  font-size: 10px;
  line-height: 12px;
}
.list-unstyled span small{
  line-height: 10px;
} */
.step6 .list-unstyled span{
  font-size: 10px;
  line-height: 12px;
}
.step6 .list-unstyled span small{
  line-height: 10px;
}
.list-unstyled li{
  text-align: center;
}
.btngreen{
  background: #69c745;
  color: #fff;
  height: 51px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
  padding-left: 25px;
  padding-right: 25px;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;

}
.selected_color{
  background-repeat: no-repeat;
  background-size: cover;
}

.emptyCart {
  text-align: center;
  padding: 50px 0;
}

.emptyCart h2 {
  font-size: 45px;
  margin: 0 0 25px 0;
  line-height: 1;
  color: #000;
}

.emptyCart p {
  font-size:20px;
  margin: 0 0 35px 0;
  color: #000;
}

.emptyCart a {
  display: inline-block;
  background: #69c745;
  padding: 14px 31px;
  font-size: 16px;
  color: #fff;
  border-radius: 5px;
  border: 1px solid #69c745;
}

.emptyCart a:hover {
  background: transparent;
  color: #69c745;
}

.padding-cs {
  padding: 0 70px;
}

@media (max-width: 992px) {
  .padding-cs {
    padding: 0 15px;
  }
}

.w-cs {
  width: 48%;
}