/*=======================================================================
[1] Theme Default CSS 
=========================================================================*/
html,
body {
  font-family: 'Poppins', sans-serif;
  height: 100%;
  line-height: 1.7;
  font-weight: 400;
  vertical-align: baseline;
  background: #ffffff;
  color: #4c4c4c;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  font-size: 62.5%;
}
@media (max-width: 1199px) {
  html {
    font-size: 50%;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 45%;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 40%;
  }
}
@media (max-width: 575px) {
  html {
    font-size: 35%;
  }
}
@media (max-width: 479px) {
  html {
    font-size: 30%;
  }
}
body {
  font-size: 16px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  color: #000000;
}
h1 {
  font-size: 50px;
  line-height: 1.2;
}
@media (max-width: 1199px) {
  h1 {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 34px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 30px;
  }
}
h2 {
  font-size: 40px;
  line-height: 1.2;
}
@media (max-width: 1199px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 26px;
  }
}
h3 {
  font-size: 30px;
  line-height: 1.5;
}
@media (max-width: 991px) {
  h3 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 20px;
  }
}
h4 {
  font-size: 18px;
  line-height: 1.5;
}
p {
  line-height: 1.7;
  margin: 0 0 20px 0;
}
a {
  text-decoration: none;
}
a:active,
a:hover,
a:focus {
  text-decoration: none;
}
a:active,
a:hover,
a:focus {
  outline: 0 none;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.clear:after {
  clear: both;
  content: "";
  display: block;
}
.wrapper {
  overflow: hidden;
}
.hr-custom {
  margin: 0 215px;
  border-bottom: 1px solid #e8e8e8;
}
@media (max-width: 1600px) {
  .hr-custom {
    margin: 0 115px;
  }
}
@media (max-width: 1199px) {
  .hr-custom {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .hr-custom {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .hr-custom {
    margin: 0;
  }
}
@media (max-width: 575px) {
  .hr-custom {
    margin: 0;
  }
}
/*=======================================================================
[2] Preloader Styles
=========================================================================*/
.pageoverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000000;
}
.pageoverlay .overlayDoor:before,
.pageoverlay .overlayDoor:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background: #111;
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  transition-delay: 0.8s;
}
.pageoverlay .overlayDoor:before {
  left: 0;
}
.pageoverlay .overlayDoor:after {
  right: 0;
}
.pageoverlay.loaded .overlayDoor:before {
  left: -50%;
}
.pageoverlay.loaded .overlayDoor:after {
  right: -50%;
}
.pageoverlay.loaded .overlayContent {
  opacity: 0;
  margin-top: -15px;
}
.pageoverlay .overlayContent {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}
.pageloader {
  width: 128px;
  height: 128px;
  border: 3px solid #fff;
  border-bottom: 3px solid transparent;
  border-radius: 50%;
  position: relative;
  animation: spin 1s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pageloader .inner {
  width: 64px;
  height: 64px;
  border: 3px solid transparent;
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spinInner 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinInner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-720deg);
  }
}
/*=======================================================================
[4] Button Styles
=========================================================================*/
.btn-fill {
  padding: 14px 32px 10px;
  color: #0a0a0a;
  background-color: #ffffff;
  border-radius: 0;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .btn-fill {
    font-size: 16px;
    padding: 12px 28px 8px;
  }
}
@media (max-width: 767px) {
  .btn-fill {
    font-size: 15px;
    padding: 10px 25px 6px;
  }
}
.btn-fill .top-left {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.btn-fill .top-left:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 1px;
  left: 1px;
  height: 0;
  width: 1px;
  background-color: #ffffff;
  transition: all 0.5s ease-in-out;
}
.btn-fill .top-left:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 1px;
  left: 1px;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.5s ease-in-out;
}
.btn-fill .bottom-right {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.btn-fill .bottom-right:before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 1px;
  right: 1px;
  height: 0;
  width: 1px;
  background-color: #ffffff;
  transition: all 0.5s ease-in-out;
}
.btn-fill .bottom-right:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 1px;
  right: 1px;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.5s ease-in-out;
}
.btn-fill:hover {
  background-color: transparent;
  color: #ffffff;
}
.btn-fill:hover .top-left:before {
  height: calc(100% - 2px);
}
.btn-fill:hover .top-left:after {
  width: calc(100% - 2px);
}
.btn-fill:hover .bottom-right:before {
  height: calc(100% - 2px);
}
.btn-fill:hover .bottom-right:after {
  width: calc(100% - 2px);
}
.btn-fill2 {
  background-color: #000000;
  padding: 13px 33px;
  color: #ffffff;
  border-radius: 0;
  font-weight: 600;
  font-size: 18px;
  font-family: 'Jost', sans-serif;
  display: inline-block;
  border: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.btn-fill2 .top-left {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.btn-fill2 .top-left:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 1px;
  left: 1px;
  height: 0;
  width: 1px;
  background-color: #000000;
  transition: all 0.5s ease-in-out;
}
.btn-fill2 .top-left:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 1px;
  left: 1px;
  height: 1px;
  width: 0;
  background-color: #000000;
  transition: all 0.5s ease-in-out;
}
.btn-fill2 .bottom-right {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.btn-fill2 .bottom-right:before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 1px;
  right: 1px;
  height: 0;
  width: 1px;
  background-color: #000000;
  transition: all 0.5s ease-in-out;
}
.btn-fill2 .bottom-right:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 1px;
  right: 1px;
  height: 1px;
  width: 0;
  background-color: #000000;
  transition: all 0.5s ease-in-out;
}
.btn-fill2:hover {
  background-color: transparent;
  color: #000000;
}
.btn-fill2:hover .top-left:before {
  height: calc(100% - 2px);
}
.btn-fill2:hover .top-left:after {
  width: calc(100% - 2px);
}
.btn-fill2:hover .bottom-right:before {
  height: calc(100% - 2px);
}
.btn-fill2:hover .bottom-right:after {
  width: calc(100% - 2px);
}
.btn-fill3 {
  background-color: #ff0000;
  padding: 13px 33px;
  color: #ffffff;
  border-radius: 0;
  font-weight: 600;
  font-size: 18px;
  font-family: 'Jost', sans-serif;
  display: inline-block;
  border: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.btn-fill3 .top-left {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.btn-fill3 .top-left:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 1px;
  left: 1px;
  height: 0;
  width: 1px;
  background-color: #ff0000;
  transition: all 0.5s ease-in-out;
}
.btn-fill3 .top-left:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 1px;
  left: 1px;
  height: 1px;
  width: 0;
  background-color: #ff0000;
  transition: all 0.5s ease-in-out;
}
.btn-fill3 .bottom-right {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.btn-fill3 .bottom-right:before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 1px;
  right: 1px;
  height: 0;
  width: 1px;
  background-color: #ff0000;
  transition: all 0.5s ease-in-out;
}
.btn-fill3 .bottom-right:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 1px;
  right: 1px;
  height: 1px;
  width: 0;
  background-color: #ff0000;
  transition: all 0.5s ease-in-out;
}
.btn-fill3:hover {
  background-color: transparent;
  color: #ff0000;
}
.btn-fill3:hover .top-left:before {
  height: calc(100% - 2px);
}
.btn-fill3:hover .top-left:after {
  width: calc(100% - 2px);
}
.btn-fill3:hover .bottom-right:before {
  height: calc(100% - 2px);
}
.btn-fill3:hover .bottom-right:after {
  width: calc(100% - 2px);
}
/*=======================================================================
[4] Banner Area Styles
=========================================================================*/
.banner-wrap {
  background-image: url("img/elements/1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: space-between;
  display: flex;
  height: 100vh;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .banner-wrap {
    justify-content: center;
    height: auto;
  }
}
.banner-wrap:after {
  position: absolute;
  z-index: 0;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 70%;
  width: 100%;
  background: linear-gradient(to top, rgba(215, 215, 215, 0) 0%, rgba(164, 164, 164, 0.5) 100%);
}
.banner-wrap .logo-box {
  max-width: 30vw;
  margin-bottom: 180px;
}
@media (max-width: 1199px) {
  .banner-wrap .logo-box {
    margin: 0 auto 100px;
  }
}
@media (max-width: 991px) {
  .banner-wrap .logo-box {
    margin: 0 auto 50px;
  }
}
.banner-wrap .left {
  position: relative;
  z-index: 5;
  height: 100%;
  padding-right: 30px;
  padding-left: 130px;
  padding-top: 80px;
}
@media (max-width: 1199px) {
  .banner-wrap .left {
    text-align: center;
    padding-left: 30px;
    padding-top: 50px;
  }
}
@media (max-width: 991px) {
  .banner-wrap .left {
    padding-top: 40px;
  }
}
.banner-wrap .left .content .sub-title {
  margin-bottom: 20px;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  color: #000000;
  padding: 5px 20px;
  display: inline-block;
  border: 1px dashed rgba(0, 0, 0, 0.2);
}
.banner-wrap .left .content .title {
  font-weight: 500;
  color: #000000;
}
.banner-wrap .left .content p {
  max-width: 600px;
  width: 100%;
  margin-bottom: 50px;
}
.banner-wrap .left .content p span {
  font-weight: 700;
}
.banner-wrap .right {
  height: 100%;
}
@media (max-width: 1199px) {
  .banner-wrap .right {
    display: none;
  }
}
.banner-wrap .right img {
  height: 100%;
  object-fit: cover;
}
.banner-wrap .right .item-btn {
  position: absolute;
  z-index: 1;
  top: 70px;
  right: 150px;
}
/*=======================================================================
[4] Section Heading  Styles
=========================================================================*/
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}
.section-heading h2 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 36px;
}
@media (max-width: 1199px) {
  .section-heading h2 {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .section-heading h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .section-heading h2 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .section-heading h2 {
    font-size: 26px;
  }
}
.section-heading p {
  max-width: 550px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.section-heading ul {
  justify-content: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.section-heading ul li {
  font-weight: 600;
  font-size: 20px;
  margin-right: 15px;
  font-family: 'Jost', sans-serif;
}
.section-heading ul li:last-child {
  margin-right: 0;
}
.section-heading2 {
  text-align: center;
  margin-bottom: 50px;
}
.section-heading2 h2 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 36px;
}
@media (max-width: 1199px) {
  .section-heading2 h2 {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .section-heading2 h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .section-heading2 h2 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .section-heading2 h2 {
    font-size: 26px;
  }
}
.section-heading2 p {
  max-width: 420px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.section-heading2 ul {
  justify-content: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.section-heading2 ul li {
  font-weight: 600;
  font-size: 20px;
  margin-right: 15px;
  font-family: 'Jost', sans-serif;
}
.section-heading2 ul li:last-child {
  margin-right: 0;
}
/*=======================================================================
[4] Main Demo Styles
=========================================================================*/
.main-demo {
  padding: 92px 200px 60px 200px;
}
@media (max-width: 1600px) {
  .main-demo {
    padding: 92px 100px 60px 100px;
  }
}
@media (max-width: 1199px) {
  .main-demo {
    padding: 82px 15px 50px 15px;
  }
}
@media (max-width: 991px) {
  .main-demo {
    padding: 72px 15px 40px 15px;
  }
}
@media (max-width: 767px) {
  .main-demo {
    padding: 62px 15px 30px 15px;
  }
}
@media (max-width: 575px) {
  .main-demo {
    padding: 52px 15px 20px 15px;
  }
}
.demo-box {
  text-align: center;
  margin-bottom: 30px;
}
.demo-box .figure-box {
  margin-bottom: 10px;
}
.demo-box.coming-soon .figure-box {
  position: relative;
  z-index: 1;
}
.demo-box.coming-soon .figure-box:after {
  content: "";
  position: absolute;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.8);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.demo-box.coming-soon .figure-box .coming-soon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  letter-spacing: 2px;
  font-size: 22px;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
}
.demo-box .img-link {
  display: block;
}
.demo-box .image-bg {
  width: 100%;
  height: 450px;
  display: block;
  position: relative;
  border: 1px solid #eeeeee;
}
.demo-box .image-scroll {
  background-position: center 0;
  background-repeat: no-repeat;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  right: 0;
  margin: 0 auto;
  transition: all 6s ease-out 0s;
  -webkit-transition: all 6s ease-out 0s;
  -moz-transition: all 6s ease-out 0s;
  -ms-transition: all 6s ease-out 0s;
  -o-transition: all 6s ease-out 0s;
}
.demo-box:hover .image-scroll {
  background-position: center 100%!important;
}
.demo-box h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0;
  color: #000000;
}
.demo-box h3 a {
  color: #000000;
}
.demo-box h3 a:hover {
  text-decoration: underline;
}
/*=======================================================================
[4] Inner Demo Styles
=========================================================================*/
.inner-demo {
  padding: 92px 200px 58px 200px;
}
@media (max-width: 1600px) {
  .inner-demo {
    padding: 92px 100px 58px 100px;
  }
}
@media (max-width: 1199px) {
  .inner-demo {
    padding: 82px 15px 48px 15px;
  }
}
@media (max-width: 991px) {
  .inner-demo {
    padding: 72px 15px 38px 15px;
  }
}
@media (max-width: 767px) {
  .inner-demo {
    padding: 62px 15px 28px 15px;
  }
}
@media (max-width: 575px) {
  .inner-demo {
    padding: 52px 15px 18px 15px;
  }
}
.inner-demo-box {
  margin-bottom: 30px;
}
.inner-demo-box .figure-box {
  padding: 5px;
  border: 1px solid #e8e8e8;
}
.inner-demo-box .figure-box div {
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.inner-demo-box .figure-box img {
  opacity: 1;
  transform: scale(1);
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.inner-demo-box .content-box {
  text-align: center;
  padding: 10px 5px 5px;
}
.inner-demo-box .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}
.inner-demo-box .title a {
  color: #000000;
}
.inner-demo-box .title a:hover {
  text-decoration: underline;
}
.inner-demo-box:hover .figure-box div {
  background-color: #000000;
}
.inner-demo-box:hover .figure-box img {
  opacity: 0.7;
  transform: scale(1.1);
}
/*=======================================================================
[4] Feature Styles
=========================================================================*/
.feature-demo {
  padding: 92px 200px 100px 200px;
}
@media (max-width: 1600px) {
  .feature-demo {
    padding: 92px 100px 100px 100px;
  }
}
@media (max-width: 1199px) {
  .feature-demo {
    padding: 82px 15px 90px 15px;
  }
}
@media (max-width: 991px) {
  .feature-demo {
    padding: 72px 15px 80px 15px;
  }
}
@media (max-width: 767px) {
  .feature-demo {
    padding: 62px 15px 70px 15px;
  }
}
@media (max-width: 575px) {
  .feature-demo {
    padding: 52px 15px 60px 15px;
  }
}
.feature-demo ul {
  margin: 0 -4px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.feature-demo ul li {
  width: 100%;
  margin-bottom: 8px;
  flex: 0 0 20%;
  padding: 0 4px;
  text-align: center;
}
@media (max-width: 1439px) {
  .feature-demo ul li {
    flex: 0 0 25%;
  }
}
@media (max-width: 1199px) {
  .feature-demo ul li {
    flex: 0 0 33.33333%;
  }
}
@media (max-width: 991px) {
  .feature-demo ul li {
    flex: 0 0 50%;
  }
}
@media (max-width: 575px) {
  .feature-demo ul li {
    flex: 0 0 100%;
  }
}
.feature-demo ul li div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 240px;
  background-color: #ffffff;
  box-shadow: 0 3px 79px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}
.feature-demo ul li div span {
  display: block;
  font-size: 24px;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
  color: #000000;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1600px) {
  .feature-demo ul li div span {
    font-size: 22px;
  }
}
@media (max-width: 1439px) {
  .feature-demo ul li div span {
    font-size: 20px;
  }
}
@media (max-width: 1199px) {
  .feature-demo ul li div span {
    font-size: 18px;
  }
}
.feature-demo ul li div:hover {
  background-color: #000000;
}
.feature-demo ul li div:hover i {
  color: #ffffff;
}
.feature-demo ul li div:hover span {
  color: #ffffff;
}
.feature-demo ul li i {
  line-height: 1;
  margin-bottom: 10px;
  font-size: 60px;
  color: #000000;
  transition: all 0.3s ease-in-out;
}
/*=======================================================================
[4] Extra Feature Styles
=========================================================================*/
.extra-feature ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.extra-feature ul li {
  flex: 0 0 33.333333%;
  height: 200px;
  background-color: #110f0f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .extra-feature ul li {
    flex: 0 0 100%;
  }
}
.extra-feature ul li:nth-child(2n) {
  background-color: #181515;
  transition: all 0.3s ease-in-out;
}
.extra-feature ul li img {
  margin-bottom: 10px;
}
.extra-feature ul li a {
  display: inline-block;
  color: #ffffff;
  font-size: 28px;
  font-family: 'Jost', sans-serif;
}
@media (max-width: 1199px) {
  .extra-feature ul li a {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .extra-feature ul li a {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .extra-feature ul li a {
    font-size: 20px;
  }
}
.extra-feature ul li a:hover {
  text-decoration: underline;
}
.extra-feature ul li:hover {
  background-color: #000000;
}
.extra-feature ul li:hover:nth-child(2n) {
  background-color: #000000;
}
/*=======================================================================
[4] Footer Styles
=========================================================================*/
footer {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 500px;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("img/banner/footer.jpg");
}
@media (max-width: 575px) {
  footer {
    height: 400px;
  }
}
footer span {
  color: #ffffff;
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  letter-spacing: 4px;
  display: inline-block;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  footer span {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  footer span {
    font-size: 16px;
  }
}
footer h2 {
  color: #ffffff;
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  footer h2 {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  footer h2 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  footer h2 {
    font-size: 34px;
  }
}
@media (max-width: 575px) {
  footer h2 {
    font-size: 30px;
  }
}
footer p {
  color: #cecece;
  font-size: 20px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  footer p {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  footer p {
    font-size: 16px;
  }
}
