/*-----------------------------------------------------------------------------------
    Template Name: Unded - Creative Agency & Portfolio HTML Template
    Author: envalab 
    Author URI: https://themeforest.net/user/envalab
    Version: 1.0

--------------------------
   CSS INDEX
--------------------------
    1.0 Common css 
    1.1 header section
    1.2 Hero Style
    1.3 footer Style
    2.0 Home-style-1
        2.1 service-section
        2.2 animate-marque-sec
        2.3 project-section
        2.4 testimonial-section
        2.5 partners-section
        2.6 features-section
        2.7 team-section
        2.8 video-section
        2.9 event-section
        2.10 blog-section
    3.0 Home-style-2
        3.1 about-section
        3.2 exprience-section
        3.3 exprience-service
        3.4 skill-service
        3.5 project-section-s2
        3.6 contact-area
    4.0 Home-style-3
        4.1 service-section-s2
        4.2 animate-marque-sec-s2
        4.3 project-section-s3
        4.4 testimonial-section-s2
        4.5 video-section-s2
        4.6 team-section-s2
        4.7 newsletter-section
        4.8 blog-section-s2
    6.0 About Page
        6.1 about-me-page
        6.2 about-us-page

    7.0 Services Page
    8.0 Team Page
    9.0 porfolio-page
    10.0 Pricing Page
    11.0 Contact Page
    12.0 Blog Page
    13.0 Blog Single Page
    12.0 Blog Page

    -----------------------------------------------------------------------------------*/
/*---------------------------
	Fonts
----------------------------*/


/* 1.0 Common css  */
html {
  font-size: 15px;
}

:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Mono";
  color: #1F1F1F;
  background-color: #fff;
  font-size: 16px;
  font-size: calc-rem-value(16);
  overflow-x: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

body.dark-page {
  background-color: #1F1F1F;
}

p {
  font-size: 16px;
  color: #1F1F1F;
  line-height: 1.8em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1F1F1F;
  font-family: "Italiana";
  font-weight: 400;
}

ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.section-fluid {
  padding: 120px 65px;
}
@media (max-width: 991px) {
  .section-fluid {
    padding: 90px 30px;
  }
}
@media (max-width: 575px) {
  .section-fluid {
    padding: 80px 0px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }
}

.hidden {
  display: none;
}

.sr-only {
  display: none !important;
  opacity: 0;
  visibility: hidden;
}

/* 1.2 Global Elements */
.page-wrapper {
  position: relative;
  overflow: hidden;
}

.wow {
  visibility: hidden;
}

.fi:before {
  margin: 0;
}

.section-bg {
  background: #F5F5F5 !important;
}

.section-padding {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .section-padding {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .section-padding {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .section-padding {
    padding: 60px 0;
  }
}

.pt-120 {
  padding-top: 120px;
}
@media (max-width: 991px) {
  .pt-120 {
    padding-top: 90px;
  }
}
@media (max-width: 767px) {
  .pt-120 {
    padding-top: 80px;
  }
}
@media (max-width: 575px) {
  .pt-120 {
    padding-top: 60px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .pb-120 {
    padding-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .pb-120 {
    padding-bottom: 60px;
  }
}

/*** contact form error handling ***/
.contact-activation .error-handling-messages {
  width: 100% !important;
  margin-top: 15px !important;
}
.contact-activation label.error {
  color: red;
  font-size: 13px;
  font-weight: normal;
  margin: 5px 0 0 0;
  text-align: left;
  display: block;
  margin-bottom: 10px;
}
.contact-activation #c-loader,
.contact-activation #loader {
  display: none;
  margin-top: 10px;
}
.contact-activation #c-loader i,
.contact-activation #loader i {
  font-size: 30px;
  font-size: calc-rem-value(30);
  color: #FF4A3B;
  display: inline-block;
  -webkit-animation: rotating linear 2s infinite;
  animation: rotating linear 2s infinite;
}
.contact-activation #success,
.contact-activation #c-success,
.contact-activation #c-error,
.contact-activation #error {
  width: 100%;
  color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  text-align: center;
  display: none;
}
@media (max-width: 767px) {
  .contact-activation #success,
  .contact-activation #c-success,
  .contact-activation #c-error,
  .contact-activation #error {
    font-size: 15px;
  }
}
.contact-activation #c-success,
.contact-activation #success {
  background-color: #009a00;
  border-left: 5px solid green;
  margin-bottom: 5px;
}
.contact-activation #c-error,
.contact-activation #error {
  background-color: #ff1a1a;
  border-left: 5px solid red;
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 5s alternate infinite;
  animation: rotating 5s alternate infinite;
}

/*** back to top **/
.back-btn {
  background-color: #FF4A3B;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 4px solid #ff4131;
  border-radius: 3px;
  text-align: center;
  display: none;
  position: fixed;
  z-index: 999;
  right: 15px;
  bottom: 15px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
@media (max-width: 991px) {
  .back-btn {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
.back-btn:hover {
  background-color: #FF4A3B;
}

.back-btn i {
  font-size: 18px;
  font-size: calc-rem-value(18);
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/** for popup image ***/
.mfp-wrap {
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99999;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

/*** for fancybox video ***/
.fancybox-overlay {
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999 !important;
}

.fancybox-wrap {
  z-index: 99999 !important;
}

.ui-widget.ui-widget-content {
  box-shadow: 0px 1px 13.5px 1.5px rgba(46, 49, 108, 0.08);
  border: none;
  padding: 10px;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #e3e3e3;
  background: #f9f9f9;
  font-weight: normal;
  color: #454545;
  text-align: center;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #e3d9d9;
  background: #7f91a6;
  color: #ffffff;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #FF4A3B;
  background: #FF4A3B;
  font-weight: normal;
  color: #ffffff;
}

/*** mouse design***/
.mouse-circle {
  position: fixed;
  background-color: #F2C94C;
  width: 10px;
  height: 10px;
  left: -10px;
  top: -10px;
  border-radius: 100%;
  z-index: 1;
  z-index: 10000;
  transform: scale(1);
}
.mouse-circle.active {
  opacity: 1;
  transform: scale(0);
}

.mouse-circle-follow {
  position: fixed;
  border: 1px solid #F2C94C;
  width: 40px;
  height: 40px;
  left: -25px;
  top: -25px;
  border-radius: 100%;
  z-index: 1;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  transform: scale(1);
}
.mouse-circle-follow.active {
  transform: scale(3);
}

body.dark-page .mouse-circle {
  background-color: #fff;
}
body.dark-page .mouse-circle-follow {
  border-color: #fff;
}

.sticky {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s ease;
  animation: smoothScroll 1s forwards;
  box-shadow: 0 -5px 15px rgba(8, 106, 216, 0.2901960784);
}
@media (min-width: 991px) {
  .sticky {
    padding: 0 65px;
  }
}
@media (max-width: 991px) {
  .sticky {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .sticky {
    padding: 15px 0;
  }
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-142px);
  }
  100% {
    transform: translateY(0px);
  }
}
.section-title,
.section-title-s2,
.section-title-s3 {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .section-title,
  .section-title-s2,
  .section-title-s3 {
    margin-bottom: 40px;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .section-title,
  .section-title-s2,
  .section-title-s3 {
    margin-bottom: 20px;
    text-align: center;
  }
}
.section-title span,
.section-title-s2 span,
.section-title-s3 span {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: 8px;
  display: block;
  color: #fff;
}
@media (max-width: 767px) {
  .section-title span,
  .section-title-s2 span,
  .section-title-s3 span {
    font-size: 15px;
    letter-spacing: 4px;
  }
}
.section-title h2,
.section-title-s2 h2,
.section-title-s3 h2 {
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
}
@media (max-width: 1199px) {
  .section-title h2,
  .section-title-s2 h2,
  .section-title-s3 h2 {
    font-size: 70px;
  }
}
@media (max-width: 991px) {
  .section-title h2,
  .section-title-s2 h2,
  .section-title-s3 h2 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .section-title h2,
  .section-title-s2 h2,
  .section-title-s3 h2 {
    font-size: 50px;
    line-height: 40px;
  }
}
@media (max-width: 575px) {
  .section-title h2,
  .section-title-s2 h2,
  .section-title-s3 h2 {
    font-size: 35px;
    margin-top: 0;
  }
}
.section-title p,
.section-title-s2 p,
.section-title-s3 p {
  font-size: 18px;
}

.section-title-s2 {
  text-align: center;
}

@media (max-width: 991px) {
  .section-title-s3 {
    text-align: center;
  }
}
.section-title-s3 span {
  color: #1F1F1F;
}
.section-title-s3 h2 {
  color: #1F1F1F;
}
.btn-style-1 a{
  color: #fff;
}
.btn-style-1,
.btn-style-2 {
  background: transparent;
  color: #fff;
  display: inline-block;
  font-weight: 500;
  padding: 15px 45px;
  border: 0;
  z-index: 1;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: "Italiana";
  border: 1px solid #FF4A3B;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}
.btn-style-1:before,
.btn-style-2:before {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 0px;
  z-index: -1;
  content: "";
  border-radius: 100px;
  background: #FF4A3B;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s;
}
.btn-style-1.btn-style-1-s3,
.btn-style-2.btn-style-1-s3 {
  background: #fff;
  color: #FF4A3B;
}
.btn-style-1.btn-style-1-s3:after,
.btn-style-2.btn-style-1-s3:after {
  border: 1px solid #fff;
}
.btn-style-1.btn-style-1-s4,
.btn-style-2.btn-style-1-s4 {
  background: #FF4A3B;
  color: #fff;
}
.btn-style-1.btn-style-1-s4:after,
.btn-style-2.btn-style-1-s4:after {
  border: 1px solid #FF4A3B;
}
.btn-style-1:hover:before, .btn-style-1:focus:before, .btn-style-1:active:before,
.btn-style-2:hover:before,
.btn-style-2:focus:before,
.btn-style-2:active:before {
  left: 0%;
  right: auto;
  width: 100%;
}
.btn-style-1:hover:after,
.btn-style-2:hover:after {
  opacity: 1;
}
@media (max-width: 991px) {
  .btn-style-1,
  .btn-style-2 {
    font-size: 18px;
    font-size: calc-rem-value(18);
  }
}
@media (max-width: 767px) {
  .btn-style-1,
  .btn-style-2 {
    padding: 12px 18px;
    font-size: 14px;
  }
}
.fancy-btn a{
  color: #fff;
}
.fancy-btn {
  color: #fff;
  text-align: center;
  font-family: "Italiana";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 157%;
  letter-spacing: -0.32px;
  width: 126.921px;
  height: 134.486px;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  animation: morphing 10s infinite;
  margin-top: 30px;
  background: none;
  align-items: center;
}
@media (max-width: 991px) {
  .fancy-btn {
    margin: 0 auto;
    margin-top: 30px;
  }
}
.fancy-btn i {
  margin-top: 10px;
}
.fancy-btn:hover {
  color: #fff;
}

.btn-style-2 {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #1F1F1F;
  font-family: "Space Mono";
}

.form input,
.form textarea,
.form select {
  border-color: #bfbfbf;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  color: #595959;
  font-style: normal;
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: #FF4A3B;
  -webkit-box-shadow: 0 0 5px 0 #ff796e;
  -moz-box-shadow: 0 0 5px 0 #ff796e;
  -o-box-shadow: 0 0 5px 0 #ff796e;
  -ms-box-shadow: 0 0 5px 0 #ff796e;
  box-shadow: 0 0 5px 0 #ff796e;
}
.form ::-webkit-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}
.form :-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}
.form ::-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}
.form :-ms-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}
.form select {
  font-style: normal;
  background: url(../img/select-icon.png) no-repeat right center;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  cursor: pointer;
}
.form select::-ms-expand { /* for IE 11 */
  display: none;
}
.form ::-webkit-input-placeholder { /* Edge */
  font-style: normal;
}
.form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  font-style: normal;
}
.form ::placeholder {
  font-style: normal;
}

.social-links {
  overflow: hidden;
}
.social-links li {
  float: left;
  width: 35px;
  height: 35px;
  margin-right: 1px;
}
.social-links li a {
  background-color: #ff796e;
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  color: #fff;
  text-align: center;
}
.social-links li a:hover {
  background-color: #FF4A3B;
}

.header-search-form {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  transform: translateY(-100%);
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.header-search-form .close-header-search {
  position: absolute;
  right: 25px;
  left: auto;
  color: #ffffff;
  width: auto;
  height: auto;
  top: 25px;
  margin: 0px;
  border: none;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 50px;
  height: 50px;
  background: #FF4A3B;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
}
.header-search-form .close-header-search i {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 20px;
}
.header-search-form form {
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: -35px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  background-color: transparent;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.header-search-form .form-group {
  position: relative;
  margin: 0px;
  overflow: hidden;
  border-radius: 40px;
}
.header-search-form .form-group input[type=text],
.header-search-form .form-group input[type=search] {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 50px;
  color: #000000;
  height: 70px;
  width: 100%;
  padding: 10px 30px;
  background: #ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 40px;
  border: 0;
}
.header-search-form .form-group input[type=text]:focus,
.header-search-form .form-group input[type=search]:focus {
  outline: none;
  border-color: #FF4A3B;
}
.header-search-form .form-group input[type=submit] {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  padding: 0px 20px;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.header-search-form .form-group input[type=submit]:hover,
.header-search-form .form-group button:hover {
  color: #000000;
}
.header-search-form .form-group .search-btn {
  width: 110px;
  height: 70px;
  background: #FF4A3B;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  border: 0;
}
.header-search-form input::placeholder,
.header-search-form textarea::placeholder {
  color: #000000;
}
.header-search-form.active {
  transform: translateY(0%);
  margin-top: 0;
}
.header-search-form.active .close-header-search {
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}
.header-search-form.active form {
  transform: scaleX(1);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.page-title {
  background: #FDF9F6;
  min-height: 300px;
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-title {
    min-height: 250px;
  }
}
@media (max-width: 575px) {
  .page-title {
    min-height: 150px;
  }
}
.page-title .breadcumb-wrap {
  padding-bottom: 30px;
}
@media (max-width: 575px) {
  .page-title .breadcumb-wrap {
    text-align: center;
  }
}
.page-title .breadcumb-wrap h2 {
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #1F1F1F;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .page-title .breadcumb-wrap h2 {
    font-size: 30px;
    line-height: 55px;
    margin-bottom: 10px;
  }
}
.page-title .breadcumb-wrap ol {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 575px) {
  .page-title .breadcumb-wrap ol {
    justify-content: center;
  }
}
.page-title .breadcumb-wrap ol li {
  display: inline-block;
  padding: 0px 15px;
  color: #5C5C5C;
  position: relative;
  font-size: 20px;
}
@media (max-width: 767px) {
  .page-title .breadcumb-wrap ol li {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .page-title .breadcumb-wrap ol li {
    font-size: 16px;
    padding: 0 10px;
  }
  .page-title .breadcumb-wrap ol li:first-child {
    padding-left: 0;
  }
}
.page-title .breadcumb-wrap ol li:after {
  content: "/";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}
.page-title .breadcumb-wrap ol li:last-child span {
  color: #cbd4fd;
}
.page-title .breadcumb-wrap ol li:last-child:after {
  display: none;
}
.page-title .breadcumb-wrap ol li a {
  color: #5C5C5C;
  font-size: 20px;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .page-title .breadcumb-wrap ol li a {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .page-title .breadcumb-wrap ol li a {
    font-size: 16px;
  }
}
.page-title .breadcumb-wrap ol li a:hover {
  color: #FF4A3B;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1F1F1F;
  z-index: 999;
}

.loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #FF4A3B;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #219653;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

.loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #F2C94C;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/**** pagination ****/
.pagination-wrapper {
  text-align: center;
  margin-top: 60px;
}
@media (max-width: 991px) {
  .pagination-wrapper {
    text-align: left;
    margin-top: 40px;
  }
}
.pagination-wrapper .pg-pagination {
  display: inline-block;
  overflow: hidden;
  list-style-type: none;
  text-align: center;
}
.pagination-wrapper .pg-pagination li {
  float: left;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .pagination-wrapper .pg-pagination li {
    margin-right: 5px;
  }
}
.pagination-wrapper .pg-pagination li:last-child {
  margin-right: 0;
}
.pagination-wrapper .pg-pagination li a {
  background-color: transparent;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-size: calc-rem-value(16);
  font-weight: 600;
  color: #1F1F1F;
  background: #f9f7f6;
  display: block;
}
@media (max-width: 991px) {
  .pagination-wrapper .pg-pagination li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    font-size: calc-rem-value(15);
  }
}
.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
  background: #FF4A3B;
  border-color: #FF4A3B;
  color: #fff;
}
.pagination-wrapper .pg-pagination .fi:before {
  font-size: 15px;
  font-size: calc-rem-value(15);
}

.pagination-wrapper-left {
  text-align: left;
}

.pagination-wrapper-right {
  text-align: right;
}
@media screen and (min-width: 1200px) {
  .pagination-wrapper-right {
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .pagination-wrapper-right {
    margin-top: 45px;
    text-align: left;
  }
}

/*--------------------------------------------------------------
1.1 header section
--------------------------------------------------------------*/
@media (min-width: 991px) {
  .header-area {
    padding: 0 65px;
  }
}
@media (max-width: 991px) {
  .header-area {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .header-area {
    padding: 15px 0;
  }
}
.header-area .main-menu .row {
  width: 100%;
}
.header-area ul.nav {
  list-style: none;
  justify-content: center;
}
.header-area .main-menu > ul {
  display: flex;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .header-area .main-menu #navbar li {
    position: relative;
  }
  .header-area .main-menu ul li.has-submenu {
    position: relative;
  }
  .header-area .main-menu ul > li > a {
    font-size: 20px;
    padding: 35px 40px;
    display: block;
    color: #fff;
    font-weight: 400;
    position: relative;
  }
  .header-area .main-menu ul > li > a:hover,
  .header-area .main-menu ul > li > a .active {
    color: #FF4A3B;
  }
  .header-area .main-menu ul > li > a:hover:before,
  .header-area .main-menu ul > li > a.active:before {
    opacity: 1;
    visibility: visible;
  }
  .header-area .main-menu ul .submenu {
    background-color: #1f1f1f;
    box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
    width: 230px;
    position: absolute;
    padding: 20px 0;
    left: 0;
    top: 110%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header-area .main-menu ul > li .submenu a {
    font-size: 16px;
    font-size: calc-rem-value(16);
    display: block;
    padding: 12px 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .header-area .main-menu ul > li .submenu a:hover,
  .header-area .main-menu ul > li .submenu a .active {
    color: #FF4A3B;
  }
  .header-area .main-menu ul > li > .submenu .submenu {
    left: 110%;
    top: 0;
  }
  .header-area .main-menu ul > li > .submenu > .menu-item-has-children > a {
    position: relative;
  }
  .header-area .main-menu ul > li > .submenu > .menu-item-has-children > a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.73333rem;
    position: absolute;
    right: 15px;
    top: 58%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .header-area .main-menu ul > li:hover > .submenu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
  .header-area .main-menu #navbar .submenu > li:hover > .submenu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}
.header-area .header-area-right > ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 991px) {
  .header-area .main-menu .navigation {
    padding: 20px 0;
  }
}
@media (max-width: 1399px) {
  .header-area .main-menu ul > li > a {
    padding: 35px 18px;
  }
}
@media (max-width: 1199px) {
  .header-area .main-menu ul > li > a {
    padding: 35px 12px;
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .header-area .header-area-right {
    padding-right: 80px;
  }
}
@media (max-width: 575px) {
  .header-area .header-area-right {
    padding-right: 65px;
  }
}
.header-area .header-area-right .search-toggle-btn i {
  font-size: 40px;
  color: #FF4A3B;
}
@media (max-width: 991px) {
  .header-area .header-area-right .search-toggle-btn i {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .header-area .header-area-right .search-toggle-btn i {
    font-size: 25px;
  }
}
@media (max-width: 991px) {
  .header-area .header-right-menu-wrapper {
    display: none;
  }
}
.header-style-2 .star {
  width: 65px;
  height: 65px;
  animation: circle 25s linear infinite;
}
.header-area .header-right-menu-wrapper .right-menu-toggle-btn {
  text-align: center;
  cursor: pointer;
  width: 52px;
  height: 52px;
  border: 1px solid #FF4A3B;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-left: 40px;
}
.logo .mobail-logo {
  display: none;
}
.header-area .header-right-menu-wrapper .right-menu-toggle-btn .right-menu-toggle-btn-wrap {
  max-width: 22px;
}
.header-area .header-right-menu-wrapper .right-menu-toggle-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #F3ECE9;
  border: 5px;
  margin-left: auto;
  margin-bottom: 6px;
}
.header-area .header-right-menu-wrapper .right-menu-toggle-btn span:nth-child(3) {
  width: 18px;
  margin-bottom: 0;
}

.header-right-menu-wrap {
  background: #1F1F1F;
  width: 420px;
  height: 100%;
  z-index: 100;
  position: fixed;
  right: -420px;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  padding: 50px;
  padding-top: 100px;
}
.header-right-menu-wrap .header-right-sec {
  height: calc(100% - 30px);
  overflow-x: hidden;
  overflow-y: scroll;
}
.header-right-menu-wrap .header-right-sec::-webkit-scrollbar {
  width: 0;
}
@media (max-width: 575px) {
  .header-right-menu-wrap {
    width: 320px;
    right: -320px;
    padding: 20px;
  }
}
.header-right-menu-wrap .all-close {
  position: absolute;
  right: 100%;
  top: 0;
  width: 500%;
  height: 100%;
  z-index: -1111;
  opacity: 0.85;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.header-right-menu-wrap.right-menu-active {
  opacity: 1;
  visibility: visible;
  right: 0;
}
.header-right-menu-wrap .right-menu-close {
  display: block;
  width: 40px;
  height: 40px;
  background-color: #333333;
  color: #fff;
  text-align: center;
  overflow: hidden;
  position: absolute;
  right: 20px;
  top: 20px;
  line-height: 40px;
  border-radius: 3px;
  right: 10px;
  top: 20px;
  border: 0;
}
.header-right-menu-wrap .logo {
  margin-bottom: 40px;
}
.header-right-menu-wrap .widget {
  margin-bottom: 30px;
}
.header-right-menu-wrap .widget h3 {
  font-size: 25px;
  color: #fff;
  margin-bottom: 25px;
}
.header-right-menu-wrap .project-widget ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -3px;
}
.header-right-menu-wrap .project-widget ul li {
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  margin-bottom: 5px;
  padding: 0px 3px;
}
.header-right-menu-wrap .project-widget ul li img {
  width: 100%;
  border-radius: 5px;
}
.header-right-menu-wrap .project-widget ul li a {
  position: relative;
  display: block;
}
.header-right-menu-wrap .project-widget ul li a:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "\e73d";
  border-radius: 5px;
  background: rgba(38, 38, 38, 0.6);
  font-family: "themify";
  color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.header-right-menu-wrap .project-widget ul li a:hover:before {
  opacity: 1;
  visibility: visible;
}
.header-right-menu-wrap .contact-widget ul {
  list-style: none;
}
.header-right-menu-wrap .contact-widget ul li {
  padding-bottom: 15px;
  position: relative;
  padding-left: 35px;
  color: #fff;
  font-size: 16px;
}
.header-right-menu-wrap .contact-widget ul li i {
  position: absolute;
  left: 0;
  top: 3px;
}
.header-right-menu-wrap .contact-widget ul li .fi:before {
  font-size: 20px;
  margin-right: 15px;
}
.header-right-menu-wrap .newsletter-widget form .input-1 {
  position: relative;
}
.header-right-menu-wrap .newsletter-widget form input {
  background-color: #fff;
  height: 50px;
  color: #666;
  padding: 6px 20px;
  border: 1px solid #e1e1e1;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  position: relative;
}
.header-right-menu-wrap .newsletter-widget form .submit button {
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 20px;
  color: #fff;
  background: #FF4A3B;
  width: 50px;
  height: 50px;
  line-height: 54px;
  top: 0px;
  right: 0px;
  position: absolute;
}

.header-style-2 {
  padding-top: 20px;
  padding-bottom: 20px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.header-style-2 .header-area-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .header-style-2 .header-area-right {
    padding-right: 0;
  }
}
.header-style-2 .header-area-right .c-btn {
  text-align: right;
  margin-right: 50px;
}
@media (max-width: 767px) {
  .header-style-2 .header-area-right .c-btn {
    margin-right: 0;
  }
}
.header-style-2 .header-area-right .c-btn a {
  font-family: "Italiana";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  color: #fff;
}
@media (max-width: 991px) {
  .header-style-2 .header-area-right .c-btn a {
    font-size: 30px;
  }
  .header-style-3 .main-menu ul > li > a,
  .header-style-4 .main-menu ul > li > a {
    color: #fff !important;
  }
  .header-style-3 .main-menu ul > li > .submenu, .header-style-4 .main-menu ul > li > .submenu{
    background: transparent !important;
  }
}
@media (max-width: 575px) {
  .header-style-2 .header-area-right .c-btn a {
    font-size: 20px;
  }
}
.header-style-2 .header-area-right .c-btn a:hover {
  color: #FF4A3B;
}
@media (max-width: 767px) {
  .header-style-2 .header-area-right .star {
    display: none;
  }
}
.header-style-2 .header-area-right .star img {
  animation: circle 25s linear infinite;
}

.header-style-3,
.header-style-4 {
  background: #fff;
}
.header-style-3 .main-menu ul > li > a,
.header-style-4 .main-menu ul > li > a {
  color: #1F1F1F;
}
.header-style-3 .main-menu ul > li > .submenu,
.header-style-4 .main-menu ul > li > .submenu {
  background: #fff;
}
.header-style-3 .main-menu ul > li > .submenu a,
.header-style-4 .main-menu ul > li > .submenu a {
  color: #1F1F1F;
}
.header-style-3 .header-area-right .search-toggle-btn,
.header-style-4 .header-area-right .search-toggle-btn {
  font-family: "Italiana";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #1F1F1F;
}
.header-style-3 .header-area-right .search-toggle-btn:hover,
.header-style-4 .header-area-right .search-toggle-btn:hover {
  color: #FF4A3B;
}

.header-style-4 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 11;
}
.header-style-4 ul > li > a.menu-item.active {
  color: #FF4A3B;
}

/*--------------------------------------------------------------
1.2 Hero Style
--------------------------------------------------------------*/
/*1.2.1 static-hero */
.static-hero {
  padding: 0 70px;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .static-hero {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .static-hero {
    padding: 0 0px;
  }
}
.static-hero .static-hero-wrap {
  background: #FF4A3B;
  padding: 80px 100px 90px;
  position: relative;
}
@media (max-width: 1500px) {
  .static-hero .static-hero-wrap {
    padding: 80px 70px 90px;
  }
}
@media (max-width: 1199px) {
  .static-hero .static-hero-wrap {
    padding: 80px 40px 110px;
  }
}
@media (max-width: 575px) {
  .static-hero .static-hero-wrap {
    padding: 50px 20px 110px;
  }
}
.static-hero .static-hero-wrap .hero-bottom-shape {
  position: absolute;
  left: 0;
  bottom: -110px;
  width: 100%;
}
@media (max-width: 575px) {
  .static-hero .static-hero-wrap .hero-bottom-shape {
    bottom: -95px;
  }
}
.static-hero .static-hero-text {
  padding-top: 60px;
}
@media (max-width: 991px) {
  .static-hero .static-hero-text {
    text-align: center;
    padding-top: 0;
  }
}
.static-hero .static-hero-text span {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 10.8px;
}
@media (max-width: 575px) {
  .static-hero .static-hero-text span {
    font-size: 18px;
    letter-spacing: 4.8px;
  }
}
.static-hero .static-hero-text h2 {
  font-size: 130px;
  font-style: normal;
  font-weight: 400;
  line-height: 130px;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 30px;
}
@media (max-width: 1500px) {
  .static-hero .static-hero-text h2 {
    font-size: 100px;
    line-height: 100px;
  }
}
@media (max-width: 1199px) {
  .static-hero .static-hero-text h2 {
    font-size: 70px;
    line-height: 70px;
  }
}
@media (max-width: 575px) {
  .static-hero .static-hero-text h2 {
    font-size: 44px;
    line-height: 44px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
.static-hero .static-hero-text p {
  max-width: 615px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0.64px;
  color: #fff;
  display: flex;
  color: #fff;
}
@media (max-width: 991px) {
  .static-hero .static-hero-text p {
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .static-hero .static-hero-text p {
    font-size: 14px;
  }
}
.static-hero .static-hero-text p i {
  width: 65px;
  margin-right: 10px;
}
.static-hero .static-hero-text p i img {
  animation: circle 15s linear infinite;
}
.static-hero .right-image {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .static-hero .right-image {
    max-width: 450px;
    margin: 0 auto;
    margin-top: 30px;
  }
}
.static-hero .right-image .back-shape {
  position: absolute;
  right: -70px;
  bottom: -130px;
  z-index: -1;
}
@media (max-width: 1500px) {
  .static-hero .right-image .back-shape {
    max-width: 70%;
  }
}
.static-hero .right-image .right-image-mask {
  mask-size: 100% !important;
  -webkit-mask-size: 100% !important;
  -webkit-mask-repeat: no-repeat !important;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  max-width: 380px;
}
.static-hero .right-image .right-image-mask img {
  width: 100%;
}

@keyframes morphing {
  0% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
  }
}
.static-hero-s2,
.static-hero-s4 {
  background: url(../img/hero/bg.jpg) no-repeat center center;
  background-size: cover;
  padding-bottom: 200px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .static-hero-s2,
  .static-hero-s4 {
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .static-hero-s2,
  .static-hero-s4 {
    padding-bottom: 30px;
  }
}
.static-hero-s2 .static-hero-text,
.static-hero-s4 .static-hero-text {
  margin-top: 80px;
  position: relative;
}
@media (max-width: 991px) {
  .static-hero-s2 .static-hero-text,
  .static-hero-s4 .static-hero-text {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .static-hero-s2 .static-hero-text,
  .static-hero-s4 .static-hero-text {
    margin-top: 30px;
  }
}
.static-hero-s2 .static-hero-text h2,
.static-hero-s4 .static-hero-text h2 {
  font-size: 200px;
  font-style: normal;
  font-weight: 400;
  line-height: 130px;
  margin-bottom: 80px;
  color: #fff;
}
@media (max-width: 1600px) {
  .static-hero-s2 .static-hero-text h2,
  .static-hero-s4 .static-hero-text h2 {
    font-size: 150px;
    margin-bottom: 50px;
  }
}
@media (max-width: 1399px) {
  .static-hero-s2 .static-hero-text h2,
  .static-hero-s4 .static-hero-text h2 {
    font-size: 120px;
    line-height: 120px;
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .static-hero-s2 .static-hero-text h2,
  .static-hero-s4 .static-hero-text h2 {
    font-size: 80px;
    line-height: 80px;
    margin-bottom: 10px;
  }
}
.static-hero-s2 .static-hero-text p,
.static-hero-s4 .static-hero-text p {
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  color: #fff;
}
@media (max-width: 1600px) {
  .static-hero-s2 .static-hero-text p,
  .static-hero-s4 .static-hero-text p {
    font-size: 22px;
  }
}
@media (max-width: 1399px) {
  .static-hero-s2 .static-hero-text p,
  .static-hero-s4 .static-hero-text p {
    font-size: 18px;
    line-height: 35px;
  }
}
.static-hero-s2 .static-hero-text p a,
.static-hero-s4 .static-hero-text p a {
  font-style: italic;
  color: #FF4A3B;
  font-weight: 700;
  display: block;
}
.static-hero-s2 .static-hero-text p a i,
.static-hero-s4 .static-hero-text p a i {
  color: #fff;
}
.static-hero-s2 .static-hero-text .btn-style-1,
.static-hero-s4 .static-hero-text .btn-style-1 {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .static-hero-s2 .static-hero-text .btn-style-1,
  .static-hero-s4 .static-hero-text .btn-style-1 {
    justify-content: center;
  }
}
.static-hero-s2 .static-hero-text .btn-style-1 i,
.static-hero-s4 .static-hero-text .btn-style-1 i {
  margin-left: 15px;
  margin-top: 5px;
}
@media (max-width: 1199px) {
  .static-hero-s2 .static-hero-text .btn-style-1,
  .static-hero-s4 .static-hero-text .btn-style-1 {
    font-size: 25px;
  }
}
.static-hero-s2 .static-hero-text .separator,
.static-hero-s4 .static-hero-text .separator {
  width: 454px;
  height: 1px;
  background: #4F4F4F;
  margin: 50px 0 65px;
  position: relative;
}
@media (max-width: 1600px) {
  .static-hero-s2 .static-hero-text .separator,
  .static-hero-s4 .static-hero-text .separator {
    width: 354px;
  }
}
@media (max-width: 1199px) {
  .static-hero-s2 .static-hero-text .separator,
  .static-hero-s4 .static-hero-text .separator {
    width: 254px;
  }
}
@media (max-width: 991px) {
  .static-hero-s2 .static-hero-text .separator,
  .static-hero-s4 .static-hero-text .separator {
    margin: 40px auto;
  }
}
.static-hero-s2 .static-hero-text .separator i,
.static-hero-s4 .static-hero-text .separator i {
  position: absolute;
  right: -5px;
  top: -7.5px;
  color: #4F4F4F;
}
@media (max-width: 991px) {
  .static-hero-s2 .static-hero-text .download-btn,
  .static-hero-s4 .static-hero-text .download-btn {
    display: flex;
    justify-content: center;
    text-align: center;
  }
}
.static-hero-s2 .static-hero-text .diamond-shape,
.static-hero-s4 .static-hero-text .diamond-shape {
  position: absolute;
  top: 0;
  right: -150px;
}
@media (max-width: 991px) {
  .static-hero-s2 .static-hero-text .diamond-shape,
  .static-hero-s4 .static-hero-text .diamond-shape {
    display: none;
  }
}
.static-hero-s2 .middle-image,
.static-hero-s4 .middle-image {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .static-hero-s2 .middle-image,
  .static-hero-s4 .middle-image {
    max-width: 600px;
    margin: 50px auto;
  }
}
.static-hero-s2 .middle-image .back-shape,
.static-hero-s4 .middle-image .back-shape {
  position: absolute;
  left: -25px;
  bottom: 15px;
  z-index: -1;
}
.static-hero-s2 .middle-image .back-shape svg,
.static-hero-s4 .middle-image .back-shape svg {
  width: 100%;
  height: 473px;
}
@media (max-width: 1199px) {
  .static-hero-s2 .middle-image .back-shape svg,
  .static-hero-s4 .middle-image .back-shape svg {
    height: 353px;
  }
}
@media (max-width: 991px) {
  .static-hero-s2 .middle-image .back-shape svg,
  .static-hero-s4 .middle-image .back-shape svg {
    height: 473px;
  }
}
@media (max-width: 375px) {
  .static-hero-s2 .middle-image .back-shape svg,
  .static-hero-s4 .middle-image .back-shape svg {
    height: 353px;
  }
}
.static-hero-s2 .middle-image .exprience-wrap,
.static-hero-s4 .middle-image .exprience-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -80px;
  width: 222px;
  height: 222px;
  background: #4F4F4F;
  border-radius: 50%;
  text-align: center;
}
.static-hero-s2 .middle-image .exprience-wrap .exprience-inner,
.static-hero-s4 .middle-image .exprience-wrap .exprience-inner {
  padding: 40px;
  border: 1px dashed rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  width: 192px;
  height: 192px;
  position: relative;
  left: 15px;
  top: 15px;
}
.static-hero-s2 .middle-image .exprience-wrap .exprience-inner p,
.static-hero-s4 .middle-image .exprience-wrap .exprience-inner p {
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  margin-top: 15px;
  color: #fff;
}
.static-hero-s2 .middle-image .exprience-wrap .exprience-inner p span,
.static-hero-s4 .middle-image .exprience-wrap .exprience-inner p span {
  font-size: 16px;
}
.static-hero-s2 .hero-right-text,
.static-hero-s4 .hero-right-text {
  text-align: right;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .static-hero-s2 .hero-right-text,
  .static-hero-s4 .hero-right-text {
    text-align: center;
  }
}
.static-hero-s2 .hero-right-text h3,
.static-hero-s4 .hero-right-text h3 {
  font-size: 114px;
  font-style: normal;
  font-weight: 400;
  line-height: 130px;
  margin-left: -50px;
  position: relative;
  left: -100px;
  margin-bottom: 20px;
  color: #fff;
}
@media (max-width: 1820px) {
  .static-hero-s2 .hero-right-text h3,
  .static-hero-s4 .hero-right-text h3 {
    font-size: 100px;
  }
}
@media (max-width: 1600px) {
  .static-hero-s2 .hero-right-text h3,
  .static-hero-s4 .hero-right-text h3 {
    font-size: 80px;
    margin-left: -20px;
    line-height: 90px;
  }
}
@media (max-width: 1399px) {
  .static-hero-s2 .hero-right-text h3,
  .static-hero-s4 .hero-right-text h3 {
    margin-left: 0px;
    left: 0;
    font-size: 60px;
    line-height: 80px;
  }
}
@media (max-width: 1199px) {
  .static-hero-s2 .hero-right-text h3,
  .static-hero-s4 .hero-right-text h3 {
    font-size: 50px;
    line-height: 60px;
  }
}
.static-hero-s2 .hero-right-text h4,
.static-hero-s4 .hero-right-text h4 {
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 6px;
  margin-bottom: 20px;
  color: #fff;
}
@media (max-width: 1820px) {
  .static-hero-s2 .hero-right-text h4,
  .static-hero-s4 .hero-right-text h4 {
    font-size: 50px;
  }
}
@media (max-width: 1600px) {
  .static-hero-s2 .hero-right-text h4,
  .static-hero-s4 .hero-right-text h4 {
    font-size: 40px;
  }
}
@media (max-width: 1399px) {
  .static-hero-s2 .hero-right-text h4,
  .static-hero-s4 .hero-right-text h4 {
    font-size: 30px;
  }
}
@media (max-width: 1199px) {
  .static-hero-s2 .hero-right-text h4,
  .static-hero-s4 .hero-right-text h4 {
    font-size: 25px;
  }
}
.static-hero-s2 .hero-right-text ul,
.static-hero-s4 .hero-right-text ul {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .static-hero-s2 .hero-right-text ul,
  .static-hero-s4 .hero-right-text ul {
    justify-content: center;
  }
}
.static-hero-s2 .hero-right-text ul li + li,
.static-hero-s4 .hero-right-text ul li + li {
  padding-left: 20px;
}
.static-hero-s2 .hero-right-text ul li a,
.static-hero-s4 .hero-right-text ul li a {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
}
.static-hero-s2 .hero-right-text .arrow-shape,
.static-hero-s4 .hero-right-text .arrow-shape {
  text-align: left;
}
@media (max-width: 991px) {
  .static-hero-s2 .hero-right-text .arrow-shape,
  .static-hero-s4 .hero-right-text .arrow-shape {
    display: none;
  }
}

@media (max-width: 991px) {
  .static-hero-s3 {
    padding: 70px 0 90px;
  }
}
@media (max-width: 767px) {
  .static-hero-s3 {
    padding: 0px 0 90px;
  }
}
@media (max-width: 575px) {
  .static-hero-s3 {
    padding-top: 50px;
  }
}
.static-hero-s3 .container {
  position: relative;
}
@media (min-width: 1400px) {
  .static-hero-s3 .container {
    max-width: 1440px;
  }
}
@media (max-width: 767px) {
  .static-hero-s3 .static-hero-content {
    text-align: center;
  }
}
.static-hero-s3 .static-hero-content h4 {
  font-family: "Italiana";
  font-size: 120px;
  font-style: normal;
  font-weight: 400;
  line-height: 130px;
  text-transform: uppercase;
  display: block;
  padding-left: 50px;
}
@media (max-width: 1399px) {
  .static-hero-s3 .static-hero-content h4 {
    font-size: 90px;
  }
}
@media (max-width: 1199px) {
  .static-hero-s3 .static-hero-content h4 {
    font-size: 70px;
  }
}
@media (max-width: 991px) {
  .static-hero-s3 .static-hero-content h4 {
    font-size: 50px;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .static-hero-s3 .static-hero-content h4 {
    font-size: 40px;
    line-height: 95px;
  }
}
@media (max-width: 450px) {
  .static-hero-s3 .static-hero-content h4 {
    font-size: 30px;
    line-height: 75px;
  }
}
.static-hero-s3 .static-hero-content h2 {
  font-size: 180px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  position: relative;
}
@media (max-width: 1399px) {
  .static-hero-s3 .static-hero-content h2 {
    font-size: 120px;
  }
}
@media (max-width: 1199px) {
  .static-hero-s3 .static-hero-content h2 {
    font-size: 90px;
  }
}
@media (max-width: 991px) {
  .static-hero-s3 .static-hero-content h2 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .static-hero-s3 .static-hero-content h2 {
    font-size: 52px;
  }
}
@media (max-width: 450px) {
  .static-hero-s3 .static-hero-content h2 {
    font-size: 36px;
  }
}
.static-hero-s3 .static-hero-content h2 i {
  margin-left: 50px;
}
@media (max-width: 991px) {
  .static-hero-s3 .static-hero-content h2 i {
    margin-left: 0;
  }
}
@media (max-width: 1199px) {
  .static-hero-s3 .static-hero-content h2 i img {
    max-width: 120px;
  }
}
@media (max-width: 767px) {
  .static-hero-s3 .static-hero-content h2 i img {
    max-width: 70px;
  }
}
.static-hero-s3 .static-hero-content h2 span {
  position: relative;
  display: inline-block;
  padding-left: 200px;
}
@media (max-width: 991px) {
  .static-hero-s3 .static-hero-content h2 span {
    padding-left: 130px;
  }
}
@media (max-width: 767px) {
  .static-hero-s3 .static-hero-content h2 span {
    padding-left: 60px;
  }
}
.static-hero-s3 .static-hero-content h2 span b {
  position: absolute;
  left: -80px;
  top: -100%;
}
@media (max-width: 1399px) {
  .static-hero-s3 .static-hero-content h2 span b {
    left: -25px;
    top: -110%;
  }
}
@media (max-width: 1199px) {
  .static-hero-s3 .static-hero-content h2 span b {
    top: -160%;
  }
}
@media (max-width: 767px) {
  .static-hero-s3 .static-hero-content h2 span b {
    top: -100%;
  }
}
@media (max-width: 450px) {
  .static-hero-s3 .static-hero-content h2 span b {
    left: 0;
  }
}
@media (max-width: 1399px) {
  .static-hero-s3 .static-hero-content h2 span b img {
    max-width: 240px;
  }
}
@media (max-width: 991px) {
  .static-hero-s3 .static-hero-content h2 span b img {
    max-width: 180px;
  }
}
@media (max-width: 767px) {
  .static-hero-s3 .static-hero-content h2 span b img {
    max-width: 100px;
  }
}
@media (max-width: 450px) {
  .static-hero-s3 .static-hero-content h2 span b img {
    max-width: 70px;
  }
}
.static-hero-s3 .static-hero-content .exprience-wrap {
  position: absolute;
  right: 220px;
  bottom: 0;
  width: 222px;
  height: 222px;
  background: #2F80ED;
  border-radius: 50%;
  text-align: center;
  transform: rotate(30deg);
}
@media (max-width: 1399px) {
  .static-hero-s3 .static-hero-content .exprience-wrap {
    right: 100px;
    bottom: -35px;
  }
}
@media (max-width: 1199px) {
  .static-hero-s3 .static-hero-content .exprience-wrap {
    width: 200px;
    height: 200px;
    right: 105px;
    bottom: -60px;
  }
}
@media (max-width: 991px) {
  .static-hero-s3 .static-hero-content .exprience-wrap {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 767px) {
  .static-hero-s3 .static-hero-content .exprience-wrap {
    position: relative;
    margin: 0 auto;
    transform: unset;
    right: 0;
    bottom: 0;
  }
}
.static-hero-s3 .static-hero-content .exprience-wrap .exprience-inner {
  padding: 40px;
  border: 1px dashed rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  width: 192px;
  height: 192px;
  position: relative;
  left: 15px;
  top: 15px;
}
@media (max-width: 1199px) {
  .static-hero-s3 .static-hero-content .exprience-wrap .exprience-inner {
    width: 170px;
    height: 170px;
    padding: 10px;
  }
}
@media (max-width: 991px) {
  .static-hero-s3 .static-hero-content .exprience-wrap .exprience-inner {
    width: 140px;
    height: 140px;
    left: 5px;
    top: 5px;
  }
}
@media (max-width: 991px) {
  .static-hero-s3 .static-hero-content .exprience-wrap .exprience-inner img {
    max-width: 30px;
  }
}
.static-hero-s3 .static-hero-content .exprience-wrap .exprience-inner p {
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  margin-top: 15px;
  color: #fff;
}
.static-hero-s3 .static-hero-content .exprience-wrap .exprience-inner p span {
  font-size: 16px;
}
.static-hero-s3 .shape {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 991px) {
  .static-hero-s3 .shape {
    top: -70px;
    right: -40px;
  }
}
@media (max-width: 767px) {
  .static-hero-s3 .shape {
    display: none;
  }
}
.static-hero-s3 .shape img {
  animation: bounceLeftToRight 4s infinite;
}

.static-hero-s4 {
  background: #fff;
}
@media (max-width: 575px) {
  .static-hero-s4 {
    padding-bottom: 70px;
  }
}
.static-hero-s4 .static-hero-text h2 {
  color: #1F1F1F;
}
.static-hero-s4 .static-hero-text p {
  color: #1F1F1F;
}
.static-hero-s4 .static-hero-text p a i {
  color: #1F1F1F;
}
.static-hero-s4 .static-hero-text .separator {
  background: rgba(31, 31, 31, 0.2);
}
.static-hero-s4 .static-hero-text .separator i {
  position: absolute;
  right: -5px;
  top: -7.5px;
  color: rgba(31, 31, 31, 0.2);
}
.static-hero-s4 .static-hero-text .btn-style-1 a{
  color: #1F1F1F;
}
.static-hero-s4 .hero-right-text h3 {
  color: #1F1F1F;
}
.static-hero-s4 .hero-right-text h4 {
  color: #1F1F1F;
}
.static-hero-s4 .hero-right-text ul li a {
  color: #1F1F1F;
}

/*--------------------------------------------------------------
1.3 footer Style
--------------------------------------------------------------*/
.footer-section {
  background: #262626;
  position: relative;
  font-size: 15px;
  overflow: hidden;
  z-index: 1;
}
.footer-section .footer-right-img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1600px) {
  .footer-section .footer-right-img {
    display: none;
  }
}
.footer-section ul {
  list-style: none;
}
.footer-section p {
  color: #fff;
  margin-top: 30px;
}
.footer-section li {
  color: #fff;
}
.footer-section .container {
  position: relative;
}
.footer-section .upper-footer {
  padding: 120px 0 70px;
}
@media (max-width: 991px) {
  .footer-section .upper-footer {
    padding: 80px 0 0px;
  }
}
@media (max-width: 767px) {
  .footer-section .upper-footer {
    padding: 60px 0 30px;
  }
}
@media (max-width: 991px) {
  .footer-section .upper-footer .col {
    min-height: 235px;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .footer-section .upper-footer .col {
    min-height: auto;
  }
}
h2.footer-widget-title {
  margin-bottom: 30px !important;
}
.footer-section .widget-title {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  h2.footer-widget-title,
  .footer-section .widget-title {
    margin-bottom: 20px;
  }
}
h2.footer-widget-title,
h3.footer-widget-instagram,
.footer-section .widget-title h3 {
  color: #fff;
  margin: 0;
  position: relative;
  font-family: "Italiana";
  font-weight: 400;
  font-size: 34px;
}
@media (max-width: 1399px) {
  h2.footer-widget-title,
  h3.footer-widget-instagram,
  .footer-section .widget-title h3 {
    font-size: 29px;
  }
}
@media (max-width: 1199px) {
  h2.footer-widget-title,
  h3.footer-widget-instagram,
  .footer-section .widget-title h3 {
    font-size: 24px;
  }
}
.footer-section .about-widget .logo {
  max-width: 180px;
  margin-bottom: 30px;
}
.footer-section .about-widget .widget-title {
  margin-bottom: 0;
}
.footer-section .about-widget p {
  margin-bottom: 0.8em;
  line-height: 1.9em;
}
.footer-section .about-widget p:last-child {
  margin-bottom: 0;
}
.footer-section .link-widget {
  overflow: hidden;
}
.footer-section .link-widget ul li {
  position: relative;
}
.menu-footer-menu-two-container ul li a,
.footer-section .link-widget ul li a {
  color: #fff;
  font-size: 18px;
  line-height: 35px;
  display: block;
}
.menu-footer-menu-two-container ul li a:hover,
.footer-section .link-widget ul li a:hover {
  color: #FF4A3B;
}
.footer-section .link-widget ul li + li {
  margin-top: 5px;
}
.footer-section .contact-ft {
  margin-top: 20px;
}
.footer-section .contact-ft ul li {
  padding-bottom: 15px;
  position: relative;
  padding-left: 35px;
  color: #e5e3e3;
  font-size: 17px;
}
.footer-section .contact-ft ul li i {
  position: absolute;
  left: 0;
  top: 0;
}
.footer-section .contact-ft ul li .fi:before {
  font-size: 20px;
  margin-right: 15px;
}
.footer-section .subscribe .form-field {
  position: relative;
}
.footer-section .subscribe .form-field input {
  width: 100%;
  height: 60px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
  padding-right: 70px;
  background: none;
  color: #fff;
}
.footer-section .subscribe .form-field input:focus {
  outline: none;
  border-color: #FF4A3B;
}
.footer-section .subscribe .form-field button {
  position: absolute;
  right: 0;
  top: 0;
  height: 60px;
  width: 60px;
  background: none;
  border: 0;
  color: #FF4A3B;
}
.footer-section .instagram ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -3px;
}
.footer-section .instagram ul li {
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  margin-bottom: 5px;
  padding: 0px 3px;
}
.footer-section .instagram ul li img {
  width: 100%;
  border-radius: 5px;
}
.footer-section .instagram ul li a {
  position: relative;
  display: block;
}
.footer-section .instagram ul li a:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "\e73d";
  border-radius: 5px;
  background: rgba(38, 38, 38, 0.6);
  font-family: "themify";
  color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.footer-section .instagram ul li a:hover:before {
  opacity: 1;
  visibility: visible;
}
.footer-section .lower-footer {
  text-align: center;
  position: relative;
}
.footer-section .lower-footer .row {
  padding: 20px 70px;
  border-radius: 5px 5px 0px 0px;
  background: #1F1F1F;
}
@media (max-width: 991px) {
  .footer-section .lower-footer .row {
    padding: 20px 15px;
  }
}
.footer-section .lower-footer ul {
  display: flex;
}
@media (max-width: 991px) {
  .footer-section .lower-footer ul {
    justify-content: center;
  }
}
.footer-section .lower-footer ul li a {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #fff;
}
.footer-section .lower-footer ul li a:hover {
  color: #FF4A3B;
}
.footer-section .lower-footer ul li + li {
  padding-left: 20px;
}
.footer-section .lower-footer .copy-right {
  text-align: right;
}
@media (max-width: 991px) {
  .footer-section .lower-footer .copy-right {
    text-align: center;
    margin-top: 10px;
  }
}
.footer-section .lower-footer .copyright {
  display: inline-block;
  font-size: 14px;
  margin: 0;
}
.footer-section .lower-footer .copyright a {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .footer-section .lower-footer .copyright {
    float: none;
    display: block;
  }
}

.sticky-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: -200px;
  z-index: 9999;
  opacity: 0;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  -ms-transition: all 0.7s;
  transition: all 0.7s;
}

.sticky-on {
  opacity: 1;
  top: 0;
}

/*--------------------------------------------------------------
2.0 Home-style-1
--------------------------------------------------------------*/
/* 2.1 service-section */
.service-section {
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .service-section {
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .service-section {
    padding-bottom: 30px;
  }
}
.service-section .service-left-text {
  padding-right: 75px;
}
@media (max-width: 991px) {
  .service-section .service-left-text {
    padding-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }
}
.service-section .service-left-text span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 8px;
  color: #fff;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .service-section .service-left-text span {
    letter-spacing: 3px;
  }
}
.service-section .service-left-text h2 {
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 10px;
  color: #fff;
}
@media (max-width: 1399px) {
  .service-section .service-left-text h2 {
    font-size: 65px;
  }
}
@media (max-width: 1199px) {
  .service-section .service-left-text h2 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .service-section .service-left-text h2 {
    font-size: 40px;
  }
}
.service-section .service-left-text h2 i {
  position: relative;
  bottom: -10px;
  left: -30px;
}
@media (max-width: 1199px) {
  .service-section .service-left-text h2 i {
    max-width: 60px;
    display: inline-block;
  }
}
.service-section .service-left-text p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0.64px;
  margin-bottom: 30px;
  color: #fff;
}
.service-section .service-left-text a.read-more {
  text-align: center;
  font-family: "Italiana";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 157%;
  letter-spacing: -0.32px;
  color: #fff;
  position: relative;
  padding-right: 25px;
}
.service-section .service-left-text a.read-more:hover {
  color: #FF4A3B;
}
.service-section .service-left-text a.read-more:hover:before {
  right: -5px;
}
.service-section .service-wrap .service-item {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .service-section .service-wrap .service-item {
    text-align: center;
  }
}
.service-section .service-wrap .service-item h2 {
  margin: 25px 0 20px;
  color: #fff;
}
@media (max-width: 1199px) {
  .service-section .service-wrap .service-item h2 {
    margin-bottom: 10px;
  }
}
.service-section .service-wrap .service-item h2 a {
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
}
.service-section .service-wrap .service-item h2 a:hover {
  color: #FF4A3B;
}
@media (max-width: 1399px) {
  .service-section .service-wrap .service-item h2 a {
    font-size: 25px;
  }
}
@media (max-width: 1199px) {
  .service-section .service-wrap .service-item h2 a {
    font-size: 22px;
  }
}
.service-section .service-wrap .service-item p {
  max-width: 290px;
  color: #fff;
}
@media (max-width: 991px) {
  .service-section .service-wrap .service-item p {
    margin: 0 auto;
  }
}
.service-section .service-wrap .col:nth-child(2) .service-item {
  margin-top: 20px;
}
@media (max-width: 991px) {
  .service-section .service-wrap .col:nth-child(2) .service-item {
    margin-top: 0;
  }
}
.service-section .service-wrap .col:nth-child(4) .service-item {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .service-section .service-wrap .col:nth-child(4) .service-item {
    margin-top: 0;
  }
}

/* 2.2 animate-marque-sec */
.animate-marque-sec,
.animate-marque-sec-s2 {
  position: relative;
  z-index: -1;
}
.animate-marque-sec:before,
.animate-marque-sec-s2:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
}
.animate-marque-sec .animate-marque,
.animate-marque-sec-s2 .animate-marque {
  position: relative;
  left: -10%;
  width: 120%;
  z-index: -1;
}
.animate-marque-sec .animate-marque .track,
.animate-marque-sec-s2 .animate-marque .track {
  animation: marquee 200s linear infinite;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.animate-marque-sec .animate-marque h1,
.animate-marque-sec-s2 .animate-marque h1 {
  font-size: 150px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 30px;
  text-transform: uppercase;
  line-height: 120px;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 20s linear infinite;
  margin-bottom: 0;
  color: #fff;
}
@media (max-width: 991px) {
  .animate-marque-sec .animate-marque h1,
  .animate-marque-sec-s2 .animate-marque h1 {
    font-size: 50px;
    line-height: 80px;
  }
}
@media (max-width: 575px) {
  .animate-marque-sec .animate-marque h1,
  .animate-marque-sec-s2 .animate-marque h1 {
    font-size: 30px;
    animation: marquee 10s linear infinite;
  }
}
@media (max-width: 575px) {
  .animate-marque-sec .animate-marque h1 img,
  .animate-marque-sec-s2 .animate-marque h1 img {
    max-width: 40px;
  }
}

/* 2.3 project-section */
.project-section .owl-item:nth-child(even) .project-item,
.project-section-s4 .owl-item:nth-child(even) .project-item {
  margin-top: 120px;
}
@media (max-width: 1199px) {
  .project-section .owl-item:nth-child(even) .project-item,
  .project-section-s4 .owl-item:nth-child(even) .project-item {
    margin-top: 70px;
  }
}
@media (max-width: 991px) {
  .project-section .owl-item:nth-child(even) .project-item,
  .project-section-s4 .owl-item:nth-child(even) .project-item {
    margin-top: 0px;
  }
}
.project-section .project-item,
.project-section-s4 .project-item {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.project-section .project-item .project-img,
.project-section-s4 .project-item .project-img {
  margin: 0 auto;
  position: relative;
  mask-size: 100% !important;
  -webkit-mask-size: 100% !important;
  -webkit-mask-repeat: no-repeat !important;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
}
.project-section .project-item .project-img img,
.project-section-s4 .project-item .project-img img {
  width: 100%;
  object-fit: cover;
  transition: all 0.6s;
  transform: scale(1);
  min-height: 310px;
}
.project-section .project-item:hover .project-img img,
.project-section-s4 .project-item:hover .project-img img {
  transform: scale(1.2);
}
.project-section .project-item .project-text,
.project-section-s4 .project-item .project-text {
  text-align: center;
  padding-top: 30px;
}
.project-section .project-item .project-text h2 a,
.project-section-s4 .project-item .project-text h2 a {
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
}
.project-section .project-item .project-text h2 a:hover,
.project-section-s4 .project-item .project-text h2 a:hover {
  color: #FF4A3B;
}
.project-section .project-item .project-text span,
.project-section-s4 .project-item .project-text span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #FF4A3B;
}
.project-section .owl-nav,
.project-section-s4 .owl-nav {
  text-align: center;
  bottom: -60px;
  position: relative;
}
.project-section .owl-nav .owl-prev,
.project-section-s4 .owl-nav .owl-prev {
  margin-right: 15px;
  background: none;
  border: 0;
}
.project-section .owl-nav .owl-prev span,
.project-section-s4 .owl-nav .owl-prev span {
  content: url(../img/project/left-arrow.png);
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.project-section .owl-nav .owl-next,
.project-section-s4 .owl-nav .owl-next {
  margin-left: 15px;
  background: none;
  border: 0;
}
.project-section .owl-nav .owl-next span,
.project-section-s4 .owl-nav .owl-next span {
  content: url(../img/project/right-arrow.png);
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* 2.4 testimonial-section */
.testimonial-section {
  padding-top: 40px;
  z-index: 1;
  position: relative;
}
.testimonial-section .testimonial-wrap {
  max-width: 1045px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-section .testimonial-wrap .testimonial-item p {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: "Italiana";
  margin-bottom: 30px;
  color: #fff;
}
@media (max-width: 991px) {
  .testimonial-section .testimonial-wrap .testimonial-item p {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .testimonial-section .testimonial-wrap .testimonial-item p {
    font-size: 25px;
    margin-bottom: 20px;
  }
}
.testimonial-section .testimonial-wrap .testimonial-item span {
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 1px;
  color: #fff;
}
@media (max-width: 991px) {
  .testimonial-section .testimonial-wrap .testimonial-item span {
    font-size: 20px;
  }
}
.testimonial-section .testimonial-wrap .testimonial-item span small {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0.72px;
  color: #FF4A3B;
}
@media (max-width: 991px) {
  .testimonial-section .testimonial-wrap .testimonial-item span small {
    font-size: 16px;
  }
}
.testimonial-section .testimonial-wrap .owl-nav {
  display: none;
}
.testimonial-section .arrow-shape {
  position: absolute;
  left: 40px;
  top: -150px;
}
@media (max-width: 1199px) {
  .testimonial-section .arrow-shape {
    max-width: 180px;
  }
}
@media (max-width: 767px) {
  .testimonial-section .arrow-shape {
    display: none;
  }
}

/* 2.5 partners-section */
.partners-section {
  padding: 85px 0;
  background: #FF4A3B;
  text-align: center;
}
.partners-section h2 {
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 50px;
  color: #fff;
}
.partners-section .grid img {
  width: auto;
  margin: 0 auto;
  display: inline-block;
}
.partners-section .owl-nav {
  display: none;
}
.partners-section .grid {
  padding: 0 20px;
}

/* 2.6 features-section */
.features-section {
  position: relative;
  z-index: 1;
}
.features-section .round-shape {
  position: absolute;
  left: 50px;
  bottom: 0;
}
@media (max-width: 1500px) {
  .features-section .round-shape {
    max-width: 150px;
    bottom: 30px;
  }
}
@media (max-width: 767px) {
  .features-section .round-shape {
    display: none;
  }
}
.features-section .round-shape img {
  animation: circle 25s linear infinite;
}
.features-section .features-wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.features-section .features-items {
  text-align: center;
}
.features-section .features-item {
  margin-bottom: 40px;
  font-family: "Italiana";
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
  position: relative;
  display: inline-block;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid transparent;
  transition: all 0.6s;
}
@media (max-width: 991px) {
  .features-section .features-item {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .features-section .features-item {
    font-size: 35px;
    margin-bottom: 30px;
  }
}
.features-section .features-item:hover {
  color: #FF4A3B;
  border-color: rgba(255, 255, 255, 0.15);
}
.features-section .features-item .features-masking {
  mask-size: 100% !important;
  -webkit-mask-size: 100% !important;
  -webkit-mask-repeat: no-repeat !important;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  position: absolute;
  object-fit: cover;
  transform: translateX(-50%) translateY(-50%);
  top: 50%;
  left: 50%;
  z-index: -10;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  max-width: 200px;
}
@media (max-width: 991px) {
  .features-section .features-item .features-masking {
    max-width: 120px;
  }
}
@media (max-width: 575px) {
  .features-section .features-item .features-masking {
    max-width: 100px;
  }
}
.features-section .features-item:hover .features-masking {
  opacity: 1;
}
.features-section .features-items:last-child .features-item {
  margin-bottom: 0;
}

/* 2.7 team-section */
.team-section {
  position: relative;
  z-index: 1;
}
.team-section .team-wrap .layer {
  position: relative !important;
}
.team-section .team-wrap .team-item {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.team-section .team-wrap .team-item .team-img-wrap {
  position: relative;
  z-index: 1;
}
.team-section .team-wrap .team-item .team-img-wrap .team-shape {
  position: absolute;
  left: 10px;
  top: 5px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.team-section .team-wrap .team-item .team-img {
  margin: 0 auto;
  position: relative;
  mask-size: 100% !important;
  -webkit-mask-size: 100% !important;
  -webkit-mask-repeat: no-repeat !important;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
}
.team-section .team-wrap .team-item .team-img img {
  transition: all 0.3s;
}
.team-section .team-wrap .team-item .team-text {
  position: absolute;
  left: 50%;
  bottom: -200px;
  padding: 10px 65px;
  transform: translateX(-50%);
  min-width: 293px;
  border-radius: 56px;
  background: rgba(255, 74, 59, 0.7);
  backdrop-filter: blur(2px);
  transition: all 0.6s;
}
@media (max-width: 1199px) {
  .team-section .team-wrap .team-item .team-text {
    min-width: 270px;
  }
}
@media (max-width: 767px) {
  .team-section .team-wrap .team-item .team-text {
    min-width: 215px;
    padding: 10px 15px;
  }
}
.team-section .team-wrap .team-item .team-text h3 {
  margin-bottom: 0;
}
.team-section .team-wrap .team-item .team-text h3 a {
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
}
@media (max-width: 1199px) {
  .team-section .team-wrap .team-item .team-text h3 a {
    font-size: 25px;
  }
}
.team-section .team-wrap .team-item .team-text span {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.48px;
  color: #fff;
}
.team-section .team-wrap .team-item:hover .team-text {
  bottom: 30px;
}
.team-section .team-wrap .col:nth-child(2) .team-item .team-img {
  border-top-right-radius: 220px;
  border-top-left-radius: 220px;
  overflow: hidden;
  mask-image: none !important;
    -webkit-mask-image: none !important;
}
.team-section .team-wrap .col:nth-child(2) .team-item .team-img img {
  border-top-right-radius: 220px;
  border-top-left-radius: 220px;
}
.team-section .team-wrap .col:nth-child(3) .team-item .team-img {
  clip-path: polygon(50% 0%, 100% 41%, 100% 100%, 0 100%, 0 41%);
  mask-image: none !important;
    -webkit-mask-image: none !important;
}
.team-section .flower-shape {
  position: absolute;
  right: 0px;
  bottom: -30px;
  z-index: -1;
  animation: zoom-in-zoom-out 5s ease infinite;
}
@media (max-width: 1500px) {
  .team-section .flower-shape {
    max-width: 250px;
    bottom: 30px;
  }
}
@media (max-width: 991px) {
  .team-section .flower-shape {
    display: none;
  }
}

/* 2.8 video-section */
.video-section {
  position: relative;
  z-index: 1;
}
.video-section .video-wrap {
  position: relative;
  max-width: 1296px;
  margin: 0 auto;
  mask-size: 100% !important;
  -webkit-mask-size: 100% !important;
  -webkit-mask-repeat: no-repeat !important;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
}
@media (max-width: 575px) {
  .video-section .video-wrap img {
    min-height: 180px;
    object-fit: cover;
  }
}
.video-section .video-wrap .video-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  text-align: center;
  border-radius: 50%;
  line-height: 200px;
  background: #FF4A3B;
  z-index: 11;
}
@media (max-width: 991px) {
  .video-section .video-wrap .video-btn {
    width: 150px;
    height: 150px;
    line-height: 150px;
  }
}
@media (max-width: 767px) {
  .video-section .video-wrap .video-btn {
    width: 100px;
    height: 100px;
    line-height: 100px;
  }
  .video-section .video-wrap .video-btn i img {
    max-width: 40px;
    min-height: auto;
  }
}
@media (max-width: 575px) {
  .video-section .video-wrap .video-btn {
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
  .video-section .video-wrap .video-btn i img {
    max-width: 40px;
    min-height: auto;
  }
}
.video-section .star-shape {
  position: absolute;
  left: 40px;
  bottom: 30px;
  z-index: -1;
}
@media (max-width: 575px) {
  .video-section .star-shape {
    display: none;
  }
}
.video-section .star-shape img {
  animation: circle 25s linear infinite;
}
@media (max-width: 1199px) {
  .video-section .star-shape img {
    max-width: 220px;
  }
}
@media (max-width: 991px) {
  .video-section .star-shape img {
    max-width: 150px;
  }
}
.video-section .arrow-shape {
  position: absolute;
  right: 40px;
  bottom: -30px;
  z-index: -1;
}
@media (max-width: 991px) {
  .video-section .arrow-shape {
    bottom: 0;
  }
}
@media (max-width: 575px) {
  .video-section .arrow-shape {
    display: none;
  }
}
.video-section .arrow-shape img {
  animation: bounceLeftToRight 4s infinite;
}
@media (max-width: 1199px) {
  .video-section .arrow-shape img {
    max-width: 220px;
  }
}
@media (max-width: 991px) {
  .video-section .arrow-shape img {
    max-width: 150px;
  }
}

/* 2.9 event-section */
.event-section .event-left-img {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .event-section .event-left-img {
    text-align: center;
  }
}
.event-section .event-left-img .inner-shape {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.event-section .event-left-img .inner-shape svg {
  width: 100%;
  height: 472px;
}
@media (max-width: 450px) {
  .event-section .event-left-img .inner-shape svg {
    height: 330px;
  }
}
@media (max-width: 350px) {
  .event-section .event-left-img .inner-shape svg {
    height: 230px;
  }
}
.event-section .event-left-img .inner-shape svg path {
  fill: #FF4A3B;
}
@media (max-width: 991px) {
  .event-section .event-items {
    margin-top: 50px;
  }
}
.event-section .event-items h3 {
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
  color: #fff;
}
@media (max-width: 1199px) {
  .event-section .event-items h3 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .event-section .event-items h3 {
    text-align: center;
  }
}
.event-section .event-items .event-item {
  margin-bottom: 30px;
}
.event-section .event-items .event-item:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .event-section .event-items .event-item {
    text-align: center;
  }
}
.event-section .event-items .event-item .icon {
  float: left;
  margin-right: 15px;
  margin-top: 5px;
  transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
}
@media (max-width: 767px) {
  .event-section .event-items .event-item .icon {
    float: none;
    margin-bottom: 20px;
  }
}
.event-section .event-items .event-item:hover .icon {
  -webkit-transform: scale(-1) rotate(180deg);
  -moz-transform: scale(-1) rotate(180deg);
  -ms-transform: scale(-1) rotate(180deg);
  -o-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
}
.event-section .event-items .event-item .text {
  overflow: hidden;
}
.event-section .event-items .event-item h4 {
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
}
@media (max-width: 1399px) {
  .event-section .event-items .event-item h4 {
    font-size: 25px;
  }
}
@media (max-width: 1199px) {
  .event-section .event-items .event-item h4 {
    font-size: 20px;
  }
}
.event-section .event-items .event-item span {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 10.8px;
  color: #fff;
}
@media (max-width: 1399px) {
  .event-section .event-items .event-item span {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .event-section .event-items .event-item span {
    font-size: 13px;
  }
}

/* 2.10 blog-section */
.blog-section,
.blog-section-s2 {
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .blog-section,
  .blog-section-s2 {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .blog-section,
  .blog-section-s2 {
    padding-bottom: 50px;
  }
}
.blog-section .blog-item,
.blog-section-s2 .blog-item {
  position: relative;
}
@media (max-width: 767px) {
  .blog-section .blog-item,
  .blog-section-s2 .blog-item {
    text-align: center;
  }
}
.blog-section .blog-item span,
.blog-section-s2 .blog-item span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #fff;
}
.blog-section .blog-item h2,
.blog-section-s2 .blog-item h2 {
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 10px 0 20px;
}
.blog-section .blog-item h2 a,
.blog-section-s2 .blog-item h2 a {
  color: #fff;
}
.blog-section .blog-item h2 a:hover,
.blog-section-s2 .blog-item h2 a:hover {
  color: #FF4A3B;
}
.blog-section .blog-item p,
.blog-section-s2 .blog-item p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #fff;
}
.blog-section .blog-item a.more,
.blog-section-s2 .blog-item a.more {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #fff;
  position: relative;
  padding-right: 25px;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}
.blog-section .blog-item a.more:before,
.blog-section-s2 .blog-item a.more:before {
  position: absolute;
  right: 0px;
  top: 0px;
  content: "\e628";
  font-family: "themify";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.blog-section .blog-item a.more:hover,
.blog-section-s2 .blog-item a.more:hover {
  color: #FF4A3B;
}
.blog-section .blog-item a.more:hover:before,
.blog-section-s2 .blog-item a.more:hover:before {
  right: -5px;
}
.blog-section .blog-item:hover a.more,
.blog-section-s2 .blog-item:hover a.more {
  opacity: 1;
  visibility: visible;
}
.blog-section .col + .col .blog-item,
.blog-section-s2 .col + .col .blog-item {
  position: relative;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .blog-section .col + .col .blog-item,
  .blog-section-s2 .col + .col .blog-item {
    padding-left: 0;
  }
}
.blog-section .col + .col .blog-item::before,
.blog-section-s2 .col + .col .blog-item::before {
  position: absolute;
  left: -15px;
  top: 0;
  width: 1px;
  height: 90%;
  content: "";
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  .blog-section .col + .col .blog-item::before,
  .blog-section-s2 .col + .col .blog-item::before {
    display: none;
  }
}
.blog-section .col:last-child .blog-item,
.blog-section-s2 .col:last-child .blog-item {
  padding-left: 0;
}
@media (max-width: 991px) {
  .blog-section .col:last-child .blog-item::before,
  .blog-section-s2 .col:last-child .blog-item::before {
    display: none;
  }
}

/*--------------------------------------------------------------
3.0 Home-style-2
--------------------------------------------------------------*/
/* 3.1 about-section */
.about-section,
.about-section-s2 {
  position: relative;
}
@media (max-width: 1199px) {
  .about-section,
  .about-section-s2 {
    padding-top: 30px;
  }
}
.about-section .about-content,
.about-section-s2 .about-content {
  text-align: center;
}
.about-section .about-content .about-top span,
.about-section-s2 .about-content .about-top span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 8px;
  display: block;
  margin-top: 20px;
  margin-bottom: 30px;
  color: #fff;
}
.about-section .about-content p,
.about-section-s2 .about-content p {
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: "Italiana";
  margin-bottom: 40px;
  color: #fff;
}
@media (max-width: 1199px) {
  .about-section .about-content p,
  .about-section-s2 .about-content p {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .about-section .about-content p,
  .about-section-s2 .about-content p {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .about-section .about-content p,
  .about-section-s2 .about-content p {
    font-size: 25px;
  }
}
.about-section .about-content .about-info,
.about-section-s2 .about-content .about-info {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-section .about-content .about-info span,
.about-section-s2 .about-content .about-info span {
  margin-left: 20px;
  color: #fff;
}
.about-section .fun-fact-wrap,
.about-section-s2 .fun-fact-wrap {
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 856px;
  background: #232323;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  margin-top: 75px;
}
@media (max-width: 767px) {
  .about-section .fun-fact-wrap,
  .about-section-s2 .fun-fact-wrap {
    padding: 0 15px 20px;
  }
}
.about-section .fun-fact-wrap .info,
.about-section-s2 .fun-fact-wrap .info {
  text-align: center;
  padding: 30px 0;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .about-section .fun-fact-wrap .info,
  .about-section-s2 .fun-fact-wrap .info {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0;
  }
}
.about-section .fun-fact-wrap .info + .info:before,
.about-section-s2 .fun-fact-wrap .info + .info:before {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  content: "";
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .about-section .fun-fact-wrap .info + .info:before,
  .about-section-s2 .fun-fact-wrap .info + .info:before {
    display: none;
  }
}
.about-section .fun-fact-wrap .info h3,
.about-section-s2 .fun-fact-wrap .info h3 {
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #FF4A3B;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .about-section .fun-fact-wrap .info h3,
  .about-section-s2 .fun-fact-wrap .info h3 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .about-section .fun-fact-wrap .info h3,
  .about-section-s2 .fun-fact-wrap .info h3 {
    font-size: 52px;
  }
}
.about-section .fun-fact-wrap .info h3 span,
.about-section-s2 .fun-fact-wrap .info h3 span {
  font-family: "Italiana";
}
.about-section .fun-fact-wrap .info p,
.about-section-s2 .fun-fact-wrap .info p {
  margin-bottom: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  margin-left: 20px;
  max-width: 125px;
  text-align: left;
  color: #fff;
}
@media (max-width: 767px) {
  .about-section .fun-fact-wrap .info p,
  .about-section-s2 .fun-fact-wrap .info p {
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .about-section .fun-fact-wrap .info p,
  .about-section-s2 .fun-fact-wrap .info p {
    font-size: 14px;
    line-height: 20px;
  }
}
.about-section .round-shape,
.about-section-s2 .round-shape {
  position: absolute;
  right: 70px;
  bottom: 25%;
  z-index: -1;
}
@media (max-width: 1199px) {
  .about-section .round-shape,
  .about-section-s2 .round-shape {
    max-width: 100px;
  }
}
.about-section .round-shape img,
.about-section-s2 .round-shape img {
  animation: circle 25s linear infinite;
}
.about-section .left-image,
.about-section-s2 .left-image {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .about-section .left-image,
  .about-section-s2 .left-image {
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .about-section .left-image,
  .about-section-s2 .left-image {
    display: none;
  }
}

/* 3.2 exprience-section */
@media (max-width: 991px) {
  .exprience-section {
    padding-top: 0;
  }
}
.exprience-section .exprience-wrap {
  margin-bottom: 140px;
}
@media (max-width: 767px) {
  .exprience-section .exprience-wrap {
    margin-bottom: 80px;
  }
}
.exprience-section .exprience-wrap:last-child {
  margin-bottom: 0;
}
.exprience-section .exprience-wrap .exprience-left-icon {
  width: 196px;
  height: 196px;
  line-height: 196px;
  background: #232323;
  text-align: center;
  border-radius: 50%;
  margin-right: 30px;
  float: left;
}
@media (max-width: 767px) {
  .exprience-section .exprience-wrap .exprience-left-icon {
    float: none;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .exprience-section .exprience-wrap .exprience-left-icon {
    width: 130px;
    height: 130px;
    line-height: 130px;
  }
  .exprience-section .exprience-wrap .exprience-left-icon img {
    max-width: 50px;
  }
}
.exprience-section .exprience-wrap .exprience-items {
  overflow: hidden;
}
.exprience-section .exprience-wrap .exprience-items .exprience-title {
  margin-bottom: 70px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .exprience-section .exprience-wrap .exprience-items .exprience-title {
    text-align: center;
    margin-bottom: 40px;
  }
}
.exprience-section .exprience-wrap .exprience-items .exprience-title span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 8px;
  display: block;
  margin-bottom: 10px;
  color: #fff;
}
@media (max-width: 575px) {
  .exprience-section .exprience-wrap .exprience-items .exprience-title span {
    font-size: 14px;
  }
}
.exprience-section .exprience-wrap .exprience-items .exprience-title h2 {
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
}
@media (max-width: 991px) {
  .exprience-section .exprience-wrap .exprience-items .exprience-title h2 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .exprience-section .exprience-wrap .exprience-items .exprience-title h2 {
    font-size: 40px;
  }
}
.exprience-section .exprience-wrap .exprience-item {
  display: flex;
  align-items: center;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #232323;
  padding: 6px;
}
.exprience-section .exprience-wrap .exprience-item .exprience-item-icon i {
  width: 100px;
  height: 100%;
  line-height: 195px;
  border-radius: 5px;
  background: #F2C94C;
  text-align: center;
  display: block;
}
@media (max-width: 375px) {
  .exprience-section .exprience-wrap .exprience-item .exprience-item-icon i {
    width: 70px;
  }
}
.exprience-section .exprience-wrap .exprience-item .exprience-item-text {
  padding: 20px 30px;
}
@media (max-width: 1199px) {
  .exprience-section .exprience-wrap .exprience-item .exprience-item-text {
    padding: 20px 15px;
  }
}
.exprience-section .exprience-wrap .exprience-item .exprience-item-text span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 4.8px;
  color: #fff;
}
@media (max-width: 375px) {
  .exprience-section .exprience-wrap .exprience-item .exprience-item-text span {
    font-size: 15px;
  }
}
.exprience-section .exprience-wrap .exprience-item .exprience-item-text h3 {
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 10px 0 10px;
}
@media (max-width: 1199px) {
  .exprience-section .exprience-wrap .exprience-item .exprience-item-text h3 {
    font-size: 22px;
  }
}
.exprience-section .exprience-wrap .exprience-item .exprience-item-text h3 a {
  color: #fff;
}
.exprience-section .exprience-wrap .exprience-item .exprience-item-text h3 a:hover {
  color: #FF4A3B;
}
.exprience-section .exprience-wrap .exprience-item .exprience-item-text p {
  color: #828282;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0.64px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .exprience-section .exprience-wrap .col + .col .exprience-item {
    margin-top: 20px;
  }
}
.exprience-section .exprience-wrap .col:nth-child(2) .exprience-item .exprience-item-icon i {
  background: #FF4A3B;
}
.exprience-section .exprience-wrap.style-2 .exprience-item .exprience-item-icon i {
  background: #2F80ED;
}
.exprience-section .exprience-wrap.style-2 .col:nth-child(2) .exprience-item .exprience-item-icon i {
  background: #50B0A1;
}

/* 3.3 exprience-service */
.exprience-service {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .exprience-service {
    padding-bottom: 20px;
  }
}
.exprience-service .exprience-service-wrap {
  padding: 100px 0 60px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #232323;
}
@media (max-width: 767px) {
  .exprience-service .exprience-service-wrap {
    padding: 70px 0 30px;
  }
}
.exprience-service .exprience-service-item {
  padding: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: -1px;
}
@media (max-width: 991px) {
  .exprience-service .exprience-service-item {
    padding: 20px 15px;
  }
}
.exprience-service .exprience-service-item:last-child {
  border-bottom: 0;
}
.exprience-service .exprience-service-item ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .exprience-service .exprience-service-item ul {
    display: block;
    text-align: center;
  }
}
.exprience-service .exprience-service-item ul li {
  position: relative;
}
.exprience-service .exprience-service-item ul li:first-child {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .exprience-service .exprience-service-item ul li:first-child {
    justify-content: center;
  }
}
.exprience-service .exprience-service-item ul li:first-child::before {
  position: absolute;
  right: -50px;
  top: -15px;
  width: 1px;
  height: 80px;
  content: "";
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .exprience-service .exprience-service-item ul li:first-child::before {
    display: none;
  }
}
.exprience-service .exprience-service-item ul li i {
  margin-right: 20px;
}
.exprience-service .exprience-service-item ul li i svg {
  stroke: #FF4A3B;
  transition: all 0.6s;
}
.exprience-service .exprience-service-item ul li b {
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: "Italiana";
  color: #fff;
}
@media (max-width: 1199px) {
  .exprience-service .exprience-service-item ul li b {
    font-size: 20px;
  }
}
.exprience-service .exprience-service-item ul li p {
  margin-bottom: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0.64px;
  color: #828282;
  max-width: 348px;
}
@media (max-width: 1199px) {
  .exprience-service .exprience-service-item ul li p {
    padding-left: 50px;
  }
}
@media (max-width: 991px) {
  .exprience-service .exprience-service-item ul li p {
    padding-left: 20px;
    max-width: 250px;
  }
}
@media (max-width: 767px) {
  .exprience-service .exprience-service-item ul li p {
    margin: 20px auto;
  }
}
.exprience-service .exprience-service-item ul li span {
  display: block;
  color: #fff;
}
@media (max-width: 991px) {
  .exprience-service .exprience-service-item ul li span {
    font-size: 14px;
  }
}
.exprience-service .exprience-service-item ul li span + span {
  margin-top: 10px;
}
@media (max-width: 991px) {
  .exprience-service .exprience-service-item ul li span + span {
    margin-top: 5px;
  }
}
.exprience-service .exprience-service-item ul li .arrow-btn {
  display: block;
  width: 60px;
  height: 60px;
  line-height: 68px;
  text-align: center;
  background: #333;
  border-radius: 50%;
  transition: all 0.3s;
}
.exprience-service .exprience-service-item ul li .arrow-btn:hover {
  transform: rotate(45deg);
}
.exprience-service .exprience-service-item ul li .arrow-btn i {
  margin-right: 0;
  font-size: 20px;
  color: #fff;
}
.exprience-service .exprience-service-item ul li .arrow-btn:hover {
  background: #FF4A3B;
}
@media (max-width: 767px) {
  .exprience-service .exprience-service-item ul li .arrow-btn {
    margin: 0 auto;
    margin-top: 20px;
  }
}
.exprience-service .exprience-service-item ul li i img {
  max-width: 15px;
}
.exprience-service .exprience-service-item:hover ul i svg {
  stroke: #fff;
}
.exprience-service .flower-shape {
  position: absolute;
  right: 100px;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1399px) {
  .exprience-service .flower-shape {
    right: 50px;
  }
}
@media (max-width: 1199px) {
  .exprience-service .flower-shape {
    right: 0px;
  }
}
@media (max-width: 575px) {
  .exprience-service .flower-shape {
    display: none;
  }
}

/* 3.4 skill-service */
.skill-service,
.skill-service-s2 {
  position: relative;
  z-index: 1;
}
.skill-service .skill-wrap .row,
.skill-service-s2 .skill-wrap .row {
  justify-content: center;
}
.skill-service .skill-wrap .skill-item,
.skill-service-s2 .skill-wrap .skill-item {
  border-radius: 55px;
  background: #FF4A3B;
  max-width: 306px;
  padding: 20px;
  padding-bottom: 23px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .skill-service .skill-wrap .skill-item,
  .skill-service-s2 .skill-wrap .skill-item {
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
.skill-service .skill-wrap .skill-item:before,
.skill-service-s2 .skill-wrap .skill-item:before {
  position: absolute;
  left: 0;
  bottom: 3px;
  background: #252525;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 55px;
  z-index: -1;
  transition: all 0.3s;
}
.skill-service .skill-wrap .skill-item:hover:before,
.skill-service-s2 .skill-wrap .skill-item:hover:before {
  bottom: 0;
  width: 102%;
  left: -1%;
}
.skill-service .skill-wrap .skill-item .icon i,
.skill-service-s2 .skill-wrap .skill-item .icon i {
  width: 72px;
  height: 72px;
  line-height: 72px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  display: block;
  margin-right: 20px;
}
.skill-service .skill-wrap .skill-item .skill-text h3,
.skill-service-s2 .skill-wrap .skill-item .skill-text h3 {
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
}
.skill-service .skill-wrap .skill-item .skill-text span,
.skill-service-s2 .skill-wrap .skill-item .skill-text span {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 4.8px;
  color: #fff;
}
.skill-service .skill-wrap .col:nth-child(2) .skill-item,
.skill-service-s2 .skill-wrap .col:nth-child(2) .skill-item {
  background: #F2C94C;
}
.skill-service .skill-wrap .col:nth-child(3) .skill-item,
.skill-service-s2 .skill-wrap .col:nth-child(3) .skill-item {
  background: #50B0A1;
}
.skill-service .skill-wrap .col:nth-child(4) .skill-item,
.skill-service-s2 .skill-wrap .col:nth-child(4) .skill-item {
  background: #2F80ED;
}
.skill-service .skill-wrap .col:nth-child(5) .skill-item,
.skill-service-s2 .skill-wrap .col:nth-child(5) .skill-item {
  background: #4F4F4F;
  margin-bottom: 0;
}
.skill-service .left-image,
.skill-service-s2 .left-image {
  position: absolute;
  left: 0;
  bottom: 50px;
}
@media (max-width: 1600px) {
  .skill-service .left-image,
  .skill-service-s2 .left-image {
    max-width: 400px;
  }
}
@media (max-width: 1399px) {
  .skill-service .left-image,
  .skill-service-s2 .left-image {
    max-width: 350px;
  }
}
@media (max-width: 991px) {
  .skill-service .left-image,
  .skill-service-s2 .left-image {
    display: none;
  }
}

/* 3.5 project-section-s2 */
.project-section-s2 {
  position: relative;
  z-index: 1;
}
.project-section-s2 .project-img {
  border-radius: 10px;
}
.project-section-s2 .project-img .simpleParallax {
  border-radius: 10px;
}
.project-section-s2 .project-img img {
  border-radius: 10px;
}
.project-section-s2 .project-text {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
}
.project-section-s2 .project-text h2 a {
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
}
.project-section-s2 .project-text h2 a:hover {
  color: #FF4A3B;
}
.project-section-s2 .project-text span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #FF4A3B;
}
.project-section-s2 .project-text .arrow-btn a {
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #333333;
  text-align: center;
  border-radius: 5px;
  transition: all 0.3s;
}
.project-section-s2 .project-text .arrow-btn a:hover {
  transform: rotate(90deg);
}
.project-section-s2 .project-text .arrow-btn a i {
  font-size: 20px;
  color: #fff;
  line-height: unset;
  position: relative;
  left: -3px;
}
.project-section-s2 .project-text .arrow-btn a:hover {
  background: #FF4A3B;
}
.project-section-s2 .project-btn {
  text-align: center;
}
.project-section-s2 .project-btn .fancy-btn {
  margin: 0 auto;
  margin-top: 20px;
  border-color: #FF4A3B;
}
.project-section-s2 .left-arrow {
  position: absolute;
  left: 50px;
  bottom: 50px;
}
.project-section-s2 .left-arrow img {
  animation: bounceLeftToRight 4s infinite;
}
@media (max-width: 991px) {
  .project-section-s2 .left-arrow img {
    max-width: 180px;
  }
}
@media (max-width: 767px) {
  .project-section-s2 .left-arrow img {
    display: none;
  }
}

/* 3.6 contact-area */
.contact-area {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .contact-area {
    padding-top: 0;
  }
}
.contact-area .contact-info-wrap {
  padding-right: 60px;
}
@media (max-width: 991px) {
  .contact-area .contact-info-wrap {
    padding-right: 0;
  }
}
.contact-area .contact-info-wrap .contact-info-title {
  margin-bottom: 30px;
}
.contact-area .contact-info-wrap .contact-info-title h3 {
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
}
@media (max-width: 991px) {
  .contact-area .contact-info-wrap .contact-info-title h3 {
    font-size: 40px;
  }
}
.contact-area .contact-info-wrap .contact-info-title p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #fff;
}
.contact-area .contact-info-wrap .contact-info-item {
  margin-bottom: 45px;
  display: flex;
  align-items: center;
}
.contact-area .contact-info-wrap .contact-info-item:last-child {
  margin-bottom: 0;
}
.contact-area .contact-info-wrap .contact-info-item .contact-info-icon i {
  font-size: 30px;
  display: block;
  margin-right: 20px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #fff;
}
.contact-area .contact-info-wrap .contact-info-item .contact-info-text span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #FF4A3B;
}
@media (max-width: 575px) {
  .contact-area .contact-info-wrap .contact-info-item .contact-info-text span {
    font-size: 14px;
  }
}
.contact-area .contact-info-wrap .contact-info-item .contact-info-text h4 {
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 5px;
  color: #fff;
}
@media (max-width: 1199px) {
  .contact-area .contact-info-wrap .contact-info-item .contact-info-text h4 {
    font-size: 20px;
  }
}
.contact-area .contact-area-wrapper {
  position: relative;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #232323;
  padding: 100px 80px;
}
@media (max-width: 1199px) {
  .contact-area .contact-area-wrapper {
    padding: 70px 40px;
  }
}
@media (max-width: 575px) {
  .contact-area .contact-area-wrapper {
    padding: 30px 15px;
  }
}
.contact-area .contact-area-wrapper .contact-form-area {
  position: relative;
  z-index: 9;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .contact-area .contact-area-wrapper .contact-form-area {
    margin-top: 50px;
  }
}
.contact-area .contact-area-wrapper .contact-form-area .form-control {
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  border: 0;
  background: #2B2B2B;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: rgba(255, 255, 255, 0.4);
}
.contact-area .contact-area-wrapper .contact-form-area .form-control:focus {
  outline: none;
  box-shadow: none;
}
.contact-area .contact-area-wrapper .contact-form-area .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.contact-area .contact-area-wrapper .contact-form-area .form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.contact-area .contact-area-wrapper .contact-form-area .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.contact-area .contact-area-wrapper .contact-form-area textarea.form-control {
  height: 130px;
}
.contact-area .contact-area-wrapper .contact-form-area select.form-control {
  color: rgba(255, 255, 255, 0.4);
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: #2B2B2B url(../img/select-icon2.png) no-repeat calc(100% - 15px) center;
  position: relative;
}
.contact-area .contact-area-wrapper .contact-form-area select.form-control option {
  border: 0;
}
.contact-area .contact-area-wrapper .contact-form-area .submit-area {
  margin-top: 20px;
}
.contact-area .contact-area-wrapper .contact-form-area .submit-area button {
  border: 0;
  border: 1px solid #FF4A3B;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #fff;
  font-family: "Space Mono";
}
.contact-area .clover-shape {
  position: absolute;
  left: 50px;
  top: 0;
  z-index: -1;
}
@media (max-width: 1399px) {
  .contact-area .clover-shape {
    top: 50px;
    left: -30px;
  }
}
@media (max-width: 575px) {
  .contact-area .clover-shape {
    display: none;
  }
}
.contact-area .clover-shape img {
  animation: 4s ease 0s infinite normal none running bounceLeftToRight;
}
@media (max-width: 1399px) {
  .contact-area .clover-shape img {
    max-width: 220px;
  }
}

/*--------------------------------------------------------------
4.0 Home-style-3
--------------------------------------------------------------*/
/* 4.1 service-section-s2 */
@media (max-width: 575px) {
  .service-section-s2 {
    padding-bottom: 20px;
  }
}
.service-section-s2 .service-wrap .row {
  justify-content: center;
}
.service-section-s2 .service-wrap .service-item {
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .service-section-s2 .service-wrap .service-item {
    text-align: center;
  }
}
.service-section-s2 .service-wrap .service-item h2 {
  margin: 25px 0 20px;
  color: #fff;
}
@media (max-width: 1199px) {
  .service-section-s2 .service-wrap .service-item h2 {
    margin-bottom: 10px;
  }
}
.service-section-s2 .service-wrap .service-item h2 a {
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #1F1F1F;
}
.service-section-s2 .service-wrap .service-item h2 a:hover {
  color: #FF4A3B;
}
@media (max-width: 1399px) {
  .service-section-s2 .service-wrap .service-item h2 a {
    font-size: 25px;
  }
}
@media (max-width: 1199px) {
  .service-section-s2 .service-wrap .service-item h2 a {
    font-size: 22px;
  }
}

/* 4.2 animate-marque-sec-s2 */
.animate-marque-sec-s2 {
  transform: rotate(-7.136deg);
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .animate-marque-sec-s2 {
    padding-bottom: 40px;
  }
}
.animate-marque-sec-s2 .animate-marque {
  width: 130%;
  background: #FF4A3B;
  padding: 40px 0;
}
.animate-marque-sec-s2 .animate-marque h1 {
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 8.4px;
}

/* 4.3 project-section-s3 */
@media (max-width: 767px) {
  .project-section-s3 {
    padding-top: 40px;
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .project-section-s3 {
    padding-top: 0px;
  }
}
.project-section-s3 .project-wrap .project-item {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .project-section-s3 .project-wrap .project-item {
    display: block;
    text-align: center;
    margin-bottom: 30px;
  }
}
.project-section-s3 .project-wrap .project-item .project-img {
  flex-basis: 50%;
}
.project-section-s3 .project-wrap .project-item .project-text {
  flex-basis: 50%;
  padding-left: 120px;
}
@media (max-width: 1199px) {
  .project-section-s3 .project-wrap .project-item .project-text {
    padding-left: 80px;
  }
}
@media (max-width: 991px) {
  .project-section-s3 .project-wrap .project-item .project-text {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .project-section-s3 .project-wrap .project-item .project-text {
    padding: 30px 0;
  }
}
.project-section-s3 .project-wrap .project-item .project-text .thumb {
  display: inline-block;
  padding: 5px 10px;
  background: #1F1F1F;
  color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
}
.project-section-s3 .project-wrap .project-item .project-text h2 {
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}
.project-section-s3 .project-wrap .project-item .project-text h2 a {
  color: #1F1F1F;
}
@media (max-width: 991px) {
  .project-section-s3 .project-wrap .project-item .project-text p {
    font-size: 14px;
  }
}
.project-section-s3 .project-wrap .project-item .project-text .read-more {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  text-decoration-line: underline;
  color: #1F1F1F;
}
.project-section-s3 .project-wrap .project-item .project-text .read-more:hover {
  color: #FF4A3B;
}
.project-section-s3 .project-wrap .project-item:nth-child(even) .project-text {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -webkit-order: 1;
  -moz-order: 1;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 0;
  padding-right: 120px;
}
@media (max-width: 1199px) {
  .project-section-s3 .project-wrap .project-item:nth-child(even) .project-text {
    padding-right: 80px;
  }
}
@media (max-width: 991px) {
  .project-section-s3 .project-wrap .project-item:nth-child(even) .project-text {
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .project-section-s3 .project-wrap .project-item:nth-child(even) .project-text {
    padding-right: 0;
  }
}
.project-section-s3 .project-wrap .project-item:nth-child(even) .project-img {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  -webkit-order: 2;
  -moz-order: 2;
}

.black-bg {
  background: #1F1F1F;
}

/* 4.4 testimonial-section-s2 */
.testimonial-section-s2 {
  position: relative;
  z-index: 1;
}
.testimonial-section-s2 .arrow-shape {
  position: absolute;
  left: 30px;
  top: 40%;
  z-index: -1;
}
.testimonial-section-s2 .arrow-shape img {
  animation: bounceLeftToRight 4s infinite;
}
@media (max-width: 1650px) {
  .testimonial-section-s2 .arrow-shape {
    display: none;
  }
}
.testimonial-section-s2 .testimonial-quote {
  text-align: right;
  padding-top: 20px;
}
@media (max-width: 991px) {
  .testimonial-section-s2 .testimonial-quote {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .testimonial-section-s2 .testimonial-item {
    text-align: center;
  }
}
.testimonial-section-s2 .testimonial-item p {
  font-size: 25px;
  font-style: italic;
  font-weight: 400;
  line-height: 40px;
}
@media (max-width: 1399px) {
  .testimonial-section-s2 .testimonial-item p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .testimonial-section-s2 .testimonial-item p {
    font-size: 18px;
    line-height: 25px;
  }
}
.testimonial-section-s2 .testimonial-item span {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0.8px;
}
@media (max-width: 991px) {
  .testimonial-section-s2 .testimonial-item span {
    font-size: 18px;
  }
}
.testimonial-section-s2 .testimonial-item span small {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0.56px;
  color: #FF4A3B;
}
.testimonial-section-s2 .testimonial-wrap {
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .testimonial-section-s2 .testimonial-wrap {
    padding-bottom: 0;
  }
}
.testimonial-section-s2 .owl-nav {
  display: none;
}
.testimonial-section-s2 .owl-dots {
  text-align: center;
  bottom: -40px;
  position: relative;
}
@media (max-width: 991px) {
  .testimonial-section-s2 .owl-dots {
    bottom: -10px;
  }
}
.testimonial-section-s2 .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #E0E0E0;
  border: 0;
  margin: 0 10px;
}
.testimonial-section-s2 .owl-dots .owl-dot.active {
  background-color: #FF4A3B;
}

/* 4.5 video-section-s2 */
.video-section-s2 .video-wrap {
  background: #FDF9F6;
  padding: 80px 0;
}
.video-section-s2 .video-img {
  max-width: 522px;
  margin: 0 auto;
  position: relative;
}
.video-section-s2 .video-img .video-btn {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: #FF4A3B;
  border-radius: 50%;
  display: block;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 28%;
  transform: translate(-50%, 50%);
}
.video-section-s2 h2 {
  font-size: 250px;
  font-style: normal;
  font-weight: 400;
  line-height: 180px;
  text-transform: capitalize;
  text-align: center;
  margin-top: -80px;
}
@media (max-width: 1199px) {
  .video-section-s2 h2 {
    font-size: 200px;
  }
}
@media (max-width: 991px) {
  .video-section-s2 h2 {
    font-size: 150px;
    line-height: 100px;
    margin-top: -50px;
  }
}
@media (max-width: 767px) {
  .video-section-s2 h2 {
    font-size: 120px;
    margin-top: -80px;
  }
}
@media (max-width: 575px) {
  .video-section-s2 h2 {
    font-size: 80px;
    line-height: 70px;
    margin-top: -40px;
  }
}
@media (max-width: 450px) {
  .video-section-s2 h2 {
    font-size: 60px;
    margin-top: -40px;
  }
}

/* 4.6 team-section-s2 */
@media (min-width: 1199px) {
  .team-section-s2 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 1199px) {
  .team-section-s2 .team-left-text {
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .team-section-s2 .team-left-text {
    text-align: center;
  }
}
.team-section-s2 .team-left-text span {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: 8px;
  display: block;
}
@media (max-width: 767px) {
  .team-section-s2 .team-left-text span {
    font-size: 15px;
    letter-spacing: 4px;
  }
}
.team-section-s2 .team-left-text h2 {
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767px) {
  .team-section-s2 .team-left-text h2 {
    font-size: 50px;
    line-height: 40px;
  }
}
@media (max-width: 575px) {
  .team-section-s2 .team-left-text h2 {
    font-size: 35px;
    margin-top: 0;
  }
}
.team-section-s2 .team-left-text p {
  font-size: 16px;
  max-width: 526px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .team-section-s2 .team-left-text p {
    margin: 0 auto;
  }
}
.team-section-s2 .team-left-text a {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  text-decoration-line: underline;
  color: #1F1F1F;
}
.team-section-s2 .team-left-text a:hover {
  color: #FF4A3B;
}
.team-section-s2 .team-item {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.team-section-s2 .team-item .team-img-wrap {
  position: relative;
  z-index: 1;
}
.team-section-s2 .team-item .team-img-wrap .team-shape {
  position: absolute;
  left: 10px;
  top: 5px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.team-section-s2 .team-item .team-img {
  margin: 0 auto;
  position: relative;
  border-radius: 10px;
}
.team-section-s2 .team-item .team-img .simpleParallax {
  border-radius: 10px;
}
.team-section-s2 .team-item .team-img img {
  transition: all 0.3s;
  border-radius: 10px;
  width: 100%;
}
.team-section-s2 .team-item .team-text {
  position: absolute;
  left: 50%;
  bottom: -200px;
  padding: 10px 65px;
  transform: translateX(-50%);
  min-width: 285px;
  border-radius: 56px;
  background: rgba(255, 74, 59, 0.7);
  backdrop-filter: blur(2px);
  transition: all 0.6s;
}
@media (max-width: 1600px) {
  .team-section-s2 .team-item .team-text {
    min-width: 200px;
    padding: 10px 20px;
  }
}
@media (max-width: 767px) {
  .team-section-s2 .team-item .team-text {
    min-width: 215px;
    padding: 10px 15px;
  }
}
.team-section-s2 .team-item .team-text h3 {
  margin-bottom: 0;
}
.team-section-s2 .team-item .team-text h3 a {
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
}
@media (max-width: 1199px) {
  .team-section-s2 .team-item .team-text h3 a {
    font-size: 25px;
  }
}
.team-section-s2 .team-item .team-text span {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.48px;
  color: #fff;
}
.team-section-s2 .team-item:hover .team-text {
  bottom: 30px;
}

/* 4.7 newsletter-section */
.newsletter-section {
  background: #FDF9F6;
  padding: 80px 0;
}
.newsletter-section .newsletter-form .form-field {
  position: relative;
}
.newsletter-section .newsletter-form .form-field input {
  width: 100%;
  height: 60px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 15px;
  padding-right: 70px;
  background: none;
  color: #fff;
}
.newsletter-section .newsletter-form .form-field input:focus {
  outline: none;
  border-color: #FF4A3B;
}
.newsletter-section .newsletter-form .form-field button {
  position: absolute;
  right: 0;
  top: 0;
  height: 60px;
  width: 60px;
  background: none;
  border: 0;
  color: #FF4A3B;
}

/* 4.8 blog-section-s2 */
.blog-section-s2 {
  position: relative;
  z-index: 1;
}
.blog-section-s2 .blog-shape {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: -1;
}
@media (max-width: 1500px) {
  .blog-section-s2 .blog-shape {
    display: none;
  }
}
.blog-section-s2 .blog-item .blog-img {
  margin-bottom: 20px;
}
.blog-section-s2 .blog-item span {
  color: #1F1F1F;
}
.blog-section-s2 .blog-item h2 a {
  color: #1F1F1F;
}
.blog-section-s2 .blog-item h2 a:hover {
  color: #FF4A3B;
}
.blog-section-s2 .blog-item p {
  color: #1F1F1F;
}
.blog-section-s2 .blog-item a.more {
  color: #1F1F1F;
}
.blog-section-s2 .blog-item a.more:hover {
  color: #FF4A3B;
}
.blog-section-s2 .col + .col .blog-item {
  padding-left: 0;
}

/*--------------------------------------------------------------
5.0 Home-style-4
--------------------------------------------------------------*/
/* 5.1 about-section-s2 */
.about-section-s2 .about-content .about-top span {
  color: #1F1F1F;
}
.about-section-s2 .about-content p {
  color: #1F1F1F;
  margin-bottom: 0;
}

/* 5.2 project-section-s4 */
@media (max-width: 991px) {
  .project-section-s4 {
    padding-top: 40px;
  }
}
@media (max-width: 575px) {
  .project-section-s4 {
    padding-top: 0px;
  }
}
.project-section-s4 .project-item {
  border: 0;
  padding-bottom: 0;
}
.project-section-s4 .project-item .project-text h2 a {
  color: #1F1F1F;
}

/* 5.3 skill-service-s2 */
.skill-service-s2 .skill-wrap .skill-item:before {
  background-color: #f9f9f9;
}
.skill-service-s2 .skill-wrap .skill-item .skill-text h3 {
  color: #1F1F1F;
}
.skill-service-s2 .skill-wrap .skill-item .skill-text span {
  color: #1F1F1F;
}

/* =======================
6.0 About Page  
 ========================*/
/* 6.1 about-me-page */
@media (max-width: 991px) {
  .about-page .about-content {
    text-align: center;
  }
}
.about-page .about-content h2 {
  font-size: 114px;
  font-style: normal;
  font-weight: 400;
  line-height: 130px;
}
@media (max-width: 1199px) {
  .about-page .about-content h2 {
    font-size: 100px;
    line-height: 120px;
  }
}
@media (max-width: 991px) {
  .about-page .about-content h2 {
    font-size: 80px;
    line-height: 100px;
  }
}
@media (max-width: 575px) {
  .about-page .about-content h2 {
    font-size: 50px;
    line-height: 60px;
  }
}
.about-page .about-content h3 {
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 6px;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .about-page .about-content h3 {
    font-size: 50px;
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .about-page .about-content h3 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .about-page .about-content h3 {
    font-size: 25px;
    line-height: 30px;
  }
}
.about-page .about-content p {
  margin-bottom: 0;
}
.about-page .event-section {
  padding: 100px 0;
}
@media (max-width: 1199px) {
  .about-page .event-section {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .about-page .event-section .event-items {
    text-align: center;
  }
}
.about-page .event-section .event-items h3 {
  color: #1F1F1F;
}
.about-page .event-section .event-items .event-item h4 {
  color: #1F1F1F;
}
.about-page .event-section .event-items .event-item span {
  color: #1F1F1F;
}
.about-page .about-apge-right-img {
  position: relative;
  width: 120%;
  margin-bottom: -50px;
  z-index: 11;
}
@media (max-width: 991px) {
  .about-page .about-apge-right-img {
    width: 100%;
  }
}

/* 6.2 about-us-page */
.about-us-page .service-section .service-left-text {
  padding-right: 50px;
}
@media (max-width: 991px) {
  .about-us-page .service-section .service-left-text {
    padding-right: 0;
  }
}
.about-us-page .service-section .service-left-text span,
.about-us-page .service-section .service-left-text h2,
.about-us-page .service-section .service-left-text p {
  color: #1F1F1F;
}
.about-us-page .service-section .service-wrap .service-item h2 a {
  color: #1F1F1F;
}
.about-us-page .service-section .service-wrap .service-item h2 a:hover {
  color: #FF4A3B;
}
.about-us-page .service-section .service-wrap .service-item p {
  color: #1F1F1F;
}
.about-us-page .project-section-s2 .project-text h2 a {
  color: #1F1F1F;
}
.about-us-page .project-section-s2 .project-text h2 a:hover {
  color: #FF4A3B;
}

/* =======================
7.0 Services Page    
 ========================*/
/* 3.2 service-page */
.service-page .service-section-s2 {
  padding-bottom: 50px;
}
.service-page .exprience-service .exprience-service-wrap {
  background: #fff;
  padding: 0;
}
.service-page .exprience-service .exprience-service-wrap .exprience-service-item {
  border-color: rgba(0, 0, 0, 0.1);
}
.service-page .exprience-service .exprience-service-wrap .exprience-service-item ul li b {
  color: #1F1F1F;
}
.service-page .exprience-service .exprience-service-wrap .exprience-service-item ul li:first-child::before {
  background: rgba(0, 0, 0, 0.1);
}
.service-page .exprience-service .exprience-service-wrap .exprience-service-item ul li span {
  color: #1F1F1F;
}
.service-page .exprience-service .exprience-service-wrap .exprience-service-item:hover ul li i svg {
  stroke: #1F1F1F;
}

.service-single-page .service-single-wrap h2 {
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .service-single-page .service-single-wrap h2 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .service-single-page .service-single-wrap h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .service-single-page .service-single-wrap {
    text-align: center;
  }
}
.service-single-page .service-single-wrap .inner-img {
  padding: 60px 0;
}
.service-single-page .service-single-wrap .inner-img img {
  margin-bottom: 10px;
  width: 100%;
}
.service-single-page .event-section {
  padding: 60px 0 100px;
}
@media (max-width: 1199px) {
  .service-single-page .event-section {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .service-single-page .event-section {
    padding-bottom: 0;
  }
}
@media (max-width: 991px) {
  .service-single-page .event-section .event-items {
    text-align: center;
  }
}
.service-single-page .event-section .event-items h3 {
  color: #1F1F1F;
}
.service-single-page .event-section .event-items .event-item h4 {
  color: #1F1F1F;
}
.service-single-page .event-section .event-items .event-item span {
  color: #1F1F1F;
}
.service-single-page .event-section .event-left-img {
  position: relative;
  width: 360%;
}
@media (max-width: 991px) {
  .service-single-page .event-section .event-left-img {
    width: 100%;
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .service-single-page .blog-sidebar {
    padding-bottom: 60px;
  }
}

/* =======================
8.0 Team Page
 ========================*/
.team-page .event-section .event-items h3 {
  color: #1F1F1F;
}
.team-page .event-section .event-items .event-item h4,
.team-page .event-section .event-items .event-item span {
  color: #1F1F1F;
}
.team-page .event-section .event-left-img {
  text-align: center;
}
@media (max-width: 991px) {
  .team-page .event-section .event-left-img {
    display: none;
  }
}

@media (max-width: 1199px) {
  .team-single-page .team-details-text {
    margin-top: 30px;
  }
}
.team-single-page .team-details-text h2 {
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .team-single-page .team-details-text h2 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .team-single-page .team-details-text h2 {
    font-size: 40px;
  }
}
.team-single-page .team-details-text .team-text-items {
  display: flex;
  flex-wrap: wrap;
}
.team-single-page .team-details-text .team-text-items .team-text-item {
  flex-basis: 50%;
  margin-bottom: 30px;
}
.team-single-page .team-details-text .team-text-items .team-text-item h4 {
  font-family: "Space Mono";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  text-transform: uppercase;
}
.team-single-page .team-details-text .team-text-items .team-text-item span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}
@media (max-width: 991px) {
  .team-single-page .team-details-text .team-text-items .team-text-item span {
    font-size: 13px;
  }
}
.team-single-page .team-details-text .team-text-items .team-text-item .social {
  display: flex;
}
.team-single-page .team-details-text .team-text-items .team-text-item .social a {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  display: block;
  color: #1F1F1F;
}
.team-single-page .team-details-text .team-text-items .team-text-item .social a + a {
  margin-left: 20px;
}
.team-single-page .team-details-text p {
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .team-single-page .team-details-text p {
    font-size: 15px;
  }
}
.team-single-page .contact-area .contact-area-wrapper {
  background: #fff;
  box-shadow: 0 1px 15px 0 rgba(62, 65, 159, 0.15);
}
.team-single-page .contact-area .contact-area-wrapper .contact-info-wrap .contact-info-title h3,
.team-single-page .contact-area .contact-area-wrapper .contact-info-wrap .contact-info-title p {
  color: #1F1F1F;
}
.team-single-page .contact-area .contact-area-wrapper .contact-info-wrap .contact-info-text h4 {
  color: #1F1F1F;
}
.team-single-page .contact-area .contact-area-wrapper .contact-info-wrap .contact-info-icon i {
  color: #1F1F1F;
}
.team-single-page .contact-area .contact-area-wrapper .contact-form-area .form-control {
  background: #FDF9F6;
  color: #1F1F1F;
}
.team-single-page .contact-area .contact-area-wrapper .contact-form-area .form-control::-webkit-input-placeholder {
  color: #1F1F1F;
}
.team-single-page .contact-area .contact-area-wrapper .contact-form-area .form-control::-moz-placeholder {
  color: #1F1F1F;
}
.team-single-page .contact-area .contact-area-wrapper .contact-form-area .form-control:-ms-input-placeholder {
  color: #1F1F1F;
}
.team-single-page .contact-area .contact-area-wrapper .contact-form-area .form-control:-moz-placeholder {
  color: #1F1F1F;
}
.team-single-page .contact-area .contact-area-wrapper .contact-form-area .submit-area button {
  color: #1F1F1F;
}

/* =======================
9.0 porfolio-page
 ========================*/
/* 3.2 porfolio-page */
.porfolio-page .portfolio-filters {
  max-width: 856px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  margin-bottom: 60px;
}
.porfolio-page .portfolio-filters ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.porfolio-page .portfolio-filters ul li {
  margin: 10px;
}
.porfolio-page .portfolio-filters ul li a {
  padding: 10px 20px;
  background: #FF4A3B;
  display: block;
  border-radius: 10px;
  background: transparent;
  color: #1F1F1F;
}
.porfolio-page .portfolio-filters ul li a.current {
  background: #FF4A3B;
  color: #fff;
}
.porfolio-page .project-section-s2 .project-text h2 a {
  color: #1F1F1F;
}
.porfolio-page .project-section-s2 .project-text h2 a:hover {
  color: #FF4A3B;
}
@media (max-width: 991px) {
  .porfolio-page .project-section-s3,
  .porfolio-page .project-section-s4 {
    padding-top: 90px;
  }
}
@media (max-width: 767px) {
  .porfolio-page .project-section-s3,
  .porfolio-page .project-section-s4 {
    padding-top: 70px;
  }
}

@media (max-width: 1199px) {
  .porfolio-single-page .portfolio-details-text {
    margin-top: 30px;
  }
}
.porfolio-single-page .portfolio-details-text h2 {
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .porfolio-single-page .portfolio-details-text h2 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .porfolio-single-page .portfolio-details-text h2 {
    font-size: 40px;
  }
}
.porfolio-single-page .portfolio-details-text .portfolio-text-items {
  display: flex;
  flex-wrap: wrap;
}
.porfolio-single-page .portfolio-details-text .portfolio-text-items .portfolio-text-item {
  flex-basis: 50%;
  margin-bottom: 30px;
}
.porfolio-single-page .portfolio-details-text .portfolio-text-items .portfolio-text-item h4 {
  font-family: "Space Mono";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  text-transform: uppercase;
}
.porfolio-single-page .portfolio-details-text .portfolio-text-items .portfolio-text-item span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}
@media (max-width: 991px) {
  .porfolio-single-page .portfolio-details-text .portfolio-text-items .portfolio-text-item span {
    font-size: 13px;
  }
}
.porfolio-single-page .portfolio-details-text .portfolio-text-items .portfolio-text-item .social {
  display: flex;
}
.porfolio-single-page .portfolio-details-text .portfolio-text-items .portfolio-text-item .social a {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  display: block;
  color: #1F1F1F;
}
.porfolio-single-page .portfolio-details-text .portfolio-text-items .portfolio-text-item .social a + a {
  margin-left: 20px;
}
.porfolio-single-page .portfolio-details-text p {
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .porfolio-single-page .portfolio-details-text p {
    font-size: 15px;
  }
}
.porfolio-single-page .recent-project-section .project-item .project-text {
  padding-top: 30px;
}
.porfolio-single-page .recent-project-section .project-item .project-text h2 {
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}
.porfolio-single-page .recent-project-section .project-item .project-text h2 a {
  color: #1F1F1F;
}
.porfolio-single-page .recent-project-section .project-item .project-text h2 a:hover {
  color: #FF4A3B;
}
@media (max-width: 991px) {
  .porfolio-single-page .recent-project-section .project-item .project-text p {
    font-size: 14px;
  }
}
.porfolio-single-page .recent-project-section .project-item .project-text .read-more {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  text-decoration-line: underline;
  color: #1F1F1F;
}
.porfolio-single-page .recent-project-section .project-item .project-text .read-more:hover {
  color: #FF4A3B;
}
.porfolio-single-page .recent-project-section .owl-nav {
  text-align: center;
  margin-top: 30px;
}
.porfolio-single-page .recent-project-section .owl-nav .owl-prev {
  display: none;
}
.porfolio-single-page .recent-project-section .owl-nav .owl-next {
  width: 65px;
  height: 65px;
  background: #FF4A3B;
  border: 0;
  border-radius: 50%;
  color: #fff;
}

/* =======================
10.0 Pricing Page
 ========================*/
/* 10.1 about-me-page */
.pricing-section {
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .pricing-section {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .pricing-section {
    padding-bottom: 40px;
  }
}
.pricing-section .pricing-items .pricing-item {
  text-align: center;
  padding: 60px;
  box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .pricing-section .pricing-items .pricing-item {
    padding: 40px 30px;
  }
}
.pricing-section .pricing-items .pricing-item h2 {
  font-size: 18px;
  font-family: "Space Mono";
  margin-bottom: 20px;
  display: inline-block;
  padding: 12px 20px;
  background: #FDF9F6;
  border-radius: 30px;
}
.pricing-section .pricing-items .pricing-item .btn-style-2.active {
  background: #FF4A3B;
  color: #fff;
}
.pricing-section .pricing-items .pricing-item .price-price {
  margin-bottom: 30px;
}
.pricing-section .pricing-items .pricing-item .price-price h3 {
  font-size: 50px;
}
.pricing-section .pricing-items .pricing-item .price-price h3 span {
  font-size: 18px;
}
.pricing-section .pricing-items .pricing-item ul {
  list-style: none;
  margin-bottom: 30px;
}
.pricing-section .pricing-items .pricing-item ul li {
  padding: 20px 0;
  font-size: 18px;
  border-bottom: 1px solid #f2f2f2;
}
@media (max-width: 1199px) {
  .pricing-section .pricing-items .pricing-item ul li {
    font-size: 16px;
  }
}
.pricing-section .pricing-items .pricing-item ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.pricing-section .pricing-items .pricing-item ul li:first-child {
  padding-top: 0;
}

/* =======================
11.0 Contact Page
 ========================*/
/* 11.1 map-section */
.map-section iframe {
  width: 100%;
  height: 700px;
}

/* 11.2 contact-page */
@media (max-width: 767px) {
  .contact-page .office-info {
    text-align: center;
  }
}
.contact-page .office-info h3 {
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}
.contact-page .office-info ul {
  padding-right: 15px;
}
.contact-page .office-info ul li {
  margin-bottom: 30px;
  padding-left: 30px;
  position: relative;
}
.contact-page .office-info ul li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: #FF4A3B;
}
@media (max-width: 767px) {
  .contact-page .office-info ul li i {
    position: relative;
  }
}
.contact-page .contact-form-area .form-field {
  margin-bottom: 30px;
}
.contact-page .contact-form-area .form-control {
  background: #FDF9F6;
  border: 0;
  height: 60px;
  padding: 15px;
}
.contact-page .contact-form-area .form-control:focus {
  outline: none;
  box-shadow: none;
}
.contact-page .contact-form-area textarea.form-control {
  height: 109px;
}
@media (max-width: 767px) {
  .contact-page .contact-form-area .submit-area {
    text-align: center;
  }
}
.contact-page .contact-form-area .submit-area button {
  border: 0;
  border: 1px solid #FF4A3B;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #1F1F1F;
  font-family: "Space Mono";
}

.instagram-section {
  padding-bottom: 15px;
}
.instagram-section .instagram-item a {
  position: relative;
  display: block;
}
.instagram-section .instagram-item a:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "\e61a";
  border-radius: 5px;
  background: rgba(38, 38, 38, 0.6);
  font-family: "themify";
  color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1;
  font-size: 40px;
  transition: all 0.6s;
}
.instagram-section .instagram-item:hover a:before {
  opacity: 1;
  visibility: visible;
}
.instagram-section .owl-nav {
  display: none;
}

/* =======================
12.0 Blog Page
 ========================*/
/* 12.1 blog-page */
.blog-grid-page .blog-section-s2 .blog-item {
  margin-bottom: 30px;
}

/* 12.2 blog-page-area */
.blog-page-area .blog-item {
  margin-bottom: 60px;
}
.blog-page-area .blog-item:last-child {
  margin-bottom: 0;
}
.blog-page-area .blog-item .blog-content {
  padding-top: 30px;
}
.blog-page-area .blog-item .blog-content span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}
.blog-page-area .blog-item .blog-content h2 {
  font-size: 58px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
  margin-top: 5px;
}
@media (max-width: 1199px) {
  .blog-page-area .blog-item .blog-content h2 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .blog-page-area .blog-item .blog-content h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .blog-page-area .blog-item .blog-content h2 {
    font-size: 30px;
  }
}
.blog-page-area .blog-item .blog-content h2 a {
  color: #1F1F1F;
}
.blog-page-area .blog-item .blog-content h2 a:hover {
  color: #FF4A3B;
}
.blog-page-area .blog-item .blog-content .read-more {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  text-decoration-line: underline;
  color: #1F1F1F;
}
.blog-page-area .blog-item .blog-content .read-more:hover {
  color: #FF4A3B;
}
.blog-page-area .blog-item .blog-no-img {
  width: 100%;
  background: #FDF9F6;
  height: 429px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
@media (max-width: 767px) {
  .blog-page-area .blog-item .blog-no-img {
    height: 250px;
  }
}
.blog-page-area .blog-item .blog-no-img h3 {
  color: #BABABA;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767px) {
  .blog-page-area .blog-item .blog-no-img h3 {
    font-size: 40px;
  }
}

/* 12.3 blog-right-sidebar */
@media (max-width: 991px) {
  .blog-sidebar {
    margin-top: 50px;
  }
}
.blog-sidebar .widget {
  margin-bottom: 100px;
}
@media (max-width: 1199px) {
  .blog-sidebar .widget {
    margin-bottom: 60px;
  }
}
.blog-sidebar .widget:last-child {
  margin-bottom: 0;
}
.blog-sidebar .widget h3 {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .blog-sidebar .widget h3 {
    font-size: 32px;
    line-height: 40px;
  }
}
.blog-sidebar .service-category {
  padding: 40px;
  background: #FDF9F6;
}
@media (max-width: 1199px) {
  .blog-sidebar .service-category {
    padding: 30px;
  }
}
.blog-sidebar .service-category h4 {
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}
.blog-sidebar .service-category ul li + li {
  margin-top: 20px;
}
.blog-sidebar .service-category ul li a {
  display: block;
  padding: 15px 20px;
  background: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #1F1F1F;
  position: relative;
}
.blog-sidebar .service-category ul li a::after {
  position: absolute;
  right: 15px;
  top: 15px;
  content: "\e628";
  font-family: "themify";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.blog-sidebar .service-category ul li a:hover {
  background: #FF4A3B;
  color: #fff;
}
.blog-sidebar .blog-right-info p {
  margin-bottom: 0;
}
.blog-sidebar .recent-post .post {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
}
.blog-sidebar .recent-post .post .post-img {
  flex-basis: 40%;
  margin-right: 20px;
}
.blog-sidebar .recent-post .post .post-content {
  flex-basis: 60%;
}
.blog-sidebar .recent-post .post .post-content span {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.blog-sidebar .recent-post .post .post-content h4 {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 6px;
}
.blog-sidebar .recent-post .post .post-content h4 a {
  color: #1F1F1F;
}
.blog-sidebar .recent-post .post .post-content h4 a:hover {
  color: #FF4A3B;
}
.blog-sidebar .category-widget ul li + li {
  margin-top: 25px;
}
.blog-sidebar .category-widget ul li a {
  color: #1F1F1F;
}
.blog-sidebar .category-widget ul li a:hover {
  color: #FF4A3B;
}
.blog-sidebar .tag-widget ul {
  display: flex;
  flex-wrap: wrap;
}
.blog-sidebar .tag-widget ul li + li {
  margin-left: 15px;
}
.blog-sidebar .tag-widget ul li a {
  color: #1F1F1F;
}
.blog-sidebar .tag-widget ul li a:hover {
  color: #FF4A3B;
}
.blog-sidebar .cta-widget {
  background: url(../img/service/cta.jpg);
  background-size: cover;
  padding-top: 160px;
}
.blog-sidebar .cta-widget .cta-text {
  padding: 120px 45px 50px;
  text-align: center;
  margin-top: 50px;
  background: rgba(31, 31, 31, 0.9);
  clip-path: polygon(50% 0%, 100% 38%, 100% 100%, 0 100%, 0% 38%);
}
@media (max-width: 1199px) {
  .blog-sidebar .cta-widget .cta-text {
    padding: 80px 25px 40px;
  }
}
.blog-sidebar .cta-widget p {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
  font-family: "Italiana";
}
@media (max-width: 1199px) {
  .blog-sidebar .cta-widget p {
    font-size: 18px;
  }
}
.blog-sidebar .cta-widget span {
  font-size: 29px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #fff;
}
@media (max-width: 1199px) {
  .blog-sidebar .cta-widget span {
    font-size: 25px;
  }
}

/* =======================
13.0 Blog Single Page
 ========================*/
/* 13.2 blog-single-area */
.blog-single-area .blog-single-wrap {
  /*** comment-respond ***/
}
.blog-single-area .blog-single-wrap .blog-single-text .blog-single-text-top {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}
.blog-single-area .blog-single-wrap .blog-single-text .blog-single-text-top span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}
.blog-single-area .blog-single-wrap .blog-single-text .blog-single-text-top h2 {
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 991px) {
  .blog-single-area .blog-single-wrap .blog-single-text .blog-single-text-top h2 {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .blog-single-area .blog-single-wrap .blog-single-text .blog-single-text-top h2 {
    font-size: 30px;
  }
}
.blog-single-area .blog-single-wrap .blog-single-text blockquote {
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: "Italiana";
  text-align: center;
  padding: 100px 0;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .blog-single-area .blog-single-wrap .blog-single-text blockquote {
    font-size: 45px;
    padding: 70px 0;
  }
}
@media (max-width: 575px) {
  .blog-single-area .blog-single-wrap .blog-single-text blockquote {
    font-size: 30px;
    padding: 30px 0;
  }
}
.blog-single-area .blog-single-wrap .blog-single-alternative {
  padding: 50px 0;
}
@media (max-width: 575px) {
  .blog-single-area .blog-single-wrap .blog-single-alternative {
    margin-bottom: 0px;
  }
}
.blog-single-area .blog-single-wrap .blog-single-alternative h2 {
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .blog-single-area .blog-single-wrap .blog-single-alternative h2 {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .blog-single-area .blog-single-wrap .blog-single-alternative h2 {
    font-size: 30px;
  }
}

.blog-single-area .blog-single-wrap .blog-single-alternative img {
  width: 100%;
}
.blog-single-area .blog-single-wrap .tag-share-wrap {
  padding: 80px 0 100px;
}
@media (max-width: 991px) {
  .blog-single-area .blog-single-wrap .tag-share-wrap {
    padding: 30px 0 50px;
  }
}
.blog-single-area .blog-single-wrap .tag-share-wrap .tag-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .blog-single-area .blog-single-wrap .tag-share-wrap .tag-share {
    flex-wrap: wrap;
  }
}
.blog-single-area .blog-single-wrap .tag-share-wrap .tag-share h3 {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .blog-single-area .blog-single-wrap .tag-share-wrap .tag-share h3 {
    font-size: 20px;
    margin-right: 10px;
  }
}
.blog-single-area .blog-single-wrap .tag-share-wrap .tag-share ul {
  display: flex;
}
@media (max-width: 767px) {
  .blog-single-area .blog-single-wrap .tag-share-wrap .tag-share ul {
    flex-wrap: wrap;
  }
}
.blog-single-area .blog-single-wrap .tag-share-wrap .tag-share ul li + li {
  margin-left: 25px;
}
@media (max-width: 767px) {
  .blog-single-area .blog-single-wrap .tag-share-wrap .tag-share ul li + li {
    margin-left: 5px;
  }
}
.blog-single-area .blog-single-wrap .tag-share-wrap .tag-share ul li a {
  color: #1F1F1F;
}
@media (max-width: 575px) {
  .blog-single-area .blog-single-wrap .tag-share-wrap .tag-share ul li a {
    font-size: 14px;
  }
}
.blog-single-area .blog-single-wrap .tag-share-wrap .tag-share ul li a:hover {
  color: #FF4A3B;
}
.blog-single-area .blog-single-wrap .author-box {
  padding: 30px;
  background: #FDF9F6;
  overflow: hidden;
}
@media (max-width: 991px) {
  .blog-single-area .blog-single-wrap .author-box {
    text-align: center;
    padding: 15px;
  }
}
.blog-single-area .blog-single-wrap .author-box .author-avatar {
  float: left;
  overflow: hidden;
  margin-right: 40px;
}
@media (max-width: 991px) {
  .blog-single-area .blog-single-wrap .author-box .author-avatar {
    float: none;
    margin-right: 0;
  }
}
.blog-single-area .blog-single-wrap .author-box .author-avatar img {
  width: 100%;
}
.blog-single-area .blog-single-wrap .author-box .author-content {
  padding-right: 30px;
  overflow: hidden;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .blog-single-area .blog-single-wrap .author-box .author-content {
    padding: 0;
  }
}
@media (max-width: 575px) {
  .blog-single-area .blog-single-wrap .author-box .author-content p {
    font-size: 15px;
  }
}
.blog-single-area .blog-single-wrap .author-box .author-content .author-name {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  font-family: "Italiana";
  color: #1F1F1F;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .blog-single-area .blog-single-wrap .author-box .author-content .author-name {
    font-size: 30px;
  }
}
.blog-single-area .blog-single-wrap .author-box .author-content ul {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .blog-single-area .blog-single-wrap .author-box .author-content ul {
    justify-content: center;
  }
}
.blog-single-area .blog-single-wrap .author-box .author-content ul li + li {
  margin-left: 25px;
}
.blog-single-area .blog-single-wrap .author-box .author-content ul li a {
  color: #1F1F1F;
}
.blog-single-area .blog-single-wrap .author-box .author-content ul li a:hover {
  color: #FF4A3B;
}
.blog-single-area .blog-single-wrap .comment-respond {
  margin-top: 70px;
  max-width: 856px;
}
.blog-single-area .blog-single-wrap .comment-respond .comment-reply-title {
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 991px) {
  .blog-single-area .blog-single-wrap .comment-respond .comment-reply-title {
    font-size: 40px;
  }
}
.blog-single-area .blog-single-wrap .comment-respond p {
  margin-bottom: 50px;
}
.blog-single-area .blog-single-wrap .comment-respond form input,
.blog-single-area .blog-single-wrap .comment-respond form textarea {
  background: #FDF9F6;
  width: 100%;
  height: 55px;
  border: 0;
  padding: 6px 15px;
  margin-bottom: 15px;
  outline: 0;
  border-radius: 0px;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.blog-single-area .blog-single-wrap .comment-respond form input:focus,
.blog-single-area .blog-single-wrap .comment-respond form textarea:focus {
  box-shadow: none;
  border-color: #FF4A3B;
}
@media (max-width: 991px) {
  .blog-single-area .blog-single-wrap .comment-respond form input,
  .blog-single-area .blog-single-wrap .comment-respond form textarea {
    height: 50px;
  }
}
@media (max-width: 767px) {
  .post-content-wrapper h3.post-title {
    font-size: 30px !important;
  }
}
.blog-single-area .blog-single-wrap .comment-respond form textarea {
  height: 220px;
  padding: 15px;
}
@media (max-width: 991px) {
  .blog-single-area .blog-single-wrap .comment-respond form textarea {
    height: 150px;
  }
}
.blog-single-area .blog-single-wrap .comment-respond .form-inputs,
.blog-single-area .blog-single-wrap .comment-respond .form-textarea {
  overflow: hidden;
}
.blog-single-area .blog-single-wrap .comment-respond .form-inputs label,
.blog-single-area .blog-single-wrap .comment-respond .form-textarea label {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  margin-bottom: 10px;
}
.blog-single-area .blog-single-wrap .comment-respond .form-inputs > .form-field:nth-child(1) {
  width: 49%;
  float: left;
}
@media (max-width: 767px) {
  .blog-single-area .blog-single-wrap .comment-respond .form-inputs > .form-field:nth-child(1) {
    width: 100%;
    float: none;
  }
}
.blog-single-area .blog-single-wrap .comment-respond .form-inputs > .form-field:nth-child(2) {
  width: 49%;
  float: right;
}
@media (max-width: 767px) {
  .blog-single-area .blog-single-wrap .comment-respond .form-inputs > .form-field:nth-child(2) {
    width: 100%;
    float: none;
  }
}
.blog-single-area .blog-single-wrap .comment-respond .form-submit input {
  max-width: 180px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  margin-bottom: 0;
  border: 1px solid #FF4A3B;
  outline: 0;
  background: transparent;
  border-radius: 30px;
  margin-top: 30px;
}
.blog-single-area .blog-single-wrap .comment-respond .form-submit input:hover {
  background-color: #ff200d;
  color: #fff;
}
.blog-single-area.with-sidebar .blog-single-wrap .blog-single-text blockquote {
  font-size: 45px;
  padding: 70px 0;
}
@media (max-width: 991px) {
  .blog-single-area.with-sidebar .blog-single-wrap .blog-single-text blockquote {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .blog-single-area.with-sidebar .blog-single-wrap .blog-single-text blockquote {
    font-size: 30px;
    padding: 30px 0;
  }
}
.blog-single-area.with-sidebar .blog-single-wrap .blog-single-alternative h2 {
  font-size: 45px;
}
@media (max-width: 575px) {
  .blog-single-area.with-sidebar .blog-single-wrap .blog-single-alternative h2 {
    font-size: 30px;
  }
}

/* =======================
14.0 404 page
 ========================*/
/* 14.1 404-section */
.opps-404-section {
  text-align: center;
}
.opps-404-section .opps-message {
  margin-top: 70px;
  padding: 0 200px;
}
@media (max-width: 991px) {
  .opps-404-section .opps-message {
    margin-top: 50px;
    padding: 0 100px;
  }
}
@media (max-width: 767px) {
  .opps-404-section .opps-message {
    padding: 0;
  }
}
.opps-404-section .opps-message h3 {
  font-size: 30px;
  margin: 0 0 0.8em;
}
.opps-404-section .opps-message p {
  margin-bottom: 1.8em;
}/*# sourceMappingURL=style.css.map */

/* iqbal */

.widget_footer_newsletter_widget .wpcf7-response-output {
  border-color: #f44336!important;
  color: #fff;
  background-color: #f44336!important;
  border-radius: 5px;
  position: absolute !important;
  right: 0;
  bottom: 20px;
}


i {
  font-style: normal;
}
h3.footer-widget-instagram {
  padding-bottom: 31px;
}

.zoom-instagram-widget__follow-me {
  display: none;
}
 a.zoom-instagram-link{
  width: 100%;
  border-radius: 5px;
}
 .zoom-instagram-widget__item .hover-layout.small .zoom-instagram-icon-wrap .zoom-svg-instagram-stroke {
  width: 25px;
  height: 25px;
}
.team-single-page .contact-area {
  padding-top: 0px;
}


/* Blog Post Wp*/


.blog-single-wrap .post-thumbnail img {
  width: 100%;
  min-height: 390px;
}

.post-content-wrapper .post-meta {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.post-content-wrapper .post-meta i.fa.fa-calendar {
  padding-right: 10px;
}

.post-content-wrapper .post-meta span {
  text-transform: capitalize;
  color: #1F1F1F;
}

.post-content-wrapper .post-meta span a {
  color: #1F1F1F;
}

.post-content-wrapper h3.post-title {
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

.blog-post-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
}

.blog-post-nav .post-navigation {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-post-nav .post-navigation a {
  color: #1F1F1F;
}
.wp-block-search__label {
  color: #1F1F1F;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 20px;
  font-family: "Italiana";
}
.widget-title {
  color: #1F1F1F;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 20px;
}

.widget {
  padding-bottom: 50px;
}

.wp-block-search__input {
  background: #FDF9F6;
  width: 100%;
  height: 55px;
  border: 0;
  padding: 6px 15px;
  outline: 0;
  border-radius: 0px;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

button.wp-block-search__button {
  max-width: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  margin-bottom: 0;
  border: 1px solid #FF4A3B;
  outline: 0;
  background: transparent;
  border-radius: 30px;
  width: 150px;
}

button.wp-block-search__button:hover {
  background-color: #ff200d;
  color: #fff;
}

.widget_latest_post li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.wp-block-search__inside-wrapper {
  display: flex;
  flex: auto;
  flex-wrap: nowrap;
  max-width: 100%;
}
.widget_latest_post li h3.latest-post-title a {
  color: #1F1F1F;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.latest-post-thumb img {
  width: 150px;
}

.latest-post-thumb {
  flex-shrink: 0;
  display: flex;
  width: 150px;
}

.sidebar h2.wp-block-heading {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 20px;
}

.wp-block-categories a {
  color: #1F1F1F;
}

.wp-block-categories li.cat-item {
  padding-bottom: 25px;
}

.wp-block-categories li.cat-item:last-child {
  padding-bottom: 0px;
}

.sidebar .widget:last-child {
  padding-bottom: 0px;
}

.widget_latest_post li:last-child {
  margin-bottom: 0px;
}
.widget_tag_cloud a {
  color: #1F1F1F;
  font-size: 16px !important;
}

.single-post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.single-post-meta .blog-post-tag {
  display: flex;
  align-items: center;
  gap: 20px;
}

.single-post-meta .blog-post-tag span {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  color: #1F1F1F;
  font-family: "Italiana";
}

.single-post-meta .blog-post-tag .post-tag-list a {
  color: #1F1F1F;
}

span.social-share-title {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  color: #1F1F1F;
  font-family: "Italiana";
}

.social-share {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-share a {
  font-size: 22px;
  color: #1F1F1F;
}

.blog-post-nav .post-img {display: flex;flex-shrink: 0;}

.blog-post-nav .post-img img {
  border-radius: 50%;
}

.blog-post-nav .post-navigation:last-child .text {
  text-align: right;
}

.post-comments {
  padding-top: 40px;
}

.latest-comments .comments-box {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}

.latest-comments .comments-box img {
  border-radius: 50%;
}

.latest-comments .children {
  padding-left: 50px;
}

.avatar-name h5 {
  text-transform: capitalize;
}

.avatar-name h5 a {
  color: #1F1F1F;
}

.comment-form-cookies-consent {
  display: none;
}

.post-comments-form label {
    padding-bottom: 15px;
}

.post-comments-title {
    padding-bottom: 20px;
}

.post-comments-form button.theme-btn {
    max-width: 100%;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    margin-bottom: 0;
    border: 1px solid #FF4A3B;
    outline: 0;
    background: transparent;
    border-radius: 30px;
    margin-top: 30px;
    padding: 10px 30px;
}

.post-comments-form button.theme-btn:hover {
    background-color: #ff200d;
    color: #fff;
}


.page-header h1.page-title {
  background: #fff;
  min-height: auto;
}

.blog-area {
  padding: 120px 0px;
}

.sidebar-form input {
  background: #FDF9F6;
  width: 100%;
  height: 55px;
  border: 0;
  padding: 6px 15px;
  outline: 0;
  border-radius: 0px;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.sidebar-form .search-form {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sidebar-form button {
  max-width: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px;
  margin-bottom: 0;
  border: 1px solid #FF4A3B;
  outline: 0;
  background: transparent;
  border-radius: 30px;
  width: 150px;
}

.sidebar-form button i {
  font-size: 22px;
}

.sidebar-form button:hover {
      background-color: #ff200d;
  color: #fff;
}

.post-thumbnail img {
  width: 100%;
}
.post-title a {
  color: #1F1F1F;
}
section.blog-area header {
  display: none;
}

.basic-pagination.basic-pagination-2 ul li {
  padding: 10px;
  border: 1px solid;
}
.basic-pagination.basic-pagination-2 ul{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Blog Post Wp*/


/* Add the .wp-caption css class */
.wp-caption {
    /* Your styles for .wp-caption go here */
}

/* Add the .wp-caption-text css class */
.wp-caption-text {
    /* Your styles for .wp-caption-text go here */
}

/* Add the .screen-reader-text css class */
.screen-reader-text {
    /* Your styles for .screen-reader-text go here */
    /* Make sure to follow accessibility guidelines for screen reader text */
}

/* Add the .gallery-caption css class */
.gallery-caption {
    /* Your styles for .gallery-caption go here */
}

/* Add the .alignright css class */
.alignright {
    /* Your styles for .alignright go here */
}

/* Add the .alignleft css class */
.alignleft {
    /* Your styles for .alignleft go here */
}

/* Add the .aligncenter css class */
.aligncenter {
    /* Your styles for .aligncenter go here */
}