* {
  text-decoration: none;
  padding: 0;
  margin: 0;
  outline: none;
  font-family: "Proxima Nova Regular";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin-top: 0;
  overflow-x: hidden;
}

body.open {
  overflow-y: hidden;
}

select {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  position: relative;
  background: url(../images/icons/down-arrow.png) no-repeat;
  background-position: 95%;
}

.notification {
  position: fixed;
  bottom: -2em;
  left: 2em;
  padding: 1.5em 2em;
  background: white;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000000000000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  border-radius: 4px;
}

.helper {
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8em;
}

.notification.open {
  opacity: 1;
  visibility: visible;
  bottom: 2em;
}

.notification.wrong {
  border-left: 2px red solid;
}

.notification.good {
  border-left: 3px rgba(0, 204, 153, 1) solid;
}

.responsive_menu {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 5em;
  z-index: 10000;
  display: block;
  background: white;
  -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.responsive_menu.sticky {
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  background: white;
}

.responsive_menu.open {
  top: -100%;
}

.menu_icon {
  position: relative;
  width: 12em;
  height: 7em;
  left: 0;
  top: 0;
  float: left;
  z-index: 10000;
  background: #0b1a1f;
  color: white;
  cursor: pointer;
  display: none;
}

.menu_icon:before,
.primary_btn:before,
.request_icon:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
}

.menu_icon:hover:before,
.primary_btn:hover:before,
.request_icon:hover:before {
  height: 100%;
}

.top_bar,
.mid_bar,
.bottom_bar {
  position: absolute;
  top: 2.3em;
  left: 2em;
  width: 3em;
  height: 1.5px;
  background: #fff;
  -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.mid_bar {
  top: 3.3em;
}

.bottom_bar {
  top: 4.3em;
  width: 2em;
}

.menu_icon.open .top_bar {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 3.3em;
}

.menu_icon.open .mid_bar {
  width: 0;
  opacity: 0;
}

.menu_icon.open .bottom_bar {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 3em;
  top: 3.3em;
}

.menu_title {
  float: left;
  padding: 2em 2em 0 5.5em;
  text-transform: uppercase;
  font-size: 1.2em;
}

.nav_contact {
  float: right;
  margin-right: 5em;
  margin-top: 1em;
}

.nav_contact li {
  display: inline-block;
  float: left;
  margin-left: 2em;
  -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  color: #13163e;
}

.nav_contact li img {
  width: 2em;
  float: left;
  margin-top: 0.5em;
  margin-right: 1em;
}

.nav_contact li span {
  display: inline-block;
}

.logo,
.logo2 {
  width: 18em;
  height: 5em;
  top: 0;
  left: 5em;
  padding: 0.5em 0 0 0em;
  z-index: 100;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}

.logo2 {
  left: 0;
  position: relative;
}

.logo img,
.logo2 img {
  width: 16em;
}

.full_menu_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.full_menu_overlay.open {
  opacity: 1;
  visibility: visible;
}

.main_menu {
  -webkit-transform: translateX(-100vw);
  -ms-transform: translateX(-100vw);
  transform: translateX(-100vw);
  float: left;
  width: 40vw;
  height: 100vh;
  background: white;
  padding-top: 5em;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.full_menu_overlay.open .main_menu {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.main_menu li {
  float: left;
  margin: 0 1em;
  line-height: 1;
  display: block;
}

.main_menu li:nth-child(6) {
  margin-bottom: 2em;
}

.main_menu li a {
  text-transform: capitalize;
  font-size: 1.5em;
  padding: 0.5em 0;
  float: left;
  font-family: "Proxima Nova Bold";
  color: #606060;
}

.main_menu li a:hover {
  color: #07254f;
}

.main_menu li.active a {
  color: #07254f;
}

.main_menu .menu_footer {
  font-size: 1em;
  color: #909090;
  float: left;
  width: 100%;
  margin: 1em 2em 0em 2em;
}

.sub_menu {
  float: left;
  width: 100%;
  padding: 0 5em;
  background: #13163e;
}

.desk_menu {
  float: left;
  height: 3em;
}

.desk_menu li {
  display: inline-block;
  float: left;
  margin-right: 1em;
  position: relative;
}

.desk_menu li:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: white;
  -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.desk_menu li:hover:before {
  width: 100%;
}

.desk_menu li.active {
  border-bottom: 2px white solid;
}

.desk_menu li a {
  float: left;
  color: white;
  font-family: "Proxima Nova Bold";
  font-size: 1.2em;
  line-height: 3em;
  padding: 0 1em;
}

.dropdown_menu,
.res_link,
.hide_on_desktop {
  display: none;
}
.hide_on_mobile {
  display: block;
}
.request_btn {
  float: right;
  padding: 1.1em 2em;
  background: #f13525;
  color: white;
  font-family: "Proxima Nova Bold";
}

.request_btn:hover {
  color: white;
  background: #ff3525;
}

/*****banner section*****/
.banner,
.banner2 {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  clear: both;
  z-index: 10;
  background-image: url("../images/banner/shutterstock_301382870-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.banner2 {
  height: 50vh;
  overflow: hidden;
}

.banner:before,
.banner2:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.banner_content {
  position: absolute;
  top: 55%;
  left: 5em;
  width: 55%;
  -webkit-transform: translateY(-50%) scale(1);
  -ms-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 10000;
}

.banner_content.open {
  opacity: 0;
  -webkit-transform: translateY(-50%) scale(0.8);
  -ms-transform: translateY(-50%) scale(0.8);
  transform: translateY(-50%) scale(0.8);
}

.banner_tag {
  float: left;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: white;
}

.banner_title,
.banner_title2 {
  font-size: 5em;
  line-height: 1.1;
  font-family: "Proxima Nova Bold";
  color: #fff;
  float: left;
  width: 100%;
  clear: both;
}

.banner_title2 {
  font-size: 3em;
  width: 100%;
}

.banner_excerpt {
  float: left;
  width: 80%;
  color: #f0f0f0;
  font-size: 1.2em;
  margin: 1em 0;
  line-height: 2;
}

.primary_btn {
  float: left;
  padding: 1.5em 2em;
  color: white;
  text-transform: uppercase;
  background: #f13525;
  position: relative;
  border: none;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
  text-align: center;
}

.primary_btn:hover {
  color: white;
}

.alt_btn,
.alt_btn:hover {
  background: white;
  color: #13163e;
}

.request_form {
  padding: 0;
  float: left;
  width: 100%;
}

.request_form label {
  font-size: 1.2em;
  font-weight: 100;
  font-family: "Proxima Nova Bold";
  float: left;
  width: 100%;
}

.request_form textarea {
  min-height: 20vh;
}

.inputField {
  width: 100%;
  float: left;
  padding: 1em;
  resize: none;
  border: 1px #ccc solid;
  border-radius: 4px;
}

.requestQuoteContainer {
  float: left;
  width: 100%;
  background: #f5f5f5;
  padding: 0 6em 5em 6em;
  position: relative;
}

.requestQuoteContainer:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5em;
  width: 100%;
  height: 100%;
  background: url("../images/bg/splash.png");
  background-size: contain;
  opacity: 0.2;
}

.request_body {
  float: left;
  width: 100%;
}

.dragUp {
  -webkit-transform: translateY(-10em);
  -ms-transform: translateY(-10em);
  transform: translateY(-10em);
}

.request_tab {
  font-size: 1.5em;
  font-family: "Proxima Nova Bold";
  padding: 1em;
  border-bottom: 3px #f13525 solid;
  float: left;
  margin-left: 2em;
}

.request_content {
  background: white;
  float: left;
  width: 100%;
  padding: 2em;
  min-height: 42em;
}

.contact_box {
  float: left;
  width: 100%;
  padding: 2em;
  background: #f13525;
}

.long_cont {
  min-height: 42em;
  padding: 5em 4em;
}
.bottom_pos {
  position: relative;
  bottom: 0;
  -webkit-transform: translateY(10em);
  -ms-transform: translateY(10em);
  transform: translateY(10em);
}

.gallery {
  float: left;
  width: 100%;
  padding: 5em 0 5em 5em;
  position: relative;
}

.gallery:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 65%;
  background: url("../images/bg/splash2.png") #f13525;
  background-size: contain;
  z-index: -1;
}

.project_body {
  float: left;
  width: 100%;
  height: auto;
  max-height: 40em;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.the_content {
  display: grid;
  grid-template-columns: repeat(4, 500px);
  grid-gap: 10px;
}
.the_content img {
  height: 50vh;
  width: 100%;
}

/**************fowarders****************/
.fowarders_container,
.page_about,
.wrapper {
  float: left;
  width: 100%;
  padding: 5em;
  z-index: 10;
  position: relative;
}

.wrapper {
  padding-bottom: 0;
  display: block;
}
.fowarders_container {
  padding: 2em 5em;
  border-top: 1px rgba(0, 0, 0, 0.2) solid;
}

.for_header {
  position: absolute;
  left: 0;
  float: left;
  display: justify-center;
  -webkit-transform: translateY(-2.8em);
  -ms-transform: translateY(-2.8em);
  transform: translateY(-2.8em);
  background: white;
  margin: 0 2em 0 5em;
  padding: 0 1em;
  color: black;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-family: "Proxima Nova Semibold";
  z-index: 100;
}

.center_logos {
  position: relative;
  left: 50%;
  float: left;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

.for_logo {
  float: left;
  width: 100%;
  height: 5em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.page_about {
  position: relative;
  padding: 4em 5em 0 5em;
}

.container_image {
  float: right;
  position: relative;
  width: 100%;
  height: 70vh;
  -webkit-transform: translateY(-8em);
  -ms-transform: translateY(-8em);
  transform: translateY(-8em);
  background-size: cover;
  z-index: 10;
}

.container_image::before {
  content: "";
  position: absolute;
  bottom: -8em;
  right: -5em;
  z-index: -10;
  width: 100%;
  height: 100%;
  background: url("../images/bg/splash.png") no-repeat;
  background-size: cover;
  opacity: 0.2;
}

.page_tag {
  color: #f13525;
  float: left;
  font-size: 1.2em;
  font-family: "Proxima Nova Bold";
}

.page_header {
  float: left;
  width: 100%;
  color: #13163e;
  font-size: 2.5em;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Proxima Nova Bold";
  margin-bottom: 1em;
}

.page_excerpt {
  font-size: 1.2em;
  line-height: 1.5;
  color: black;
  margin: 1em 0;
}

.listings li {
  margin-bottom: 1em;
}

.the_services_body {
  background: -o-linear-gradient(transparent, #f0f0f0);
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#f0f0f0));
  background: linear-gradient(transparent, #f0f0f0);
  padding: 0em 5em 4em 5em;
  float: left;
  width: 100%;
}

.custom_header {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 2.5em;
  font-family: "Proxima Nova Bold";
  color: #13163e;
  float: left;
  text-align: center;
  width: 100%;
  margin-bottom: 1em;
}

.map_bg:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url("../images/bg/titleBg.png") no-repeat center;
  background-size: contain;
  width: 100%;
  height: 5em;
  opacity: 0.1;
}

.ch_sub {
  font-size: 0.4em;
  width: 50%;
  display: inline-block;
}

.main_services_body {
  float: left;
  width: 100%;
  padding: 2em 3em;
  border-radius: 4px;
  position: relative;
  background: white;
  -webkit-box-shadow: 0 4px 50px rgba(0, 0, 0, 0.01);
  box-shadow: 0 4px 50px rgba(0, 0, 0, 0.01);
  text-align: center;
  overflow: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.main_services_body:hover {
  -webkit-box-shadow: 0 4px 60px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 60px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

.main_services_body:before {
  content: "";
  position: absolute;
  top: -10em;
  left: -4em;
  width: 100%;
  height: 100%;
  background: url("../images/bg/splash.png") right no-repeat;
  background-size: cover;
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.main_services_body:hover:before {
  opacity: 0.1;
}

.ms_icon {
  width: 5em;
  height: 5em;
  margin-bottom: 1em;
  display: block;
  background-size: contain;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.link_btn {
  color: #f13525;
  padding: 1em 2em;
  display: inline-block;
  border-radius: 4px;
  font-size: 1em;
  text-transform: uppercase;
  border: 1px #f13525 solid;
  -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.link_btn:hover {
  background: #f13525;
  color: #fff;
}

.services_container {
  float: left;
  width: 100%;
  padding: 5em;
  background: #13163e;
  position: relative;
}

li {
  list-style-position: inside;
}

/* .services_container:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 22%;
  width: 95%;
  background: #0d0f32;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
} */

.service_body {
  padding: 2em;
  border: 1px rgba(255, 255, 255, 0.3) solid;
  float: left;
  width: 100%;
  position: relative;
}

.single_feature {
  width: 100%;
  float: left;
  background: #f9f9f9;
  margin: 2em 0 8em 0;
}

.service_icon {
  width: 4em;
  margin-bottom: 1em;
  position: relative;
  top: 0;
  left: 0;
}

.service_title {
  float: left;
  width: 100%;
  font-size: 1.4em;
  font-family: "Proxima Nova Bold";
  color: white;
  margin-bottom: 1em;
}
.service_image {
  width: 6em;
}

/******************Page Section*********************/
.about_image {
  width: 70%;
  height: 30em;
  float: right;
  background-size: cover;
  background-repeat: no-repeat;
}

.side_sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 20%;
  margin-right: 2em;
}

.right {
  float: right;
}

.right .size-large {
  float: left;
  width: 100%;
  height: auto;
}

.sticky_menu {
  padding: 1em 2em;
  float: left;
  width: 100%;
}

.sticky_menu li {
  list-style: none;
  display: block;
  width: 100%;
  float: left;
  border-bottom: 1px rgba(255, 255, 255, 0.2) solid;
}

.sticky_menu li:nth-last-child(1) {
  border-bottom: none;
}

.sticky_menu li a {
  font-size: 1.2em;
  padding: 1em;
  float: left;
  width: 100%;
  color: white;
}
/***********Contact Sectio***********/
.contact_page_header {
  font-size: 2em;
  float: left;
  width: 100%;
  margin-bottom: 0.5em;
  font-family: "Proxima Nova Bold";
}
.contact_head {
  float: left;
  width: 100%;
  font-size: 1.2em;
  margin-bottom: 1em;
  font-family: "Proxima Nova Bold";
}

.center_alignment {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  float: left;
}

.side_contact {
  float: left;
  width: 100%;
  padding: 2em;
  background: #f9f9f9;
  margin: 1em 0;
  min-height: 5em;
  overflow: hidden;
}

.contact_form {
  float: left;
  width: 100%;
  text-align: center;
}
/*****************Footer section******************/
.footer {
  float: left;
  width: 100%;
  padding: 2em 5em;
  border-top: 1px rgba(0, 0, 0, 0.2) solid;
}

.footer .page_excerpt {
  width: 80%;
}
.footer_nav {
  float: left;
  width: 100%;
}

.footer_social {
  float: left;
}
.footer_nav li {
  display: block;
  margin-bottom: 1em;
}

.footer_social li {
  margin-right: 1em;
  display: inline-block;
  float: left;
}
.footer_nav li a {
  float: left;
  width: 100%;
  display: block;
  font-size: 1.2em;
  color: #505050;
  margin-bottom: 1em;
}

.footer_social li a {
  float: left;
  display: inline-block;
  color: #505050;
  font-size: 1.5em;
}
.footer_end {
  padding: 2em 5em;
  float: left;
  width: 100%;
  border-top: 1px rgba(0, 0, 0, 0.2) solid;
}

.theme_txt {
  color: #f13525;
}

.theme_bg {
  background: #13163e;
}

.fancybox-container {
  z-index: 1000000000000000000000000000000000000000000;
}
