* {
  margin: 0px 0;
  padding: 0px;
}

body {
  width: 100%;
  height: auto;
  font-family: 'Raleway', sans-serif;
}
p {
  font-family: 'Raleway', sans-serif;
}
:focus {
  outline: none;
}
:hover {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}
.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: none;
  text-decoration: none;
}
button:focus {
  outline: none;
}
a {
  color: #fc0707;
  /* text-align: right; */
}

header {
  width: 100%;
  height: auto;
  padding: 18px 0;
  position: relative;
  background: #d7d7d7;
}
.logo {
  width: 100%;
    height: auto;
    padding: 0px 0 0 0;
    position: absolute;
    z-index: 99;
}

.logo img {
  max-width: 70%;
  max-height: 130px;
}
.login-pert {
  width: auto;
  float: left;
  height: auto;
  margin: 0 0 0 10px;
}
.login-pert .nme {
  width: auto;
  float: left;
  margin: 0 7px;
  color: #fff;
}
.login-pert .nme img {
  max-width: 18px;
}
.nme-dec {
  width: auto;
  float: left;
  color: #fff;
}
.ln {
  float: left;
  width: auto;
  margin: 0 10px;
  color: rgba(0, 0, 0, 0.3);
}
.nme-dec a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  font-weight: 400;
  font-family: 'Raleway', sans-serif;
}
.nme-dec a:hover {
  color: #b1907f;
}

/**************Menu*************/

.menu_wrap {
  width: 100%;
  height: auto;
  float: left;
  margin: 4px 0 0 0;
}
.hdrmnu {
  width: auto;
  float: left;
  height: auto;
  padding: 9px 0 0 0;
}
.hdrmnu li,
.hdrmnu li a {
  border: 0px !important;
  background: none !important;
}
.hdrmnu li a {
  display: inline-block;
  color: #000000;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 18px;
  position: relative;
  text-decoration: none;
  text-transform: CAPITALIZE;
}
.hdrmnu li {
  margin: 0px 30px 0 10px;
  padding: 0 0;
}
.hdrmnu li.active a {
  color: #000000;
  font-weight: 600;
}
.dropdown-item:focus, .dropdown-item:hover {
  color: #f83434 !important;
  text-decoration: none;
  background-color: #f8f9fa;
}
ul.slimmenu {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
}
ul.slimmenu li > ul {
  width: 200px !important;
  padding: 7px;
  background: #fff;
  -moz-box-shadow: 0 0 8px -5px #333;
  -webkit-box-shadow: 0 0 8px -5px #333;
  box-shadow: 0 0 8px -5px #333;
}
ul.slimmenu li > ul li {
  margin: 0px;
  padding: 0px;
  width: 100%;
  border-right: 0px !important;
}
ul.slimmenu li > ul li a {
  width: 100%;
  padding: 8px 15px;
  text-transform: capitalize;
  color: #1e1e20 !important;
  text-decoration: none;
}
ul.slimmenu li > ul li a:hover {
  background: #fc0707 !important;
  color: #fff !important;
}
.sub-toggle {
  width: 10px !important;
  height: 10px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/caret.png) no-repeat center center !important;
  top: 21px !important;
  right: -10px !important;
}
.sub-toggle i {
  display: none !important;
}
.sub-toggle::before {
  content: none !important;
}
ul.slimmenu li > ul li a::before {
  content: none;
}
.hdrmnu li a img {
  width: 17px;
  margin: 0 5px 0 0;
}

.header-right {
  width: auto;
  height: auto;
  padding: 5px 0 10px;
  float: right;
}

.searc {
  width: 130px;
  height: auto;
  float: right;
  text-align: center;
  border: 1px solid #f0721e;
  border-radius: 15px;
  color: #000000;
  padding: 10px 20px;
  cursor: pointer;
}
.searc a {
  color: #000000;
  text-decoration: none;
}
.searc:hover {
  border: 1px solid #f0721e;
  background: #f0721e;
}
.searc:hover a {
  color: #fff;
}

header.fixed {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -moz-box-shadow: 0 0 8px -5px #333;
  -webkit-box-shadow: 0 0 8px -5px #333;
  box-shadow: 0 0 8px -5px #333;
  background: #ffffff;
}

@-webkit-keyframes animationFade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes animationFade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
header.fixed {
  top: 0;
  left: 0;
  right: 0;
  position: fixed;
  margin: 0;
  z-index: 1002;
  -webkit-animation-name: animationFade;
  -o-animation-name: animationFade;
  animation-name: animationFade;
  -webkit-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -moz-box-shadow: 0 0 8px -5px #333;
  -webkit-box-shadow: 0 0 8px -5px #333;
  box-shadow: 0 0 8px -5px #333;
}
header.fixed .logo img {
  max-height: 84px;
}

/***************************/

.banner {
  width: 100%;
  height: auto;
  position: relative;
}
.banner-pic {
  width: 100%;
  height: auto;
  position: relative;
}
.banner-pic img {
  width: 100%;
  height: auto;
}
.baner-dec-inner {
  width: 100%;
  max-width: 600px;
  padding: 25px 25px 40px;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 100px;
  left: 100px;
  border-radius: 25px;
}
.baner-dec-inner h1 {
  font-weight: 600;
  font-size: 52px;
  line-height: 68px;
  color: #fff;
  margin: 0 0 15px 0;
}
.baner-dec-inner p {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
}
.read {
  width: 100%;
  height: auto;
  margin: 40px 0 20px;
}
.read a {
  background: #f3890f;
  border-radius: 5px;
  padding: 13px 30px;
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border: 2px solid #f3890f;
}
.read a:hover {
  background: #000;
  border: 2px solid #000;
}
.banner-img {
  width: 100%;
  height: auto;
}
.banner-img img {
  width: 100%;
  height: auto;
}

.pert-1 {
  width: 100%;
  height: auto;
  padding: 20px 0;
}

.pert-2 {
  width: 100%;
  height: auto;
  padding: 70px 0;
  background: #3b3939;
}
.p-2-full {
  width: 100%;
  max-width: 240px;
  margin: 0px auto;
  text-align: center;
}
.p-2-pic {
  width: 100%;
  height: auto;
  margin: 0 0 20px 0;
  overflow: hidden;
  text-align: center;
}
.p-2-pic img {
  max-width: 100%;
  height: auto;
}
.p-2-pic img:hover {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transform: scale(1.1);
}
.p-2-full h4 {
  font-size: 24px;
  font-weight: 500;
  color: #f27120;
  margin: 0 0 10px 0;
}
.p-2-full p {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 0px 0;
  line-height: 26px;
}
.p-2-full .read {
  width: 100%;
  height: auto;
  margin: 40px 0 0;
}
.p-2-full .read a {
  background: #f27120;
  border-radius: 5px;
  padding: 13px 30px;
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border: 2px solid #f27120;
}
.p-2-full .read a:hover {
  background: #fff;
  border: 2px solid #fff;
  color: #f27120;
}
.p-2-heading {
  text-align: center;
  margin: 0 0 50px 0;
}
.p-2-heading h3 {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px 0;
}
.p-2-heading p {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 0px 0;
}
.p-1-inner {
  max-width: 100%;
  padding: 15px 0 0 0;
}
.p-1-inner .read a {
  color: #fff;
  background: #fcc302;
  border: 2px solid #fcc302;
}
.p-1-inner .read a:hover {
  background: #00bec9;
  border: 2px solid #00bec9;
}

.p-1-inner h4 {
  font-size: 25px;
  font-weight: 400;
  color: #313243;
  margin: 50px 0 65px 0;
  line-height: 50px;
  font-family: 'Raleway', sans-serif;
  border-bottom: 2px solid red;
  /* text-align: center; */
  width: max-content;
}
.p-1-inner h4 span {
  display: block;
  padding: 0 0 0 50px;
}
.p-1-inner p {
  font-size: 16px;
  font-weight: 400;
  color: #313243;
  margin: 0 0 12px 0;
  line-height: 28px;
  text-align: justify;
}
.p-1-inner ul{
  font-size: 16px;
  font-weight: 400;
  color: #313243;
  /* margin: 5px 16px 12px 32px; */
  line-height: 24px;
  margin-left: 40px;
  line-height: 28px;
  text-align: justify;
}
.pic-1 {
  max-width: 105%;
  height: auto;
  float: right;
  position: relative;
}

.pic-1 img {
  max-width: 100%;
}
.pert-4 {
  width: 100%;
  height: auto;
  /* padding: 70px 0 55px; */
  /* background: #f3890f; */
}
.pert-4 .p-1-inner h4 {
  /* color: #fff; */
}
.pert-4 .p-1-inner p {
  color: #fff;
}
.pert-5 {
  width: 100%;
  height: auto;
  padding: 50px 0 35px;
  background: #ffffff;
}
.pert-5 ul {
  padding: 0px;
  display: flex;
}
.pert-5 ul li {
  list-style: none;
  text-align: center;
}
.pert-5 ul li img {
  max-width: 90%;
}

.pert-6 {
  width: 100%;
  height: auto;
  padding: 40px 0 230px;
  background: #f5f6f9;
}
.relt {
  position: relative;
}
.pz-1 {
  position: relative;
  width: 70%;
  height: auto;
  float: left;
}
.pz-1 img {
  max-width: 100%;
}
.pz-2 {
  position: absolute;
  width: 70%;
  height: auto;
  right: 0;
  top: 190px;
}
.pz-2 img {
  max-width: 100%;
}

.pz-3 {
  position: absolute;
  width: 70%;
  height: auto;
  left: -150px;
  top: 260px;
}
.pz-3 img {
  max-width: 100%;
}

.pert-6 .p-1-inner {
  max-width: 78%;
  padding: 0 0 0 0;
}
.top-pert {
  background: #3b3939;
  padding: 15px 0;
  color: #fff;
  font-size: 14px;
}
.top-pert a {
  color: #fff;
  text-decoration: none;
}
.top-pert a:hover {
  color: #f3890f;
}
.about-1 {
  width: 100%;
  height: auto;
  padding: 50px 0 70px;
}
.about-1 .p-2-full p {
  color: #000;
}
.about-2 {
  padding: 180px 0;
  background-size: cover !important;
}
.about-2 h4 {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0px 0;
  line-height: 50px;
  font-family: 'Raleway', sans-serif;
}
.about-2 h5 {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0px 0;
  line-height: 50px;
  padding: 0 0 0 100px;
  font-family: 'Raleway', sans-serif;
}
.about-3 {
  width: 100%;
  height: auto;
  padding: 50px 0;
  background: #ffffff;
}
.ab-full {
  width: 100%;
  height: auto;
  text-align: center;
}
.ab-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid #707070;
  overflow: hidden;
  margin: 0px auto 20px;
  padding: 5px;
}
.ab-pic img {
  max-width: 100%;
  border-radius: 50%;
  max-height: 137px;
}
.ab-full h4 {
  font-size: 20px;
  font-weight: 500;
  color: #4b4b4b;
  margin: 0 0 10px 0;
}
.ab-full p {
  font-size: 15px;
  font-weight: 400;
  color: #4b4b4b;
  margin: 0 0 15px 0;
  line-height: 23px;
}
.read-more a {
  color: #f27120;
  font-size: 15px;
  text-decoration: none;
}
.read-more a:hover {
  color: #000;
}
.about-4 {
  width: 100%;
  height: auto;
  padding: 50px 0;
  background: #f5f6f9;
}
.about-4 .ab-pic {
  border-radius: 0px;
  width: auto;
  height: 150px;
  border: 0px solid #4b4b4b;
}
.about-4 .ab-pic img {
  border-radius: 0px;
  border: 1px solid #4b4b4b;
  width: auto !important;
  margin: 0px auto;
}
.hdng {
  text-align: center;
  margin: 0 0 40px 0;
  font-size: 36px;
  font-weight: 600;
  color: #000;
  font-family: 'Raleway', sans-serif;
}
.hdng .pad {
  padding: 0 0 0 150px;
}

/* footer { 
  background: #3b3939;
  padding: 50px 0;
}
footer h4 {
  color: #f3890f;
  margin: 0 0 20px 0;
  font-weight: 400;
  font-size: 20px;
} */

footer {
  width: 100%;
  height: auto;
  padding: 50px 0;
  background: url(../img/footer.jpg) no-repeat;
  background-size: 100% 100%;
  min-height: 500px;
}
footer h4 {
  color: #fc0707;
  font-size: 24px;
  margin: 0 0 10px 0;
  font-weight: 400;
}
footer p {
  color: #c1bfbf;
  font-size: 14px;
  margin: 0 0 15px 0;
  font-weight: 300;
}
.links li a {
  color: #ffffff;
  text-rgb(255, 255, 255)ion: none;
}
.links li a:hover {
  color: #fcbd4c;
  text-decoration: none;
}
.ft-menu {
  padding: 0px;
  margin: 0px;
}
.ft-menu li {
  padding: 0px;
  list-style: none;
  margin: 0px 0 7px 0;
}
.ft-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.ft-menu li a:hover {
  color: #f3890f;
}
footer p {
  color: #fff;
  font-size: 14px;
  line-height: 21px;
}
.social ul li {
  padding: 0px;
  list-style: none;
  margin: 0px 15px 7px 0;
  float: left;
}
.social ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
}
.ft-menu li a:hover {
  color: #f3890f;
}
.copy {
  padding: 15px 0;
  text-align: center;
  font-size: 14px;
  color: #000;
}

.sld .owl-dots {
  text-align: right;
  padding: 0 50px 0 0;
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.sld .owl-dots .owl-dot {
  width: 13px;
  height: 13px;
  background: #ccc !important;
  border-radius: 50%;
  margin: 0 3px;
}
.sld .owl-dots .owl-dot.active {
  background: #f27120 !important;
}

.about-3 .owl-dots {
  text-align: center;
  padding: 30px 0 0 0;
  display: block !important;
}
.about-3 .owl-dots .owl-dot {
  width: 13px;
  height: 13px;
  background: #ccc !important;
  border-radius: 50%;
  margin: 0 3px;
}
.about-3 .owl-dots .owl-dot.active {
  background: #f27120 !important;
}

.about-4 .owl-dots {
  text-align: center;
  padding: 30px 0 0 0;
  display: block !important;
}
.about-4 .owl-dots .owl-dot {
  width: 13px;
  height: 13px;
  background: #ccc !important;
  border-radius: 50%;
  margin: 0 3px;
}
.about-4 .owl-dots .owl-dot.active {
  background: #f27120 !important;
}
.ved p {
  margin: 0 0 15px 0;
  line-height: 25px;
}
.app-1 {
  width: 100%;
  height: auto;
  padding: 50px 0;
  background: #f5f6f9;
}
.app-1 p {
  line-height: 25px;
}
.app-1 h4 {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  margin: 0 0 0px 0;
  line-height: 50px;
  font-family: 'Raleway', sans-serif;
}
.app-1 h5 {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  margin: 0 0 0px 0;
  line-height: 50px;
  font-family: 'Raleway', sans-serif;
  padding: 0 0 0 90px;
}
.app-2 {
  width: 100%;
  height: auto;
  padding: 50px 0;
}
.app-2 .p-2-full {
  max-width: 290px;
  text-align: left;
}
.app-2 .p-2-full h4 {
  color: #000;
}
.app-2 .p-2-full p {
  color: #000;
  font-size: 16px;
}
.app-3 {
  width: 100%;
  height: auto;
  padding: 70px 0 50px;
  background: #fef4de;
}
.app-3 .p-2-full {
  width: 100%;
  max-width: 100%;
  margin: 0px auto;
  text-align: left;
}
.app-3 .p-2-full h4 {
  color: #000;
}
.pro-2 {
  background: #3b3939;
}
.pro-2 .p-1-inner h4 {
  color: #fff;
}
.pro-2 .p-1-inner p {
  color: #fff;
}
.pro-3 {
  background: #ffe9cf;
}
.cr-3 {
  background: #086174;
  padding: 70px 0 70px;
}

.app-2.cr-2 .p-2-full .read-more {
  text-align: center;
  margin: 15px 0 0 0;
}
.app-3.cr-3 .p-2-full {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  min-height: 300px;
}
.cr-3 .p-2-full p {
  color: #000;
  font-size: 15px;
  line-height: 24px;
  padding: 0 12px;
}
.contact-1 {
  width: 100%;
  height: auto;
  padding: 50px 0;
}
.inp {
  width: 100%;
  height: auto;
  margin: 0 0 20px 0;
  border-bottom: 2px solid #000;
  font-family: 'Raleway', sans-serif;
}
.inp input,
select {
  background: #fff;
  width: 100%;
  min-height: 40px;
  border: 0px solid #fff;
  font-size: 16px;
  font-family: 'Raleway', sans-serif;
}
.inp textarea {
  background: #fff;
  width: 100%;
  height: 120px;
  border: 0px solid #fff;
  font-size: 16px;
  font-family: 'Raleway', sans-serif;
}
.inp-btn input {
  background: #f05d31;
  border: 1px solid #f05d31;
  padding: 10px 30px;
  color: #fff;
  font-size: 16px;
  font-family: 'Raleway', sans-serif;
  border-radius: 20px;
  float: right;
  cursor: pointer;
}
.inp-btn input:hover {
  background: #000;
  border: 1px solid #000;
}

.con-left {
  width: 85%;
  height: auto;
  float: left;
}
.con-left h4 {
  font-size: 60px;
  font-weight: 600;
  color: #000;
  margin: 0 0 30px 0;
  line-height: 80px;
  font-family: 'Raleway', sans-serif;
}
.con-left h5 {
  font-size: 30px;
  font-weight: 600;
  color: #f05d31;
  margin: 0 0 0 0;
  line-height: 40px;
  font-family: 'Raleway', sans-serif;
}
.contact-1 P {
  line-height: 25px;
}

.pert_9 {
  width: 100%;
  height: auto;
  /* padding: 60px 0; */
  /* background: url(../img/bg-service.jpg) no-repeat rgb(14 14 14 / 92%); */
  background-size: 100% 100%;
  min-height: 560px;
  background-blend-mode: multiply;
}
.p_9 {
  width: 100%;
  height: 450px;
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 10px;
}
.p_9:hover {
  box-shadow: 0 0 10px #04485a;
  transform: scale(1.2);
  transition: all ease 500ms;
}
.p_9_titl {
  width: 100%;
  height: auto;
  font-size: 20px;
  color: #191919;
  line-height: 22px;
  margin: 24px 0;
}
.p_9_pic img {
  width: 70%;
}
.p_9_titl a {
  color: #191919;
  text-decoration: none;
}
.p_9_titl a:hover {
  color: #fe602a;
}
.p_9_dec ul {
  list-style: none;
}

.p_9_dec ul li::before {
  content: "\2022";
  color: #fe602a;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.p_9_dec ul li:hover {
  color: #fe602a;
}
.p_9_dec ul {
  font-size: 12px;
  color: #191919;
  line-height: 22px;
  text-align: left;
}

.p_4_heading {
  width: 100%;
  text-align: center;
}
.p_4_heading h2 {
  color: #ea6031;
  font-size: 30px;
  margin: 0 0 0 0;
}
.p_4_head h3 {
  color: #050606;
  font-size: 26px;
  font-weight: 300;
  margin: 0 0 0 0;
}
.p_4_head h4 {
  color: #f27120;
  font-size: 26px;
  margin: 0 0 30px 0;
}
/* .p_4 { 
  width: 100%;
  max-width: 400px;
  margin: 0px auto 40px;
}

.p_4 h4 {
  color: #2e4f7d;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 3px 0;
  text-align: center;
}*/
.item {
  text-align: center;
}
.social {
  padding: 0px;
  margin: 10px 0 0 0;
}
.social li {
  list-style: none;
  font-size: 25px;
  margin: 0 15px 5px 0;

  width: 35px;
  height: 35px;
  text-align: center;
  display: inline-block;
}
.social li a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 8px 0 0 0;
}
.social li a:hover {
  color: #a7c639;
  text-decoration: none;
}
.social li:hover {
  color: #a7c639;
}
.links {
  padding: 0px;
  margin: 20px 0 0 0;
}
.links li {
  list-style: none;
  font-size: 14px;
  margin: 0 0 5px 0;
  font-weight: 300;
}
.links li a {
  color: #c1bfbf;
  text-decoration: none;
}
.links li a:hover {
  color: #fcbd4c;
  text-decoration: none;
}
.ft-logo {
  width: 100%;
  height: auto;
}
.last-footer {
  width: 100%;
  height: auto;
  background: #3c3c3c;
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 8px 0;
}
.top .social {
  overflow: hidden;
  margin: 0px;
  width: auto;
  float: right;
}
.top .social li {
  margin: 0 0 0 13px;
}

.expert {
  margin-top: 70px;
}
.expert h3 {
  color: #9dcd1f;
  font-size: 17px;
  font-weight: 500;
  margin-top: 18px;
}
.expert a {
  color: #f57347;
  text-decoration: none;
}
#home ol.flex-control-nav.flex-control-paging {
  display: none;
}

.b_right {
  width: 100%;
  max-width: 450px;
  height: auto;
  margin: 0px 0 0;
  float: right;
  background: rgba(255, 255, 255, 0.5);
  padding: 40px 50px;
}
.heading_text_1 {
  text-align: center;
  font-size: 46px;
  color: #000;
  margin: 0px 0 15px 0;
  font-weight: 500;
  text-transform: uppercase;
}
.c_full {
  width: 100%;
  float: left;
  height: auto;
  margin: 11px 0 0 0;
}
.c_field {
  width: 100%;
  float: left;
  height: auto;
  color: #fff;
  margin: 0 0 0 0px;
  text-align: center;
}

/* CAREER */
.image-row {
  text-align: center;
}
.image-box {
  /* width: 20%; */
  /* padding: 1%; */
  margin: 0.5%;
  /* background: rgb(226, 168, 8); */
  display: inline-block;
  font-size: 0; /* fixes bottom padding */
}
.image-box img {
  max-width: 100%;
}

button.btn.btn-primary {
  background: red;
  color: white;
  /* width: 100%; */
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .colrev{
    flex-direction: column-reverse;
  }
}

/* Hide the mobile banner by default */
.mobile {
  display: none;
}

/* Hide the desktop banner on small screens */
.desktop {
  display: none;
}

/* Show the mobile banner only for screens less than or equal to 768px */
@media (max-width: 768px) {
  .mobile {
      display: block;
  }
}

/* Show the desktop banner only for screens greater than 768px */
@media (min-width: 769px) {
  .desktop {
      display: block;
  }
}