/*

1 Reset Css #res
2 Font Face #face 
3 Inputs #input
4 Global Styles #glob
5 Wrappers #wrap
6 Custom CSS #custom
7 Media Query #media

*/

/*================================= 1 Reset Css ( #res ) =================================*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
body {
  line-height: 1;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
nav ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
a {
  text-decoration: none;
  outline: 0;
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: #006db7;
  transition: all 0.5s ease 0s;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ababab;
  margin: 50px auto;
  padding: 0;
}

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  height: auto;
  vertical-align: middle;
  transition: all 0.5s ease 0s;
}
.ie8 img {
  height: auto;
  width: auto\9;
}
.ie8 img.size-large {
  max-width: 60%;
  width: auto;
}
:hover {
  transition: all 0.5s ease 0s;
}

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

#wp-toolbar ul:after {
  content: none;
}

.last_li,
.last {
  margin-right: 0 !important;
  padding-right: 0 !important;
}
.first_li,
.first {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.clearfix:after,
ul:after,
ol:after,
.full_row:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .clearfix {
  display: block;
}
* html .clearfix {
  height: 1%;
}

/*================================= 2 Font Face ( #face ) =================================*/
/* TypoGraphy */
/*
font-family: 'Poppins', sans-serif;
 font-family: "Font Awesome 5 Brands" , "Font Awesome 5 free";
*/

/*================================= 3  Inputs ( #input ) =================================*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
::-webkit-input-placeholder {
  color: #343434;
  font-style: normal;
}
:-moz-placeholder {
  color: #343434;
  font-style: normal;
}
::-moz-placeholder {
  color: #343434;
  font-style: normal;
}
:-ms-input-placeholder {
  color: #343434;
  font-style: normal;
}

button::-moz-focus-inner {
  border: 0;
}
:focus {
  outline: none;
}
::-moz-focus-inner {
  border: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="submit"] {
  padding: 12px 20px;
  width: 100%;
  background-color: #d23834;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  font-weight: normal;
  color: #fff;
  display: block;
  margin: 0 auto;
}

input[type="submit"],
input[type="button"] {
  cursor: pointer;
  border: 0;
}
input:focus {
  outline: none;
}
body textarea {
  padding: 10px;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="date"],
input[type="email"],
input[type="number"],
textarea {
  background: #ffffff;
  border: 3px solid #c5c5c5;
  border-bottom: 3px solid #d23834;
  border-radius: 0;
  color: #231f20;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  height: 40px;
  padding: 5px 10px;
  box-shadow: none;
  -webkit-appearance: none;
  width: 100%;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
textarea:focus {
  background: #fff;
}

form label {
  color: #231f20;
  font-size: 16px;
  line-height: 15px;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  position: absolute;
  z-index: 9;
  top: -3px;
  background-color: #fff;
  padding: 0 3px 2px 0px;
}
form label sup {
  color: #d23834;
  position: relative;
  top: -3px;
}

.form_row {
  padding-bottom: 25px;
}
.form_row.msg_row {
  padding-bottom: 10px;
}
.form_row.submitrow {
  padding-bottom: 0;
}

input:required {
  box-shadow: none;
}

/*input:required:focus{background-color: rgba(223, 73, 73, 0.2); border: 1px solid #df4949; box-shadow:none} */

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*================================= 4 Global Styles (#glob) =================================*/

/* Gobal #GAB */
.x:before {
  position: absolute;
  content: "";
}

/* Vertical Middle */
.x:before /*Parent Before*/ {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.x /* Child class */ {
  display: inline-block;
  vertical-align: middle;
}

/* HR Rules */
hr {
}

/* Image Alignment */
.alignnone,
a img.alignnone {
  margin: 5px 0 30px;
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 30px auto;
  box-shadow: 0px 20px 20px rgb(0 0 0 / 10%);
}
.alignright,
a img.alignright {
  float: right;
  margin: 40px 0 30px 40px;
  box-shadow: 0px 20px 20px rgb(0 0 0 / 10%);
}
.alignleft,
a img.alignleft {
  float: left;
  margin: 40px 50px 30px 0;
  box-shadow: 0px 20px 20px rgb(0 0 0 / 10%);
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

p,
.content_row ul li,
.content_row ol li {
  color: #898888;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 25px;
}

p:last-child {
  margin-bottom: 0;
}
p.intro {
  color: #4a4a4a !important;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

p a {
  color: #5e6838;
  text-decoration: underline;
}
p a:hover {
  color: #e42129;
  text-decoration: none;
}
p strong {
  font-weight: 600;
}
p em {
  font-style: italic;
}

.content_row ul,
.content_row ol {
  padding-bottom: 10px;
}
.content_row ul li,
.content_row ol li {
  margin-bottom: 5px;
  position: relative;
  color: #898888;
}

.content_row ul li {
  padding-left: 20px;
}
.content_row ul li:before {
  content: "•";
  font-weight: bold;
  left: 0;
  position: absolute;
}

.content_row ul ul,
.content_row ol ul,
.content_row ol ol {
  padding: 5px 0;
}

.content_row ol {
  counter-reset: section;
}
.content_row ol li {
  padding-left: 40px;
}

.content_row ol > li:before {
  content: counter(section, decimal) ".";
  counter-increment: section;
  padding-right: 5px;
  font-size: 18px;
  position: absolute;
  left: 0;
}

.content_row ol ul li {
  padding-left: 20px;
}
.content_row ol ol li {
  list-style: lower-alpha outside;
  padding-left: 30px;
  margin-left: 20px;
}

.content_row ol ol li:before {
  content: none;
}
.content_row ol ol li {
  padding-left: 10px;
}

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

.visible_tab {
  display: none;
}

/* ================================= 5 Wrappers #wrap ================================= */

body {
  background: #fff;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  color: #343434;
}

.container {
  max-width: 1265px;
  width: 100%;
}
.full_row {
  width: 100%;
  float: none;
  margin: 0 auto;
}
.small_container {
  max-width: 910px;
  margin: 0 auto;
  float: none;
  padding: 0 15px;
}
.site_full {
  max-width: 1690px;
  margin: 0 auto;
  position: relative;
}

/* ================================= 6 Custom CSS #custome ================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
}

h1 {
  font-size: 22px;
  line-height: 30px;
  padding-bottom: 20px;
  color: #231f20;
  font-weight: 600;
  text-transform: uppercase;
}
h2 {
  font-size: 40px;
  line-height: 48px;
  padding-bottom: 20px;
  text-transform: uppercase;
  color: #231f20;
  font-weight: 600;
}
h3 {
  font-size: 25px;
  line-height: 33px;
  padding-bottom: 20px;
  font-weight: 600;
}
h4 {
  font-size: 20px;
  line-height: 28px;
  padding-bottom: 15px;
  text-transform: uppercase;
}
h5 {
}
h6 {
}

span.s1 {
  font-size: 100px;
  line-height: 108px;
  padding-bottom: 22px;
  font-weight: 600;
}

span.s2 {
  font-size: 75px;
  line-height: 82px;
  padding-bottom: 20px;
  color: #000;
  font-weight: 600;
  display: block;
  text-transform: uppercase;
}

.btn {
  background-color: #e42129;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  border-radius: 25px;
  padding: 11px 30px;
  transition: all 0.5s ease 0s;
}
.btn:hover {
  color: #fff;
}

.ripple-button {
  overflow: hidden;
}

span.ripple {
  background-color: rgba(255, 255, 255, 0.25);

  border-radius: 50%;

  position: absolute;

  transform: scale(0);
  animation: ripple 0.6s linear;
}
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn.focus,
.btn:focus {
  box-shadow: none;
}

img {
  max-width: 100%;
}
.space {
  padding: 60px 0;
}

.sticky.main_header:before {
  opacity: 0;
}
.sticky.main_header .custom-logo-link {
  max-width: 110px;
}
.sticky .bottom_nav {
  margin-top: 15px;
}
.sticky .bottom_nav ul li a {
  padding: 15px 0;
}
.sticky .top_nav {
  padding-top: 20px;
}
.main_header {
  position: fixed;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  top: 0;
  transition: all 0.5s ease 0s;
}
.home .main_header:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0,0,0, 0) 100%
  );
  transition: all 0.5s ease 0s;
}

.main_header a.logo {
  display: inline-block;
  transition: all 0.5s ease 0s;
  max-width: 100%;
}
.main_header .col-md-9 {
  text-align: right;
}
.main_header .row {
  align-items: center;
}

.main_header .custom-logo-link {
  display: inline-block;
  max-width: 185px;
}

.top_nav ul {
  display: inline-block;
  position: relative;
  padding-right: 20px;
}
.top_nav ul:after {
  content: "•";
  font-size: 15px;
  font-weight: 500;
  color: #a9a8a8;
  position: absolute;
  right: 0;
  display: inline-block;
  line-height: 15px;
  width: 100%;
  visibility: visible;
  top: 5px;
}
.top_nav .menu_list:last-child {
  padding-left: 20px;
}
.top_nav .menu_list a {
  margin-left: 15px;
}
.top_nav .menu_list p {
  margin-bottom: 0;
}
.top_nav ul li {
  display: inline-block;
  margin: 0 12px;
}

.top_nav a {
  font-size: 15px;
  line-height: 22px;
  color: #231f20;
  font-weight: 500;
  display: inline-block;
  position: relative;
  transition: all 0.5s ease 0s;
}
.top_nav a:hover {
  color: #a8b675;
  text-decoration: none;
}
/* Hide blog */
.header_news { display: none!important}
#menu-item-847 { display: none!important}
.post_footer { display: none!important}

.header_news a:before {
  content: "\f1ea";
  font-family: "Font Awesome 5 Brands", "Font Awesome 5 free";
  font-weight: 700;
  color: #a8b675;
  margin-right: 5px;
}

.top_nav p strong {
  opacity: 0.5;
  font-weight: 500;
}

.top_nav {
  text-align: right;
  padding-top: 50px;
  transition: all 0.5s ease 0s;
}
.top_nav .menu_list {
  display: inline-block;
}

.bottom_nav {
  position: relative;
  display: inline-block;
  margin-top: 25px;
  border-top: 2px solid #b4b4b4;
  transition: all 0.5s ease 0s;
}
.bottom_nav .menu-main-menu-container {
  transition: all 0.5s ease 0s;
}
.bottom_nav ul {
  display: inline-block;
}

.bottom_nav ul li {
  display: inline-block;
  position: relative;
  margin: 0 20px;
}
.bottom_nav ul li:first-child {
  margin-left: 0;
}
.bottom_nav ul li:last-child {
  margin-right: 0;
}

.bottom_nav ul li a {
  font-size: 20px;
  line-height: 30px;
  color: #000000;
  font-weight: 700;
  display: inline-block;
  position: relative;
  transition: all 0.5s ease 0s;
  padding: 25px 0;
}
.bottom_nav ul li a.btn {
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 33px;
  margin-left: 80px;
  position: relative;
  display: inline-block;
}
.bottom_nav ul li i {
  padding: 0 10px;
}
.bottom_nav ul li.menu-item-has-children > a:after {
  content: "...";
  position: absolute;
  color: #000;
  left: 0;
  width: 100%;
  right: 0;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 18px;
  top: calc(50% + 15px);
  transform: translateY(-50%);
  pointer-events: none;
}
.bottom_nav ul li:hover a {
  color: #a8b675;
}
.bottom_nav ul ul li {
  margin: 0 0 15px;
  padding: 0;
}
.bottom_nav ul ul li:last-child {
  margin-bottom: 0;
}
.bottom_nav ul ul li a {
  padding: 0 !important;
}

.slideout_menu_wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
  pointer-events: none;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.slideout_menu_wrapper .slideout_menu {
  transform: translateX(100%);
  transition: all 0.5s ease 0s;
}
.slideout_menu_wrapper.slideout_active .slideout_menu {
  transform: translateX(0%);
  pointer-events: auto;
}
.slideout_menu {
  position: absolute;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  z-index: 9999;
  height: 100vh;
  min-height: 600px;
  max-width: 600px;
  padding: 130px 120px 60px 60px;
}
.popup_overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9;
}
.slideout_menu ul li {
  margin-bottom: 20px;
}
.slideout_menu ul li a {
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  font-weight: 400;
  display: block;
  padding-right: 40px;
  position: relative;
}
.slideout_menu ul li a:hover {
  color: #a8b675;
}
.slideout_menu ul li a:after {
  content: "\f30b";
  font-family: "Font Awesome 5 Brands", "Font Awesome 5 free";
  font-weight: 700;
  position: absolute;
  right: 0;
  transition: all 0.5s ease 0s;
  top: 0px;
  transition: all 0.5s ease 0s;
}
.slideout_menu ul li a:hover:after {
  right: 5px;
}
a.close-btn {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  display: table;
  margin-left: auto;
  margin-bottom: 50px;
}
a.close-btn i {
  margin-left: 10px;
}

.home .main_header {
  background-color: transparent;
}
.home .sticky.main_header {
  background-color: #000;
}
.home .sticky.main_header:before {
  content: none;
}

.home .top_nav a {
  color: #fff;
}
.home .bottom_nav ul li a {
  color: #fff;
}
.home .top_nav p strong {
  color: #fff;
}

.home .top_nav a:hover {
  color: #a8b675;
}
.home .bottom_nav ul li:hover a {
  color: #a8b675;
}
.home .bottom_nav ul li:hover a {
  color: #a8b675;
}
.home .bottom_nav {
  border-color: #fff;
}
.home .bottom_nav ul li.menu-item-has-children > a:after {
  color: #fff;
}
a:not([href]):not([tabindex]):hover {
  cursor: pointer;
}

.scroll_bottom {
  position: absolute;
  bottom: 50px;
  left: 0px;
  z-index: 9;
  padding: 35px 30px;
  background-color: #e4222a;
  border-radius: 100px;
  pointer-events: auto;
}
.scroll_bottom .scrolldown {
  width: 6px;
  height: 90px;
  display: block;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0) 50%
  );
  background-position: 0 -90px;
  background-size: 100% 200%;
  animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}
.scrolldown:after {
  content: "";
  height: 12px;
  width: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  display: inline-block;
  transform: rotate(45deg);
  left: 26.5px;
  bottom: 35px;
}

.scroll_arrow {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  max-width: 1235px;
  margin: 0 auto;
  right: 0;
  pointer-events: none;
}
.scroll_arrow {
  width: calc(100% - 30px);
}

@keyframes scrolldown {
  0% {
    background-position: 0 -90px;
  }
  50% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 90px;
  }
}

/* .home .bottom_nav ul li.menu-item-has-children a:after{ color: #fff; } */
.bottom_nav .more_btn a {
  position: relative;
}
.bottom_nav .more_btn a:after {
  content: "\f0c9";
  font-family: "Font Awesome 5 Brands", "Font Awesome 5 free";
  font-weight: 700;
  margin-left: 10px;
}

.bottom_nav ul li.menu-item-has-children ul {
  position: absolute;
  left: 0;
  top: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
  background-color: #5e6838;
  text-align: left !important;
  padding: 30px;
  border-radius: 0 0 30px 30px;
  pointer-events: none;
  width: 250px;
}
.bottom_nav ul li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  display: block;
  pointer-events: auto;
}
.bottom_nav li.menu-item-has-children ul li a {
  color: #ffffff !important;
  font-size: 15px;
  line-height: 23px;
  font-weight: 400;
}
.bottom_nav li.menu-item-has-children ul li {
  display: block;
}
.bottom_nav ul li.menu-item-has-children ul li a:hover {
  color: #a8b675 !important;
}

.mo_menu {
  display: none;
}
.more-btn {
  padding: 8px 10px;
  display: inline-block;
  color: #0076bd;
  font-weight: 700;
  font-size: 14px;
}
.more-btn a:after {
  content: "\f0c9";
  color: #000;
  padding-left: 10px;
  width: 100%;
  height: 30px;
  font-family: "Font Awesome 5 Brands", "Font Awesome 5 free";
}

.mo_menu {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000000;
  width: 100%;
  padding: 7px 15px;
  display: none;
  z-index: 999;
}
.mo_menu img {
  max-width: 150px;
}
.mo_menu ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
.mo_menu ul li {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.mo_menu ul li:last-child {
  text-align: right;
}
.mo_menu ul li a {
  font-size: 13px;
  line-height: 13px;
  font-weight: 700;
  color: #fff;
}
.mm-menu {
  background: #000;
}
.mm-listview > li > a,
.mm-listview > li > span {
  font-size: 16px;
  line-height: 24px;
}
.mm-navbar .mm-title {
  font-size: 16px;
  line-height: 20px;
  padding-left: 45px;
}
.mm-btn.mm-prev,
.mm-btn.mm-next {
  background-color: transparent !important;
}
.mo-menu i {
  margin-left: 5px;
  transition: all 0.5s ease 0s;
}
.mm-opened .mo_menu i.fa-bars:before {
  content: "\f061" !important;
}

.hero_band_content_wrapper {
  padding: 245px 0px 0;
  margin: 0 auto;
}
.hero_band_content {
  max-width: 650px;
}
.hero_band_content span {
  font-size: 110px;
  line-height: 110px;
  color: black;
  font-weight: 700;
  display: inline-block;
  padding-bottom: 15px;
}
.hero_band_content h1 {
  color: black;
  font-size: 16px;
  line-height: 24px;
}

.hero_band {
  height: 100vh;
  min-height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.revolution_band {
  position: relative;
  background-color: #5e6838;
}
.revolution_band .container {
  background-repeat: no-repeat;
  background-position: bottom left;
  padding: 60px 15px 60px 130px;
}
.revolution_band .image_band {
  display: inline-block;
  width: 33%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 30px 200px;
  border-radius: 30px;
  box-shadow: 0px 30px 30px 0px rgba(33, 40, 8, 0.2);
}
.revolution_band img,
.revolution_band h3 {
  position: relative;
  z-index: 1;
}
.revolution_top_content {
  margin-bottom: 70px;
  position: relative;
}

.revolution_band .col-md-4:nth-child(2) {
  padding-top: 120px;
  position: relative;
}
.revolution_band .col-md-4:nth-child(3) {
  padding-top: 230px;
  position: relative;
}
.revolution_box_img {
  height: 360px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  z-index: 9;
  transition: all 0.5s ease 0s;
}

.revolution_box a:hover .revolution_box_img {
  box-shadow: 0px 30px 30px 0px rgba(33, 40, 8, 0.2);
}

.revolution_box_img:after {
  content: "";
  position: absolute;
  height: 50%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0.8;
}
.revolution_box h3 {
  font-size: 31px;
  line-height: 32px;
  font-weight: 600;
  color: #fff;
  margin-top: 10px;
  text-transform: uppercase;
}

.revolution_box p {
  font-size: 16px !important;
  line-height: 20px !important;
  font-weight: 600 !important;
  color: #fff !important;
  margin-top: 10px !important;
  text-transform: none !important;
  text-align: left !important;
  background: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 15px;
}

.hp-col-adjust {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wp-image-1043 {
    max-width: 160px;
    margin-bottom: -10px;
}

.pre-footer-left {
    padding-top: 80px;
    padding-bottom: 50px;
}

.wp-image-vrca {
    max-width: 250px;
    margin-top: -40px;
}


.revolution_band .row {
  padding-bottom: 160px;
  margin-bottom: 40px;
}

.revolution_band {
/*  background-image: url(../img/sprout-bg.png); */
  background-position: 20% 100%;
  background-repeat: no-repeat;
}
.our_services .col-md-3 img {
}

.revolution_top_content:after {
  content: "";
  width: 70px;
  height: calc(100% + 100px);
  position: absolute;
  left: -68px;
  border-left: 10px solid #fff;
  border-bottom: 10px solid #fff;
  border-radius: 0 0 0 30px;
  top: 40px;
}

.pulsing {
  position: absolute !important;
  left: -77px;
  top: 5px;
}
.pulsing,
.pulsing:before,
.pulsing:after {
  display: block;
  width: 25px;
  height: 25px;
  position: relative;
  border-radius: 50%;
  background-color: #fff;
}
.pulsing:before,
.pulsing:after {
  position: absolute;
  margin-left: 0;
  margin-top: 0;
  opacity: 0;
  border: 4px solid #fff;
  animation: pulse 3s infinite ease-out;
}
.pulsing:before {
  content: "";
  animation-delay: 0s;
}
.pulsing:after {
  content: "";
  animation-delay: 1.5s;
}

.revolution_box.image_band_2:before {
  content: "";
  height: 60px;
  width: 209px;
  background-image: url(../img/arrow2.png);
  position: absolute;
  top: 60px;
  left: -15px;
}
.revolution_box.image_band_3:before {
  content: "";
  height: 60px;
  width: 209px;
  background-image: url(../img/arrow2.png);
  position: absolute;
  top: 170px;
  left: -15px;
}

.revolution_box.image_band_3:after {
  content: "";
  height: 135px;
  width: 455px;
  background-image: url(../img/arrow4.png);
  position: absolute;
  bottom: -130px;
  left: -262px;
  z-index: 100;
}
.our_services_box {
  position: relative;
  border-radius: 30px;
  max-width: 100%;
  display: inline-block;
}
.our_services_box:after {
  content: "";
  background: rgb(0, 0, 0);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(3, 0, 0, 0) 100%
  );
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.our_services .col-md-12:before {
  content: "";
  background-image: url(../img/arrow5.png);
  height: 302px;
  width: 441px;
  position: absolute;
  bottom: 5px;
  left: 29%;
}

.our_services .container {
  max-width: 1665px;
}
.title_band h1 {
  padding: 15px 0;
}

@keyframes pulse {
  from {
    transform: scale(1);
    opacity: 0.5;
  }
  to {
    transform: scale(3, 3);
    opacity: 0;
  }
}

.our_services_box {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.our_services_box .s1 {
  position: absolute;
  max-width: 600px;
  left: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 9;
  text-transform: uppercase;
  right: 0;
  text-align: center;
  padding-bottom: 0;
}

/* .revolution_top_content{position: relative;} */

.revolution_band h3 {
  max-width: 530px;
  color: #ffffff;
}
.revolution_band .image_band h3 {
  font-size: 31px;
  line-height: 39px;
  color: #ffffff;
  text-transform: uppercase;
}
.revolution_band .revolution_top_content p {
  max-width: 790px;
  color: #ffffff;
  font-weight: 500;
  line-height: 25px;
  text-align: left;
  font-size: 16px;
}
.revolution_band p {
  text-align: center;
  color: #ffffff;
  font-size: 29px;
  line-height: 35px;
  font-weight: 600;
}
.resource_band .container {
  position: absolute;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
}

.trucks_band img {
  box-shadow: 0px 30px 30px 0px rgba(36, 41, 22, 0.2);
}
.trucks_band .trucks_band_img {
  position: relative;
}
.trucks_band .trucks_band_img:after {
  content: "";
  background-image: url(../img/arrow6.png);
  height: 143px;
  width: 46px;
  position: absolute;
  bottom: -143px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.our_services {
  background-color: #5e6838;
}
.our_facilities {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 340px 0 180px;
  text-align: center;
}
.our_facilities_content {
  max-width: 650px;
  margin: 0 auto;
}
.our_facilities h3,
.our_facilities p {
  color: #fff;
}

.our_services .col-md-12 {
  padding-right: 220px;
  padding-bottom: 300px;
}
.our_services .overlap_img {
  position: absolute;
  right: 13%;
  top: 220px;
}

.transition_band {
  background-color: #5e6838;
  padding-top: 20px;
}
.transition_band .col-md-6:nth-child(odd) {
  padding-right: 40px;
}
.transition_band .col-md-6:nth-child(even) {
  padding-left: 40px;
}
.transition_band img {
  border-radius: 30px;
}
.transition_band h3 {
  color: #fff;
}
.transition_band p {
  color: #fff;
  opacity: 0.6;
}

.resource_band {
  background-color: #3a3a3a;
  position: relative;
  margin-top: -260px;
  min-height: 1000px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.resource_band .resource_box {
  max-width: 600px;
  padding: 60px;
  background-color: rgba(94, 104, 56, 0.9);
  position: absolute;
  top: calc(50% + 50px);
  transform: translateY(-50%);
  right: 15px;
  border-radius: 30px;
}
.resource_band .resource_box h3,
.resource_band .resource_box p {
  color: #fff;
}
.resource_band svg {
  position: absolute;
  top: -2px;
  width: 100%;
  z-index: 8;
  vertical-align: top;
  height: auto;
}
.resource_band svg * {
  width: 100%;
}
.resource_band .container + svg {
  bottom: -1px;
  top: auto;
}

.news_band a {
  color: #5e6838;
  font-size: 16px;
  line-height: 24px;
  text-decoration: underline;
}
.news_band a:hover {
  color: #a8b675;
  text-decoration: none;
}
.news_band h4 {
  text-transform: unset;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
}
.news_band .row {
  margin: 0 -40px;
}
.news_band .row .col-md-4 {
  padding: 0 40px;
}

.news_band .s2 {
  text-align: center;
}
.news_band .s2 + a {
  display: table;
  margin: 0 auto 30px;
}
.news_band p {
  margin-bottom: 5px;
}
.news_band img {
  float: left;
  margin: 0 15px 15px 0;
  border-radius: 10px;
}
.news_band .date p {
  color: #5e6838;
  font-size: 11px;
  line-height: 11px;
  display: inline-block;
}
.news_band .date p i {
  margin-left: 12px;
  margin-right: 5px;
  color: #000;
}
.news_band .date p i:first-child {
  margin-left: 0;
}
.news_band .date p span {
  text-decoration: underline;
}

.trucks_band {
  background-color: #5e6838;
  margin-bottom: -110px;
}
.trucks_band .trucks_band_content {
  max-width: 560px;
  margin: 0px auto 50px;
  text-align: center;
  position: relative;
  z-index: 9;
}

.trucks_band .trucks_band_content h3 {
  color: #fff;
}
.trucks_band .trucks_band_content p {
  color: #fff;
}
.trucks_band img {
  border-radius: 30px;
}

.package_band {
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 220px;
  position: relative;
  background-position: center;
}
.package_band:after {
  content: "";
  background: rgb(0, 0, 0);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.5) 45%,
    rgba(255, 255, 255, 0) 100%
  );
  position: absolute;
  left: 0%;
  width: 50%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  z-index: 1;
  top: 0;
}

.package_band_content {
  max-width: 600px;
  padding: 60px;
  background-color: rgba(94, 104, 56, 1);
  right: 0;
  border-radius: 30px;
  position: relative;
  top: -80px;
  z-index: 9;
}
.package_band_content h3,
.package_band_content p {
  color: #fff;
}
.package_band .container {
  position: relative;
}
.package_band .container:after {
  content: "";
  background-image: url(../img/arrow9.png);
  height: 237px;
  width: 484px;
  position: absolute;
  bottom: -157px;
  left: 25%;
  background-position: bottom;
  background-size: cover;
  z-index: 9;
}
.package_band:after {
  content: "";
}


.new_adjust_about {
    padding-top: 80px;
}

.about_band {
  background: linear-gradient(180deg, #5E6838 0%, #000000 100%);
  position: relative;
  z-index: 9;
  margin-top: -2px;
  padding: 0px !important;
}

.about_band .about_img img {
  border-radius: 30px;
}
.about_band h3 {
  color: #fff;
}
.about_band p {
  color: #fff;
  opacity: 0.7;
}
.about_band .about_img {
  margin-top: 0px;
}
.about_band .row {
  padding-bottom: 150px;
  position: relative;
}
.about_band .row:after {
/*  content: "";
  background-image: url(../img/arrow7.png);
  height: 163px;
  width: 144px;
  position: absolute;
  bottom: 50px;
  left: 50px;
  right: 0;
  margin: 0 auto;
*/
}

.about_band {
  padding-bottom: 108px;
}

.about_band .row + h3 {
  text-align: center;
  padding-bottom: 0;
}

.more_about_band {
  position: relative;
  text-align: center;
  background-color: #f4f4f4;
  background-image: url(../img/revolution-bg.png);
  background-position: center bottom;
  background-repeat: no-repeat;
}
.more_about_band svg:first-child {
  transform: rotate(180deg);
  width: 100%;
  height: auto;
  position: absolute;
  top: 79px;
  left: 0;
  z-index: 2;
}
.more_about_band svg:first-child {
}
.more_about_band .about_video {
  margin-top: -80px;
  position: relative;
  z-index: 9;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 50px;
}
.more_about_band .about_video .play_icon {
  position: absolute;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  top: 50%;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  background-color: #e42129;
  height: 118px;
  width: 118px;
  border-radius: 100%;
  margin: 0 auto;
}
.more_about_band .about_video .play_icon i {
  font-size: 60px;
  color: #fff;
  padding: 33px 25px 33px 40px;
}

.more_about_band p {
  color: #231f20;
  max-width: 600px;
  margin: 0 auto 35px;
}
.more_about_band h2 {
  font-size: 50px;
  line-height: 60px;
  text-transform: unset;
}
.more_about_band .more_about_content {
  padding: 120px 0;
}
.more_about_band .more_about_content h2 {
  margin-bottom: 60px;
}

.transition_band .container {
  position: relative;
  z-index: 9;
}

footer .pre_footer {
  background-color: #5e6838;
  overflow: hidden;
}

footer .pre_footer h4 {
  padding-top: 55px;
  padding-bottom: 20px;
  position: relative;
  margin: auto;
  width: auto;
}
footer .pre_footer h4 a {
  color: #ffffff;
  font-weight: 400;
  transition: all 1s ease 0s;
  font-weight: 700;
}
footer .pre_footer h4 a:hover {
  color: #a8b675;
}
footer .pre_footer h4 a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  height: 2px;
  width: 34px;
  background-color: #2f341b;
}
footer .pre_footer ul {
  padding: 20px 0 50px;
}
footer .pre_footer ul li {
  padding-bottom: 8px;
}
footer .pre_footer ul li:last-child {
  padding-bottom: 0;
}
footer .pre_footer ul li a {
  font-size: 20px;
  line-height: 18px;
  color: #ffffff;
  font-weight: 400;
  display: block;
  transition: all 1s ease 0s;
}

footer .post_footer {
  background-color: #262626;
}
footer .post_footer a,
footer .post_footer p {
  color: #ffffff;
}
footer .post_footer a {
  font-size: 12px;
  line-height: 19px;
  font-weight: 400;
  display: block;
  transition: all 1s ease 0s;
  font-weight: 600;
}
footer .post_footer p {
  font-size: 11px;
  line-height: 18px;
  font-weight: 400px;
}
footer .post_footer a:hover {
  color: #a8b675;
}
footer .post_footer h4 a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  height: 2px;
  width: 34px;
  background-color: #2f341b;
}
footer .pre_footer ul li a:hover {
  color: #a8b675;
}
footer .post_footer {
  background-color: #262626;
}
footer .post_footer .container {
  padding-bottom: 25px;
}
footer .post_footer .col-md-3:first-child a {
  padding-top: 30px;
  font-weight: 400;
  display: inline-block;
}

footer .post_footer .container {
  position: relative;
}
footer .post_footer p {
  position: relative;
  display: inline-block;
  padding-top: 10px;
  margin-bottom: 5px;
}
footer .post_footer .date p {
  position: relative;
  padding-left: 15px;
}
footer .post_footer .date p:before {
  content: "\f133";
  position: absolute;
  left: 0;
  color: #5e6838;
  font-family: "Font Awesome 5 Brands", "Font Awesome 5 free";
  font-size: 11px;
  line-height: 15px;
  font-weight: 700;
}
footer .post_footer strong {
  position: relative;
  font-size: 11px;
  line-height: 18px;
  font-weight: 400px;
  color: #ffffff;
  padding-left: 25px;
}
footer .post_footer strong::before {
  content: "\f02d";
  position: absolute;
  top: 0;
  left: 10px;
  color: #5e6838;
  font-family: "Font Awesome 5 Brands", "Font Awesome 5 free";
  font-size: 11px;
  line-height: 15px;
  font-weight: 700;
}
footer .post_footer .container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  height: 2px;
  width: calc(100% - 30px);
  right: 0;
  margin: 0 auto;
  background-color: #6e7555;
}
footer .post_footer h4 {
  position: relative;
  color: #959595;
  padding: 30px 0 25px;
  font-weight: 600;
}
footer .date strong {
  font-weight: 400;
}

footer .post_footer .footer_news {
  padding-top: 30px;
  margin: 0 15px;
}
footer .post_footer h4:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #6e7555;
  width: 34px;
  height: 2px;
  font-family: "Font Awesome 5 Brands", "Font Awesome 5 free";
  font-size: 11px;
  line-height: 19px;
}

footer .copy_right {
  background-color: #262626;
  padding: 25px 0;
}
footer .copy_right .col-md-6:first-child {
  text-align: left;
}
footer .copy_right p,
footer .copy_right a {
  font-size: 11px;
  line-height: 18px;
  font-weight: 400;
  color: #ffffff;
}
footer .copy_right a {
  text-decoration: underline;
}
footer .copy_right a:hover {
  color: #a8b675;
  text-decoration: none;
}
footer .copy_right .col-md-6:last-child {
  text-align: right;
}
footer .pre_footer ul li a {
  padding-bottom: 5px;
  display: block;
}
footer .pre_footer .tag_line {
  position: relative;
  z-index: 9;
  height: 100%;
  padding: 40px;
  text-align: center;
}

footer .pre_footer .tag_line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2f341b;
  width: 9999px;
  height: 100%;
  z-index: -1;
}
footer .pre_footer .tag_line span.s2 {
  color: #ffffff;
  font-size: 23px;
  line-height: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

.background_image_band:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #000;
  top: 0;
  left: 0;
  opacity: 0.5;
}
.background_image_content {
  position: relative;
  z-index: 9;
}

.cd-top {
  background-color: #000;
}
.cd-top:hover {
  background-color: #5e6838;
}
p:empty {
  display: none;
}

.contact_banner_band {
  height: 500px;
  background-color: #000;
}
.contact_banner_band .container {
  background-position: center center;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  max-width: 1600px;
}
.contact_banner_band .container:after {
  content: "";
  background: rgb(0, 0, 0);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  position: absolute;
  height: 100%;
  width: 30%;
  left: 0;
  top: 0;
}
.contact_banner_band .container:before {
  content: "";
  background: rgb(0, 0, 0);
  background: linear-gradient(
    270deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  position: absolute;
  height: 100%;
  width: 30%;
  right: 0;
  top: 0;
}

.sub_navigation_band a {
  max-width: 140px;
  display: inline-block;
}

.contact_band {
}
.contact_band .contact_form h3 {
  color: #231f20;
  font-weight: 800;
}
.contact_band .form-group.city {
  display: flex;
}
.contact_band .form-group.city label {
  position: relative;
  top: 0;
}
.contact_band .form-group.city .city,
.contact_band .form-group.city .city select {
  width: 100%;
}
.form-group {
  margin-bottom: 20px;
}
.contact_band .wpcf7 p {
  color: #a1a1a1;
  text-align: center;
}
.ajax-loader {
  display: none !important;
}

span.wpcf7-not-valid-tip {
  display: none !important;
}
.wpcf7-not-valid {
  border-color: #ff0000 !important;
}
.wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 5px;
  border: 2px solid #00a0d2;
  text-align: center;
  font-size: 12px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: #ff0000;
}
.contact_form .row {
  margin: 0 -10px;
}
.contact_form .row .col-md-6,
.contact_form .row .col-md-12 {
  padding: 0 10px;
}

.contact_band .row {
  /*align-items: center; */
}

.contact_band .contact_info {
    padding-top: 30px;
    
}

.contact_band .contact_info img {
  margin-bottom: 20px;
}
.contact_band .col-md-6:first-child ul li {
  padding: 0 70px 30px;
  position: relative;
}

.contact_info a[href^="tel:"] {
  margin: 0 auto;
  color: #d23834;
  font-weight: 700;
}
.contact_info a[href^="tel:"]:hover {
  color: #898888;
}

.contact_band .contact_form {
  padding: 40px 40px 25px;
  box-shadow: 0px 0px 50px 0px rgb(84 90 52 / 15%);
  border-radius: 30px;
  width: calc(100% - 30px);
}
.vehicle_band .row {
  margin: 0 -6px;
}
.vehicle_band .row .col-md-4 {
  padding: 0 6px;
}

.normal_content_band h3,
.normal_content_band h2 {
  padding-top: 30px;
}
.normal_content_band h3:first-child,
.normal_content_band h2:first-child {
  padding-top: 0px;
}

.testimonial_band .row {
  margin: 0 -30px;
}
.testimonial_band .row .col-md-4 {
  padding: 0 30px;
}

.sub_navigation_band ul {
  display: flex;
  text-align: center;
}
.sub_navigation_band ul li {
  flex: 1;
}

.normal_content_band .col-md-4 .testimonial {
  padding-left: 15px;
  padding-right: 15px;
}
.normal_content_band .col-md-4 .testimonial .person {
  margin-top: -20px;
}
.normal_content_band .col-md-4 .testimonial::before {
  left: 15px;
}

.normal_content_band,
.background_image_band {
  clear: both;
}

.testimonial_band .testimonial .person {
  margin-top: -20px;
}

.note_band {
  background-color: #5e6838;
  border-radius: 15px;
  padding: 20px 20px 20px 85px;
  position: relative;
  margin-top: 30px;
}
.note_band::before {
  content: "\f05a";
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Brands", "Font Awesome 5 free";
  font-weight: 700;
  color: #5e6838;
  padding: 22px 15px 44px;
  background-color: #373e1e;
  border-radius: 15px 0 0 15px;
  height: 100%;
  font-size: 25px;
  line-height: 26px;
}
.note_band p {
  color: #ffffff !important;
}
.note_band strong {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  line-height: 25px;
  display: block;
  padding-bottom: 5px;
}
.green_band img {
  box-shadow: 0px 20px 20px rgb(0 0 0 / 10%);
}

.dark_green_band img {
  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.15);
}



.recovery_park_band {
  position: relative;
}
.odd_band {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.odd_band .odd_band_content {
  position: relative;
  z-index: 9;
  display: table;
}
.odd_band .odd_band_content h3,
.odd_band .odd_band_content p,
.odd_band .odd_band_content a,
.odd_band .odd_band_content h5,
.odd_band .odd_band_content address {
  color: #ffffff;
}
.odd_band .odd_band_content h5 {
  padding-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.odd_band .odd_band_content h3 + h5 {
  margin-top: 0px;
}
.odd_band .odd_band_content h5 {
  margin-top: 50px;
}
.odd_band .odd_band_content address {
  padding-bottom: 12px;
  font-size: 16px;
  line-height: 24px;
}
.odd_band .container {
  position: relative;
  height: 100%;
}

.odd_band:before {
  content: "";
  background: rgb(0, 0, 0);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.5) 45%,
    rgba(255, 255, 255, 0) 100%
  );
  position: absolute;
  left: 0%;
  width: 75%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  z-index: 1;
  top: 0;
}
.odd_band:nth-child(odd):before {
  background: rgb(0, 0, 0);
  background: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0.5) 45%,
    rgba(255, 255, 255, 0) 100%
  );
  left: auto;
  right: 0;
  z-index: 1;
}
.odd_band:nth-child(odd) .odd_band_content {
  margin-left: auto;
}

.odd_band .odd_band_content i {
  margin-right: 5px;
}
i.fas.fa-phone {
  transform: rotate(90deg);
}

.service_band .service_content ul li {
  opacity: 0.7;
}

.title_band {
  padding-top: 210px;
  background-color: #efefef;
}
.title_band h1 {
  text-transform: uppercase;
}

/* ------------------------------------------ Level 3 Page ------------------------------------------ */

.dark_green_band {
  background-color: #5e6838;
  padding: 30px 0 60px;
}

.dark_green_band h2 {
  color: #c5ccaa;
  font-weight: 600;
  padding-bottom: 30px;
  text-transform: none;
}

.dark_green_band p {
  color: #eee;
  padding-bottom: 30px;
}



.dark_green_band h4 {
  color: #c5ccaa;
  font-weight: 600;
  padding-bottom: 30px;
  text-transform: none;
}
.dark_green_band a {
  color: #ffffff;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}
.dark_green_band a:hover {
  color: #e42129;
}
.dark_green_band img {
  border-radius: 30px;
}

.band_space {
  padding: 60px 0;
}
.normal_content_band img {
  border-radius: 15px;
}

.normal_content_band p {
  color: #898888;
  line-height: 27px;
}
.normal_content_band .content_row p {
  margin-bottom: 12px;
}
p.person {
  position: relative;
  padding-left: 22px;
  color: #898888;
  font-weight: 700;
}
p.person::before {
  content: "\f2bd";
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Brands", "Font Awesome 5 free";
  font-weight: 700;
  color: #5e6838;
}
.testimonial {
  position: relative;
  padding-top: 50px;
}
.testimonial::before {
  content: "";
  background-image: url(../img/star.png);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35px;
  background-repeat: no-repeat;
}
.green_band {
  background-color: #5e6838;
}
.green_band .row {
  align-items: center;
}
.green_band p {
  color: #ffffff;
}
.green_band img {
  border-radius: 15px;
}
.background_image_band {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}
.background_image_band .background_image_content {
  max-width: 405px;
  text-align: center;
  margin: 0 auto;
  padding: 170px 0 170px;
}
.background_image_band .background_image_content h3 {
  color: #ffffff;
}

/* ------------------------------------------ Collection Page ------------------------------------------ */

.collection_banner_band {
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding-top: 420px;
  position: relative;
  background-position: center;
}
.collection_banner_band:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50%;
  width: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0.3;
}
.collection_banner_band span.s2 {
  color: #ffffff;
  position: relative;
  z-index: 9;
}

.sub_navigation_band {
  background-image: url(../img/sub_navigation_menu.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 0;
}
.sub_navigation_band a {
  color: #ffffff;
  line-height: 26px;
  line-height: 26px;
  font-size: 18px;
  font-weight: 800;
}
.sub_navigation_band a:hover {
  color: #a8b675;
}
.sub_navigation_band .col {
  text-align: center;
}

.testimonial_band {
  padding: 60px 0;
}
.save_band {
  text-align: center;
  background-color: #2f341b;
}
.save_band h3,
.save_band p {
  color: #ffffff;
}
.save_band .save_content {
  max-width: 1035px;
  margin: 0 auto;
}

.save_band.background_image_band .save_content {
	position: relative;
	z-index: 1;
}

.save_band.background_image_band.band_space {
	padding: 170px 0 170px;
}

.normal_content_band .vehicle_band .aligncenter {
  margin: 0;
  box-shadow: 0px 10px 30px 0px rgba(33, 40, 8, 0.2);
  border-radius: 15px;
}
.normal_content_band .vehicle_band h4 {
  text-transform: capitalize;
  padding-top: 25px;
  font-weight: 600;
}

.normal_content_band.branding_bottom {
  position: relative;
}
.normal_content_band.branding_bottom:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/branding_bottom.png);
  background-repeat: no-repeat;
  background-position: calc(87%) bottom;
  z-index: -1;
}
/*  */
.normal_content_band.padding_band {
  padding: 30px 0 0 !important;
}

/* ------------------------------------------ Contact  Page ------------------------------------------ */

.contact_banner_band {
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}
.contact_banner_band span.s2 {
  color: #ffffff;
  position: relative;
  z-index: 9;
}
.contact_band ul {
  display: flex;
  flex-wrap: nowrap;
}
.contact_band ul li {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
  text-align: center;
}

.contact_band {
  padding: 60px 0;
}

.contact_band .contact_form h3 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  padding-bottom: 30px;
}
.wpcf7 select {
  background: #ffffff;
  border: 3px solid #c5c5c5;
  border-bottom: 3px solid #d23834;
  border-radius: 0;
  color: #343434;
  font-size: 21px;
  font-weight: 400;
  width: 82%;
  height: 50px;
}

.wpcf7 textarea {
  height: 95px !important;
}

.service_band {
  background-color: #3b3b3b;
  padding: 60px 0 110px;
}
.service_band .container {
  position: relative;
}
.service_box {
  position: relative;
  border-radius: 30px;
  display: inline-block;
  overflow: hidden;
  margin-right: 15px;
}
.service_box:after {
  content: "";
  background: rgb(0, 0, 0);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.5) 45%,
    rgba(255, 255, 255, 0) 100%
  );
  position: absolute;
  left: 0%;
  width: 75%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  top: 0;
}
.service_box .s2 {
  position: absolute;
  max-width: 600px;
  left: 0;
  top: 0;
  color: #fff;
  z-index: 9;
  max-width: 300px;
  text-transform: capitalize;
  font-size: 36px;
  line-height: 42px;
  margin-top: 50px;
  margin-left: 60px;
}
.service_box img {
  border-radius: 30px;
}
.service_band .service_content {
  background-color: #545a34;
  position: absolute;
  right: 15px;
  bottom: -55px;
  max-width: 800px;
  border-radius: 30px;
  z-index: 1;
  width: 65%;
}
.service_band .service_content ul {
  display: flex;
  flex-wrap: wrap;
  padding: 45px;
}
.service_band .service_content ul li {
  color: #ffffff;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  font-size: 16px;
  padding-bottom: 5px;
  line-height: 24px;
  font-weight: 400;
}

/* ------------------------------------------ Contact end Page ------------------------------------------ */
.page_title_band {
  padding: 60px 0;
}
.single_band {
  padding: 60px 0;
}

.mo_menu .google_translate_menu {
  display: none;
}
.google_translate_menu {
  text-align: right;
  transition: all 0.5s ease 0s;
  margin-bottom: 15px;
}
.google_translate_menu p {
  font-size: 11px;
  margin-bottom: 0px;
}
.google_translate_menu a {
  color: #fff !important;
}
.google_translate_menu a + a {
  margin-left: 5px;
}

.sticky.mo_menu .google_translate_menu {
  margin-top: -24px;
  opacity: 0;
}

/*** Careers Area Styles ***/
.careers_tab .applying_form {
  padding: 20px;
  background: #fff;
  margin-bottom: 40px;
}
.careers_tab .applying_form h5 {
  font-weight: bold;
  margin-bottom: 30px;
}
.careers_tab .applying_form h4 {
  color: #000;
  font-size: 20px; font-weight: bold; 
  padding-bottom: 10px; 
  line-height: 25px; 
}
.careers_tab .applying_form .job {
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 13px;
  margin-bottom: 4px;
  display: flex; 
  flex-direction: row;
}
.careers_tab .applying_form .job p {
  margin-bottom: 0;
  line-height: normal;
}
.careers_tab .applying_form .job li {
  font-weight: bold;
}
.careers_tab .applying_form .title p {
  margin-bottom: 2px;
}
.careers_tab .applying_form .location p,
.careers_tab .applying_form .date p,
.careers_tab .applying_form .category p { 
  position: relative;
}
.careers_tab .applying_form .title { width: 100%; }
.careers_tab .applying_form .date, .careers_tab .applying_form .location { width: 50%; margin-top: 0px; min-width: 0px; }
.applying_form h6 {
  font-weight: bold;
}
.form_main h4 {
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: 600;
}
.form_main textarea {
  height: 38px;
  padding: 2px 10px !important;
  font-style: normal;
  border-color: #dbdbdb;
}
.form_col {
  margin-bottom: 15px;
}
.prov {
  clear: left;
}
.form_col.province { display: flex; align-items: center; }
.form_col.province label { position: relative; margin-bottom: 0px; }
.form_col.province span.province { position: relative; z-index: 99; display: block; flex: 1;}
.form_col.province .nice-select { width: 100%; max-width: 220px;}
.form_col label {
  margin-bottom: 5px;
  display: inline-block;
}
.form_col .nice_select {
  background-color: #f5f5f5;
  font-size: 14px;
  color: #919191;
  border-radius: 0;
  border-color: #dbdbdb;
  display: block;
  max-width: 100%;
}
.form_col .nice_select:before {
  right: -10px;
  color: #c2372c;
}
.form_col .nice_select .list {
  border-color: #dbdbdb;
  border-radius: 0;
}
.form_col .nice_select span.current {
  text-align: center;
  padding-right: 20px;
}
.sub_col h4 {
  margin-bottom: 0;
}
.sub_col p {
  margin-bottom: 5px;
}
.sub_col.form_bottom {
  text-align: left;
  margin-bottom: 0;
}
.sub_col.donald_btn {
  position: relative;
  z-index: 0;
}
.pagenavi_main .wp-pagenavi{
  background-color: #ffffff;
  border: 1px solid #d8d8d8;
  /* padding: 0 90px; */
  position: relative;
  text-align: center;
}
.pagenavi_main a,
.pagenavi_main span {
  color: #c6443a;
  font-size: 17px;
  font-weight: 700;
  min-height: 50px;
  line-height: 56px;
  min-width: 48px;
  display: inline-block;
}
.pagenavi_main a:hover {
  background-color: #610202;
  color: #fff;
}
.pagenavi_main .current {
  background: #d8d8d8;
  color: #3a3a3a;
}
.pagenavi_main .pagescontro_ling.disabled {
  color: #ebebeb;
}
.pagescontro_ling,
.nextpostslink {
  text-transform: uppercase;
  left: 0;
  min-width: 90px !important;
  position: absolute;
  top: 0;
}
.next_link,
.nextpostslink {
  right: 0;
  left: auto;
}
.inner .footer_main .slide_cover {
  padding-bottom: 0;
}
.tab_col a.tab_title {
  position: relative;
  padding-bottom: 30px;
}
.tab_col a.tab_title:after {
  position: absolute;
  content: "VIEW JOB";
  color: #c2372c;
  font-size: 14px;
  font-weight: 700;
  line-height: 47px;
  bottom: -6px;
}
.tab_col a.tab_title:after {
  display: none;
}
.warning_msg {
  padding: 5px 10px;
  display: inline-block;
  background: rgba(197, 191, 14, 1);
  margin-top: 20px;
  border-radius: 3px;
  color: #fff !important;
}
.success {
  padding: 5px 10px;
  display: inline-block;
  background: rgba(1, 107, 76, 1);
  margin-top: 20px;
  border-radius: 3px;
  color: #fff !important;
}
.success i,
.warning_msg i {
  margin-right: 10px;
}
.inner_expand:after {
  display: none;
}
.vision_box span {
  display: none;
}
.accordion_box {
  border: 1px solid #ddd;
  margin-bottom: 10px;
}
.accordion_title {
  font-weight: bold;
  padding: 15px;
  transition: all 250ms ease;
  cursor: pointer;
}
.accordion_holder {
  padding: 0px 15px;
  height: 0px;
  overflow: hidden;
  transition: all 300ms ease;
}
div.wpcf7 .ajax-loader {
  position: absolute;
  z-index: 999;
}
div.wpcf7-response-output {
  clear: both;
}
.job_left,
.job_right {
  width: 35%;
}
.job_left {
  text-align: left;
}
.job_right {
  float: right;
  text-align: right;
  color: rgb(194, 55, 44);
}
.accordion_title:hover {
  background-color: #000;
}
.accordion_title:hover span {
  color: #fff;
}
.fileUploadField {
  display: none !important;
}
.uploadtextfield {
  height: 18px;
  width: 139px;
}
.uploadbrowsebutton {
  height: 27px;
  width: 147px;
  margin-top: 5px;
  text-align: center;
}
.uploadField {
  margin-bottom: 20px;
  display: flex; 
}
.uploadLabel {
  position: relative;
  display: inline-block;
  padding: 7px 35px;
  line-height: 1.5;
  color: #fff;
  font-size: 17px;
  background: #d23834;
  z-index: 2;
  border-radius: 19px 0 0 19px;
  
}
.uploadTextField {
  display: inline-block;
  
  position: relative;
  z-index: 1;
  flex: 1;
}
.uploadTextField input {
  display: block;
  padding: 8px 35px 8px 90px;
  font-size: 14px;
  background: #f5f5f5;
  border-radius: 0 19px 19px 0;
  border: 0px;
}

/********************************* Careers Roll Page ********************************/

.sidebar {
  background-color: #5e6838;
  border-radius: 30px;
  padding: 30px;
  box-sizing: border-box;
  width: 250px;
  max-width: 100%;
  margin-top: 30px;
}
.sidebar h5,
.sidebar:nth-child(2) {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  position: relative;
  padding: 0;
  padding-bottom: 30px;
  display: block;
  margin-bottom: 30px;
  line-height: 30px;
}
.sidebar:nth-child(2) {
  padding: 30px;
  box-sizing: border-box;
  margin-top: 30px;
}
.sidebar h5:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background-color: #2f341b;
  width: 30px;
  height: 2px;
}
.sidebar a {
  font-size: 15px;
  line-height: 20px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}
.sidebar:nth-child(2) {
  background-image: url(../img/sidebar-bg.jpg);
  background-repeat: no-repeat;
  background-position: 100% 100%;
}
.sidebar .textwidget {
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
}
.sidebar .textwidget p,
.sidebar .textwidget ul li {
  color: #c7c7c7;
}
.sidebar .textwidget ul li {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.sidebar .textwidget ul li:not(:last-child) {
  margin-bottom: 9px;
}
.sidebar .textwidget ul li:before {
  content: "⬤";
  font-size: 5px;
  color: #c7c7c7;
  display: block;
  margin: 1px 5px 0 0;
}
.sidebar .textwidget:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-color: #2f341b;
  width: 30px;
  height: 2px;
}
.sidebar a:hover {
  text-decoration: underline;
}

.post-type-archive-career h4 {
  font-size: 25px;
  color: #5e6838;
  padding-bottom: 10px;
  font-weight: bold;
  width: 460px;
  margin-right: 53px;
}
.post-type-archive-career h4:hover {
  color: #c6171e;
}
.sort {
  align-items: center;
  border-top: 1px solid #b0b0b0;
  margin-top: 20px;
}
.sort .job {
  padding: 10px 0;
}
ul.job {
  display: flex;
  border-bottom: 1px solid #b0b0b0;
  align-items: center;
}
ul.job::after {
  display: none;
}
.careers_tab .location {
  font-size: 16px;
  font-weight: bold;
  color: #3a3a3a;
  min-width: 207px;
}
.careers_tab .tab_col {
  padding: 2% 3% 2% 2%;
  border: 1px solid transparent;
  margin-top: 20px;
  cursor: pointer;
}
.careers_tab .tab_col:hover {
  border: 1px solid #e42129;
}
.careers_tab .tab_col:hover h4 {
  color: #e42129 !important;
}
.careers_tab .date {
  min-width: 165px;
  text-align: right;
}
.sort .title {
  font-size: 16px;
  font-weight: bold;
  color: #3a3a3a;
  width: 57.5%;
}
.careers_tab .job .title {
  width: 52%;
  margin-right: 5%;
}
.sort .nice-select {
  color: #e42129;
  border: 1px solid #627e00;
  border-radius: 15px;
  font-weight: bold;
  font-size: 16px;
  min-width: 207px;
}
.nice-select .list {
  border: 1px solid #627e00;
  border-radius: 0 0 15px 15px;
  margin-top: 0px;
  width: 101%;
  margin-left: -1px;
  border-top: none;
  box-shadow: unset;
}
.nice-select .list li:hover {
  background-color: #5e6838;
  color: #a8b675;
}
.nice-select .list li {
  font-size: 16px;
  color: #000;
}
.nice-select.open {
  border-radius: 15px 15px 0 0;
  border-bottom: none;
  transition: all 0.3s;
}
.list li[data-value=""] {
  display: none;
}
.post-type-archive-career .pagenavi_main {
  margin: 40px 0;
}

.wp-pagenavi a,
.wp-pagenavi span {
  margin: 0;
  border: none;
  line-height: 47px;
  z-index: 2;
}
.previouspostslink {
  text-transform: uppercase;
  left: 0;
  min-width: 90px !important;
  position: absolute;
  top: 0;
}
.pagenavi_main a:hover {
  background-color: #c6171e;
  color: #fff;
}
.pagenavi_main .wp-pagenavi::before {
  content: "PREV";
  position: absolute;
  left: 23px;
  top: 18px;
  color: #c6443a;
  opacity: 0.4;
  font-size: 17px;
  font-weight: 700;
  z-index: 0;
}
.pagenavi_main .wp-pagenavi::after {
  content: "NEXT";
  z-index: 0;
  position: absolute;
  right: 23px;
  top: 18px;
  opacity: 0.4;
  color: #c6443a;
  font-size: 17px;
  font-weight: 700;
}
.nice-select:after {
  border-color: #e42129;
  width: 7px;
  height: 7px;
  margin-top: -6px;
}
.sort .date {
  margin-left: 4%;
  min-width: 165px;
  text-align: center;
}

.department {
  font-size: 14px;
  color: #000;
  font-weight: bold;
}
.department span {
  text-transform: uppercase;
}

/* Single career styles */

.single-career .content_col {
  margin-top: 30px;
}
.single-career .job .title h2 {
  font-size: 25px;
  font-weight: bold;
  text-transform: capitalize;
  padding-bottom: 0;
}

.single-career .tab_col {
  border: 1px solid #dfdfdf !important;
}
.single-career .center_detail {
  position: relative;
}
.single-career .center_detail:before {
  content: "";
  position: absolute;
  height: 1px;
  top: -30px;
  width: 100%;
  background-color: #dfdfdf;
}
.single-career .center_detail .department {
  width: 48%;
  display: inline-block;
  color: #3a3a3a !important;
}
.single-career .careers_tab .job .title {
  width: 100%;
}
.single-career .applying_form {
  padding-left: 0;
}
.applying_form .job {
  padding-bottom: 0;
}
.single-career .center_detail {
  margin-top: 60px;
}
.single-career .center_detail h3 {
  padding-bottom: 5px;
  font-weight: bold;
}
.single-career .center_detail h4 {
  font-size: 18px;
  color: #000000;
  text-transform: capitalize;
  font-weight: bold;
}
.single-career .back-post {
  margin-bottom: 60px;
}
.single-career .careers_tab .tab_col:hover h4 {
  color: #000000 !important;
}
.single-career .btn:hover {
  background-color: #c6171e;
}
.single-career .center_detail ul li:before {
  font-size: 12px;
}
.single-career .careers_tab .tab_col {
  padding: 20px;
}
@media (max-width: 1250px) {
  .careers_tab .job {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .sort .date {
    text-align: right;
    padding-right: 35px;
  }
  .careers_tab .date {
    min-width: unset;
    width: 100%;
    text-align: right;
    margin-top: -18px;
  }

    
    
    
    
    
}

@media (max-width: 992px) {
  .single-career .center_detail .department {
    width: 100%;
    display: block;
    margin-bottom: 0;
  }
  .dep2 {
    margin-bottom: 20px !important;
  }
}
@media (max-width: 767px) {
  .sidebar {
    width: 280px;
    margin: auto;
  }
  .sidebar h5,
  .sidebar:nth-child(2) {
    font-size: 18px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .sidebar a {
    font-size: 13px;
  }
  .sidebar .textwidget {
    padding-top: 15px;
    margin-top: 15px;
  }
  .post-type-archive-career h4 {
    font-size: 20px;
  }
  .sort .date {
    min-width: 25%;
  }
  .nice-select:after {
    top: -5px;
    top: 22px;
  }
  .nice-select .list {
    width: 102%;
  }
  .sort .nice-select {
    font-size: 14px;
    min-width: 130px;
  }
  .pagenavi_main .wp-pagenavi {
    padding: 0 70px;
  }
  .pagenavi_main .wp-pagenavi::before,
  .pagenavi_main .wp-pagenavi::after,
  .pagenavi_main .wp-pagenavi a,
  .pagenavi_main .wp-pagenavi span {
    font-size: 14px;
    line-height: 32px;
    font-size: 14px;
    font-weight: 700;
    min-height: 32px;
    min-width: 36px;
    display: inline-block;
  }
  .sidebar .textwidget p,
  .sidebar .textwidget ul li {
    font-size: 14px;
    line-height: 20px;
  }
  .post-type-archive-career .previouspostslink,
  .post-type-archive-career .pagescontro_ling,
  .post-type-archive-career .nextpostslink {
    min-width: 60px !important;
  }
  .pagenavi_main .wp-pagenavi::before {
    left: 12px;
  }
  .pagenavi_main .wp-pagenavi::after {
    right: 12px;
  }
  .pagenavi_main .wp-pagenavi::before,
  .pagenavi_main .wp-pagenavi::after {
    top: 3px;
  }
  .single-career .job .title h2 {
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 5px;
  }
  .single-career .applying_form {
    padding-right: 0;
  }
  .careers_tab .applying_form .job { flex-direction: column }
  .careers_Tab .applying_form .job li { width: 100%; }
  .careers_tab .applying_form .job .date { text-align: left; }
  .careers_tab .applying_form .job .location { margin-bottom: 10px; }
  .uploadField { display: block;}
  .uploadLabel { border-radius: 19px 19px 0 0; width: 100%}
  .uploadTextField input { border-radius: 0 0 19px 19px; width: 100%; }


}
/* ================================= 7 Media Query #media ================================= */
/********************************* Mobile Potrait #MP ********************************/
@media screen and (max-width: 320px) and (orientation: portrait) {
}

/********************************* Mobile Potrait ********************************/
@media screen and (max-width: 480px) and (orientation: portrait) {
}

/********************************* Mobile landscape ********************************/
@media screen and (max-width: 480px) and (orientation: landscape) {
}

/* ================================= Common For All mobile definitions #mx ================================= */
@media all and (max-width: 767px) {
  .main_header {
    display: none;
  }
  .mo_menu {
    display: block;
  }
  h1 {
    font-size: 18px;
    line-height: 26px;
  }

  .scroll_arrow {
    display: none;
  }
  .main_page {
    padding-top: 42px;
  }
  .hero_band_content_wrapper {
    padding: 20px 0px 90px;
    min-height: 60vw;
  }
  .hero_band {
    height: auto;
    min-height: 0;
    text-align: center;
  }
  .hero_band_content span {
    font-size: 40px;
    line-height: 50px;
    padding-bottom: 5px;
  }
  .hero_band_content h1 {
    font-size: 12px;
    line-height: 16px;
    padding-bottom: 0;
  }

  .revolution_band .container {
    padding: 30px;
  }
  .revolution_top_content {
    margin-bottom: 30px;
  }
  .revolution_top_content:after {
    content: "";
    width: 22px;
    height: 45px;
    position: absolute;
    left: 0;
    top: auto;
    background-image: url(../img/arrow8.png);
    bottom: 15px;
    right: 0;
    margin: 0 auto;
    border: none;
    border-radius: 0;
  }
  .revolution_top_content {
    margin-bottom: 0;
    position: relative;
    padding-bottom: 120px;
  }
  .revolution_band {
    background-image: none;
  }
  .pulsing {
    position: absolute !important;
    left: 0;
    top: auto;
    bottom: 70px;
    right: 0;
    margin: 0 auto;
  }
  .revolution_box_img {
    height: 260px;
  }
  .revolution_box h3 {
    font-size: 22px;
    line-height: 28px;
  }

  .revolution_band .col-md-4:nth-child(2) {
    padding-top: 30px;
  }
  .revolution_box.image_band_2:before,
  .revolution_box.image_band_3:before {
    height: 5px;
    width: 30px;
    background-image: url(../img/arrow2.png);
    top: 12px;
    left: 0;
    transform: rotate(90deg);
    right: 0;
    margin: 0 auto;
    background-position: top center;
  }
  .revolution_band .col-md-4:nth-child(3) {
    padding-top: 30px;
  }
  .revolution_box_img img {
    max-width: 50px;
  }

  .revolution_band .revolution_top_content p {
    font-size: 14px;
    line-height: 23px;
  }
  .revolution_box.image_band_3:after {
    content: "";
    width: 22px;
    height: 45px;
    position: absolute;
    left: 0;
    top: auto;
    background-image: url(../img/arrow8.png);
    bottom: -45px;
    right: 0;
    margin: 0 auto;
  }

  .revolution_band .row {
    padding-bottom: 20px;
  }
  .revolution_band p {
    font-size: 26px;
    line-height: 32px;
  }
  .our_services {
    padding: 30px 0;
  }
  .our_services .col-md-12 {
    padding-right: 15px;
    padding-bottom: 0;
  }
  .our_services .col-md-12:before {
    display: none;
  }
  .our_services .overlap_img {
    position: relative;
    right: 0;
    top: 30px;
    border-radius: 30px;
  }
  .transition_band .col-md-6:nth-child(odd) {
    padding-right: 15px;
  }
  .transition_band .col-md-6:nth-child(even) {
    padding-left: 15px;
    padding-top: 30px;
  }
  .resource_band {
    margin-top: 0;
    padding-bottom: 10px;
    min-height: 0;
    padding-top: 120px;
  }
  .resource_band .resource_box {
    max-width: 100%;
    padding: 30px;
    background-color: rgba(94, 104, 56, 0.9);
    position: relative;
    top: -30px;
    transform: none;
    right: 0;
    border-radius: 30px;
  }
  .resource_band .container {
    position: relative;
  }

  .transition_band {
    padding: 30px 0;
  }
  .trucks_band .trucks_band_content {
    margin-top: 0;
    margin-bottom: 30px;
    padding-top: 30px;
  }
  .trucks_band .trucks_band_img:after {
    content: "";
    width: 22px;
    height: 45px;
    position: absolute;
    left: 0;
    top: auto;
    background-image: url(../img/arrow8.png);
    bottom: -45px;
    right: 0;
    margin: 0 auto;
  }

  .our_facilities {
    padding: 180px 0 80px;
  }
  .package_band_content {
    padding: 30px;
    top: 0px;
    top: -50px;
    max-width: 100%;
  }
  .package_band .container:after {
    content: "";
    width: 22px;
    height: 45px;
    position: absolute;
    left: 0;
    top: auto;
    background-image: url(../img/arrow8.png);
    bottom: 5px;
    right: 0;
    margin: 0 auto;
  }
  .package_band {
    padding-bottom: 90px;
    background-color: #5e6838;
    background-image: none !important;
  }
  .package_band .package_band_content {
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
  }
  .package_band:after {
    content: none !important;
  }
  .about_band .about_img img {
    border-radius: 30px;
    width: 100%;
  }

  .about_band .about_img {
    margin-bottom: 30px;
  }
  .about_band .row:after {
/*    content: "";
    width: 22px;
    height: 45px;
    position: absolute;
    left: 0;
    top: auto;
    background-image: url(../img/arrow8.png);
    bottom: 5px;
    right: 0;
    margin: 0 auto;
 */
  }

  .btn {
    display: block;
  }
  .about_band .row {
    padding-bottom: 50px;
  }
  .more_about_band .about_video {
    margin-top: -30px;
    margin-bottom: 30px;
  }

  .more_about_band .about_video .play_icon {
    height: 60px;
    width: 60px;
  }
  .more_about_band .about_video .play_icon i {
    font-size: 22px;
    color: #fff;
    padding: 20px 13px 15px 20px;
  }
  .more_about_band svg:first-child {
    top: 29px;
  }
  .more_about_band .more_about_content {
    padding: 30px 0;
  }
  .more_about_band h2 {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 30px;
  }
  .space {
    padding: 30px 0;
  }
  .news_band .row .col-md-4 + .col-md-4 {
    margin-top: 30px;
  }
  .odd_band .odd_band_content {
    display: block;
  }
  .odd_band .odd_band_content h5 {
    margin-top: 30px;
  }

  .odd_band:before {
    content: "";
    background: rgb(0, 0, 0) !important;
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.5) 45%,
      rgba(255, 255, 255, 0) 100%
    ) !important;
    left: 0% !important;
    right: auto;
  }

  footer .pre_footer h4 {
    padding-top: 15px;
    width: 100%;
    text-align: center;
    font-size: 14px;
  }
  footer .pre_footer h4 a:after {
    right: 0;
    margin: 0 auto;
  }
  footer .pre_footer ul li {
    padding-bottom: 2px;
  }
  footer .pre_footer .col {
    flex-basis: unset;
  }
  footer .pre_footer {
    padding-top: 15px;
  }

  footer .pre_footer ul {
    padding: 20px 0 0px;
  }

  footer .pre_footer .tag_line::after {
    content: "";
    position: absolute;
    top: 0;
    left: -15px;
    background-color: #2f341b;
    height: 100%;
    z-index: -1;
    width: calc(100% + 30px);
  }
  footer .pre_footer .tag_line {
    padding: 30px 0;
  }
  footer .pre_footer .tag_line .s2 {
    padding-bottom: 0;
  }
  footer .pre_footer .col:last-child {
    margin-top: 30px;
  }
  footer .post_footer .footer_news {
    margin: 0;
  }

  footer .copy_right {
    text-align: center;
  }
  footer .copy_right .col-md-6:first-child {
    text-align: center;
    margin-bottom: 10px;
  }
  footer .copy_right .col-md-6:last-child {
    text-align: center;
  }

  .news_band .row {
    margin: 0 -15px;
  }
  .news_band .row .col-md-4 {
    padding: 0 15px;
  }
  footer {
    text-align: center;
  }
  footer .post_footer h4:before {
    right: 0;
    margin: 0 auto;
  }
  footer .post_footer h4 {
    padding: 30px 0 15px;
  }
  footer .post_footer .col-md-3:first-child a {
    padding-top: 15px;
  }
  .about_band {
    padding-bottom: 60px !important;
  }

  .title_band {
    padding-top: 0;
  }
  .collection_banner_band {
    padding-top: 150px;
  }
  .sub_navigation_band .col {
    flex-basis: unset;
  }
  .sub_navigation_band a {
    max-width: 100%;
    display: inline-block;
    margin-bottom: 20px;
  }
  .sub_navigation_band .col:last-child a {
    margin-bottom: 0;
  }
  .vehicle_band .row {
    margin: 0 -15px;
  }
  .vehicle_band .row .col-md-4 {
    padding: 0 15px;
  }
  .testimonial_band .row {
    margin: 0 -15px;
  }
  .testimonial_band .row .col-md-4 {
    padding: 0 15px;
  }
  .testimonial_band .row .col-md-4 + .col-md-4 {
    margin-top: 30px;
  }
  .testimonial_band {
    padding: 30px 0;
  }

  .sub_navigation_band a {
    font-size: 16px;
  }

  .normal_content_band .col-md-4 .testimonial {
    padding-left: 0px;
    padding-right: 0px;
  }
  .normal_content_band .col-md-4 .testimonial::before {
    left: 0px;
  }

  h2 img {
    margin-top: 0 !important;
  }
  .green_band .col-md-6 + .col-md-6 {
    margin-top: 30px;
  }
  .normal_content_band .col-md-4 + .col-md-4 .testimonial {
    margin-top: 30px;
  }
  .dark_green_band {
    padding-bottom: 30px;
  }
  .normal_content_band .col-md-4 .testimonial .person {
    margin-top: -10px;
  }
  .dark_green_band h4 {
    padding-bottom: 20px;
  }

  .contact_banner_band .container:before {
    content: none;
  }
  .contact_banner_band .container:after {
    content: none;
  }
  .contact_banner_band {
    height: 250px;
  }

  .contact_band ul {
    display: block;
    margin-bottom: 30px;
  }
  .contact_band ul li {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .contact_band ul li + li {
    margin-top: 30px;
  }
  .contact_band {
    padding: 30px 0;
  }
  .contact_band .contact_form {
    width: 100%;
  }

  .service_band .service_content {
    position: relative;
    right: 0;
    bottom: 0;
    max-width: 100%;
    border-radius: 30px;
    width: 100%;
  }
  .service_box .s2 {
    font-size: 22px;
    line-height: 30px;
    margin-top: 25px;
    margin-left: 25px;
  }
  .service_band .service_content {
    margin-top: 15px;
    margin-right: 0;
  }
  .service_band .service_content ul {
    padding: 35px 15px;
  }
  .service_band .service_content ul li {
    padding: 10px;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .service_band {
    background-color: #3b3b3b;
    padding: 30px 0 30px;
  }
  .contact_band .contact_form {
    padding: 40px 25px 25px;
  }
  .contact_band .wpcf7 p {
    font-size: 14px;
  }
  .testimonial_band .testimonial .person {
    margin-top: -10px;
  }

  .sub_navigation_band ul {
    display: block;
  }
  .sub_navigation_band ul li:last-child a {
    margin-bottom: 0;
  }

  .normal_content_band .vehicle_band img {
    margin: 0 auto !important;
  }
  .normal_content_band .vehicle_band h4 {
    text-align: center;
    padding-top: 15px;
  }
  .normal_content_band .vehicle_band .col-md-4 + .col-md-4 {
    margin-top: 15px;
  }
  .resource_band .container + svg {
    display: none;
  }

  .green_band img {
    margin: 0 auto;
    display: block;
  }

  html * {
    max-height: 1000000px;
  }

  .x {
    display: none;
  }

  h2 {
    font-size: 32px;
    line-height: 40px;
    padding-bottom: 15px;
  }
  h3 {
    font-size: 23px;
    line-height: 30px;
    padding-bottom: 15px;
  }
  h4 {
    font-size: 18px;
    line-height: 25px;
    padding-bottom: 15px;
  }
  p,
  .content_row ul li,
  .content_row ol li {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
  }
  .normal_content_band h3,
  .normal_content_band h2 {
    padding-top: 15px;
  }
  p.intro {
    font-size: 18px;
    line-height: 26px;
  }
  .band_space {
    padding: 30px 0;
  }

  span.s1 {
    font-size: 50px;
    line-height: 58px;
    padding-bottom: 15px;
  }

  span.s2 {
    font-size: 40px;
    line-height: 48px;
    padding-bottom: 15px;
  }

  .cd-top {
    left: 30px;
    bottom: 30px;
  }

  .btn {
    background-color: #e42129;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    border-radius: 25px;
    padding: 14px 20px;
    transition: all 0.5s ease 0s;
  }

  /* Image Alignment */
  .alignnone,
  a img.alignnone,
  .aligncenter,
  div.aligncenter,
  .alignright,
  a img.alignright,
  .alignleft,
  a img.alignleft {
    margin: 30px auto;
    float: none;
    display: block;
  }
}

/********************************* ipad portrait #ip ********************************/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .main_header {
    display: none;
  }
  .mo_menu {
    display: block;
  }
  .main_page {
    padding-top: 42px;
  }

  .hero_band {
    height: auto;
    min-height: 600px;
  }
  .hero_band_content_wrapper {
    padding: 140px 0px 0;
  }

  .news_band .row .col-md-4 {
    padding: 0 15px;
  }
  .news_band .row {
    margin: 0 -15px;
  }
  .revolution_box.image_band_2:before {
    left: -75px;
  }
  .revolution_box.image_band_3:before {
    left: -75px;
  }

  .revolution_box.image_band_3:after {
    content: "";
    height: 107px;
    width: 365px;
    background-image: url(../img/arrow4.png);
    position: absolute;
    bottom: -106px;
    left: -242px;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .revolution_band .row {
    padding-bottom: 100px;
  }

  .our_services .overlap_img {
    position: absolute;
    right: 15px;
    top: 220px;
    border-radius: 30px;
    max-width: 300px;
  }
  span.s1 {
    font-size: 70px;
    line-height: 78px;
  }
  .resource_band {
    margin-top: -20px;
  }
  .about_band .row:after {
    height: 90px;
    width: 120px;
    bottom: 50px;
    left: 120px;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .revolution_band .container {
    padding: 60px 15px 60px 110px;
  }
  .revolution_box h3 {
    font-size: 25px;
    line-height: 30px;
  }
  .revolution_box_img {
    height: 220px;
    padding: 20px;
  }
  .title_band {
    padding-top: 0;
  }
  .collection_banner_band {
    padding-top: 300px;
  }
  .sub_navigation_band a {
    font-size: 15px;
  }
  .testimonial_band .row {
    margin: 0 -15px;
  }
  .testimonial_band .row .col-md-4 {
    padding: 0 15px;
  }

  .normal_content_band .col-md-4 .testimonial {
    padding-left: 0px;
    padding-right: 0px;
  }
  .normal_content_band .col-md-4 .testimonial::before {
    left: 0px;
  }
  .contact_band .contact_form {
    width: 100%;
  }
  .contact_band .col-md-6:first-child ul li {
    padding: 0 15px;
  }
  .contact_band .contact_form {
    padding: 40px 25px 25px;
  }
  .contact_band .wpcf7 p {
    font-size: 14px;
  }
  .service_box {
    margin-right: 0;
  }
  .service_band .service_content {
    background-color: #545a34;
    position: relative;
    right: 0;
    bottom: 0;
    max-width: 100%;
    border-radius: 30px;
    z-index: 1;
    width: calc(100% - 60px);
    margin: 0 auto;
    margin-top: -60px;
  }
  .service_band {
    padding-bottom: 60px;
  }

  .resource_band {
    min-height: 700px;
  }
  .resource_band .resource_box {
    top: calc(50% + 20px);
  }

  span .s1 {
    font-size: 60px;
    line-height: 58px;
    padding-bottom: 15px;
  }

  span .s2 {
    font-size: 55px;
    line-height: 52px;
    padding-bottom: 15px;
  }

  .hidden-tab {
    display: none;
  }

  .visible_tab {
    display: block !important;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .bottom_nav ul li {
    margin: 0 15px;
  }
  .bottom_nav ul li a {
    font-size: 16px;
  }
  .our_services .overlap_img {
    max-width: 350px;
    right: 15px;
  }
  .resource_band {
    margin-top: -60px;
  }
  .about_band .row:after {
    height: 93px;
    left: 150px;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .testimonial_band .row {
    margin: 0 -15px;
  }
  .testimonial_band .row .col-md-4 {
    padding: 0 15px;
  }
  footer .pre_footer .tag_line {
    padding: 55px 0 0 20px;
  }

  .top_nav .menu_list:last-child p,
  .top_nav .menu_list:last-child a {
    font-size: 14px;
  }
  .top_nav .menu_list a {
    margin-left: 10px;
  }
  .top_nav ul li {
    margin: 0 6px;
  }
  .top_nav ul {
    padding-right: 15px;
  }
  .top_nav .menu_list:last-child {
    padding-left: 15px;
  }
  .resource_band {
    min-height: 800px;
  }
  .resource_band .resource_box {
    top: calc(50% + 30px);
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1366px) {
  .news_band .row .col-md-4 {
    padding: 0 15px;
  }
  .news_band .row {
    margin: 0 -15px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .our_services .overlap_img {
    right: 15px;
    max-width: 450px;
  }
}

@media only screen and (min-width: 1401px) and (max-width: 1600px) {
  .our_services .overlap_img {
    right: 15px;
    max-width: 450px;
  }
}

@media only screen and (min-width: 1501px) {
  .resource_band {
    background-size: 1500px;
  }
}

/* ================================= Small Computer #Sc ================================= */
@media only screen and (min-width: 1300px) {
  .first_col,
  .first_li {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
  .last_col,
  .last_li {
    padding-right: 0 !important;
    margin-right: 0 !important;
  }
}

/* ================================= Large Computer #lc ================================= */
@media screen and (min-width: 1450px) {
}

/* IE10 Only CSs */
@media screen and (min-width: 0\0) {
}

/* ie10, ie11+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
}

.btn {
  position: relative;
  overflow: hidden;
}
.btn span {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  animation: ripple 1s;
  opacity: 0;
}

@keyframes ripple {
  from {
    opacity: 1;
    transform: scale(0);
  }
  to {
    opacity: 0;
    transform: scale(10);
  }
}
