  @charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&family=Red+Hat+Display:wght@400;700&display=swap");
body {
  overflow-x: hidden;
}

.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

h1, h2, h3, h4, h5, h6, p.serif {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 400;
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span, p.serif span {
  font-weight: 700;
}

p {
  font-size: 18px;
  font-family: "DM Sans", sans-serif;
}

a {
  font-size: 18px;
}

h1 {
  font-size: 60px;
  margin-bottom: 20px;
}
@media all and (max-width: 1400px) {
  h1 {
    font-size: 50px;
  }
}
@media all and (max-width: 992px) {
  h1 {
    font-size: 40px;
  }
}
@media all and (max-width: 767px) {
  h1 {
    font-size: 35px;
  }
}

h2 {
  font-size: 40px;
}
@media all and (max-width: 1400px) {
  h2 {
    font-size: 35px;
  }
}
@media all and (max-width: 767px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 25px;
  font-weight: 700;
}
@media all and (max-width: 992px) {
  h4 {
    font-size: 22px;
  }
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

input[type=text],
input,
input[type=search],
input[type=email],
input[type=tel],
input[type=submit],
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

input[type=radio] {
  -webkit-appearance: radio;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  background-color: transparent;
}

.section-padding {
  padding: 5%;
}

.pad-left-right {
  padding: 0 5%;
}

.two-col-sec {
  display: flex;
  width: 100%;
  position: relative;
  justify-content: center;
  align-items: center;
}
.two-col-sec > div {
  display: flex;
  justify-content: center;
  width: 50%;
  height: 100%;
  flex-direction: column;
}
@media all and (max-width: 992px) {
  .two-col-sec > div {
    width: 100%;
  }
}
@media all and (max-width: 992px) {
  .two-col-sec {
    flex-direction: column;
  }
}

.btnWhite {
  font-family: "Red Hat Display", sans-serif;
  color: #ffffff;
  font-weight: 400;
  padding: 10px 0;
  padding-left: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 1s ease 0.1s;
  padding-right: 20px;
  z-index: 1;
}
.btnWhite::before {
  transition: all 1s ease 0.1s;
  content: "";
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 50px;
  position: absolute;
  left: 0;
  z-index: -1;
}
.btnWhite::after {
  content: "";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  left: 15px;
  z-index: 2;
  font-size: 25px;
  color: #000;
}
.btnWhite:hover {
  color: #000;
  text-decoration: none;
}
.btnWhite:hover::before {
  width: 100%;
}

.btnRed {
  font-family: "Red Hat Display", sans-serif;
  color: #000000;
  font-weight: 400;
  padding: 10px 0;
  padding-left: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 1s ease 0.1s;
  padding-right: 20px;
  z-index: 1;
}
.btnRed::before {
  transition: all 1s ease 0.1s;
  content: "";
  width: 50px;
  height: 50px;
  background-color: #ed2324;
  border-radius: 50px;
  position: absolute;
  left: 0;
  z-index: -1;
}
.btnRed::after {
  content: "";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  left: 15px;
  z-index: 2;
  font-size: 25px;
  color: #ffffff;
}
.btnRed:hover {
  color: #ffffff;
  text-decoration: none;
}
.btnRed:hover::before {
  width: 100%;
}

.header {
  position: sticky;
  width: 100%;
  top: 0;
  padding: 20px 5%;
  z-index: 999;
  background: transparent;
  transition: width ease 0.3s;
  background-color: #ed2324;
  display: flex;
  align-items: center;
}
.header .logo-img {
  width: 220px;
  max-width: 100%;
  transition: width ease 0.3s;
}
.header .logo-img.black {
  display: none;
}
@media all and (max-width: 1400px) {
  .header .logo-img {
    width: 200px;
  }
}
@media all and (max-width: 1200px) {
  .header .logo-img {
    width: 160px;
  }
}
.header.innerHeader {
  background: #ffffff;
  position: sticky;
}
.header.innerHeader.darkHeader {
  background: #ffffff;
}
.header.innerHeader .logo-img {
  display: none;
}
.header.innerHeader .logo-img.black {
  display: block;
}
.header.innerHeader nav.nav ul li.menuBtn a::before {
  background-color: #ed2324;
}
.header.innerHeader nav.nav ul li.menuBtn a::after {
  color: #ffffff;
}
.header.innerHeader nav.nav ul li.menuBtn a:hover {
  color: #ffffff;
}
.header.innerHeader nav.nav ul li a {
  color: #000000;
}
.header.innerHeader div#burger span {
  background-color: #000000;
}
.header.darkHeader {
  background: #ed2324;
  border-top: 0;
}
.header.darkHeader .logo-img {
  width: 190px;
}
@media all and (max-width: 1400px) {
  .header.darkHeader .logo-img {
    width: 180px;
  }
}
@media all and (max-width: 1200px) {
  .header.darkHeader .logo-img {
    width: 140px;
  }
}
@media all and (max-width: 992px) {
  .header.darkHeader nav.nav {
    top: 0;
  }
}
.header nav.nav {
  position: absolute;
  right: 5%;
}
.header nav.nav .mobile {
  display: none;
}
.header nav.nav ul {
  padding: 0;
  margin: 0;
}
.header nav.nav ul li {
  list-style: none;
  display: inline-block;
}
.header nav.nav ul li.current-menu-item a {
  font-weight: 700;
}
.header nav.nav ul li.menuBtn {
  margin-left: 20px;
}
.header nav.nav ul li.menuBtn.current-menu-item a {
  background-color: #252326;
  color: #ffffff;
}
.header nav.nav ul li.menuBtn a {
  font-family: "Red Hat Display", sans-serif;
  color: #000000;
  font-weight: 400;
  padding: 11px 0;
  padding-left: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 1s ease 0.1s;
  padding-right: 30px;
  border-radius: 50px;
  z-index: 1;
  background-color: #ffffff;
}
.header nav.nav ul li.menuBtn a::before {
  transition: all 1s ease 0.1s;
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: #252326;
  position: absolute;
  left: 0;
  z-index: -1;
}
.header nav.nav ul li.menuBtn a::after {
  content: "";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  left: 15px;
  z-index: 2;
  font-size: 25px;
  color: #ffffff;
}
.header nav.nav ul li.menuBtn a:hover {
  color: #ed2324;
  text-decoration: none;
}
.header nav.nav ul li.menuBtn a:hover::before {
  width: 100%;
}
.header nav.nav ul li a {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 400;
  padding: 10px 20px;
  display: block;
}
.header nav.nav ul li a:hover {
  color: #000000;
  text-decoration: none;
}
@media all and (max-width: 1500px) {
  .header nav.nav ul li a {
    padding: 10px;
    font-size: 14px;
  }
}
@media all and (max-width: 1300px) {
  .header nav.nav ul li a {
    padding: 10px 5px;
    font-size: 12px;
    letter-spacing: 1px;
  }
}
@media all and (max-width: 992px) {
  .header nav.nav ul li a {
    font-size: 18px;
    padding: 10px 5px;
    color: #ed2324;
  }
}
@media all and (max-width: 992px) {
  .header nav.nav ul li {
    display: block;
    text-align: center;
  }
  .header nav.nav ul li.menuBtn {
    margin-left: 0;
    margin-top: 20px;
  }
}
@media all and (max-width: 992px) {
  .header nav.nav ul {
    width: 100%;
  }
}
@media all and (max-width: 1600px) {
  .header nav.nav {
    right: 2%;
  }
}
@media all and (max-width: 992px) {
  .header nav.nav {
    background-color: #ffffff;
    padding: 5%;
    width: 90%;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    transform: translateX(120%);
    opacity: 0;
    transition: all 1s ease 0.3s;
  }
  .header nav.nav.show {
    transform: translateX(0);
    opacity: 1;
  }
  .header nav.nav .mobile {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header nav.nav .mobile img {
    width: 100%;
    max-width: 200px;
  }
  .header nav.nav ul {
    margin-top: 50px;
  }
}
.header div#burger {
  height: 40px;
  width: 30px;
  display: none;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  right: 5%;
  z-index: 99999;
  cursor: pointer;
  top: 30px;
}
.header div#burger span {
  height: 3px;
  width: 100%;
  background-color: #ffffff;
  display: block;
  margin-bottom: 7px;
  transition: all 1s ease 0.1s;
  z-index: 99999;
}
.header div#burger span:last-child {
  margin-bottom: 0;
}
.header div#burger.open span {
  opacity: 0;
  visibility: hidden;
  position: relative;
  background-color: #ed2324;
}
.header div#burger.open span:first-child {
  top: 10px;
  opacity: 1;
  visibility: visible;
  transform: rotate(45deg);
}
.header div#burger.open span:last-child {
  margin-bottom: 0;
  opacity: 1;
  visibility: visible;
  transform: rotate(315deg);
  top: -10px;
}
@media all and (max-width: 992px) {
  .header div#burger {
    display: flex;
  }
}
@media all and (max-width: 1300px) {
  .header {
    padding: 10px 3%;
  }
}
@media all and (max-width: 992px) {
  .header {
    padding: 10px 5%;
  }
}

.footer {
  background-color: #252326;
  position: relative;
}
.footer .footerIcon {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 800px;
  width: 100%;
}
.footer .mainFooter {
  padding-bottom: 50px;
}
.footer h2 {
  color: #ffffff;
  display: inline-block;
  padding: 10px 0;
  padding-right: 20px;
  margin-bottom: 0;
  position: relative;
  font-family: "DM Sans", sans-serif;
}
.footer .inner {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 41% 41%;
  justify-content: space-between;
}
.footer .inner .leftBox p {
  color: #ffffff;
  font-size: 28px;
}
.footer .inner .leftBox p span {
  color: #ed2324;
}
.footer .inner .leftBox p a {
  font-size: inherit;
  color: #ed2324;
  font-weight: 700;
}
.footer .inner .leftBox .badgeImgs {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-gap: 10px;
  margin: 30px 0;
  text-align: center;
  justify-content: flex-start;
}
.footer .inner .leftBox .badgeImgs img {
  margin: 0 auto;
}
@media all and (max-width: 500px) {
  .footer .inner .leftBox .badgeImgs {
    grid-template-columns: 100%;
  }
}
.footer .inner .rightBox h4 {
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer .inner .rightBox .inner {
  margin-top: 0;
}
.footer .inner .rightBox .box .head {
  color: #ed2324;
  font-size: 20px;
}
.footer .inner .rightBox .box .address p {
  font-family: "Red Hat Display", sans-serif;
  color: #ffffff;
  font-weight: 400;
}
.footer .copyRight {
  padding-bottom: 30px;
  padding-top: 0;
}
.footer .copyRight .inner {
  margin-top: 0;
}
.footer .copyRight .inner p {
  color: #ffffff;
  margin-bottom: 0;
  opacity: 0.3;
}
.footer .copyRight .inner .right p {
  text-align: right;
}
.footer .copyRight .inner .right p a {
  color: inherit;
}
@media all and (max-width: 992px) {
  .footer .inner {
    grid-template-columns: 100%;
  }
  .footer .inner .leftBox p {
    font-size: 25px;
  }
  .footer .inner .right p {
    text-align: left !important;
  }
}

.innerBanner {
  position: relative;
  padding-top: 0px;
  padding-bottom: 50px;
}
.innerBanner .main-wrap {
  position: relative;
}
.innerBanner .two-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.innerBanner .two-col .textBox {
  width: 65%;
}
.innerBanner .two-col .textBox h1 span {
  color: #ed2324;
}
.innerBanner .two-col .imgBox {
  width: 25%;
}
.innerBanner .two-col .imgBox .initial {
  position: absolute;
  z-index: 9;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  transition: all 1s ease 0.1s;
  background-color: #ffffff;
}
.innerBanner .two-col .imgBox .initial.change {
  background-color: transparent;
  z-index: -1;
}
.innerBanner .two-col .imgBox .initial.change img {
  height: 100%;
  width: auto;
  right: 0;
  max-width: 500px;
  left: calc(100% - 500px);
  bottom: 0;
}
.innerBanner .two-col .imgBox .initial.change img.initialImg {
  opacity: 0;
}
.innerBanner .two-col .imgBox .initial.change img.finalImg {
  opacity: 1;
}
.innerBanner .two-col .imgBox .initial img {
  position: absolute;
  height: 50%;
  width: auto;
  max-width: 500px;
  object-fit: contain;
  margin: 0 auto;
  transition: all 1s ease 0.1s;
  right: 0;
  bottom: 30%;
  left: 0;
}
.innerBanner .two-col .imgBox .initial img.initialImg {
  opacity: 1;
}
.innerBanner .two-col .imgBox .initial img.finalImg {
  opacity: 0;
}
@media all and (max-width: 1280px) {
  .innerBanner .two-col .imgBox .initial.change img {
    max-width: 350px;
    left: calc(100% - 350px);
  }
}
@media all and (max-width: 992px) {
  .innerBanner .two-col .imgBox .initial.change img {
    max-width: 300px;
    left: calc(100% - 300px);
  }
}
@media all and (max-width: 850px) {
  .innerBanner .two-col .imgBox .initial.change img {
    max-width: 280px;
    left: calc(100% - 280px);
  }
}
@media all and (max-width: 767px) {
  .innerBanner .two-col .imgBox .initial.change img {
    height: auto;
    left: 0;
    right: 0;
    bottom: unset;
    top: 0;
    width: 100%;
  }
  .innerBanner .two-col .imgBox .initial img {
    height: auto;
    width: 100%;
    bottom: unset;
    top: 10%;
  }
}
.innerBanner .two-col .imgBox .placeholder {
  opacity: 0;
  width: 100%;
  position: unset;
}
@media all and (max-width: 767px) {
  .innerBanner .two-col {
    flex-direction: column-reverse;
  }
  .innerBanner .two-col .textBox {
    width: 100%;
    margin-top: 30px;
  }
  .innerBanner .two-col .imgBox {
    width: 100%;
  }
  .innerBanner .two-col .imgBox .placeholder {
    max-width: 300px;
  }
}

.ctaSec {
  position: relative;
}
.ctaSec::before {
  position: absolute;
  background-color: #252326;
  bottom: 0;
  left: 0;
  height: 50%;
  content: "";
  width: 100%;
  z-index: -1;
}
.ctaSec .innerCta {
  background-color: #ed2324;
  position: relative;
}
.ctaSec .innerCta .textBox {
  width: 60%;
}
.ctaSec .innerCta .textBox p {
  color: #ffffff;
  font-size: 45px;
}
.ctaSec .innerCta .textBox .btnBox {
  text-align: right;
}
.ctaSec .innerCta .textBox .btnBox .btnWhite::after {
  color: #ed2324;
}
.ctaSec .innerCta img {
  position: absolute;
  height: 100%;
  right: 0;
  top: 0;
}
@media all and (max-width: 1280px) {
  .ctaSec .innerCta .textBox p {
    font-size: 40px;
  }
}
@media all and (max-width: 992px) {
  .ctaSec .innerCta .textBox p {
    font-size: 30px;
  }
}
@media all and (max-width: 840px) {
  .ctaSec .innerCta .textBox p {
    font-size: 22px;
  }
}
@media all and (max-width: 767px) {
  .ctaSec .innerCta .textBox {
    width: 100%;
    z-index: 1;
  }
  .ctaSec .innerCta img {
    opacity: 0.2;
    z-index: 0;
  }
}

/*
  SASS file for Wrappers Only
*/
.main-wrap {
  max-width: 1600px;
  margin: 0 auto;
}

.med-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

.sm-wrap {
  max-width: 950px;
  margin: 0 auto;
  padding: 50px 20px;
}

.xs-wrap {
  max-width: 750px;
  margin: 0 auto;
  padding: 50px 20px;
}

.footer-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px;
}

/*
    SASS File for Gravity Forms CSS Override
*/
.gform_wrapper .gform_body .gform_fields .gfield input, .gform_wrapper .gform_body .gform_fields .gfield textarea, .gform_wrapper .gform_body .gform_fields .gfield select {
  border: 1px solid gray;
  font-size: 17px !important;
  padding: 10px !important;
}
.gform_wrapper .gform_body .gform_fields .gfield input:focus, .gform_wrapper .gform_body .gform_fields .gfield textarea:focus, .gform_wrapper .gform_body .gform_fields .gfield select:focus {
  outline: none;
}
.gform_wrapper .gform_footer {
  text-align: center;
}
.gform_wrapper .gform_footer .gform_button {
  padding: 10px 40px !important;
}

section.thank-you {
  text-align: center;
}
section.thank-you h1 {
  margin-bottom: 30px;
}
section.thank-you h5 {
  color: black;
  margin-bottom: 30px;
}

.select2-results__options, .select2-selection--single .select2-selection__rendered {
  font-size: 17px;
}

.select2-selection--single .select2-selection__rendered {
  padding: 10px !important;
}

.select2 {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  height: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 0 !important;
  right: 15px !important;
  height: 100% !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: red;
  color: #fff;
}

.select2-container--default .select2-selection--single {
  border-radius: 0 !important;
}

.select2-selection .select2-selection__rendered {
  color: #7a7a7a !important;
}

.slide-in-bottom {
  -webkit-animation: slide-in-bottom cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
  animation: slide-in-bottom cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

.fade-in {
  -webkit-animation: fade-in 2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.3s both;
  animation: fade-in 2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.3s both;
}

.fade-in-bottom {
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  visibility: visible;
}

.fade-in-right {
  -webkit-animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  visibility: visible;
}

.fade-in-left {
  -webkit-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  visibility: visible;
}

.fade-in-top {
  -webkit-animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  visibility: visible;
}

.slide-in-top {
  -webkit-animation: slide-in-top 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-top 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.animate-half {
  animation-delay: 0.5s;
}

.animate-first {
  animation-delay: 1s;
}

.animate-first-half {
  animation-delay: 1.5s;
}

.animate-second {
  animation-delay: 2s;
}

.animate-second-half {
  animation-delay: 2.2s;
}

.animate-second-half1 {
  animation-delay: 2.3s;
}

.animate-second-half2 {
  animation-delay: 2.4s;
}

.animate-second-half3 {
  animation-delay: 2.5s;
}

.animate-third {
  animation-delay: 3s;
}

.animate-third-half {
  animation-delay: 3.5s;
}

.animate-fourth {
  animation-delay: 4s;
}

.animate-fourth-half {
  animation-delay: 4.5s;
}

.animate-fifth {
  animation-delay: 5s;
}

.animate-fifth-half {
  animation-delay: 5.5s;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-5-13 11:49:36
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation slide-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-in-right
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-in-left
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-in-top
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation slide-in-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
/*
    SASS File for Banners Only
*/
section.banner-general.banner-container {
  height: 450px;
  transition: 0.3s;
}
section.banner-general.banner-container .overlay {
  background-color: rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  width: 100%;
  height: 100%;
}
section.banner-general.banner-container .overlay .text-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 35%;
}
section.banner-general.banner-container .overlay .text-container .title {
  color: white;
}

.banner51Թ.thankyou .slide .two-col-sec {
  height: 700px;
}
.banner51Թ .slide {
  background-color: #ed2324;
  position: relative;
}
.banner51Թ .slide .two-col-sec .text {
  width: 60%;
  z-index: 1;
  padding: 0px 5% 40px;
}
.banner51Թ .slide .two-col-sec .text h1 {
  color: #ffffff;
  margin-bottom: 0px;
}
.banner51Թ .slide .two-col-sec .text h1 span {
  color: #000000;
}
.banner51Թ .slide .two-col-sec .text .textBox {
  padding-right: 80px;
}
.banner51Թ .slide .two-col-sec .text .textBox p {
  color: #ffffff;
  font-size: 20px;
}
.banner51Թ .slide .two-col-sec .text .badge {
  text-align: left;
  margin: 10px 0;
}
.banner51Թ .slide .two-col-sec .text .badgeImgs {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-gap: 10px;
  margin: 30px 0 0;
  align-items: center;
  max-width: 600px;
  width: 100%;
  justify-content: flex-start;
  text-align: center;
}
.banner51Թ .slide .two-col-sec .text .badgeImgs img {
  margin: 0 auto;
}
@media all and (max-width: 400px) {
  .banner51Թ .slide .two-col-sec .text .badgeImgs {
    grid-template-columns: 100%;
  }
}
.banner51Թ .slide .two-col-sec .text .btnBox {
  margin-top: 30px;
}
.banner51Թ .slide .two-col-sec .imgBox {
  width: 40%;
}
.banner51Թ .slide .two-col-sec .imgBox .initial {
  position: absolute;
  z-index: 99;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  transition: all 1s ease 0.1s;
  background-color: #ed2324;
}
.banner51Թ .slide .two-col-sec .imgBox .initial.change {
  background-color: transparent;
  z-index: 0;
}
.banner51Թ .slide .two-col-sec .imgBox .initial.change img {
  width: 470px;
  max-width: 100%;
  right: 0;
  left: calc(100% - 470px);
  bottom: 0;
}
.banner51Թ .slide .two-col-sec .imgBox .initial.change img.initialImg {
  opacity: 0;
}
.banner51Թ .slide .two-col-sec .imgBox .initial.change img.finalImg {
  opacity: 1;
}
.banner51Թ .slide .two-col-sec .imgBox .initial img {
  position: absolute;
  width: 400px;
  max-width: 100%;
  margin: 0 auto;
  transition: all 1s ease 0.1s;
  right: 0;
  bottom: 20%;
  left: 0;
}
.banner51Թ .slide .two-col-sec .imgBox .initial img.initialImg {
  opacity: 1;
}
.banner51Թ .slide .two-col-sec .imgBox .initial img.finalImg {
  opacity: 0;
}
@media all and (max-width: 1200px) {
  .banner51Թ .slide .two-col-sec .imgBox .initial.change img {
    width: 500px;
    left: calc(100% - 500px);
  }
  .banner51Թ .slide .two-col-sec .imgBox .initial img {
    width: 300px;
  }
}
@media all and (max-width: 992px) {
  .banner51Թ .slide .two-col-sec .text {
    width: 100%;
    z-index: 2;
  }
  .banner51Թ .slide .two-col-sec .imgBox .initial.change {
    z-index: 1;
    background-color: transparent;
    opacity: 0.4;
  }
}
@media all and (max-width: 500px) {
  .banner51Թ .slide .two-col-sec .imgBox .initial.change img {
    width: 300px;
    left: calc(100% - 300px);
  }
  .banner51Թ .slide .two-col-sec .imgBox .initial img {
    width: 320px;
  }
}

.aboutSec .topsec {
  display: grid;
  grid-template-columns: 60% 35%;
  align-items: center;
  justify-content: space-between;
}
.aboutSec .topsec .head p {
  font-family: "Red Hat Display", sans-serif;
  font-size: 37px;
}
.aboutSec .topsec .head p span {
  color: #ed2324;
}
.aboutSec .topsec .badge {
  display: flex;
  justify-content: flex-end;
}
.aboutSec .topsec .badge img {
  width: 200px;
}
.aboutSec .btmSec {
  display: grid;
  grid-template-columns: 35% 60%;
  align-content: flex-start;
  justify-content: space-between;
  margin-top: 30px;
}
@media all and (max-width: 992px) {
  .aboutSec .topsec {
    grid-template-columns: 100%;
  }
  .aboutSec .topsec .head p {
    font-size: 30px;
  }
  .aboutSec .topsec .badge {
    justify-content: center;
  }
  .aboutSec .btmSec {
    grid-template-columns: 100%;
    justify-content: center;
  }
  .aboutSec .btmSec .btnBox {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media all and (max-width: 767px) {
  .aboutSec .topsec .head p {
    font-size: 25px;
  }
  .aboutSec .topsec .badge {
    justify-content: center;
  }
}

.our_philosophy {
  position: relative;
  padding-top: 0;
}
.our_philosophy::before {
  width: 35%;
  content: "";
  position: absolute;
  background-color: #ed2324;
  bottom: 0%;
  left: 0;
  height: 90%;
}
.our_philosophy::after {
  width: 65%;
  content: "";
  position: absolute;
  background-color: #252326;
  bottom: 0%;
  right: 0;
  height: 90%;
  z-index: -1;
}
.our_philosophy .sectionBox {
  display: grid;
  grid-template-columns: 60% 40%;
  justify-content: space-between;
  align-items: flex-end;
}
.our_philosophy .sectionBox .imgBox {
  position: relative;
}
.our_philosophy .sectionBox .imgBox .logo {
  position: absolute;
  max-width: 58.5%;
  width: 100%;
  bottom: 0;
  right: 0;
}
.our_philosophy .sectionBox .textCopy {
  padding: 0px 80px;
  z-index: 1;
}
.our_philosophy .sectionBox .textCopy h4 {
  color: #ed2324;
}
.our_philosophy .sectionBox .textCopy p {
  color: #ffffff;
}
@media all and (max-width: 1280px) {
  .our_philosophy .sectionBox .textCopy {
    padding: 0 0 0 50px;
  }
}
@media all and (max-width: 992px) {
  .our_philosophy .sectionBox {
    grid-template-columns: 100%;
  }
  .our_philosophy .sectionBox .textCopy {
    padding: 0;
    margin-top: 30px;
  }
  .our_philosophy::before {
    width: 100%;
    content: "";
    position: absolute;
    background-color: #ed2324;
    bottom: unset;
    top: 0;
    left: 0;
    height: 40%;
  }
  .our_philosophy::after {
    width: 100%;
    content: "";
    position: absolute;
    background-color: #252326;
    bottom: 0%;
    right: 0;
    height: 60%;
    z-index: -1;
  }
}
@media all and (max-width: 380px) {
  .our_philosophy::before {
    height: 30%;
  }
  .our_philosophy::after {
    height: 70%;
  }
}

.valuesSec {
  padding: 5% 0;
}
.valuesSec h4 {
  color: #ed2324;
  margin-bottom: 20px;
}
.valuesSec .tickerwrapper, .valuesSec .tickerwrapper1 {
  position: relative;
  left: 0%;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}
.valuesSec .tickerwrapper ul.list, .valuesSec .tickerwrapper1 ul.list {
  position: relative;
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
}
.valuesSec .tickerwrapper ul.list.cloned, .valuesSec .tickerwrapper1 ul.list.cloned {
  position: absolute;
  top: 0px;
  left: 0px;
}
.valuesSec .tickerwrapper ul.list li, .valuesSec .tickerwrapper1 ul.list li {
  float: left;
}
.valuesSec .tickerwrapper ul.list li h1, .valuesSec .tickerwrapper1 ul.list li h1 {
  padding: 0 20px;
  font-size: 70px;
  position: relative;
}
.valuesSec .tickerwrapper ul.list li h1 span, .valuesSec .tickerwrapper1 ul.list li h1 span {
  color: #ed2324;
  font-size: inherit;
  font-weight: inherit;
}
@media all and (max-width: 992px) {
  .valuesSec .tickerwrapper ul.list li h1, .valuesSec .tickerwrapper1 ul.list li h1 {
    font-size: 60px;
  }
}
@media all and (max-width: 767px) {
  .valuesSec .tickerwrapper ul.list li h1, .valuesSec .tickerwrapper1 ul.list li h1 {
    font-size: 40px;
  }
}

.servicesSec {
  background-color: #ed2324;
}
.servicesSec .two-col {
  display: grid;
  grid-template-columns: 50% 50%;
}
.servicesSec .two-col .textBox {
  padding: 80px;
}
.servicesSec .two-col .textBox h4 {
  font-weight: 400;
}
.servicesSec .two-col .textBox .inner {
  position: sticky;
  top: 200px;
}
.servicesSec .two-col .textBox .inner .twoBox {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: flex-start;
  margin-bottom: 30px;
}
.servicesSec .two-col .textBox .inner .twoBox .name {
  text-transform: uppercase;
}
.servicesSec .two-col .textBox .inner .twoBox .name h4 {
  color: #ffffff;
  font-weight: 700;
}
.servicesSec .two-col .textBox .inner .twoBox .services h4 {
  padding-left: 40px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.servicesSec .two-col .textBox .inner .twoBox .services h4::before {
  content: "";
  position: absolute;
  left: 0;
  font-family: "Font Awesome 5 Pro";
  color: #ffffff;
  opacity: 0;
}
.servicesSec .two-col .textBox .inner .twoBox .services h4.active {
  color: #ffffff;
  font-weight: 700;
}
.servicesSec .two-col .textBox .inner .twoBox .services h4.active::before {
  opacity: 1;
}
@media all and (max-width: 992px) {
  .servicesSec .two-col .textBox .inner .twoBox .services {
    display: none;
  }
}
.servicesSec .two-col .textBox .inner .det {
  opacity: 0;
  display: none;
  transition: all 0.5s ease 0s;
  position: absolute;
  min-height: 50%;
}
.servicesSec .two-col .textBox .inner .det h1 {
  color: #ffffff;
}
.servicesSec .two-col .textBox .inner .det p {
  color: #ffffff;
}
.servicesSec .two-col .textBox .inner .det .btnWhite {
  margin-top: 30px;
}
.servicesSec .two-col .textBox .inner .det .btnWhite::after {
  color: #ed2324;
}
.servicesSec .two-col .textBox .inner .det.active {
  display: block;
  opacity: 1;
  position: absolute;
}
@media all and (max-width: 992px) {
  .servicesSec .two-col .textBox .inner .det {
    transition: all 0s ease 0s;
  }
  .servicesSec .two-col .textBox .inner .det.active {
    opacity: 1;
    position: relative;
  }
}
.servicesSec .two-col .imgBox img {
  width: 100%;
  position: sticky;
  top: 150px;
}
@media all and (max-width: 992px) {
  .servicesSec .two-col {
    grid-template-columns: 100%;
  }
  .servicesSec .two-col .textBox {
    position: sticky;
    top: 150px;
    background-color: rgba(237, 35, 36, 0.7);
    z-index: 99;
    padding: 40px;
  }
}

.ourMission {
  position: relative;
}
.ourMission::before {
  position: absolute;
  width: 100%;
  height: 80%;
  background-color: #ed2324;
  bottom: 0;
  left: 0;
  content: "";
}
.ourMission .two-col {
  display: grid;
  position: relative;
  grid-template-columns: 50% 50%;
}
.ourMission .two-col .textBox {
  background-color: #252326;
  padding: 100px;
  display: flex;
  align-items: flex-start;
  position: relative;
  flex-direction: column;
  justify-content: center;
}
.ourMission .two-col .textBox .logo {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 400px;
  width: 100%;
}
.ourMission .two-col .textBox .serif {
  color: #ed2324;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 25px;
}
.ourMission .two-col .textBox p {
  color: #ffffff;
  font-size: 35px;
}
@media all and (max-width: 1350px) {
  .ourMission .two-col .textBox {
    padding: 70px;
  }
  .ourMission .two-col .textBox p {
    font-size: 30px;
  }
  .ourMission .two-col .textBox .logo {
    max-width: 300px;
  }
}
@media all and (max-width: 1280px) {
  .ourMission .two-col .textBox {
    padding: 50px;
  }
  .ourMission .two-col .textBox p {
    font-size: 25px;
  }
  .ourMission .two-col .textBox .logo {
    max-width: 250px;
  }
}
@media all and (max-width: 992px) {
  .ourMission .two-col {
    grid-template-columns: 100%;
  }
  .ourMission .two-col .textBox {
    padding: 20px;
    padding-bottom: 100px;
  }
  .ourMission .two-col .textBox p {
    font-size: 20px;
  }
  .ourMission .two-col .textBox .logo {
    max-width: 250px;
  }
}
@media all and (max-width: 767px) {
  .ourMission .two-col .textBox .logo {
    max-width: 200px;
  }
}

.ourPhilosophy {
  position: relative;
  padding-bottom: 0;
}
.ourPhilosophy .two-col-sec {
  align-items: flex-start;
}
.ourPhilosophy .textWrap {
  padding: 0 75px;
}
.ourPhilosophy .textWrap h3 span {
  color: #ed2324;
  font-weight: 300;
}
.ourPhilosophy .imgWrap {
  padding: 0 80px;
  position: relative;
  display: flex;
  align-items: center;
}
.ourPhilosophy .imgWrap .badgeimg {
  position: absolute;
  width: 170px;
  right: 0;
}
.ourPhilosophy .imgBox {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 30px;
  justify-content: space-between;
  left: 0;
  bottom: 0;
  width: 70%;
  margin-top: 30px;
}
@media all and (max-width: 1280px) {
  .ourPhilosophy .textWrap {
    padding: 0 50px;
  }
  .ourPhilosophy .imgWrap {
    padding: 0 50px;
  }
}
@media all and (max-width: 992px) {
  .ourPhilosophy .two-col-sec {
    flex-direction: column-reverse;
  }
  .ourPhilosophy .textWrap {
    padding: 0px;
  }
  .ourPhilosophy .imgWrap {
    padding: 0px;
    padding-bottom: 100px;
  }
  .ourPhilosophy .imgWrap .badgeimg {
    width: 200px;
    left: 0;
    margin: 0 auto;
    bottom: 0;
  }
  .ourPhilosophy .imgBox {
    position: relative;
    padding: 0;
    width: 100%;
    margin-top: 30px;
  }
}
@media all and (max-width: 500px) {
  .ourPhilosophy .imgBox {
    grid-template-columns: 100%;
    row-gap: 20px;
  }
}

.serviceSec {
  overflow: hidden;
  padding-top: 0;
}
.serviceSec .services {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 30px;
  flex-wrap: wrap;
}
.serviceSec .services .service {
  width: 49%;
}
.serviceSec .services .service .imgbox img {
  width: 100%;
  margin-bottom: 30px;
}
.serviceSec .services .service .textBox h2 {
  color: #ed2324;
}
.serviceSec .services .service:first-child {
  width: 100%;
  display: grid;
  grid-template-columns: 49% 49%;
  padding: 5% 0;
  margin-bottom: 5%;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.serviceSec .services .service:first-child .imgbox::before {
  position: absolute;
  content: "";
  background-color: #ed2324;
  top: 0;
  left: -10%;
  height: 100%;
  width: 30%;
  z-index: -1;
}
.serviceSec .services .service:first-child .imgbox img {
  margin-bottom: 0;
}
.serviceSec .services .service:first-child .textBox {
  padding: 50px;
}
.serviceSec .services .service:first-child .textBox .logoBa {
  position: absolute;
  width: 150px;
  right: 5%;
  top: 5%;
}
@media all and (max-width: 992px) {
  .serviceSec .services .service {
    width: 100%;
  }
  .serviceSec .services .service:first-child {
    grid-template-columns: 100%;
    margin-bottom: 0;
    padding: 0;
  }
  .serviceSec .services .service:first-child .imgbox {
    position: relative;
    padding: 30px 0;
    margin-bottom: 20px;
  }
  .serviceSec .services .service:first-child .imgbox::before {
    left: -5%;
    width: 50%;
  }
  .serviceSec .services .service:first-child .textBox {
    padding: 0;
  }
  .serviceSec .services .service:first-child .textBox .logoBa {
    right: 0;
    top: 0;
    width: 120px;
  }
}

.resultsSec .innerSec {
  border-top: 2px solid #ed2324;
  border-bottom: 2px solid #ed2324;
}
.resultsSec .innerSec h3 {
  color: #ed2324;
  text-transform: uppercase;
  font-weight: 700;
}
.resultsSec .innerSec .imgBack {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.resultsSec .innerSec .imgBack img {
  width: 300px;
  margin: 0 auto;
  z-index: -1;
  opacity: 0.2;
  position: absolute;
}

.valSec {
  position: relative;
  padding-top: 0;
}
.valSec::before {
  position: absolute;
  content: "";
  background-color: #ed2324;
  width: 100%;
  height: 90%;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.valSec .imgSec {
  display: grid;
  grid-template-columns: 32% 32% 32%;
  justify-content: space-between;
}
@media all and (max-width: 992px) {
  .valSec .imgSec {
    grid-template-columns: 100%;
    row-gap: 20px;
  }
}

.valuesSec.workSec {
  background-color: #ed2324;
  padding: 50px 0;
}
.valuesSec.workSec .tickerwrapper .list li {
  margin: 0 30px;
}
.valuesSec.workSec .tickerwrapper .list li:nth-child(2n+1) h1 {
  color: #ffffff;
}
.valuesSec.workSec .tickerwrapper .list.cloned li h1 {
  color: #000;
}
.valuesSec.workSec .tickerwrapper .list.cloned li:nth-child(2n) h1 {
  color: #ffffff;
}

.greatSec h2 {
  margin-bottom: 30px;
}
.greatSec h2 span {
  color: #ed2324;
  font-weight: 300;
}
.greatSec p {
  font-size: 20px;
  line-height: 1.7;
}

.testimonialS {
  overflow: hidden;
}
.testimonialS .t {
  position: relative;
}
.testimonialS .t .arrows {
  top: 0;
  right: 0;
  position: absolute;
  display: flex;
}
.testimonialS .t .arrows > div {
  width: 50px;
  margin: 0 5px;
  height: 50px;
}
.testimonialS .t .arrows > div:first-child {
  transform: rotate(180deg);
}
.testimonialS .t .arrows > div img {
  width: 100%;
  cursor: pointer;
}
@media all and (max-width: 600px) {
  .testimonialS .t .arrows {
    position: relative;
    margin-bottom: 20px;
  }
}
.testimonialS .t h2 {
  margin-bottom: 50px;
}
.testimonialS .t h2 span {
  color: #ed2324;
  font-weight: 300;
}
@media all and (max-width: 600px) {
  .testimonialS .t h2 {
    margin-bottom: 20px;
  }
}
.testimonialS .testimonials {
  width: 130%;
}
.testimonialS .testimonials .review {
  padding: 0 60px;
  margin-right: 30px;
  position: relative;
}
.testimonialS .testimonials .review img {
  position: absolute;
  left: 0px;
}
.testimonialS .testimonials .review .name {
  font-weight: 800;
}
@media all and (max-width: 767px) {
  .testimonialS .testimonials {
    width: 100%;
  }
  .testimonialS .testimonials .review {
    padding-right: 0;
  }
}
@media all and (max-width: 600px) {
  .testimonialS .testimonials .review {
    padding: 0;
  }
  .testimonialS .testimonials .review img {
    position: relative;
  }
}

.formSec {
  margin-bottom: 5%;
  position: relative;
}
.formSec::before {
  background-color: #ed2324;
  position: absolute;
  height: 100%;
  z-index: -1;
  content: "";
  width: 30%;
  top: 0;
  left: 0;
}
.formSec .imgSec {
  padding-right: 5%;
}
.formSec .formBox {
  padding-right: 0;
}
.formSec .formBox h2 {
  margin-bottom: 30px;
}
.formSec .formBox h2 span {
  color: #ed2324;
  font-weight: 300;
}
.formSec .formBox .gform_body .gform_fields .gfield .gfield_label {
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}
.formSec .formBox .gform_body .gform_fields .gfield select {
  font-family: "DM Sans", sans-serif;
  border: none;
  border-bottom: 1px solid #000000;
  padding: 10px 0 !important;
}
.formSec .formBox .gform_body .gform_fields .gfield input {
  font-family: "DM Sans", sans-serif;
  border: none;
  border-bottom: 1px solid #000000;
  padding: 10px 0 !important;
}
.formSec .formBox .gform_body .gform_fields .gfield input::placeholder {
  color: #000000;
  font-family: "DM Sans", sans-serif;
  text-transform: capitalize;
}
.formSec .formBox .gform_body .gform_fields .gfield .gform_drop_area {
  border: 1px solid #000000;
  border-radius: 0;
  background-color: transparent;
}
.formSec .formBox .gform_body .gform_fields .gfield .gform_button_select_files {
  font-size: 18px;
  border-radius: 20px;
  border: 1px solid #ed2324;
  padding: 5px 20px;
  background-color: transparent;
  font-family: "Red Hat Display", sans-serif;
  color: #000000;
}
.formSec .formBox .gform_footer {
  font-family: "Red Hat Display", sans-serif;
  color: #000000;
  font-weight: 400;
  margin-top: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 1s ease 0.1s;
  z-index: 1;
  width: 180px;
}
.formSec .formBox .gform_footer::before {
  transition: all 1s ease 0.1s;
  content: "";
  width: 50px;
  height: 50px;
  background-color: #ed2324;
  border-radius: 50px;
  position: absolute;
  left: 0;
  z-index: -1;
}
.formSec .formBox .gform_footer::after {
  content: "";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  left: 15px;
  z-index: 2;
  font-size: 25px;
  color: #ffffff;
}
.formSec .formBox .gform_footer:hover {
  text-decoration: none;
}
.formSec .formBox .gform_footer:hover::before {
  width: 100%;
}
.formSec .formBox .gform_footer input {
  background-color: transparent;
  font-family: "Red Hat Display", sans-serif;
  margin-bottom: 0 !important;
  border: none;
  font-size: 18px;
  padding: 10px 0;
  padding-left: 60px;
  padding-right: 20px;
}
@media all and (max-width: 992px) {
  .formSec::before {
    display: none;
  }
  .formSec .imgSec {
    padding-right: 0%;
  }
  .formSec .formBox {
    padding: 0;
    margin-top: 30px;
  }
}

.ourTeam {
  padding-top: 0;
  margin-bottom: 5%;
}
.ourTeam .team {
  display: grid;
  grid-template-columns: 24% 24% 24% 24%;
  justify-content: space-between;
  margin-top: 30px;
}
.ourTeam .team .teamMember .imgBox {
  width: 100%;
  height: 400px;
  background-color: #252326;
  margin-bottom: 20px;
}
.ourTeam .team .teamMember .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ourTeam .team .teamMember p {
  margin-bottom: 0;
}
.ourTeam .team .teamMember p.name {
  color: #ed2324;
  font-size: 25px;
  font-weight: 800;
}
.ourTeam .team .teamMember p.job {
  margin-bottom: 20px;
}
@media all and (max-width: 1280px) {
  .ourTeam .team {
    grid-template-columns: 32% 32% 32%;
    row-gap: 30px;
  }
}
@media all and (max-width: 992px) {
  .ourTeam .team {
    grid-template-columns: 49% 49%;
  }
}
@media all and (max-width: 600px) {
  .ourTeam .team {
    grid-template-columns: 100%;
  }
}

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