:root {
  --color-1: rgb(252, 231, 0);
  --color-1-op: rgba(252, 231, 0, 0.8);
  --color-2: #000;
  --color-2-op: rgba(35, 31, 32, 0.9);
  --color-3: #fff;
  --color-3-op: rgba(254, 251, 234, 0.5);
}

/*-------------------------------------------------------------------------------
  1. Global
-------------------------------------------------------------------------------*/

/* 1.1 General */

@font-face {
  font-family: Nexalight;
  src: url(../fonts/NexaDemo-Light.ttf);
}

@font-face {
  font-family: Nexabold;
  src: url(../fonts/NexaDemo-Bold.ttf);
}

@font-face {
  font-family: brushscript;
  src: url(../fonts/BrushScriptOpti-Regular.ttf);
}

@font-face {
  font-family: "Font Awesome 6 Free";
  src: url(../fonts/fontawesome-webfont.woff2);
}

html {
  -webkit-font-smoothing: antialiased;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

h1,
.h1 {
  margin: 0 0 20px 0;
  font-family: "Fugaz One", serif;
  line-height: 1.5;
  font-weight: 800;
}

h2,
.h2 {
  position: relative;
  margin: 0 0 10px 0;
  line-height: 1.3;
  font-family: "Fugaz One", serif;
  font-weight: 800;
}

h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: "Fugaz One", serif;
  font-weight: 800;
  line-height: 1.4;
}

h4,
.h4 {
  margin: 0;
  font-family: "Fugaz One", serif;
  font-weight: 500;
}

h5,
.h5 {
  line-height: 1.3;
  font-family: "Fugaz One", serif;
  font-weight: 800;
}

h1.title,
h3.title {
  font-family: "Fugaz One", serif;
  font-weight: 400;
}

strong {
  font-weight: 800;
}

p {
  margin: 10px 0 0;
}

a {
  color: var(--color-1);
  -webkit-transition: color 0.3s ease-out;
  -o-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #999;
  outline: none;
}

a:focus {
  text-decoration: none;
}

.bg-clr-1 {
  background-color: var(--color-1);
  color: #000;
}

.bg-clr-2 {
  background-color: var(--color-2);
  color: #fff;
}

.bg-clr-3 {
  background-color: var(--color-2-op);
}

h1.sec-title {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.button {
  position: relative;
  font-size: 13px;
  line-height: 24px;
  padding: 15px 50px;
  font-weight: 700;
  letter-spacing: 0.1em;
  overflow: hidden;
  text-transform: uppercase;
  color: var(--color-3);
  background: var(--color-2);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 0;
}

.button:before {
  position: absolute;
  left: 0;
  top: 0%;
  height: 100%;
  width: 100%;
  content: "";
  background-color: var(--color-3);
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
    -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  z-index: -1;
}

.botton:hover {
  color: #ffffff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.button:hover:before {
  color: #ffffff;
  -webkit-transform-origin: top right;
  transform-origin: top right;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.button.btn-sm {
  padding: 15px 30px;
  font-size: 0.7em;
}

.btn-slide {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.5em;
  padding: 20px 40px;
}

.accordion-button{
  background-color: var(--color-2-op);
  color: #fff;
  border: 0px solid #000;
}

.accordion-button:not(.collapsed) {
  background-color: var(--color-1);
  border: 0px solid #000;
}

.accordion-button:focus {
  box-shadow: none;
}


/*-------------------------------------------------------------------------------
  Header
-------------------------------------------------------------------------------*/

.social-icon {
  position: fixed;
  top: 15%;
  right: 0;
  z-index: 99;
}

.social-icon li {
  list-style: none;
  position: relative;
  background: #000;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out 0s;
  transform: translateX(90px);
}

.social-icon li:hover {
  transition: all 0.3s ease-in-out 0s;
  transform: translateX(0px);
  background: var(--color-1);
}

.social-icon li a {
  font-size: 18px;
  color: var(--color-1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  padding: 10px 20px;
  display: flex;
  align-items: center;
}

.social-icon li a i {
  line-height: 0;
  margin-right: 8px;
}

.social-icon li a span {
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
}

.social-icon li:hover a {
  color: #000;
}

.social-icon li:hover a span {
  transition: all 0.3s ease-in-out 0s;
  opacity: 1;
}

header {
  background: transparent;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 99;
}

header .logo {
  max-height: 80px;
}

.top-nav {
  margin: 0;
}

.top-nav li {
  display: inline-block;
  padding-right: 15px;
}

.top-nav li a {
  font-size: 15px;
  font-weight: 100;
  color: #000;
}

/*Nav*/
.navbar {
  height: 90px;
  background-color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.fixed-top .navbar {
  height: 70px;
}

.fixed-top .logo {
  height: 60px;
  overflow: hidden;
}

.navbar-nav li {
  padding: 5px;
  margin-left: 10px;
  margin-right: 10px;
}

.fixed-top .navbar-nav li a {
  color: #000;
}

.navbar-nav li a {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
}

.navbar-nav li a:hover {
  text-decoration: none;
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
}

.navbar-nav li .nav-link:hover {
  background-color:transparent;
  color: var(--color-1);
}

.dropdown-toggle::after {
  margin-left: 0.5em;
}

.navbar-nav li {
  margin: 0px;
}

li.nav-item.dropdown {
  position: relative;
  padding-right: 15px;
}

.navbar-nav a.dropdown-toggle {
  position: absolute;
  top: 25px;
  transform: translateY(-50%);
  right: -5px;
  width: auto;
  height: auto;
  line-height: 1;
}

.navbar-nav .dropdown-menu {
  background-color: var(--color-3);
  border-radius: 0px;
  box-shadow: none;
  border: 0px;
}

.navbar-nav .dropdown-menu a {
  color: #000;
}

.navbar-nav .dropdown-menu a:hover {
  color: #000;
}

.navbar-toggler {
  background: #fff;
  border-radius: 0px;
}

.navbar-toggler:focus {
  box-shadow: none;
}


header {
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  animation: 0.5s slideout;
  animation-timing-function: ease-in-out;
}

@keyframes slideout {
  0% {
    top: -110px;
  }

  100% {
    top: 0px;
  }
}

header.fixed-top {
  background: var(--color-3);
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  animation-name: slidein;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
}

@keyframes slidein {
  0% {
    top: -110px;
  }

  100% {
    top: 0%;
  }
}

@media screen and (min-width: 992px) {
  .navbar-nav .dropdown {
    position: relative;
  }
  .navbar .dropdown-menu {
    display: block;
    opacity: 0.4;
    visibility: hidden;
    min-width: 300px;
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  .navbar.menu-top .dropdown-menu {
    transform-origin: 100% 100%;
  }
  .dropright .dropdown-menu {
    display: block;
    opacity: 0.4;
    visibility: hidden;
    transform: scale(0, 1);
    transform-origin: 0 0;
  }
  .navbar-nav .dropdown:hover > .dropdown-menu,
  .dropright:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

#home_slide {
  height: 100vh;
}

.overlay-slider {
  background: rgba(0, 0, 0, 0);
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
}

ul.header-social-icon {
  padding: 0;
  margin: 0;
}

ul.header-social-icon li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

ul.header-social-icon li a{
  color: var(--color-2);
  font-size: 20px;
  padding: 10px;
  margin-bottom: 10px;
}

/*-------------------------------------------------------------------------------
  Benifit Section
-------------------------------------------------------------------------------*/

/* .services-sec {
} */

.project-section.style-three .project-block {
  margin-bottom: 30px;
}

.project-block {
  position: relative;
  margin-bottom: 40px;
}
.project-block .inner-box {
  position: relative;
  overflow: hidden;
  max-height: 400px;
}
.project-block .inner-box:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 155px;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background-color: var(--color-2);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transform: translateX(-150px);
  transform: translateX(-150px);
  z-index: 3;
}

.project-block .inner-box .overlay-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(200px);
  transform: translateY(200px);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 1;
}
.project-block .inner-box:hover .overlay-1 {
  -webkit-transform: translate(0);
  transform: translate(0);
}
.project-block .inner-box:hover:before {
  -webkit-transform: none;
  transform: none;
}
.project-block .inner-box:hover .image-box .image:before {
  height: 100%;
}
.project-block .inner-box:hover .image-box .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.project-block .inner-box:hover .icon {
  background-color: var(--bg-theme-color-light);
  color: var(--theme-color-dark);
}
.project-block .inner-box:hover .content-box .read-more {
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0);
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}
.project-block .inner-box:hover .content-box .title {
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0);
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}
.project-block .inner-box:hover .content-box .cat {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
  color: #fff;
  font-size: 16px;
}
.project-block .image-box {
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.project-block .image-box .image {
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
}
.project-block .image-box .image::before {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(transparent),
    color-stop(80%, #24201f),
    color-stop(80%, #24201f)
  );
  background: linear-gradient(transparent, #24201f 80%, #24201f 80%);
  bottom: 0;
  content: "";
  height: 0;
  left: 0;
  position: absolute;
  pointer-events: none;
  width: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 2;
}
.project-block .image-box .image img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.project-block .content-box {
  bottom: 26px;
  left: 10px;
  position: absolute;
  z-index: 3;
}
.project-block .content-box .read-more {
  background-color: var(--color-2);
  border-radius: 50%;
  color: var(--color-3);
  display: inline-block;
  height: 42px;
  line-height: 42px;
  margin-bottom: 18px;
  opacity: 0;
  position: relative;
  text-align: center;
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
  width: 42px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.project-block .content-box .read-more i {
  font-size: 16px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.project-block .content-box .title {
  position: relative;
  margin-bottom: 0;
  padding: 6px;
  margin-bottom: 1px;
  opacity: 0;
  -webkit-transform: translateY(-40px);
  transform: translateY(-40px);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

@media (max-width: 767.98px) {
  .project-block .content-box .title {
    font-size: 20px;
  }
}

.project-block .content-box .cat {
  position: relative;
  padding: 6px;
  font-weight: 400;
  opacity: 0;
  display: inline-block;
  background-color: var(--theme-color-light);
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

/*-------------------------------------------------------------------------------
  About Section
-------------------------------------------------------------------------------*/

.about-sec {
  padding: 140px 0;
}

.about-sec .about_content h6 {
  margin-bottom: 14px;
}
.about-sec .about_content h2 {
  margin-bottom: 22px;
}
.about-sec .about_content .text {
  line-height: 30px;
  margin-bottom: 30px;
}

.about-sec .about_wrapper .about-image {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 500px;
  border-radius: 0px;
}
.about-sec .about_wrapper .about-image img {
  height: 100%;
  width: 80%;
  object-fit: cover;
}

.about-image:before {
  content: "";
  position: absolute;
  border: 5px solid var(--color-1);
  width: 167px;
  height: 198px;
  top: -50px;
  right: 0px;
  z-index: -1;
  -webkit-animation: zoom-one 3s infinite linear;
  animation: zoom-one 3s infinite linear;
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
}

@keyframes zoom-one {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}

/*-------------------------------------------------------------------------------
  CTA Section
-------------------------------------------------------------------------------*/

#Specials-sec {
  background: rgba(0, 0, 0, 0.7) url(../img/HVACHeader.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-blend-mode: color;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

#Specials-sec .overlay-4 {
  content: "";
  width: 300px;
  height: 110%;
  display: block;
  position: absolute;
  top: -29px;
  left: 20%;
  bottom: 0;
  background-size: cover;
  background: var(--color-1-op);
  z-index: -1;
  transform: skewX(-40deg);
  box-shadow: -300px 0px 0px rgb(255 255 255 / 20%);
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.5);
}

.contact-form button {
  border: none;
}

.ftr-logo img {
  max-width: 150px;
}

/*-------------------------------------------------------------------------------
  Contact
-------------------------------------------------------------------------------*/

.contact-form input,
.contact-form textarea,
.contact-form select,
.get-q-form input[type="text"],
.get-q-form input[type="email"],
.get-q-form input[type="number"],
.get-q-form textarea,
.get-q-form select {
  border-radius: 0px;
  padding: 15px 18px;
  border: 0px;
}

.ftr-icon {
  display: flex;
  align-items: center;
  padding: 25px 20px;
  border: 0px solid;
  background: #fff;
}

.ftr-icon span {
  margin-right: 12px;
  line-height: 1.5;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  padding: 0px;
  background: #5271ff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

/*-------------------------------------------------------------------------------
  
           Inside Pages

-------------------------------------------------------------------------------*/

#page_header {
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgb(0 0 0 / 50%);
  padding-top: 80px;
  background-blend-mode: color;
  padding-bottom: 80px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

#page_header .overlay-4 {
  content: "";
  width: 300px;
  height: 450px;
  display: block;
  position: absolute;
  top: -29px;
  left: 20%;
  bottom: 0;
  background-size: cover;
  background: var(--color-1-op);
  z-index: -1;
  transform: skewX(-40deg);
  box-shadow: -300px 0px 0px rgb(255 255 255 / 20%);
}

#page_header h1 {
  color: #fff;
  font-weight: bold;
}

ul.list-inline-box {
  margin-top: 20px;
  column-count: 2;
}

.list-inline-box li {
  display: block;
  border: 1px solid #cecece;
  padding: 8px 15px;
  border-radius: 3px;
  margin-bottom: 8px;
}

/*------------------------------------------*/
/*------------- Testimonials -----------------*/
/*------------------------------------------*/

#testimonials .testimonial-main-img {
  height: 100%;
  object-fit: cover;
}

.testimonial {
  padding-bottom: 0 !important;
}

.testimonial-body {
  border: 1px solid var(--color-1);
  margin: 0 auto;
  max-width: 800px;
  padding: 20px 30px;
  position: relative;
  background-color: var(--color-1);
}

.testimonial-body:after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background-color: var(--color-1);
  border: 1px solid var(--color-1);
  transform: rotate(45deg);
  border-color: transparent var(--color-1) var(--color-1) transparent;
  left: 0;
  right: 0;
  margin: 0px auto;
  margin-top: 10px;
  bottom: -13px;
}

.testimonial-body p {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.5px;
  margin: 0;
}

.testimonial-body .fa-quote-right {
  color: #333;
  font-size: 40px;
  float: right;
}

#testimonials .carousel-item {
  min-height: 250px !important;
}

.testimonial .testimonial-img img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}

#testimonials .carousel-control-next,
#testimonials .carousel-control-prev {
  align-items: center;
  background: #000;
  border-radius: 50%;
  display: flex;
  font-size: 35px;
  height: 50px;
  justify-content: center;
  position: absolute;
  top: 50%;
  width: 50px;
}

#testimonials .carousel-control-next i,
#testimonials .carousel-control-prev i {
  font-size: 18px;
  line-height: 0;
}


/*------------------------------------------*/
/*------------- Inside Pages -----------------*/
/*-------------------------- ----------------*/

.list-inline li {
  display: inline-block;
  padding: 8px 15px ;
  color: #000;
  background: var(--color-1);
  margin-bottom: 5px;
  transition: all .3s ease-in-out 0s;
}

.list-inline li:hover {
  background: #000;
  color: #fff;
  transition: all .3s ease-in-out 0s;
}

/*-------------------------------------------------------------------------------
  Media Query
-------------------------------------------------------------------------------*/
@media only screen and (max-width: 1130px) {
  .navbar-nav li a {
    padding-left: 7px;
    padding-right: 7px;
  }

  .cta a {
    padding: 10px;
  }

  #home_slide {
    height: auto;
  }
}

@media only screen and (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    text-align: center;
    background: var(--color-1);
  }

  
  .navbar-nav .dropdown-menu a {
    display: inline-block;
  }

  .navbar-nav a.dropdown-toggle {
    right: 15px;
  }

  li.nav-item.dropdown {
    padding-right: 5px;
}

}

@media only screen and (max-width: 767px) {
  
  #home_slide {
    height: auto;
  }

  .project-block .inner-box .content-box .read-more {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
  }

  .project-block .inner-box .content-box .title {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
  }

  .project-block .inner-box .content-box .cat {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
    color: #fff;
    font-size: 16px;
  }

  .project-block .image-box .image::before {
    height: 100%;
  }


  .list-inline li:hover {
    background: var(--color-1);
    color: #000;
    transition: all .3s ease-in-out 0s;
  }


}

@media only screen and (max-width: 600px) {
  .demo-gallery > ul > li a > img {
    max-height: 200px;
  }

  .carousel-control-prev {
    left: -10px;
  }

  .carousel-control-next {
    right: -10px;
  }

  .plr-100 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .plr-50 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-img .about-name {
    font-size: 20px;
  }

  .about-img .about-name {
    position: inherit;
  }

  #about .plr-50 {
    padding-left: 20px;
    padding-right: 20px;
  }

  #contact .p-60 {
    padding: 20px;
    text-align: center;
  }
  #contact h3 {
    text-align: center;
  }
  .contact-details div {
    text-align: center !important;
  }
}

@media only screen and (max-width: 576px) {

  #about .pl-50 {
    padding-left: 15px;
  }

  #Specials-sec.p-100 {
    padding: 40px;
  }

  ul.list-inline-box {
    column-count: 1;
  }

  .about-sec {
    padding: 40px 0;
  }

  ul.ftr-location {
    display: inline-block;
    text-align: start;
  }

  #home_slide {
    height: 90vh;
  }
}


@media only screen and (max-width: 430px) {
  .navbar .navbar-brand img {
    max-width: 60px;
  }
}

@media only screen and (max-width: 320px) {
  #contact .justify-content-center:first-child {
    padding: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .h-captcha {
    transform: scale(0.78);
    margin-left: -9vw;
  }
  h1 {
    font-size: 2.5rem !important;
  }
}
