/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'proxima-nova', Georgia, sans-serif;
  color: #575757;
}

a {
  color: #FF0202;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

button,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "IBM Plex Sans", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-top-color: #FF0202;
  border-bottom-color: #FF0202;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 100px;
  z-index: 996;
  background: #FF0202;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 1.4;
}

.back-to-top:hover {
  background: #E60202;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(255, 255, 255, 0.9);
}

#header .logo img {
  max-height: 56px;
}

@media (max-width: 700px) {
  #header .logo img {
    max-height: 30px;
    margin-top: 13px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  font-family: "IBM Plex Sans", sans-serif;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 20px;
  line-height: 1.4;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #FF0202;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #FF0202;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 1.4;
  transition: 0.5s;
  position: fixed;
  overflow: hidden;
  top: 20px;
  right: 20px;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
  z-index: 10;
  font-size: 28px;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(255, 2, 2, 0.8);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #000;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #FF0202;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
#main {
  margin-top: 70px;
  border-top: 1px solid #eee;
}

section {
  padding-top: 60px;
  overflow: hidden;
}

.section-heading {

  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #000;
}

.section-sub-heading {

  color: #575757;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 28px;
}

@media (max-width: 767px) {
  .section-heading {
    font-size: 28px;
  }

  .section-sub-heading {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .section-heading {
    font-size: 24px;
  }

  .section-sub-heading {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
section #hero {
  padding-top: 0;
}

#hero {
  width: 100%;
  height: 90vh;
  background: center right;
  background-size: cover;
  background-repeat: no-repeat;
}

#mobile-hero {
  min-height: 95vh;
}

#hero span,
#mobile-hero span {
  color: #000;
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 28px;
}

#hero h1,
#mobile-hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #FF0202;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

#hero h1::after,
#mobile-hero h1::after {
  content: "|";
  color: #000;
  display: inline-block;
  width: 0.1px;
  padding-left: 10px;
  animation: blink 1s linear infinite;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  50% {
    opacity: .5;
  }

  100% {
    opacity: 1;
  }
}

.typed-cursor {
  display: none;
}

#hero h2,
#mobile-hero h2 {
  color: #000;
  margin-bottom: 15px;
  font-size: 26px;
}

#hero p {
  margin-right:50px;
  font-size: 20px;
}
#mobile-hero p {
  font-size: 20px;
}

.btn-contact-me {
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 7px;
  transition: 0.5s;
  margin: 10px 25px 0 0;
  border: 0;
  color: #fff;
  background: #FF0202;
  font-family: "IBM Plex Sans", sans-serif;
}

.btn-contact-me:hover {
  color: white;
  background: #E60202;
}

.btn-explore-my-work {
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 7px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  border: 1px solid #FF0202;
  color: #FF0202;
  background: #fff;
  font-family: "IBM Plex Sans", sans-serif;
}

.btn-explore-my-work:hover {
  border: 1px solid #E60202;
  color: #E60202;
  background: #fff;
}

#hero .animated,
#mobile-hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 1360px) {
  #hero {
    background-position: center center;
  }
}

@media (max-width: 991px) {
  section #hero {
    padding-top: 0;
  }

  #hero {
    height: 100vh;
    text-align: center;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {

  #hero span,
  #mobile-hero span {
    font-size: 26px;
  }

  #hero h1,
  #mobile-hero h1 {
    font-size: 38px;
  }

  #hero h2,
  #mobile-hero h2 {
    font-size: 24px;
  }

  #hero p,
  #mobile-hero p {
    font-size: 18px;
  }
}

@media (max-width: 575px) {

  #hero span,
  #mobile-hero span {
    font-size: 20px;
  }

  #hero h1,
  #mobile-hero h1 {
    font-size: 24px;
    margin-top: 15px;
  }

  #hero h2,
  #mobile-hero h2 {
    font-size: 20px;
  }

  #hero p,
  #mobile-hero p {
    font-size: 16px;
  }


  .btn-contact-me {
    font-size: 14px;
    padding: 14px 28px 11px 28px;
  }

  .btn-explore-my-work {
    font-size: 14px;
    padding: 14px 28px 11px 28px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: #FFFAFA;
}

.about h1 {
  color: #FF0202;
}

.about h2 {
  color: #000;
}

.about p {
  font-size: 20px;
  text-align: justify;
  text-justify: inter-word;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .counter h1 {
  font-size: 32px;
  font-weight: 500;
  color: #FF0202;
  line-height: 1.4;
}

.about .counter span {
  font-size: 20px;
  font-weight: 500;
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .about p {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .about p {
    font-size: 16px;
  }

  .about .counter h1 {
    font-size: 26px;
  }

  .about .counter span {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 20px;
  transition: all ease-in-out 0.4s;
  background: #fff;
  height: 100%;
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon img {
  max-width: 70px;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 19px;
  color: #000;
  line-height:26.6px;
}

.services .icon-box p {
  line-height: 1.4;
  font-size: 15px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-5px);
}

.grow {
  height: 150px;
  width: 100%;
  transition: height 0.5s;
  -webkit-transition: height 0.5s;
  text-align: center;
  overflow: hidden;
  transition: 1.5s;
  border-radius: 7px;
}

.grow p {
  opacity: 0;
  transition: 1s;
}

.grow:hover {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.2);
  height: 100%;
}

.grow:hover p {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio h2 {
  color: #000;
  font-size: 28px;
  font-weight: 700;
}

.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
  width: 100%;
  overflow: auto;
}

.portfolio #portfolio-flters ul {
  width: 100%;
  overflow: auto;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #575757;
  transition: all 0.3s;
  padding: 0px 10px 5px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #FF0202;
  border-bottom: 1px solid #FF0202;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
  border-radius: 15px;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background-color: rgba(0, 0, 0, 0.8);
  transition: background-color 0.3s ease-in-out;
}

.card:hover .bg-overlay {
  background-color: rgba(255, 18, 0, 0.8);
}

.portfolio-info p {
  text-align: justify;
  text-justify: inter-word;
}

.portfolio h4 {
  font-weight: 700;
  font-size: 18px;
  color: white;
  max-width: 80%;
  margin-bottom: 30px;
}

.portfolio p {
  font-size: 16px;
  color: white;
  max-width: 80%;
  margin-bottom: 30px;
}

.portfolio .btn-read-more {
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 8px 20px 8px 20px;
  border-radius: 7px;
  transition: 0.5s;
  margin: auto;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  width: 80%;
  font-family: "IBM Plex Sans", sans-serif;
}

.hover-hidden {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.card:hover .hover-hidden {
  opacity: 0;
}

.hover-content {
  opacity: 0;
  transform: translateY(30%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.card:hover .hover-content {
  opacity: 1;
  transform: translateY(0);
}

.text-truncate-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 1000px) {
  .text-truncate-3 {
    display: block;
    -webkit-line-clamp: unset;
  }
}

@media (max-width: 1000px) {
  .portfolio h4 {
    margin-bottom: 60px;
  }
  
  .portfolio p {
    margin-bottom: 60px;
  }
}

@media (max-width: 800px) {
  .portfolio h4 {
    margin-bottom: 40px;
  }
  
  .portfolio p {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .portfolio h4 {
    font-size: 18px;
    margin-bottom: 65px;
  }

  .portfolio p {
    font-size: 16px;
    margin-bottom: 65px;
  }
}

@media (max-width: 575px) {
  .portfolio h4 {
    font-size: 18px;
    margin-bottom: 60px;
  }

  .portfolio p {
    font-size: 16px;
    margin-bottom: 60px;
  }
}

@media (max-width: 500px) {
  .portfolio h4 {
    margin-bottom: 50px;
  }

  .portfolio p {
    margin-bottom: 50px;
  }
}

@media (max-width: 450px) {
  .portfolio h4 {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .portfolio p {
    font-size: 14px;
    margin-bottom: 40px;
  }
}

@media (max-width: 400px) {
  .portfolio h4 {
    margin-bottom: 30px;
  }

  .portfolio p {
    margin-bottom: 30px;
  }
}

@media (max-width: 300px) {
  .portfolio h4 {
    margin-bottom: 10px;
  }

  .portfolio p {
    margin-bottom: 10px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #FF0202;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FF0202;
}

.portfolio-details .portfolio-info {
  padding: 40px 40px 60px 40px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #F4F4F4;
  position: relative;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-info ul li::before {
  content: "●";
  color: #FF0202;
  display: inline-block;
  width: 1em;
}

.portfolio-details .btn-view-demo-sample {
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  padding: 10px 15px 10px 15px;
  border-radius: 7px;
  transition: 0.5s;
  margin: 5px 0 0 0;
  color: #FF0202;
  background: transparent;
  border: 2px solid #FF0202;
  position: absolute;
  bottom: 20px;
  right: 40px;
  font-family: "IBM Plex Sans", sans-serif;
}

.portfolio-details .btn-view-demo-sample:hover {
  color: #E60202;
  border: 2px solid #E60202;
}

@media (max-width: 700px) {
  .portfolio-details .btn-view-demo-sample {
    bottom: 18px;
    right: auto;
    left: 40px;
  }
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2,
.portfolio-details .portfolio-description h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description img {
  max-width: 90%;
}

.portfolio-details .portfolio-description p {
  font-size: 16px;
  line-height: 1.4;
  padding: 0;
  text-align: justify;
}

.portfolio-details .portfolio-description .tags {
  font-weight: 500;
  font-size: 14px;

  display: inline-block;
  padding: 8px 20px 8px 20px;
  border-radius: 7px;
  transition: 0.5s;
  margin: 10px 20px 10px 0;
  color: #1A1A1A;
  background: #FFFAFA;
}

/*--------------------------------------------------------------
# testimonials
--------------------------------------------------------------*/
.testimonials {
  background: #FFFAFA;
}

.testimonial-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  background: #fff;
  padding: 12px;
  color: #FF0202;
  border-radius: 50px;
  border: 1px solid #dedee6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  width: 48px;
  height: 48px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  border-radius: 15px;
  height: 340px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
  box-shadow: 0px 0 16px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonials .testimonial-item h3 {
  font-size: 15px;
  font-weight: bold;
  color: #FF0202;
  text-align: left;
  padding-left: 10px;
  margin: 0;
}

.testimonials .testimonial-item h4 {
  font-size: 12px;
  color: #000;
  padding-bottom: 10px;
  text-align: left;
  padding-left: 10px;
  margin: 0;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  padding: 0px 30px 0 30px;
  text-align: left;
  margin-bottom: 10px;
}

.testimonials .swiper-pagination {
  margin-top: 50px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #000;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FF0202;
}

.swiper-slide-duplicate-prev .testimonial-item {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}

.swiper-slide-prev .testimonial-item {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}

@media (max-width: 1200px) {
  .testimonials .testimonial-item {
    height: 420px;
  }

  .testimonials .testimonial-item p {
    font-size: 16px;
  }
}

@media (max-width: 1000px) {
  .testimonials .testimonial-item {
    height: 280px;
  }

  .testimonials .testimonial-item p {
    font-size: 16px;
  }
}

@media (max-width: 765px) {
  .testimonials .testimonial-item {
    height: 260px;
    width: 90%;
    margin: 20px;
  }

  .testimonials .testimonial-item p {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .testimonials .testimonial-item p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: #fff;
  text-align: center;
}

.clients .clients-carousel,
.clients .clients-slider {
  overflow: hidden;
}

.clients .clients-item {
  height: 120px;
}

.clients .clients-item img {
  height: auto;
  max-height: 100px;
  width: auto;
  max-width: 80%;
  filter: grayscale(100);
  transition: all 0.4s ease-in-out;
}

.clients .clients-item img:hover {
  filter: none;
  transform: scale(1.1);
}

.clients .clients-swiper-pagination {
  margin-top: 50px;
  position: relative;
}

.clients .clients-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #000;
  opacity: 1;
}

.clients .clients-swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FF0202;
}

/*--------------------------------------------------------------
# Engaging experience
--------------------------------------------------------------*/
.engaging-experience {
  width: 100%;
  height: 40vh;
  background: fixed center center;
  background-size: cover;
  background-color: rgba(255, 18, 0, 0.8);
  padding: 120px 0;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.engaging-experience .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.engaging-experience .container {
  max-width: 60%;
  text-align: center;
}

.engaging-experience h1 {
  color: #fff;
  font-size: calc(1.5rem + 0.5vw);
  font-weight: 600;
  margin-bottom: 20px;
}

.engaging-experience p {
  color: #fff;
  font-size: calc(0.8rem + 0.5vw);
}

@media (max-width: 700px) {
  .engaging-experience .container {
    max-width: 80%;
  }

  .engaging-experience {
    height: 50vh;
  }

  .engaging-experience h1 {
    font-size: 26px;
  }

  .engaging-experience p {
    font-size: 18px;
  }
}

@media (max-width: 380px) {
  .engaging-experience h1 {
    font-size: 22px;
  }

  .engaging-experience p {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact h2 {
  color: #000;
  font-size: 28px;
  font-weight: 700;
}

.contact .email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  border-radius: 7px;
  margin-bottom: 60px;
}

.contact .email-form .form-group {
  padding-bottom: 8px;
}

.contact input,
.contact textarea {
  border-radius: 4px !important;
}

.contact .form-control {
  padding: 12px 18px;
  border: 0;
  border-bottom: 1px solid #fd4312;
  border-radius: 0 !important;
}

.contact .form-control:focus {
  border-color: #fe9377;
  box-shadow: none;
}

.contact .email-form .form-group {
  margin-bottom: 20px;
}

.contact .email-form button[type=submit] {
  font-weight: 700;
  font-size: 16px;
  padding: 10px 28px 11px 28px;
  border-radius: 7px;
  margin: 10px 10px 0 0;
  color: #fff;
  background: #FF0202;
  border: 0;
}

.contact .email-form button[type=submit]:hover {
  color: #fff;
  background: #E60202;
}

.select2-container .select2-selection--single {
  height: 50px !important;
  padding: 12px 18px;
  border: 0;
  border-bottom: 1px solid #fd4312;
  border-radius: 0 !important;
  padding-left: 0;
}

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

.contact .php-email-form .validate {
  display: none;
  color: #FF0202;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .email-form .error-message {
  display: none;
  color: #fff;
  background: #FF0202;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .email-form .error-message br+br {
  margin-top: 25px;
}

.contact .email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #fff;
  min-height: 40px;
  margin-top: 20px;
}

.breadcrumbs p {
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.bread-link,
a {
  color: #FF0202;
  text-decoration: none;
}

.bread-link,
a:hover {
  color: #FF0202;
  text-decoration: none;
}

.bread-crumb {
  text-decoration: none;
  color: #575757;
}

.bread-crumb:hover {
  text-decoration: none;
  color: #575757;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 16px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

#footer .footer-top {
  padding: 60px 0 20px 0;
}

.footer-top img {
  max-width: 70px;
  margin-bottom: 40px;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}

#footer .footer-top .footer-contact p {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 0;
  color: #fff;
  margin-right: 20px;
}

#footer .footer-top h4 {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  font-size: 16px;
  display: inline-block;
  line-height: 1.4;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #FF0202;
}

#footer .footer-bottom {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
}


.ck-editor__editable_inline {
  min-height: 200px;
}

.upload_dropZone {
  background-color: #fff;
  outline: 1px dashed #D0A23C;
  outline-offset: -12px;
  transition:
    outline-offset 0.2s ease-out,
    outline-color 0.3s ease-in-out,
    background-color 0.2s ease-out;
}

.upload_dropZone.highlight {
  outline-offset: -4px;
  outline-color: #ffcd6b;
  background-color: #fff3d8;
}

.upload_img {
  width: calc(33.333% - (2rem / 3));
  object-fit: contain;
}



.industries .industry {
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  border: 0;
  box-shadow: 0px 0 14px 0 rgba(0, 0, 0, 0.1);
}

.industries .industry h3 {
  font-size: 16px;
  font-weight: bold;
  color: #1A1A1A;
}

.industries .industry p {
  font-size: 14px;
  color: #765656;
}

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

.g-recaptcha {
  display: inline-block;
}

#blog-heading {
  width: 100%;
  height: auto;
  background-image: url("../img/Details\ Header\ BACKGROUND.png");
  background-position: center center;
  background-repeat: no-repeat;
  padding: 60px 0;
}

#blog-heading .container {
  max-width: 60%;
}

#blog-heading h1 {
  color: #fff;
  font-size: calc(1rem + 0.5vw);
  font-weight: 700;
}

.blog {
  margin-top: 60px;
}

.blog .card {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #F4F4F4;
  margin-bottom: 60px;
}

.post-title {
  color:#FF0202;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}

.post-author {
  color:#1A1A1A;
  font-size: 16px;
  line-height: 1.4;
}

.post-snippet {
  font-size: 16px;
  line-height: 1.4;
  margin: 50px 0 50px 0;
}

.post-read-more {
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  padding: 10px 65px 10px 65px;
  border-radius: 7px;
  transition: 0.5s;
  margin: 5px 0 0 0;
  color: #FF0202;
  background: transparent;
  border: 1px solid #FF0202;
}

.post-read-more:hover {
  color: #E60202;
  border: 1px solid #E60202;
}

.image-holder {
  width: 100%;
  height: 100%;
  background: no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
  border-radius: 15px;
}

div.masthead {
  position: relative;
  margin-bottom: 3rem;
  padding-top: calc(8rem + 57px);
  padding-bottom: 8rem;
  background: no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
}

div.masthead:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 2, 2, 0.8);
}

div.portfolio_masthead {
  position: relative;
  margin-bottom: 30px;
  padding-top: 40px;
  padding-bottom: 40px;
  background: no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
}

div.portfolio_masthead:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 2, 2, 0.8);
}

div.portfolio_masthead h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

div.masthead .post-heading,
div.masthead .site-heading {
  color: #fff;
}

div.masthead .site-heading {
  text-align: center;
}

div.masthead .site-heading h1,
div.masthead .site-heading .h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.4;
}

div.masthead .subheading,
div.masthead .site-heading .subheading {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  display: block;
  margin-top: 0.625rem;
}

div.masthead .post-heading h1,
div.masthead .post-heading .h1 {
  font-size: 2.25rem;
}

div.masthead .post-heading .meta,
div.masthead .post-heading .subheading {
  line-height: 1.4;
  display: block;
}

div.masthead .post-heading .subheading {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0.75rem 0 2rem;
}

div.masthead .post-heading .meta {
  font-size: 1.25rem;
  text-align: center;
  font-weight: 300;
  font-style: italic;
}

div.masthead .post-heading .meta a {
  color: #fff;
  font-weight: 700;
}

@media (min-width: 992px) {
  div.masthead {
    padding-top: 12.5rem;
    padding-bottom: 12.5rem;
  }

  div.masthead .site-heading h1,
  div.masthead .site-heading .h1 {
    font-size: 3rem;
  }

  div.masthead .post-heading h1,
  div.masthead .post-heading .h1 {
    font-size: 3rem;
    text-align: center;
  }

  div.masthead .post-heading .subheading {
    font-size: 1.875rem;
  }
}

@media (max-width: 992px) {
  .desktop-bg-image {
    display: none;
  }

  #hero {
    height: auto;
  }
}

@media (min-width: 992px) {
  .mobile-bg-image {
    display: none;
  }
}

label {
  padding: 12px 18px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 18px;
}

.is-invalid {
  border-color: red;
}

label.form-check-label {
  padding: 4px 7px;
  font-size: 17px;
  font-weight: 500;
}

.form-check-input:checked {
  background-color: #FF0202;
  border-color: #FF0202;
}

.form-switch .form-check-input {
  width: 3em;
}

.form-check-input {
  height: 1.5em;
}