/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Typography
# Elements
	## Social Profiles
	## Top Bar Icon List
	## Top Bar Menu
	## Contact Methods
	## Nav Search Form
	## Nav Mini Cart
# Forms
# Navigation
	## Links
	## Primary Menu
# Accessibility
# Alignments
# Clearings
# Layout
	## Topbar
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
  --------------------------------------------------------------*/
  @-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
    }

    40% {
      -webkit-transform: translateY(-20px);
      -moz-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
      transform: translateY(-20px);
    }

    60% {
      -webkit-transform: translateY(-10px);
      -moz-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
      transform: translateY(-10px);
    }
  }

  @-moz-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
    }

    40% {
      -webkit-transform: translateY(-20px);
      -moz-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
      transform: translateY(-20px);
    }

    60% {
      -webkit-transform: translateY(-10px);
      -moz-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
      transform: translateY(-10px);
    }
  }

  @-ms-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
    }

    40% {
      -webkit-transform: translateY(-20px);
      -moz-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
      transform: translateY(-20px);
    }

    60% {
      -webkit-transform: translateY(-10px);
      -moz-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
      transform: translateY(-10px);
    }
  }

  @keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
    }

    40% {
      -webkit-transform: translateY(-20px);
      -moz-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
      transform: translateY(-20px);
    }

    60% {
      -webkit-transform: translateY(-10px);
      -moz-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
      transform: translateY(-10px);
    }
  }

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  color: #7d7d7d;
  font-family: "Futura", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

a {
  transition: all 0.3s ease-in-out;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  clear: both;
  font-family: "Futura", sans-serif;
  line-height: 1.2em;
  font-weight: 600;
  color: #051441;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 0;
  margin-bottom: 10px;
}

h1,
.h1 {
  font-size: 34px;
}

h2,
.h2 {
  font-size: 30px;
}

h3,
.h3 {
  font-size: 26px;
}

h4,
.h4 {
  font-size: 24px;
}

h5,
.h5 {
  font-size: 16px;
}

h6,
.h6 {
  font-size: 14px;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 0.75em;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code {
  color: #ff7070;
}

code,
kbd,
tt,
var {
  font-family: "Futura", sans-serif;
  font-size: 18px;
  font-size: 1.28571em;
}

abbr,
acronym {
  border-bottom: 1px dotted #8a8da1;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
  margin-top: 0 !important;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: #fff;
  position: relative;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  font-family: "Futura", sans-serif;
  overflow-x: hidden;
  color: #7d7d7d;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  padding-left: 20px;
  margin-bottom: 30px;
}

.comment-list ul,
.comment-list ol {
  padding-left: 25px;
  margin-bottom: 30px;
}

.comment-list ol ol,
.comment-list ol ul,
.comment-list ul ol,
.comment-list ul ul {
  margin-bottom: 0;
}

ul ul {
  list-style-type: disc;
}

.dt-list {
  margin: 0;
}

.dt-list li {
  color: #051441;
  line-height: 1.9;
}

.dt-list li a {
  color: #051441;
  display: block;
}

.dt-list li a:hover {
  color: #ff7070;
}

.dt-list.lists-inline li {
  display: inline-block;
}

.dt-list.lists-inline li:not(:last-child) {
  margin-right: 60px;
}

@media (max-width: 991px) {
  .dt-list.lists-inline li:not(:last-child) {
    margin-right: 30px;
  }
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

p {
  margin-bottom: 1em;
}

.pr {
  position: relative;
}

.no-scroll {
  overflow: hidden;
}

.pb-100 {
  padding-bottom: 100px;
}

@media (min-width: 992px) {
  .pl_30 {
    padding-left: 30px;
  }
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-110 {
  padding-bottom: 110px;
}

.padding_bottom {
  padding-bottom: 120px;
}

@media (max-width: 991px) {
  .padding_bottom {
    padding-bottom: 75px;
  }
}

.padding_top {
  padding-top: 120px;
}

@media (max-width: 991px) {
  .padding_top {
    padding-top: 70px;
  }
}

.section_padding {
  padding: 120px 0px;
}

@media (max-width: 991px) {
  .section_padding {
    padding: 80px 0;
  }
}

.color-bg {
  background: #f7f7f7;
}

@media (min-width: 1680px) {
  .dt-portfolio .container {
    max-width: 1450px;
  }
}

@media (min-width: 768px) {
  .pr-120 {
    padding-right: 120px;
  }
}

@media (max-width: 1024px) {
  .nk-order-sm-1 {
    order: 1;
    width: 50% !important;
  }
}

@media (max-width: 1200px) {
  .elementor-section.elementor-section-boxed>.elementor-container {
    max-width: 960px !important;
  }
}

@media (max-width: 991px) {
  .elementor-section.elementor-section-boxed>.elementor-container {
    max-width: 720px !important;
  }
}

@media (max-width: 767px) {
  .elementor-section.elementor-section-boxed>.elementor-container {
    max-width: 540px !important;
  }
}

@media (max-width: 576px) {
  .elementor-section.elementor-section-boxed>.elementor-container {
    max-width: 100% !important;
  }
}

@media (min-width: 991px) {
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
}

@media (max-width: 1024px) {
  .nio-order-md {
    order: 1;
  }

  .btn-responsive {
    max-width: 70%;
  }
}

@media (max-width: 767px) {
  .btn-responsive {
    max-width: 100%;
    width: 100%;
  }

  .btn-responsive .btn {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
}

@media (max-width: 1024px) {

  .gfx1,
  .gfx3,
  .gfx4 {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 991px) {
  .gfx2 {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@font-face {
  font-family: "Mr Dafoe";
  src: url("../fonts/MrDafoe-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: Futura;
  src: url("../fonts/FuturaPTLight.woff") format("WOFF");
  font-weight: 300;
}

@font-face {
  font-family: Futura;
  src: url("../fonts/FuturaPTBook.woff") format("WOFF");
  font-weight: 400;
}

@font-face {
  font-family: Futura;
  src: url("../fonts/FuturaPTMedium.woff") format("WOFF");
  font-weight: 500;
}

@font-face {
  font-family: Futura;
  src: url("../fonts/FuturaPTDemi.woff") format("WOFF");
  font-weight: 600;
}

@font-face {
  font-family: Futura;
  src: url("../fonts/FuturaPTHeavy.woff") format("WOFF");
  font-weight: 700;
}

/*
  	Niro icon font: Niro
  	Creation date: 16/03/2020 09:03
  	*/
    @font-face {
      font-family: "Niro";
      src: url("../fonts/Niro.eot");
      src: url("../fonts/Niro.eot?#iefix") format("embedded-opentype"), url("../fonts/Niro.woff2") format("woff2"), url("../fonts/Niro.woff") format("woff"), url("../fonts/Niro.ttf") format("truetype"), url("../fonts/Niro.svg#Niro") format("svg");
      font-weight: normal;
      font-style: normal;
    }

    @media screen and (-webkit-min-device-pixel-ratio: 0) {
      @font-face {
        font-family: "Niro";
        src: url("./Niro.svg#Niro") format("svg");
      }
    }

    [class^="niro-"]:before,
    [class*=" niro-"]:before,
    [class^="niro-"]:after,
    [class*=" niro-"]:after {
      font-family: Niro;
      font-style: normal;
    }

    .niro-right:before {
      content: "\f100";
    }

    .niro-left:before {
      content: "\f101";
    }

    strong,
    b {
      font-weight: 700;
    }

    figure {
      margin: 1em 0;
      /* Extra wide images within figure tags don't overflow the content area. */
    }

    #preloader img {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .loadbar-percent {
      width: 0;
      height: 2px;
      background: #ffffff;
    }

    #percent {
      font-size: 80px;
      color: #fff;
      margin-top: 20px;
      font-weight: 400;
    }

    .preloader-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: #000;
      z-index: 99999;
    }

    .preloader-wrapper.preloader_end {
      transition: 1s;
      transform: translateY(-100%);
    }

    .preloader-wrapper .preloader_box {
      margin-top: 50px;
    }

    .preloader-wrapper .preloader_box h2 {
      font-size: 48px;
      color: #fafafa;
      text-transform: uppercase;
      font-weight: 400;
    }

    .preloader-wrapper .preloader_box p {
      font-size: 18px;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 3px;
    }

    .percentage-wrapper {
      width: 100%;
      text-align: center;
      font-size: 50px;
      z-index: 99999;
      right: 0;
      margin: 0 auto;
    }

    .overlay_effect,
    .overlay_effect_slide {
      overflow: hidden;
    }

    .overlay_effect img {
      -webkit-transition-duration: 4s;
      transition-duration: 4s;
      -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
      transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
      -webkit-transition-property: -webkit-transform;
      transition-property: -webkit-transform;
      transition-property: transform;
      transition-property: transform, -webkit-transform;
      width: 100%;
    }

    .overlay_effect_in {
      overflow: hidden;
      position: relative;
      -webkit-transform: translate3d(-100.5%, 0, 0);
      transform: translate3d(-100.5%, 0, 0);
      -webkit-transform-origin: left;
      transform-origin: left;
      -webkit-transition-duration: 1s;
      transition-duration: 1s;
      -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
      transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
      -webkit-transition-property: -webkit-transform;
      transition-property: -webkit-transform;
      transition-property: transform;
      transition-property: transform, -webkit-transform;
      -webkit-transition-delay: 0s;
      transition-delay: 0s;
    }

    .overlay_effect_in:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 2;
      background-color: #000;
      -webkit-transform: scaleX(1);
      transform: scaleX(1);
      -webkit-transform-origin: right;
      transform-origin: right;
      -webkit-transition-duration: 1s;
      transition-duration: 1s;
      -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
      transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
      -webkit-transition-property: -webkit-transform;
      transition-property: -webkit-transform;
      transition-property: transform;
      transition-property: transform, -webkit-transform;
      -webkit-transition-delay: .4s;
      transition-delay: .4s;
    }

    .overlay_effect.is_show .overlay_effect_in {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }

    @media (max-width: 991px) {
      .overlay_effect.is_show .overlay_effect_in {
        display: inline-table;
      }
    }

    .overlay_effect.is_show .overlay_effect_in:before {
      -webkit-transform: scale(0, 1);
      transform: scale(0, 1);
    }

    .text_fadeup h1,
    .text_fadeup h2,
    .text_fadeup h3,
    .text_fadeup h4,
    .text_fadeup h5,
    .text_fadeup span,
    .text_fadeup p,
    .text_fadeup a,
    .text_fadeup {
      overflow: hidden;
    }

    table {
      width: 100%;
      margin-bottom: 30px;
      border: 1px solid #e8ebf4;
    }

    table thead {
      background: #f5f5f5;
    }

    table th {
      text-align: left;
      padding: 10px 15px;
      color: #464b50;
      vertical-align: top;
      font-size: 16px;
      font-weight: 600;
      min-width: 130px;
      vertical-align: middle;
    }

    table th a {
      color: #051441;
    }

    table th a:hover {
      color: #ff7070;
    }

    table td {
      padding: 10px 15px;
      border-top: none;
      border-right: none;
      vertical-align: middle;
    }

    table td:last-child {
      border-right: 1px solid #e8ebf4;
    }

    .wp-block-calendar table th {
      min-width: 40px;
      text-align: center;
    }

    tbody {
      margin: 0;
      padding: 0;
      border: 0;
      font: inherit;
      font-size: 100%;
      vertical-align: baseline;
      direction: ltr;
    }

    tbody>tr {
      border-top: 1px solid #e8ebf4;
    }

    tfoot tr #prev a:hover,
    tfoot tr #next a:hover {
      color: #ff7070;
    }

    caption {
      caption-side: top;
      text-align: center;
    }

    .calendar_wrap {
      border: 1px solid rgba(5, 20, 65, 0.2);
    }

    .calendar_wrap caption {
      text-align: center;
      background: #f0f2f9;
      color: #051441;
      font-weight: 500;
    }

    .calendar_wrap table tr,
    .calendar_wrap table td {
      border: 0;
    }

    .calendar_wrap table thead tr {
      border: 0;
    }

    .calendar_wrap table thead tr th {
      border: 0;
    }

    nav.wp-calendar-nav {
      background: #f0f2f9;
      padding: 5px 20px;
    }

    .wp-calendar-nav-next {
      float: right;
    }

    @media (max-width: 576px) {
      table th {
        min-width: 80px;
      }
    }

/*--------------------------------------------------------------
## Button
--------------------------------------------------------------*/
.dt-btn {
  position: relative;
  z-index: 1;
  text-align: center;
  background-color: transparent;
  border: 1px solid #d6d9dc;
  color: #051441;
  display: inline-block;
  padding: 17px 33px;
  line-height: 18px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  font-family: "Futura", sans-serif;
  border-radius: 0;
}

.dt-btn .elementor-align-icon-left {
  margin-right: 10px;
}

.dt-btn .elementor-align-icon-right {
  margin-left: 10px;
  float: right;
}

.dt-btn i {
  vertical-align: middle;
  margin-left: 3px;
}

.dt-btn.btn-lg {
  padding: 18px 53px;
}

.dt-btn:after,
.dt-btn:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.dt-btn:before {
  opacity: 0;
  transition-duration: 0.6s;
  transition-delay: 0.2s;
  transition-property: opacity;
  z-index: -1;
}

.dt-btn:after {
  transform: scaleX(0);
  transform-origin: right;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-property: transform, -webkit-transform;
  z-index: -1;
  background-color: #ff7070;
}

.dt-btn:hover {
  background: transparent;
  border: 1px solid #ff7070;
  color: #fff;
}

.dt-btn:hover:before {
  opacity: 1;
}

.dt-btn:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

/*--------------------------------------------------------------
## Section Heading
--------------------------------------------------------------*/
.section-heading .subtitle {
  font-size: 16px;
  font-family: "Futura", sans-serif;
  color: #ff7070;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.section-heading .section-title {
  font-size: 48px;
  margin-bottom: 32px;
  line-height: 1.2;
  font-weight: 500;
  font-family: "Spectral", serif;
}

.section-heading .section-title span {
  display: block;
}

@media (max-width: 992px) {
  .section-heading .section-title {
    font-size: 32px;
  }
}

.section-heading.style-two .subtitle {
  color: #ff7070;
}

.section-heading.style-two .section-title {
  font-weight: 600;
  font-family: "Futura", sans-serif;
}

.section-heading.style-two .section-title span {
  display: inline-block;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
}

.dt-heading-fill-gradient .subtitle {
  background: -moz-linear-gradient(0deg, #fe422f 0%, #fe5196 100%);
  background: -webkit-linear-gradient(0deg, #fe422f 0%, #fe5196 100%);
  background: -ms-linear-gradient(0deg, #fe422f 0%, #fe5196 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.title-wrapper .modern-title {
  display: inline-block;
  font-size: 24px;
  color: #051441;
  margin: 0;
  display: inline-flex;
  align-items: center;
  line-height: 30px;
}

.title-wrapper .modern-title span {
  display: inline-block;
}

.title-wrapper.align-icon-left .modern-title .title {
  order: 2;
}

.title-wrapper.align-icon-left .title-icon {
  margin-right: 10px;
}

.title-wrapper.align-icon-right .title-icon {
  margin-left: 10px;
}

.title-wrapper .title-icon {
  color: #051441;
  font-size: 18px;
}

/*--------------------------------------------------------------
## Banner
--------------------------------------------------------------*/
.full_height_dark_slider {
  background-color: #0c0c16;
  height: 100vh;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.full_height_dark_slider .vartical_slider_banner_iner {
  height: 100vh;
  align-items: center;
  display: flex;
}

.full_height_dark_slider .banner_content {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.full_height_dark_slider .banner_content_iner {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  max-width: 690px;
}

@media (max-width: 991px) {
  .full_height_dark_slider .banner_content_iner {
    width: 270px;
  }
}

@media (max-width: 767.98px) {
  .full_height_dark_slider .banner_content_iner {
    left: 15px;
  }
}

.full_height_dark_slider .banner_content_iner h2 {
  font-size: 120px;
  color: #fff;
  font-weight: 500;
  font-family: "Spectral", serif;
  letter-spacing: -3px;
  line-height: 1.1;
  margin-bottom: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.full_height_dark_slider .banner_content_iner h2 span {
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 767.98px) {
  .full_height_dark_slider .banner_content_iner h2 span {
    line-height: 1.3;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .full_height_dark_slider .banner_content_iner h2 span {
    line-height: 1.3;
  }
}

@media (max-width: 767.98px) {
  .full_height_dark_slider .banner_content_iner h2 {
    font-size: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .full_height_dark_slider .banner_content_iner h2 {
    font-size: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .full_height_dark_slider .banner_content_iner h2 {
    font-size: 70px;
  }
}

.full_height_dark_slider .banner_content_iner a {
  display: inline-block;
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.full_height_dark_slider .banner_img_content {
  margin-left: 65px;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.full_height_dark_slider .banner_img_content:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #051441;
  top: 0;
  right: 0;
  left: auto;
  transition: width .5s linear;
}

.full_height_dark_slider .banner_img_content img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.full_height_dark_slider .share_social-wpapper {
  position: absolute;
  left: 50px;
  bottom: 60px;
  overflow: hidden;
  padding-top: 0;
}

.full_height_dark_slider .share_social-wpapper .share-text {
  display: none;
}

.full_height_dark_slider .share_social-wpapper .social-share-link {
  transition: all .3s ease-in-out;
}

.full_height_dark_slider .swiper-slide.swiper-slide-active .banner_content_iner h2 {
  overflow: hidden;
}

.full_height_dark_slider .swiper-slide.swiper-slide-active .banner_content_iner h2 span {
  overflow: hidden;
  display: block;
  animation: fadeInUp2 .8s both 1s;
}

.full_height_dark_slider .swiper-slide.swiper-slide-active .banner_content_iner .btn_border_effect {
  overflow: hidden;
  animation: fadeInUp2 .8s both 1.3s;
}

.full_height_dark_slider .swiper-slide.swiper-slide-active .banner_img_content:before {
  animation: fadeOut 1s both 1.4s;
}

.full_height_dark_slider .swiper-slide.swiper-slide-active .share_social-wpapper {
  overflow: hidden;
  display: block;
  animation: fadeInUp2 1s both 1s;
}

.full_height_dark_slider.zoom_effect .banner_content:hover .banner_img_content img {
  transform: scale(1.1);
}

.full_height_dark_slider .social-share-link li {
  margin-left: 0;
}

.full_height_dark_slider .social-share-link li:not(:last-child) {
  margin-right: 15px;
}

.full_height_dark_slider .social-share-link li a {
  display: inline-block;
  overflow: hidden;
}

.full_height_dark_slider .social-share-link li a i {
  transition: all 0.3s ease-in-out;
  text-shadow: 0px 0px rgba(255, 255, 255, 0.5), 0px 50px rgba(255, 255, 255, 0.5);
  color: transparent;
}

.full_height_dark_slider .social-share-link li a:hover i {
  text-shadow: 0px -50px #ff7070, 0px 0px #ff7070;
}

.swiperPagination .swiper-pagination:after {
  position: absolute;
  left: 13px;
  width: 1px;
  height: 225px;
  content: "";
  background-color: rgba(255, 255, 255, 0.3);
  bottom: 66px;
}

@media (max-width: 767.98px) {
  .swiperPagination .swiper-pagination:after {
    display: none;
  }
}

.swiperPagination .swiper-pagination:before {
  position: absolute;
  left: 13px;
  width: 1px;
  height: 225px;
  content: "";
  background-color: rgba(255, 255, 255, 0.3);
  top: 66px;
}

@media (max-width: 767.98px) {
  .swiperPagination .swiper-pagination:before {
    display: none;
  }
}

.full_height_slider {
  height: 100vh;
  align-items: center;
  display: flex;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.full_height_slider .line_animation {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
}

.full_height_slider .line_animation span {
  height: 100%;
  width: 1px;
  background-color: #ededed;
}

.full_height_slider .vartical_slider_banner_iner {
  height: 100vh;
  align-items: center;
  display: flex;
}

.full_height_slider .vartical_slider_banner_iner .text_fadeup {
  overflow: hidden;
}

.full_height_slider .banner_content_iner {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

@media (max-width: 767.98px) {
  .full_height_slider .banner_content_iner {
    left: 15px;
  }
}

.full_height_slider .banner_content_iner h2 {
  font-size: 100px;
  font-weight: 600;
  color: #111114;
  letter-spacing: -3px;
  line-height: 1.2;
  margin-bottom: 0;
  max-width: 470px;
}

@media (max-width: 767.98px) {
  .full_height_slider .banner_content_iner h2 {
    font-size: 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .full_height_slider .banner_content_iner h2 {
    font-size: 70px;
  }
}

.full_height_slider .banner_content_iner h2 span {
  line-height: 1;
}

@media (max-width: 767.98px) {
  .full_height_slider .banner_content_iner h2 span {
    margin: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .full_height_slider .banner_content_iner h2 span {
    margin: 0;
  }
}

.full_height_slider .banner_content_iner a {
  display: inline-block;
  font-size: 18px;
  color: #051441;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.full_height_slider .banner_content_iner .btn_border_effect:after {
  background-color: #acf2f0;
}

.full_height_slider .banner_content_iner .btn_border_effect:hover:after {
  background-color: #ff7070;
}

.full_height_slider .banner_content_iner .overlay_tittle span {
  position: relative;
  overflow: hidden;
  display: table;
  line-height: 1.3;
}

@media (max-width: 767.98px) {
  .full_height_slider .banner_content_iner .overlay_tittle span {
    line-height: 1;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .full_height_slider .banner_content_iner .overlay_tittle span {
    line-height: 1;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .full_height_slider .banner_content_iner .overlay_tittle span {
    line-height: 1.1;
  }
}

.full_height_slider .banner_img_content {
  margin-left: 65px;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.full_height_slider .banner_img_content .image_shape {
  position: absolute;
  left: -30px;
  top: -20px;
  z-index: -1;
}

@media (max-width: 767.98px) {
  .full_height_slider .banner_img_content .image_shape {
    max-width: 100px;
  }
}

.full_height_slider .banner_img_content img {
  position: relative;
  z-index: 9;
}

.full_height_slider .banner_img_content .round_shape {
  position: absolute;
  right: -210px;
  bottom: -25px;
  height: 270px;
  width: 270px;
}

@media (max-width: 768px) {
  .full_height_slider .banner_img_content .round_shape {
    right: -140px;
    bottom: -140px;
  }
}

.full_height_slider .banner_img_content .round_shape_animation {
  background-color: #acf2f0;
  border-radius: 50%;
  z-index: -1;
  animation: circleAnimation 5s linear infinite;
  height: 270px;
  width: 270px;
}

@media (max-width: 767.98px) {
  .full_height_slider .banner_img_content .round_shape_animation {
    height: 100px;
    width: 100px;
  }
}

.full_height_slider.zoom_effect .banner_content:hover .banner_img_content {
  transform: scale(1.15);
}

.full_height_slider .tittle_slide_effect {
  overflow: hidden;
}

.full_height_slider .tittle_slide_effect_in {
  overflow: hidden;
  position: relative;
  transform: scaleX(0);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
  display: block;
  margin: 5px 0;
}

.full_height_slider .tittle_slide_effect_in:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: #000;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition-duration: 1.5s;
  transition-duration: 1.5s;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}

.full_height_slider .tittle_slide_effect.swiper-slide-active .tittle_slide_effect_in {
  transform: scaleX(1);
}

.full_height_slider .tittle_slide_effect.swiper-slide-active .tittle_slide_effect_in:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}

.full_height_slider .swiper-slide.swiper-slide-active .banner_img_content {
  position: relative;
  z-index: 1;
}

.full_height_slider .swiper-slide.swiper-slide-active .banner_img_content .image_shape {
  animation: zoomIn 0.9s both 0.9s;
}

.full_height_slider .swiper-slide.swiper-slide-active .banner_img_content .round_shape {
  animation: zoomIn 0.9s both 0.9s;
}

.full_height_slider .swiper-slide.swiper-slide-active .banner_img_content .banner_img {
  animation: translateZoomOut 0.9s both 0.9s;
}

.full_height_slider .banner-share-link li {
  margin-left: 0;
}

.full_height_slider .banner-share-link li:not(:last-child) {
  margin-right: 15px;
}

.full_height_banner {
  min-height: 100vh;
  align-items: center;
  display: flex;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background-color: #efdfd4;
}

.full_height_banner .fullpage_shape_1 {
  position: absolute;
  left: 7%;
  top: 35%;
}

@media (max-width: 767.98px) {
  .full_height_banner .fullpage_shape_1 {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .full_height_banner .fullpage_shape_1 img {
    max-width: 80px;
  }
}

.full_height_banner .fullpage_shape_2 {
  position: absolute;
  right: 12%;
  bottom: 8%;
}

@media (max-width: 767.98px) {
  .full_height_banner .fullpage_shape_2 {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .full_height_banner .fullpage_shape_2 img {
    max-width: 80px;
  }
}

.full_height_banner .fullpage_shape_3 {
  position: absolute;
  right: 7%;
  bottom: 40%;
}

@media (max-width: 767.98px) {
  .full_height_banner .fullpage_shape_3 {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .full_height_banner .fullpage_shape_3 img {
    max-width: 80px;
  }
}

.full_height_banner .banner_content {
  position: relative;
  z-index: 3;
}

@media (max-width: 991px) {
  .full_height_banner .banner_content {
    margin: 150px 0;
  }
}

.full_height_banner .banner_content .overlay_effect_in {
  margin: 10px 0;
}

@media (max-width: 767.98px) {
  .full_height_banner .banner_content .overlay_effect_in {
    margin: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .full_height_banner .banner_content .overlay_effect_in {
    margin: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .full_height_banner .banner_content .overlay_effect_in {
    margin: 0;
  }
}

.full_height_banner .banner_content .overlay_effect_in:nth-child(1) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.full_height_banner .banner_content .overlay_effect_in:nth-child(1):before {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-transition-duration: .8s;
  transition-duration: .8s;
}

.full_height_banner .banner_content .overlay_effect_in:nth-child(2) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.full_height_banner .banner_content .overlay_effect_in:nth-child(2):before {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}

.full_height_banner .banner_content .overlay_effect_in:nth-child(3) {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.full_height_banner .banner_content .overlay_effect_in:nth-child(3):before {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
  -webkit-transition-duration: 1.4s;
  transition-duration: 1.4s;
}

.full_height_banner .banner_content .overlay_effect_in:nth-child(4) {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.full_height_banner .banner_content .overlay_effect_in:nth-child(4):before {
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
  -webkit-transition-duration: 1.6s;
  transition-duration: 1.6s;
}

.full_height_banner .banner_content .overlay_effect_in:nth-child(5) {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

.full_height_banner .banner_content .overlay_effect_in:nth-child(5):before {
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
  -webkit-transition-duration: 1.8s;
  transition-duration: 1.8s;
}

.full_height_banner .banner_content h2 {
  font-size: 58px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: 1.2;
  color: #141417;
}

@media (max-width: 767.98px) {
  .full_height_banner .banner_content h2 {
    font-size: 30px;
    line-height: 1.6;
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .full_height_banner .banner_content h2 {
    font-size: 35px;
    line-height: 1.6;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .full_height_banner .banner_content h2 {
    font-size: 40px;
    line-height: 1.6;
  }
}

.full_height_banner .banner_content h2 span {
  font-weight: 700;
  font-style: italic;
}

.full_height_banner .banner_content h2 a {
  font-weight: 700;
  font-style: italic;
  color: #141417;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-flex;
  border-bottom: 1px solid #141417;
  line-height: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@keyframes overlay_tittle_animation-after {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(101%);
  }
}

@keyframes overlay_tittle_animation-before {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(200%);
    opacity: 0;
  }
}

.full_height_banner .banner_content h2 a:hover {
  color: #ff7070;
  border-bottom: 1px solid #ff7070;
}

.full_height_banner .banner_content h2 a:hover::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #ff7070;
  animation: overlay_tittle_animation-after 0.7s cubic-bezier(0.77, 0, 0.18, 1) forwards;
  transform: translateX(-101%);
}

.full_height_banner .banner_content h2 a:hover::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  animation: overlay_tittle_animation-before 0.7s cubic-bezier(0.77, 0, 0.18, 1) forwards;
  transform: translateX(0);
}

.full_height_banner .banner_content h2 a:hover::before,
.full_height_banner .banner_content h2 a:hover::after {
  animation-delay: .5s;
}

.full_height_banner .line_animation {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  z-index: 1;
}

.full_height_banner .line_animation span {
  height: 100%;
  width: 1px;
  background-color: #decfc5;
}

.full_height_banner .sticky_footer_content {
  position: absolute;
  left: 50px;
  bottom: 50px;
  z-index: 9;
}

@media (max-width: 767.98px) {
  .full_height_banner .sticky_footer_content {
    left: 15px;
  }
}

.full_height_banner .sticky_footer_content .social_icon a {
  margin-left: 0;
}

.overlay_effect.is_show:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}

.center_portfolio_img {
  background-color: #0b0916;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .center_portfolio_img {
    padding: 100px 0 150px;
  }
}

.center_portfolio_img .swiper_next,
.center_portfolio_img .swiper_prev {
  width: 20%;
  height: 60%;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 999;
  transform: translateY(-50%);
  cursor: pointer;
}

@media (max-width: 767.98px) {

  .center_portfolio_img .swiper_next,
  .center_portfolio_img .swiper_prev {
    display: none;
  }
}

.center_portfolio_img .swiper_next {
  right: 0;
  left: auto;
}

.center_portfolio_img .single_portfolio_slider {
  text-align: center;
  position: relative;
  z-index: 1;
  height: 590px;
}

.center_portfolio_img .single_portfolio_slider .portfolio-slider-content {
  position: relative;
  height: 100%;
}

.center_portfolio_img .single_portfolio_slider .portfolio-slider-content .title-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
}

.center_portfolio_img .single_portfolio_slider .portfolio-slider-content:hover img {
  transform: scale(1.1);
}

@media (max-width: 767.98px) {
  .center_portfolio_img .single_portfolio_slider {
    height: 400px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .center_portfolio_img .single_portfolio_slider {
    height: 400px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .center_portfolio_img .single_portfolio_slider {
    height: 450px;
  }
}

@media only screen and (min-width: 1440px) and (max-width: 1679px) {
  .center_portfolio_img .single_portfolio_slider {
    height: 450px;
  }
}

.center_portfolio_img .single_portfolio_slider h2 {
  font-size: 120px;
  font-weight: 600;
  font-family: "Spectral", serif;
  opacity: 0;
  visibility: hidden;
  line-height: 1.2;
  margin: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 767.98px) {
  .center_portfolio_img .single_portfolio_slider h2 {
    font-size: 42px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .center_portfolio_img .single_portfolio_slider h2 {
    font-size: 60px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .center_portfolio_img .single_portfolio_slider h2 {
    font-size: 70px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  .center_portfolio_img .single_portfolio_slider h2 {
    font-size: 80px;
  }
}

@media only screen and (min-width: 1440px) and (max-width: 1679px) {
  .center_portfolio_img .single_portfolio_slider h2 {
    font-size: 80px;
  }
}

.center_portfolio_img .single_portfolio_slider h2 a {
  color: #fff;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.center_portfolio_img .single_portfolio_slider h2 a:hover {
  color: #ff7070;
}

.center_portfolio_img .single_portfolio_slider h2 a:hover:before {
  width: 100%;
}

.center_portfolio_img .swiper_slide_iner {
  width: 460px;
  height: 590px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  -webkit-transition: 1s;
  transition: 1s;
  transform: scale(0.5);
  opacity: .3;
}

@media (max-width: 767.98px) {
  .center_portfolio_img .swiper_slide_iner {
    width: 290px;
    height: 400px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .center_portfolio_img .swiper_slide_iner {
    width: 290px;
    height: 400px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .center_portfolio_img .swiper_slide_iner {
    width: 320px;
    height: 450px;
  }
}

@media only screen and (min-width: 1440px) and (max-width: 1679px) {
  .center_portfolio_img .swiper_slide_iner {
    width: 380px;
    height: 450px;
  }
}

.center_portfolio_img .swiper_slide_iner img {
  transition: all 0.5s ease-in-out;
}

.center_portfolio_img .swiper-slide-active.single_portfolio_slider h2 {
  opacity: 1;
  visibility: visible;
}

.center_portfolio_img .swiper-slide-active.single_portfolio_slider .swiper_slide_iner {
  opacity: 1;
  transform: scale(1);
}

.center_portfolio_img .swiper-slide-active.single_portfolio_slider .swiper_slide_iner:hover {
  transform: scale(1.1);
}

.center_portfolio_img .tittle_slide_effect {
  overflow: hidden;
}

.center_portfolio_img .tittle_slide_effect_in {
  overflow: hidden;
  position: relative;
  transform: scaleX(0);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition-duration: 2s;
  transition-duration: 2s;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-delay: 3s;
  transition-delay: 3s;
}

.center_portfolio_img .tittle_slide_effect_in:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: #000;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition-duration: 1.5s;
  transition-duration: 1.5s;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-delay: .5s;
  transition-delay: .5s;
}

.center_portfolio_img .tittle_slide_effect.swiper-slide-active .tittle_slide_effect_in {
  transform: scaleX(1);
}

.center_portfolio_img .tittle_slide_effect.swiper-slide-active .tittle_slide_effect_in:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  letter-spacing: 2px;
}

.swiper_navigation_content .swiper_navigation {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
}

.swiper_navigation_content .swiper_navigation div {
  margin-right: 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  letter-spacing: 2px;
}

.swiper_navigation_content .swiper_navigation div:hover {
  color: #ff7070;
}

.swiper_navigation_content .swiper_navigation div:last-child {
  margin-right: 0;
}

.center_portfolio_tittle {
  background-color: #7b5d58;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .center_portfolio_tittle {
    padding: 100px 0 150px;
  }
}

.center_portfolio_tittle .swiper_next,
.center_portfolio_tittle .swiper_prev {
  width: 20%;
  height: 60%;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 999;
  transform: translateY(-50%);
  cursor: pointer;
}

@media (max-width: 767.98px) {

  .center_portfolio_tittle .swiper_next,
  .center_portfolio_tittle .swiper_prev {
    display: none;
  }
}

.center_portfolio_tittle .swiper_next {
  right: 0;
  left: auto;
}

.center_portfolio_tittle .single_portfolio_slider {
  text-align: center;
  position: relative;
  z-index: 1;
  min-height: 590px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 767.98px) {
  .center_portfolio_tittle .single_portfolio_slider {
    min-height: 400px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .center_portfolio_tittle .single_portfolio_slider {
    min-height: 400px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .center_portfolio_tittle .single_portfolio_slider {
    min-height: 450px;
  }
}

@media only screen and (min-width: 1440px) and (max-width: 1679px) {
  .center_portfolio_tittle .single_portfolio_slider {
    min-height: 450px;
  }
}

.center_portfolio_tittle .single_portfolio_slider h2 {
  font-size: 120px;
  font-weight: 600;
  font-family: "Spectral", serif;
  opacity: .3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 767.98px) {
  .center_portfolio_tittle .single_portfolio_slider h2 {
    font-size: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .center_portfolio_tittle .single_portfolio_slider h2 {
    font-size: 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .center_portfolio_tittle .single_portfolio_slider h2 {
    font-size: 50px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  .center_portfolio_tittle .single_portfolio_slider h2 {
    font-size: 80px;
  }
}

@media only screen and (min-width: 1440px) and (max-width: 1679px) {
  .center_portfolio_tittle .single_portfolio_slider h2 {
    font-size: 80px;
  }
}

.center_portfolio_tittle .single_portfolio_slider h2 a {
  color: #fff;
}

.center_portfolio_tittle .single_portfolio_slider h2 a:hover {
  color: #ff7070;
}

.center_portfolio_tittle .single_portfolio_slider h2:hover {
  transform: scale(1.1);
}

.center_portfolio_tittle .swiper_slide_iner {
  width: 460px;
  height: 590px;
  position: absolute;
  background-color: #ff7070;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .center_portfolio_tittle .swiper_slide_iner {
    width: 290px;
    height: 400px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .center_portfolio_tittle .swiper_slide_iner {
    width: 290px;
    height: 400px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .center_portfolio_tittle .swiper_slide_iner {
    width: 320px;
    height: 450px;
  }
}

@media only screen and (min-width: 1440px) and (max-width: 1679px) {
  .center_portfolio_tittle .swiper_slide_iner {
    width: 380px;
    height: 450px;
  }
}

.center_portfolio_tittle .swiper_slide_iner.bg_1 {
  background-image: url("../img/portfolio_slider_4.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.center_portfolio_tittle .swiper_slide_iner.bg_2 {
  background-image: url("../img/portfolio_slider_3.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.center_portfolio_tittle .swiper_slide_iner.bg_3 {
  background-image: url("../img/portfolio_slider_2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.center_portfolio_tittle .swiper_slide_iner.bg_4 {
  background-image: url("../img/portfolio_slider_1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.center_portfolio_tittle .single_portfolio_slider:hover .swiper_slide_iner {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  transform: scale(1.1);
}

.center_portfolio_tittle .swiper-slide-active h2 {
  opacity: 1 !important;
}

.center_portfolio_tittle .swiper-slide-active .swiper_slide_iner {
  opacity: 1;
  visibility: visible;
}

.portfolio-footer {
  position: absolute;
  width: 100%;
  z-index: 22;
  bottom: 0;
  padding: 50px 35px;
}

@media (max-width: 768px) {
  .portfolio-footer {
    display: none;
  }
}

@media (min-width: 1200px) {
  .portfolio-footer .container {
    max-width: 1450px;
  }
}

.portfolio-footer .footer-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portfolio-footer .footer-content-wrapper p {
  margin: 0;
}

.portfolio-footer .footer-content-wrapper p i {
  margin: 0 5px;
}

.portfolio-footer .footer-content-wrapper .share_social-wpapper {
  padding-top: 0;
}

.portfolio-footer .footer-content-wrapper .banner-share-link {
  position: static;
}

.portfolio-footer .footer-content-wrapper .banner-share-link li a {
  color: rgba(255, 255, 255, 0.5);
  margin-left: 0;
}

.portfolio-footer .footer-content-wrapper .banner-share-link li a:hover {
  color: #ff7070;
}

.portfolio-footer .footer-content-wrapper .banner-share-link li:not(:last-child) {
  margin-right: 20px;
}

@-webkit-keyframes circleAnimation {

  0%,
  100% {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    -webkit-transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }

  34% {
    border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
    -webkit-transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
    transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
  }

  50% {
    -webkit-transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }

  67% {
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    -webkit-transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
    transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
  }
}

/* Vertical Slider*/
.vartical_slider_banner {
  height: 100vh;
  background-color: #5238a7;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.vartical_slider_banner .banner_img_content {
  position: relative;
  z-index: 1;
}

.vartical_slider_banner .banner_img_content .banner_shape {
  position: absolute;
  top: -60px;
  right: -90px;
  z-index: -1;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.vartical_slider_banner .banner_content {
  position: relative;
  z-index: 3;
}

.vartical_slider_banner .banner_content h2 {
  font-size: 72px;
  font-family: "Futura", sans-serif;
  color: #fff;
  letter-spacing: -3px;
  line-height: 1.2;
  font-weight: 400;
  overflow: hidden;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .vartical_slider_banner .banner_content h2 {
    font-size: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .vartical_slider_banner .banner_content h2 {
    font-size: 37px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .vartical_slider_banner .banner_content h2 {
    font-size: 50px;
  }
}

.vartical_slider_banner .banner_content h2 span {
  font-family: "Playfair Display", serif;
  font-size: 66px;
  font-style: italic;
  font-weight: 400;
  display: block;
}

@media (max-width: 767.98px) {
  .vartical_slider_banner .banner_content h2 span {
    font-size: 27px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .vartical_slider_banner .banner_content h2 span {
    font-size: 35px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .vartical_slider_banner .banner_content h2 span {
    font-size: 47px;
  }
}

.vartical_slider_banner .banner_content a {
  color: #fff;
  margin-top: 40px;
  display: inline-block;
  font-size: 18px;
}

@media (max-width: 767.98px) {
  .vartical_slider_banner .banner_content a {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .vartical_slider_banner .banner_content a {
    margin-top: 20px;
  }
}

.vartical_slider_banner .banner_content a img {
  margin-left: 7px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.vartical_slider_banner .banner_content a:hover img {
  margin-left: 12px;
}

.vartical_slider_banner .swiper-slide {
  align-items: center;
  display: flex;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .vartical_slider_banner .swiper-slide {
    display: block;
  }
}

.vartical_slider_banner .vartical_slider_banner_iner {
  height: 100vh;
  align-items: center;
  display: flex;
  width: 100%;
}

.vartical_slider_banner .vartical_slider_banner_iner.bg_1 {
  background-color: #5238a7;
}

.vartical_slider_banner .vartical_slider_banner_iner.bg_2 {
  background-color: #f35757;
}

.vartical_slider_banner .vartical_slider_banner_iner.bg_3 {
  background-color: #66b277;
}

.vartical_slider_banner .vartical_slider_banner_iner.bg_4 {
  background-color: #f3a057;
}

@media (max-width: 767.98px) {
  .vartical_slider_banner .vartical_slider_banner_iner {
    position: relative;
    z-index: 2;
  }

  .vartical_slider_banner .vartical_slider_banner_iner .banner_img_content {
    position: absolute;
    right: 15px;
    bottom: 50%;
    width: 65%;
    z-index: 1;
  }
}

.vartical_slider_banner .custom_pagination.swiper-pagination {
  right: 59px;
}

@media (max-width: 767.98px) {
  .vartical_slider_banner .custom_pagination.swiper-pagination {
    right: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .vartical_slider_banner .custom_pagination.swiper-pagination {
    right: 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .vartical_slider_banner .custom_pagination.swiper-pagination {
    right: 25px;
  }
}

.vartical_slider_banner .swiper_next,
.vartical_slider_banner .swiper_prev {
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  z-index: 9;
  border-radius: 50%;
  cursor: pointer;
  margin: 12px 0;
  display: inline-block;
  flex: 100% 0 0;
  font-size: 20px;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.vartical_slider_banner .swiper_next:hover,
.vartical_slider_banner .swiper_prev:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.vartical_slider_banner .swiper_controler {
  right: auto;
  left: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  display: flex;
  float: left;
  flex-wrap: wrap;
  max-width: 55px;
}

@media (max-width: 767.98px) {
  .vartical_slider_banner .swiper_controler {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .vartical_slider_banner .swiper_controler {
    left: 15px;
  }
}

.vartical_slider_banner .swiper-slide-active .banner_content h2 {
  animation: fadeInUp2 1s both 1.2s;
}

.vartical_slider_banner .swiper-slide-active .banner_content a {
  animation: fadeInUp2 1s both 1.5s;
}

.vartical_slider_banner .swiper-slide-active .banner_img_content .banner_shape {
  animation: translateSC 0.9s both 1.1s;
}

.vartical_slider_banner .thumb_slide_effect {
  overflow: hidden;
}

.vartical_slider_banner .thumb_slide_effect_in {
  overflow: hidden;
  position: relative;
  transform: scaleX(0);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-delay: .8s;
  transition-delay: .8s;
}

.vartical_slider_banner .thumb_slide_effect_in:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 33;
  background-color: #000;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition-duration: 1.1s;
  transition-duration: 1.1s;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-delay: 1.1s;
  transition-delay: 1.1s;
}

.vartical_slider_banner .thumb_slide_effect.swiper-slide-active .thumb_slide_effect_in {
  transform: scaleX(1);
}

.vartical_slider_banner .thumb_slide_effect.swiper-slide-active .thumb_slide_effect_in:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}

.vartical_slider_animation {
  height: 100vh;
  background-color: #5238a7;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.vartical_slider_animation .banner_img_content {
  position: relative;
  z-index: 1;
}

.vartical_slider_animation .banner_img_content .banner_shape {
  position: absolute;
  top: -60px;
  right: -90px;
  z-index: -1;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.vartical_slider_animation .banner_img_content .banner_img {
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.vartical_slider_animation .banner_content h2 {
  font-size: 72px;
  font-family: "Futura", sans-serif;
  color: #fff;
  letter-spacing: -3px;
  line-height: 85px;
}

.vartical_slider_animation .banner_content h2 span {
  font-family: "Playfair Display", serif;
  font-size: 66px;
  font-style: italic;
  font-weight: 400;
}

.vartical_slider_animation .banner_content a {
  color: #fff;
  margin-top: 70px;
  display: inline-block;
}

.vartical_slider_animation .banner_content a img {
  margin-left: 7px;
}

.vartical_slider_animation .swiper-slide {
  align-items: center;
  display: flex;
  justify-content: center;
}

.vartical_slider_animation .swiper-slide .swiper-slide-active .banner_img_content .banner_shape {
  animation: translateSC 0.9s both 1.1s;
}

.vartical_slider_animation .vartical_slider_banner_iner {
  height: 100vh;
  align-items: center;
  display: flex;
  width: 100%;
}

.vartical_slider_animation .vartical_slider_banner_iner.bg_1 {
  background-color: #5238a7;
}

.vartical_slider_animation .vartical_slider_banner_iner.bg_2 {
  background-color: #f35757;
}

.vartical_slider_animation .vartical_slider_banner_iner.bg_3 {
  background-color: #66b277;
}

.vartical_slider_animation .vartical_slider_banner_iner.bg_4 {
  background-color: #f3a057;
}

.vartical_slider_animation .swiper-pagination {
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 34px;
  float: right;
  text-align: right;
  left: auto;
  right: 59px;
}

@media (max-width: 767.98px) {
  .vartical_slider_animation .swiper-pagination {
    right: 23px;
  }
}

.vartical_slider_animation span.swiper-pagination-current {
  position: absolute;
  left: 0;
  top: -13px;
}

.vartical_slider_animation span.swiper-pagination-total {
  position: absolute;
  bottom: -5px;
}

.vartical_slider_animation .swiper_next,
.vartical_slider_animation .swiper_prev {
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  position: absolute;
  top: 42%;
  transform: translateX(-50%);
  z-index: 9;
  border-radius: 50%;
  left: 75px;
  cursor: pointer;
}

.vartical_slider_animation .swiper_prev {
  top: 51%;
}

.custom_pagination.swiper-pagination {
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 34px;
  float: right;
  text-align: right;
  left: auto;
  right: 59px;
}

@media (max-width: 767.98px) {
  .custom_pagination.swiper-pagination {
    right: 23px;
  }
}

.custom_pagination.dark.swiper-pagination {
  color: #111114;
}

.custom_pagination span.swiper-pagination-current {
  position: absolute;
  left: -3px;
  top: -18px;
  font-size: 28px;
}

.custom_pagination span.swiper-pagination-total {
  position: absolute;
  bottom: -5px;
}

.portfolio_column_item {
  position: relative;
}

.portfolio_column_item:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transition: all 0.5s ease-in-out;
  transform-origin: left;
}

.portfolio_column_item .portfolio_image {
  overflow: hidden;
  height: 100vh;
}

.portfolio_column_item .portfolio_image img {
  transition: all 0.5s ease-in-out;
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.portfolio_column_item:hover .portfolio_image img {
  transform: scale(1.1);
}

.portfolio_column_item:hover:after {
  transform: scale(1, 1);
}

.portfolio_column_item .portfolio_content {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  text-align: center;
  transform: translateY(-50%);
  z-index: 22;
}

.portfolio_column_item .portfolio_content .tags {
  font-size: 12px;
  height: 22px;
  padding: 0 13px;
  background-color: #fff;
  line-height: 22px;
  border-radius: 3px;
  border: 1px solid #fff;
  text-transform: uppercase;
  margin-bottom: 17px;
  display: inline-block;
  font-weight: 500;
}

.portfolio_column_item .portfolio_content .portfolio-title {
  font-size: 35px;
  position: relative;
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .portfolio_column_item .portfolio_content .portfolio-title {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .portfolio_column_item .portfolio_content .portfolio-title {
    font-size: 24px;
  }
}

.portfolio_column_item .portfolio_content .portfolio-title a {
  color: #fff;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.portfolio_column_item .portfolio_content .portfolio-title a:before {
  text-align: left;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  transition: all 400ms ease-in-out;
  content: attr(data-hover);
  width: 0;
  color: #ff7070;
}

.portfolio_column_item .portfolio_content .portfolio-title a:hover:before {
  width: 100%;
}

.vartical_parallax_banner {
  overflow: hidden;
  position: relative;
}

.vartical_parallax_banner .swiper-container {
  min-height: 100vh;
}

.vartical_parallax_banner .swiper-slide {
  overflow: hidden;
}

.vartical_parallax_banner .banner_content {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-left: 25px;
}

@media (max-width: 576px) {
  .vartical_parallax_banner .banner_content {
    padding-left: 0;
  }
}

.vartical_parallax_banner .banner_content p {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.vartical_parallax_banner .banner_content h2 {
  font-size: 64px;
  font-weight: 500;
  color: #fff;
}

@media (max-width: 991px) {
  .vartical_parallax_banner .banner_content h2 {
    font-size: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .vartical_parallax_banner .banner_content h2 {
    font-size: 48px;
  }
}

.vartical_parallax_banner .swiper-slide-active .banner_content p {
  overflow: hidden;
  display: block;
  animation: fadeInRight 1s both 1.3s;
}

.vartical_parallax_banner .swiper-slide-active .banner_content h2 {
  overflow: hidden;
  display: block;
  animation: fadeInRight 1s both 1.5s;
}

.vartical_parallax_banner .swiper-slide .slide_bg_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.vartical_parallax_banner .swiper-slide .slide_bg_img.bg_1 {
  background-image: url(../img/banner_img/7.png);
}

.vartical_parallax_banner .swiper-slide .slide_bg_img.bg_2 {
  background-image: url(../img/banner_img/8.png);
}

.vartical_parallax_banner .swiper-slide .slide_bg_img.bg_3 {
  background-image: url(../img/banner_img/9.png);
}

.vartical_parallax_banner .swiper-slide .entity-img {
  display: none;
}

.vartical_parallax_banner .swiper_navigation {
  z-index: 9;
}

.vartical_parallax_banner .swiper_navigation .swiper_next,
.vartical_parallax_banner .swiper_navigation .swiper_prev {
  text-align: center;
  line-height: 1;
  z-index: 9;
  cursor: pointer;
  display: inline-block;
  color: #fff;
}

.vartical_parallax_banner .swiper_navigation .swiper_next {
  margin-right: 36px;
}

@media (max-width: 767.98px) {
  .vartical_parallax_banner .swiper_navigation .swiper_next {
    margin-right: 20px;
  }
}

.vartical_parallax_banner .footer_content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 40px 40px 33px;
  z-index: 9;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767.98px) {
  .vartical_parallax_banner .footer_content {
    padding: 20px 15px 20px;
  }
}

.vartical_parallax_banner .footer_content p {
  color: #fff;
}

@media (max-width: 767.98px) {
  .vartical_parallax_banner .footer_content .social_icon {
    margin-top: 5px;
  }
}

.vartical_parallax_banner .footer_content .social_icon a {
  color: #fff;
}

.translateSC {
  -webkit-animation-name: translateSC;
  animation-name: translateSC;
}

.banner-share-link {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  left: 50px;
  bottom: 60px;
  z-index: 2;
}

.banner-share-link li {
  display: inline-block;
  font-size: 14px;
  color: #848ca5;
}

.banner-share-link li:not(:last-child) {
  margin-right: 15px;
}

.banner-share-link li a {
  font-size: 14px;
  color: #848ca5;
}

.banner-share-link li a:hover {
  color: #ff7070;
}

@-webkit-keyframes translateSC {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.2) rotate(-5deg);
    -ms-transform: scale(1.2) rotate(-5deg);
    transform: scale(1.2) rotate(-5deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes translateSC {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

/*--------------------------------------------------------------
## Banner
--------------------------------------------------------------*/
.banner_part {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  align-items: center;
}

@media (max-width: 767.98px) {
  .banner_part {
    height: 700px;
  }
}

.banner_part:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .6;
  z-index: -2;
}

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

.banner_part .banner_iner h2 {
  font-size: 60px;
  font-weight: 400;
  color: #fff;
  line-height: 70px;
  margin: 0 0 30px;
  font-family: "Spectral", serif;
}

@media (max-width: 1200px) {
  .banner_part .banner_iner h2 {
    font-size: 55px;
  }
}

@media (max-width: 767.98px) {
  .banner_part .banner_iner h2 {
    font-size: 40px;
    line-height: 55px;
    margin: 0 0 20px;
  }
}

.banner_part .banner_iner p {
  font-size: 24px;
  color: #fff;
}

.banner_part .video_popup {
  margin: 0 auto;
  margin-top: 60px;
  text-align: center;
  position: relative;
}

@media (max-width: 767.98px) {
  .banner_part .video_popup {
    margin-top: 20px;
  }
}

.banner_part .banner_line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: flex;
  justify-content: space-around;
}

.banner_part .banner_line span {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  height: 100%;
}

.video_popup .polygon_shape {
  width: 0px;
  height: 0px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid #ff7070;
  display: block;
  text-align: center;
  margin-left: 6px;
  position: relative;
  z-index: 9;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.video_popup:hover .polygon_shape {
  border-left: 18px solid #fff;
}

.img_banner_section {
  background-color: #ffdbdb;
  position: relative;
  z-index: 1;
}

.img_banner_section .banner_iner h2 {
  font-size: 82px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -2px;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .img_banner_section .banner_iner h2 {
    font-size: 35px;
  }
}

@media (max-width: 991px) {
  .img_banner_section .banner_iner h2 {
    font-size: 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .img_banner_section .banner_iner h2 {
    font-size: 40px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  .img_banner_section .banner_iner h2 {
    font-size: 50px;
  }
}

.img_banner_section .banner_iner h2 span {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 76px;
  margin-right: 15px;
}

@media (max-width: 767.98px) {
  .img_banner_section .banner_iner h2 span {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .img_banner_section .banner_iner h2 span {
    font-size: 35px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .img_banner_section .banner_iner h2 span {
    font-size: 35px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  .img_banner_section .banner_iner h2 span {
    font-size: 45px;
  }
}

.img_banner_section .banner_iner p {
  font-size: 24px;
  font-family: "Futura", sans-serif;
  color: #4b4b4b;
  margin-top: 35px;
}

@media (max-width: 767.98px) {
  .img_banner_section .banner_iner p {
    margin-top: 10px;
  }
}

@media (max-width: 991px) {
  .img_banner_section .banner_iner p {
    margin-top: 10px;
  }
}

.img_banner_section .banner_iner .cu_btn.btn_3 {
  background-color: #ca063a;
  border: 1px solid #ca063a;
  text-transform: capitalize;
  font-weight: 600;
  letter-spacing: 1px;
}

.img_banner_section .banner_iner .cu_btn.btn_3:hover {
  background-color: transparent;
  border: 1px solid #ca063a;
  color: #ca063a;
}

.img_banner_section .banner_iner .banner_btn {
  display: flex;
  align-items: center;
  margin-top: 57px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .img_banner_section .banner_iner .banner_btn {
    margin-top: 35px;
  }
}

.img_banner_section .banner_iner .video_popup {
  height: 65px;
  width: 65px;
  line-height: 65px;
  margin-left: 50px;
  position: relative;
}

@media (max-width: 767.98px) {
  .img_banner_section .banner_iner .video_popup {
    margin-left: 30px;
  }
}

.img_banner_section .banner_iner .video_popup .polygon_shape {
  border-left: 18px solid #ca063a;
}

.img_banner_section .banner_iner .video_popup:hover {
  background-color: #ca063a;
}

.img_banner_section .banner_iner .video_popup:hover .polygon_shape {
  border-left: 18px solid #fff;
}

.img_banner_section .overlay_effect.is_show .overlay_effect_in {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.img_banner_section .overlay_effect.is_show .overlay_effect_in:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}

.img_banner_section .overlay_effect .overlay_effect_in {
  transform: scaleX(0);
  transform-origin: left;
  display: inline-flex;
  align-items: center;
}

.img_banner_section .overlay_effect.is_show .overlay_effect_in {
  transform: scaleX(1);
}

.img_banner_section .banner_img {
  text-align: right;
  margin-right: -100px;
}

@media (max-width: 991px) {
  .img_banner_section .banner_img {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .img_banner_section .banner_img {
    margin-right: 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  .img_banner_section .banner_img {
    margin-right: 0;
  }
}

@media (min-width: 991px) {
  .img_banner_section {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 991px) {
  .img_banner_section {
    min-height: 600px;
    display: flex;
    align-items: center;
  }
}

.img_banner_section .banner_line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: flex;
  justify-content: space-around;
}

.img_banner_section .banner_line span {
  width: 1px;
  background-color: #f2d0d0;
  height: 100%;
}

.dark_bg {
  background-color: #040911;
}

.dark_banner_section {
  display: flex;
  height: 100vh;
  align-items: center;
  position: relative;
}

.dark_banner_section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

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

.dark_banner_section .banner_content_inner .video_popup {
  position: relative;
  margin: 0 auto;
  margin-bottom: 55px;
  background-image: -moz-linear-gradient(0deg, #fe422f 0%, #fe5196 100%);
  background-image: -webkit-linear-gradient(0deg, #fe422f 0%, #fe5196 100%);
  background-image: -ms-linear-gradient(0deg, #fe422f 0%, #fe5196 100%);
  width: 80px;
  height: 80px;
}

.dark_banner_section .banner_content_inner .video_popup img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 9;
}

.dark_banner_section .banner_content_inner .video_popup.play_animation:before {
  z-index: 7;
  background-image: -moz-linear-gradient(0deg, #fe422f 0%, #fe5196 100%);
  background-image: -webkit-linear-gradient(0deg, #fe422f 0%, #fe5196 100%);
  background-image: -ms-linear-gradient(0deg, #fe422f 0%, #fe5196 100%);
  opacity: 0.302;
}

.dark_banner_section .banner_content_inner h2 {
  font-size: 90px;
  color: #fff;
  line-height: 1.2;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .dark_banner_section .banner_content_inner h2 {
    font-size: 26px;
    margin-top: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .dark_banner_section .banner_content_inner h2 {
    font-size: 60px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .dark_banner_section .banner_content_inner h2 {
    font-size: 70px;
  }
}

.dark_banner_section .typed-title,
.dark_banner_section .typed-cursor {
  color: #ff7070;
}

.dt-heading-fill-gradient .typed-title,
.dt-heading-fill-gradient .typed-cursor {
  background: -moz-linear-gradient(0deg, #fe422f 0%, #fe5196 100%);
  background: -webkit-linear-gradient(0deg, #fe422f 0%, #fe5196 100%);
  background: -ms-linear-gradient(0deg, #fe422f 0%, #fe5196 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient_color {
  background: -moz-linear-gradient(0deg, #fe422f 0%, #fe5196 100%);
  background: -webkit-linear-gradient(0deg, #fe422f 0%, #fe5196 100%);
  background: -ms-linear-gradient(0deg, #fe422f 0%, #fe5196 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/********* banner part css end ********/
.profile_info {
  position: relative;
}

@media (max-width: 991px) {
  .profile_info.social_link img {
    padding-left: 60px;
  }
}

.profile_info.social_link .profile_social_icon {
  position: absolute;
  left: 65px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .profile_info.social_link .profile_social_icon {
    left: 20px;
  }
}

.profile_info.social_link .profile_social_icon ul {
  padding: 0;
  margin: 0;
}

.profile_info.social_link .profile_social_icon ul li {
  list-style: none;
  margin: 12px 0;
}

.profile_info.social_link .profile_social_icon ul li a {
  color: #051441;
  display: inline-block;
}

.profile_info.style_1 {
  padding: 160px 0 320px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .profile_info.style_1 {
    margin: 35px 0;
    padding: 70px 0;
  }
}

.profile_info.style_1 .profile_info_iner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 940px;
  margin: 0 auto;
}

.profile_info.style_1 .profile_info_iner h2 {
  font-size: 72px;
  line-height: 1.2;
  margin-bottom: 6px;
  font-weight: 600;
  overflow: hidden;
  display: block;
}

@media (max-width: 767.98px) {
  .profile_info.style_1 .profile_info_iner h2 {
    font-size: 34px;
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .profile_info.style_1 .profile_info_iner h2 {
    font-size: 50px;
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .profile_info.style_1 .profile_info_iner h2 {
    font-size: 60px;
    margin-bottom: 10px;
  }
}

.profile_info.style_1 .profile_info_iner .overlay_effect {
  transform: scaleX(0);
  transform-origin: left;
  transition: .5s;
}

.profile_info.style_1 .profile_info_iner .overlay_effect.is_show {
  transform: scaleX(1);
}

.profile_info.style_1 .profile_info_iner .overlay_effect_in:before {
  -webkit-transition-delay: .5s;
  transition-delay: .5s;
  background-color: #ff7070;
  -webkit-transition-duration: 1.5s;
  transition-duration: 1.5s;
}

.profile_info.style_1 .profile_info_iner [class^="profile_icon_"],
.profile_info.style_1 .profile_info_iner [class*="profile_icon_"] {
  position: absolute;
  z-index: -1;
}

@media (max-width: 991px) {

  .profile_info.style_1 .profile_info_iner [class^="profile_icon_"] img,
  .profile_info.style_1 .profile_info_iner [class*="profile_icon_"] img {
    width: 50%;
  }
}

.profile_info.style_1 .profile_info_iner .profile_icon_1 {
  top: -70px;
  left: -70px;
}

.profile_info.style_1 .profile_info_iner .profile_icon_2 {
  left: 12%;
  bottom: -20%;
}

@media (max-width: 991px) {
  .profile_info.style_1 .profile_info_iner .profile_icon_2 {
    display: none;
  }
}

.profile_info.style_1 .profile_info_iner .profile_icon_5 {
  bottom: 20%;
  left: 0;
}

.profile_info.style_1 .profile_info_iner .profile_icon_3 {
  top: -13%;
  right: 17%;
}

@media (max-width: 991px) {
  .profile_info.style_1 .profile_info_iner .profile_icon_3 {
    display: none;
  }
}

.profile_info.style_1 .profile_info_iner .profile_icon_4 {
  right: -12%;
  bottom: 0;
}

@media (max-width: 991px) {
  .profile_info.style_1 .profile_info_iner .profile_icon_4 {
    display: none;
  }
}

.profile_info.style_1 .profile_info_iner .profile_icon_6 {
  bottom: -10%;
  right: -3%;
}

.profile_info.style_1 .profile_info_iner .profile_icon_7 {
  bottom: 10%;
  right: 14%;
  opacity: .6;
}

.profile_info.style_2 {
  padding: 130px 0 330px;
  background-image: url("../img/4.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: contain;
}

@media (max-width: 991px) {
  .profile_info.style_2 {
    padding: 50px 0 100px;
  }
}

.profile_info.style_2 .overlay_effect {
  transform: scaleX(0);
  transform-origin: left;
  transition: .5s;
}

.profile_info.style_2 .overlay_effect.is_show {
  transform: scaleX(1);
}

.profile_info.style_2 .profile_info_iner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.profile_info.style_2 .profile_info_iner .title-top {
  font-weight: 300;
}

.profile_info.style_2 .profile_info_iner h2 {
  font-size: 130px;
  margin-bottom: 6px;
  line-height: 1;
  color: #ff7070;
  font-weight: 500;
}

@media (max-width: 991px) {
  .profile_info.style_2 .profile_info_iner h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .profile_info.style_2 .profile_info_iner h2 {
    font-size: 60px;
    margin-bottom: 10px;
  }
}

.profile_info.style_2 .profile_info_iner .overlay_effect_in:before {
  -webkit-transition-delay: .5s;
  transition-delay: .5s;
  background-color: #ff7070;
  -webkit-transition-duration: 1.5s;
  transition-duration: 1.5s;
}

.profile_info.style_2 .profile_info_iner p {
  font-size: 24px;
  margin-bottom: 15px;
}

.profile_info.style_2 .profile_info_iner .cu_btn {
  width: 180px;
  background-color: transparent;
  border: 1px solid #cdd0d9;
  color: #051441;
  margin-top: 35px;
}

.profile_info.style_2 .profile_info_iner .cu_btn:hover {
  background-color: #ff7070;
  border: 1px solid #ff7070;
  color: #fff;
}

.profile_info.style_3 {
  padding: 230px 0 210px;
}

@media (max-width: 991px) {
  .profile_info.style_3 {
    padding: 170px 0 50px;
  }
}

.profile_info.style_3 .profile_info_iner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.profile_info.style_3 .profile_info_iner h3 {
  font-size: 64px;
  font-weight: 500;
  line-height: 1.3;
}

@media (max-width: 767.98px) {
  .profile_info.style_3 .profile_info_iner h3 {
    font-size: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .profile_info.style_3 .profile_info_iner h3 {
    font-size: 35px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .profile_info.style_3 .profile_info_iner h3 {
    font-size: 50px;
  }
}

.profile_info.style_3 .profile_info_iner h3 span {
  background-color: #051441;
  color: #fff;
  line-height: .8;
  padding: 0 5px;
}

.profile_info.style_3 .profile_info_iner h3 .typed-cursor {
  line-height: .8;
}

.profile_info.style_4 {
  height: 965px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

@media (max-width: 1400px) {
  .profile_info.style_4 {
    height: 100vh;
  }
}

.profile_info.style_4:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background: rgba(255, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .profile_info.style_4 {
    height: 565px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .profile_info.style_4 {
    height: 665px;
  }
}

.profile_info.style_4 .profile_info_iner h2 {
  font-size: 130px;
  color: #fff;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .profile_info.style_4 .profile_info_iner h2 {
    font-size: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .profile_info.style_4 .profile_info_iner h2 {
    font-size: 80px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .profile_info.style_4 .profile_info_iner h2 {
    font-size: 70px;
  }
}

.profile_info.style_4 .profile_info_iner .overlay_tittle span {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  line-height: 1;
  margin: 0 auto;
  font-weight: 500;
}

.profile_info.style_4 .profile_info_iner h3 {
  margin-top: 39px;
  font-size: 30px;
  font-weight: 400;
  color: #fff;
}

@media (max-width: 767.98px) {
  .profile_info.style_4 .profile_info_iner h3 {
    font-size: 20px;
    margin: 15px 0 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .profile_info.style_4 .profile_info_iner h3 {
    font-size: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .profile_info.style_4 .profile_info_iner h3 {
    font-size: 30px;
    margin: 20px 0 0;
  }
}

.profile_info.style_4 .profile_info_iner .overlay_tittle span::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #051441;
  animation: overlay_tittle_animation-after 2s cubic-bezier(0.77, 0, 0.18, 1) forwards;
  transform: translateX(-101%);
}

.profile_info.style_4 .profile_info_iner .overlay_tittle span::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  animation: overlay_tittle_animation-before 2s cubic-bezier(0.77, 0, 0.18, 1) forwards;
  transform: translateX(0);
}

.profile_info.style_4 .profile_info_iner .overlay_tittle span:nth-of-type(1)::before,
.profile_info.style_4 .profile_info_iner .overlay_tittle span:nth-of-type(1)::after {
  animation-delay: 1s;
}

.profile_info.style_4 .profile_info_iner .overlay_tittle span:nth-of-type(2)::before,
.profile_info.style_4 .profile_info_iner .overlay_tittle span:nth-of-type(2)::after {
  animation-delay: 1.5s;
}

@keyframes overlay_tittle_animation-after {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(101%);
  }
}

@keyframes overlay_tittle_animation-before {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(200%);
  }
}

.profile_info.style_5 {
  padding: 215px 0 295px;
  position: relative;
}

@media (max-width: 1400px) {
  .profile_info.style_5 {
    padding-top: 130px;
  }
}

@media (max-width: 767.98px) {
  .profile_info.style_5 {
    padding: 100px 0 150px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .profile_info.style_5 {
    padding: 100px 0 150px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .profile_info.style_5 {
    padding: 100px 0 150px;
  }
}

.profile_info.style_5 .profile_social_icon {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .profile_info.style_5 .profile_social_icon {
    top: auto;
    bottom: 50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
  }
}

.profile_info.style_5 .profile_social_icon ul {
  margin: 0;
  padding: 0;
}

.profile_info.style_5 .profile_social_icon li {
  list-style: none;
  margin: 14px 0;
}

@media (max-width: 991px) {
  .profile_info.style_5 .profile_social_icon li {
    display: inline-block;
    margin: 0 10px;
  }
}

.profile_info.style_5 .profile_social_icon li a {
  color: #051441;
  font-size: 16px;
  overflow: hidden;
  display: inline-block;
}

.profile_info.style_5 .profile_social_icon li a i {
  transition: all 0.3s ease-in-out;
  text-shadow: 0px 0px #051441, 0px 30px #051441;
  color: transparent;
}

.profile_info.style_5 .profile_social_icon li a:hover i {
  text-shadow: 0px -30px #ff7070, 0px 0px #ff7070;
}

.profile_info.style_5 h3 {
  font-size: 30px;
  color: #4b4b4b;
  overflow: hidden;
  display: block;
  margin-bottom: 65px;
  font-weight: 400;
}

@media (max-width: 767.98px) {
  .profile_info.style_5 h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .profile_info.style_5 h3 {
    font-size: 25px;
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .profile_info.style_5 h3 {
    margin-bottom: 20px;
  }
}

.profile_info.style_5 h3 span {
  overflow: hidden;
  display: block;
  animation: fadeInUp2 1s both 1s;
}

.profile_info.style_5 h2 {
  font-size: 100px;
  margin-bottom: 6px;
  font-weight: 600;
  overflow: hidden;
  display: block;
  font-family: "Futura", sans-serif;
  line-height: 1;
}

@media (max-width: 767.98px) {
  .profile_info.style_5 h2 {
    font-size: 35px;
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .profile_info.style_5 h2 {
    font-size: 70px;
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .profile_info.style_5 h2 {
    font-size: 70px;
    margin-bottom: 10px;
  }
}

.profile_info.style_5 h2 span {
  overflow: hidden;
  display: block;
  animation: fadeInUp2 .8s both 1s;
}

.profile_info.style_5 h2 span:last-child {
  animation: fadeInUp2 .8s both 1.3s;
}

.arrow_down {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100px;
}

@media (max-width: 991px) {
  .arrow_down {
    bottom: 0;
  }
}

/*--------------------------------------------------------------
## About Me
--------------------------------------------------------------*/
.about_section {
  padding-bottom: 40px;
}

@media (max-width: 991px) {
  .about_section {
    padding-bottom: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .about_section {
    padding-bottom: 0;
  }
}

.about_section .img_section {
  position: relative;
  min-height: 490px;
  z-index: -1;
}

@media (max-width: 767.98px) {
  .about_section .img_section {
    min-height: 410px;
  }
}

.about_section .img_section .about_img_1 {
  position: absolute;
  bottom: 35px;
  z-index: -2;
  left: 30px;
}

@media (max-width: 767.98px) {
  .about_section .img_section .about_img_1 {
    bottom: 52px;
    left: 30px;
    max-width: 250px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .about_section .img_section .about_img_1 {
    left: 30px;
    max-width: 300px;
  }
}

.about_section .img_section .about_img_1 {
  position: absolute;
  bottom: -25px;
  z-index: -1;
  left: -67px;
}

@media (max-width: 767.98px) {
  .about_section .img_section .about_img_1 {
    bottom: 62px;
    left: 30px;
    max-width: 250px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .about_section .img_section .about_img_1 {
    left: -62px;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .about_section .img_section .about_img_2 {
    max-width: 235px;
  }
}

.about_section .img_section .about_img_3 {
  position: absolute;
  top: 160px;
  right: 0;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .about_section .img_section .about_img_3 {
    max-width: 250px;
    right: 0;
    top: 108px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .about_section .img_section .about_img_3 {
    right: -70px;
    top: 167px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .about_section .img_section .about_img_3 {
    right: -70px;
    top: 60px;
  }
}

.about_section .about_section_content {
  padding-left: 65px;
}

@media (min-width: 991px) {
  .about_section .about_section_content {
    margin-top: 71px;
  }
}

@media (max-width: 767.98px) {
  .about_section .about_section_content {
    padding-left: 0;
  }
}

.about_section .about_section_content h5 {
  font-size: 16px;
  color: #ff7070;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.about_section .about_section_content h2 {
  font-size: 48px;
  margin-bottom: 30px;
  line-height: 1.2;
  font-weight: 400;
}

@media (max-width: 767.98px) {
  .about_section .about_section_content h2 {
    font-size: 25px;
    margin-bottom: 10px;
  }
}

@media (max-width: 991px) {
  .about_section .about_section_content h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}

.about_section .about_section_content .cu_btn {
  margin-top: 47px;
  padding: 18px 35px;
  letter-spacing: 1px;
}

@media (max-width: 767.98px) {
  .about_section .about_section_content .cu_btn {
    margin-top: 20px;
    padding: 18px 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .about_section .about_section_content .cu_btn {
    margin-top: 25px;
    padding: 18px 35px;
  }
}

.about_section .round_shape_animation {
  border-radius: 50%;
  background: #85b0fc;
  position: absolute;
  right: 95px;
  top: 60px;
  width: 190px;
  height: 190px;
  -webkit-animation: circleAnimation 5s linear infinite;
  animation: circleAnimation 5s linear infinite;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .about_section .round_shape_animation {
    right: -53px;
    top: 18px;
  }
}

.about_section.sp_font h2 {
  letter-spacing: -3px;
}

.about_part_accordion_style .about_img {
  position: relative;
  z-index: 1;
}

.about_part_accordion_style .about_img .about_overlay {
  position: absolute;
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.about_part_accordion_style .faq_content.collaps_style .card:last-child {
  border-bottom: 0;
}

.about_part_accordion_style .faq_content.collaps_style .card .btn {
  text-transform: capitalize;
}

.about_part_accordion_style {
  overflow: hidden;
}

.about_part_accordion_style.sec_padding {
  padding: 160px 0;
}

@media (max-width: 991px) {
  .about_part_accordion_style.sec_padding {
    padding: 70px 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .about_part_accordion_style.sec_padding {
    padding: 80px 0;
  }
}

@media (max-width: 767.98px) {
  .about_part_accordion_style .about_img {
    margin-top: 40px;
  }
}

.accordion_content .card-header {
  background-color: transparent;
  border-top: 1px solid #e5e5e5;
  border-bottom: 0 solid transparent;
  margin-bottom: 0 !important;
  padding: 40px 40px 40px 40px;
  line-height: 18px;
}

@media (max-width: 991px) {
  .accordion_content .card-header {
    padding: 20px 20px 20px 40px;
  }
}

.accordion_content .card {
  border: 0px solid transparent;
  background-color: transparent;
}

.accordion_content .card:first-child .card-header {
  border-top: 0 solid transparent;
}

.accordion_content .card-body {
  padding: 0 0 40px 40px;
  font-size: 18px;
  line-height: 30px;
  color: #4b4b4b;
  letter-spacing: 1px;
}

.accordion_content .btn {
  padding: 0;
  font-size: 24px;
  color: #051441;
  line-height: 18px;
}

.accordion_content .btn-link:hover {
  color: #ca063a;
  text-decoration: none;
}

.accordion_content .tittle {
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.accordion_content .tittle:after {
  position: absolute;
  content: "\e64b";
  left: -40px;
  top: 0;
  width: 15px;
  height: 15px;
  font-family: "themify";
  font-size: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 700;
  color: #051441;
}

.accordion_content .tittle.active {
  color: #ca063a;
}

.accordion_content .tittle.active:after {
  transform: rotate(180deg);
  color: #ca063a;
}

.about_me_section {
  position: relative;
  z-index: 1;
}

.about_me_section.sec_padding {
  padding: 105px 0 120px;
}

@media (max-width: 991px) {
  .about_me_section.sec_padding {
    padding: 50px 0 70px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .about_me_section.sec_padding {
    padding: 60px 0 80px;
  }
}

.about_me_section .dark_shape_1 {
  position: absolute;
  left: 0;
  top: 45%;
  z-index: -1;
}

@media (max-width: 767.98px) {
  .about_me_section .dark_shape_1 {
    display: none;
  }
}

.about_me_section .dark_shape_2 {
  position: absolute;
  right: 0;
  top: 45%;
  z-index: -1;
}

@media (max-width: 767.98px) {
  .about_me_section .dark_shape_2 {
    display: none;
  }
}

.about_me_section .img_section {
  padding-right: 65px;
}

@media (max-width: 991px) {
  .about_me_section .img_section {
    padding-right: 0;
  }
}

@media (max-width: 576px) {
  .about_me_section .about_section_content {
    margin-top: 35px;
  }
}

.about_me_section .about_section_content h2 {
  font-family: "Futura", sans-serif;
  font-weight: 500;
  font-size: 48px;
  letter-spacing: -2px;
  line-height: 1.2;
  margin-bottom: 31px;
}

@media (max-width: 991px) {
  .about_me_section .about_section_content h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .about_me_section .about_section_content h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }
}

.about_me_section .about_section_content h2 span {
  color: #ff7a7a;
}

.about_me_section .about_section_content p {
  color: #7d7d7d;
  margin-bottom: 0;
}

.about_me_section .author-share-link {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.about_me_section .author-share-link li {
  display: inline-block;
  margin-right: 15px;
  font-size: 14px;
}

.about_me_section .author-share-link li a {
  display: block;
}

.about_us_section {
  padding-bottom: 72px;
  position: relative;
  z-index: 1;
}

.about_us_section .about_us_shap {
  position: absolute;
  bottom: 0;
  right: 80px;
  z-index: -1;
}

.about_us_section .about_section_img {
  display: flex;
}

.about_us_section .faq_content.collaps_style .card:last-child {
  border-bottom: 0px solid transparent;
}

.about_us_section .about_us_img {
  position: relative;
  margin-right: 30px;
  z-index: 1;
  margin-top: 50px;
}

.about_us_section .about_us_img:last-child {
  margin-top: 70px;
}

@media (max-width: 991px) {
  .about_us_section .about_us_img:last-child {
    margin-top: 10px;
  }
}

.about_us_section .about_us_img .about_img_shape {
  position: absolute;
  position: absolute;
  left: -45px;
  top: -15px;
  z-index: -1;
}

.about_us_section .about_us_img .round_shape_animation {
  border-radius: 50%;
  background: #acf2f0;
  position: absolute;
  left: -45px;
  bottom: -70px;
  width: 110px;
  height: 110px;
  -webkit-animation: circleAnimation 5s linear infinite;
  animation: circleAnimation 5s linear infinite;
  z-index: -1;
}

@media (max-width: 991px) {
  .about_us_section .about_us_img .round_shape_animation {
    bottom: -30px;
  }
}

.about_us_section.dark_version {
  padding-bottom: 40px;
}

.about_us_section.dark_version .about_section_content h5 {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.about_us_section.dark_version .about_section_content h2 {
  font-size: 64px;
  margin-bottom: 25px;
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
}

@media (max-width: 767.98px) {
  .about_us_section.dark_version .about_section_content h2 {
    font-size: 25px;
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .about_us_section.dark_version .about_section_content h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .about_us_section.dark_version .about_section_content h2 {
    font-size: 50px;
    margin-bottom: 10px;
  }
}

.about_us_section.dark_version .about_section_content p {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.about_us_section.dark_version .about_section_content .cu_btn {
  margin-top: 47px;
  padding: 18px 35px;
  letter-spacing: 1px;
  color: #fff;
  text-transform: capitalize;
}

@media (max-width: 767.98px) {
  .about_us_section.dark_version .about_section_content .cu_btn {
    margin-top: 20px;
    padding: 18px 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .about_us_section.dark_version .about_section_content .cu_btn {
    margin-top: 25px;
    padding: 18px 35px;
  }
}

.video_section {
  overflow: hidden;
}

.video_section.video_sec_padding {
  padding: 163px 0 130px;
}

@media (max-width: 991px) {
  .video_section.video_sec_padding {
    padding: 100px 0;
  }
}

.video_section .video_section_content {
  position: relative;
  z-index: 1;
}

.video_section .video_section_content .video_popup {
  height: 80px;
  width: 80px;
  box-shadow: 10px 17.321px 40px 0px rgba(1, 16, 58, 0.14);
}

.video_section .video_section_content .video_popup img {
  max-width: 14px;
  margin-left: 3px;
}

@media (max-width: 991px) {
  .video_section .video_section_content .video_popup {
    height: 60px;
    width: 60px;
  }
}

.video_section .about_img_shape {
  position: absolute;
  top: -70px;
  left: -40px;
  z-index: -1;
}

.video_section .round_shape_animation {
  border-radius: 50%;
  background: #acf2f0;
  position: absolute;
  right: -130px;
  bottom: -65px;
  width: 280px;
  height: 280px;
  -webkit-animation: circleAnimation 5s linear infinite;
  animation: circleAnimation 5s linear infinite;
  z-index: -1;
}

@media (max-width: 991px) {
  .video_section .round_shape_animation {
    width: 150px;
    height: 150px;
    right: -70px;
  }
}

.video_section .about_img_shape {
  position: absolute;
  top: -70px;
  left: -40px;
  z-index: -1;
}

.video_popup_section .video_popup {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}

.video_popup_section .video_popup i {
  font-size: 18px;
  color: #ff7070;
}

.dark_bg.about_me_section {
  background-color: #111015;
  padding: 160px 0 0;
  position: relative;
}

.dark_bg.about_me_section .dark_shape_1 {
  position: absolute;
  left: 0;
  top: 45%;
}

@media (max-width: 767.98px) {
  .dark_bg.about_me_section .dark_shape_1 {
    display: none;
  }
}

.dark_bg.about_me_section .dark_shape_2 {
  position: absolute;
  right: 0;
  top: 45%;
}

@media (max-width: 767.98px) {
  .dark_bg.about_me_section .dark_shape_2 {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .dark_bg.about_me_section .about_section_content {
    margin-bottom: 70px;
    margin-top: 50px;
  }
}

.dark_bg.about_me_section .about_section_content h2 {
  color: #fff;
}

.dark_bg.about_me_section .about_section_content h2 span {
  color: #ff7070;
}

.dark_bg.about_me_section .about_section_content p {
  color: #fff;
}

.dark_bg.about_me_section .about_section_content .cu_btn {
  margin-top: 42px;
  letter-spacing: 1px;
}

.dark_bg.skil_list_section {
  background-image: none;
  background-color: #140e2a;
}

.dark_bg.portfolio_section {
  background-color: #111015;
}

.dark_bg.client_list_style_2 {
  background-color: #140e2a !important;
}

.dark_bg.footer_section {
  background-color: #111015;
}

.dark_bg.footer_section .footer_nav h4 {
  color: #fff;
  text-transform: capitalize;
}

.dark_bg.footer_section .single_footer_widget p,
.dark_bg.footer_section .footer_nav ul li a {
  color: rgba(255, 255, 255, 0.2);
}

.dark_bg.footer_section .border_top {
  border-top: 1px solid #29282d;
}

/*--------------------------------------------------------------
## Portfolio
--------------------------------------------------------------*/
.niro-filter-buttons {
  padding: 0;
  list-style: none;
  text-align: center;
  margin-bottom: 50px;
}

.niro-filter-buttons li {
  display: inline-block;
}

.niro-filter-buttons li a {
  padding: 0 30px;
  font-size: 14px;
  text-transform: uppercase;
  color: #b0b0b0;
  letter-spacing: 3px;
  font-weight: 400;
  transition: 0.3s;
}

@media (max-width: 1600px) {
  .niro-filter-buttons li a {
    padding: 0 15px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .niro-filter-buttons li a {
    padding: 0 6px;
  }
}

.niro-filter-buttons li a:hover {
  color: #051441;
}

.niro-filter-buttons li.current a {
  color: #051441;
}

.niro-portfolio-item {
  position: relative;
}

.niro-portfolio-item .post-wrapper .post-thumbnail-wrapper {
  position: relative;
  overflow: hidden;
}

.niro-portfolio-item .post-wrapper .post-thumbnail-wrapper .post-thumbnail,
.niro-portfolio-item .post-wrapper .post-thumbnail-wrapper a {
  height: 100%;
  width: 100%;
}

.niro-portfolio-item .post-wrapper .post-thumbnail-wrapper img {
  transition: all 0.5s ease-in-out;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.niro-portfolio-item .post-wrapper .post-thumbnail-wrapper a {
  display: block;
  position: relative;
}

.niro-portfolio-item .post-wrapper .post-thumbnail-wrapper a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 112, 112, 0.9);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  z-index: 2;
}

.niro-portfolio-item .post-wrapper .portfolio-info {
  position: absolute;
}

.niro-portfolio-item .post-wrapper .portfolio-info .portfolio-title {
  font-size: 28px;
  overflow: hidden;
  display: block;
  margin: 0;
  line-height: 1.2;
  font-family: "Futura", sans-serif;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.niro-portfolio-item .post-wrapper .portfolio-info .portfolio-title:hover {
  color: #ff7070;
}

@media (min-width: 1024px) and (max-width: 1440px) {
  .niro-portfolio-item .post-wrapper .portfolio-info .portfolio-title {
    line-height: 1.1;
  }
}

@media (max-width: 576px) {
  .niro-portfolio-item .post-wrapper .portfolio-info .portfolio-title {
    font-size: 24px;
  }
}

.niro-portfolio-item .post-wrapper .portfolio-info .portfolio-title span {
  overflow: hidden;
  display: block;
}

.niro-portfolio-item .post-wrapper .portfolio-info .portfolio-cat {
  line-height: 1;
  overflow: hidden;
  display: block;
}

.niro-portfolio-item .post-wrapper .portfolio-info .portfolio-cat .cat {
  overflow: hidden;
  display: inline-block;
  font-size: 18px;
  overflow: hidden;
  line-height: 1.2;
  font-family: "Futura", sans-serif;
  font-weight: 400;
}

.niro-portfolio-item .post-wrapper.overlay-one .portfolio-info {
  left: 0;
  bottom: 0;
  padding: 40px 40px 30px;
  opacity: 0;
  visibility: hidden;
  z-index: 3;
}

.niro-portfolio-item .post-wrapper.overlay-one .portfolio-info .portfolio-title {
  color: #fff;
}

.niro-portfolio-item .post-wrapper.overlay-one .portfolio-info .portfolio-cat {
  line-height: 1;
  color: #fff;
  overflow: hidden;
  display: block;
}

.niro-portfolio-item .post-wrapper.overlay-one .portfolio-info .portfolio-cat .cat {
  color: #fff;
  overflow: hidden;
  display: inline-block;
  font-size: 18px;
  overflow: hidden;
  line-height: 1.2;
}

.niro-portfolio-item .post-wrapper.overlay-one:hover .post-thumbnail-wrapper img {
  transform: scale(1.1);
}

.niro-portfolio-item .post-wrapper.overlay-one:hover .post-thumbnail-wrapper a:before {
  opacity: 1;
}

.niro-portfolio-item .post-wrapper.overlay-one:hover .post-thumbnail-wrapper .portfolio-info {
  opacity: 1;
  visibility: visible;
}

.niro-portfolio-item .post-wrapper.overlay-one:hover .post-thumbnail-wrapper .portfolio-info .portfolio-title span {
  animation: fadeInUp2 0.5s both 0.1s;
}

.niro-portfolio-item .post-wrapper.overlay-one:hover .post-thumbnail-wrapper .portfolio-info .portfolio-cat .cat {
  animation: fadeInUp2 0.5s both 0.1s;
}

.niro-portfolio-item .post-wrapper.overlay-two {
  position: relative;
}

.niro-portfolio-item .post-wrapper.overlay-two .post-thumbnail-wrapper a:before {
  background: #fff;
}

.niro-portfolio-item .post-wrapper.overlay-two .portfolio-info {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.niro-portfolio-item .post-wrapper.overlay-two .portfolio-info .portfolio-title {
  color: #051441;
  display: inline-block;
  line-height: 1.3;
}

.niro-portfolio-item .post-wrapper.overlay-two .portfolio-info .portfolio-title:before {
  text-align: left;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  transition: all 400ms ease-in-out;
  content: attr(data-hover);
  width: 0;
}

.niro-portfolio-item .post-wrapper.overlay-two .portfolio-info .portfolio-cat span {
  color: #7d7d7d;
}

.niro-portfolio-item .post-wrapper.overlay-two .portfolio-info .portfolio-title,
.niro-portfolio-item .post-wrapper.overlay-two .portfolio-info .portfolio-cat {
  transform: translateY(20px);
  transition: all 0.5s ease-in-out;
  opacity: 0;
}

.niro-portfolio-item .post-wrapper.overlay-two:hover .post-thumbnail-wrapper img {
  transform: scale(1);
}

.niro-portfolio-item .post-wrapper.overlay-two:hover .post-thumbnail-wrapper a:before {
  opacity: 1;
}

.niro-portfolio-item .post-wrapper.overlay-two:hover .post-thumbnail-wrapper .portfolio-info {
  opacity: 1;
  visibility: visible;
  z-index: 33;
}

.niro-portfolio-item .post-wrapper.overlay-two:hover .post-thumbnail-wrapper .portfolio-info .portfolio-title:hover:before {
  width: 100%;
  color: #ff7070;
}

.niro-portfolio-item .post-wrapper.overlay-two:hover .post-thumbnail-wrapper .portfolio-title,
.niro-portfolio-item .post-wrapper.overlay-two:hover .post-thumbnail-wrapper .portfolio-cat {
  transform: translateY(0);
  opacity: 1;
}

.niro-portfolio-item .post-wrapper.overlay-three .post-thumbnail-wrapper {
  overflow: hidden;
  border-radius: 5px;
}

.niro-portfolio-item .post-wrapper.overlay-three .post-thumbnail-wrapper:before {
  display: none;
}

.niro-portfolio-item .post-wrapper.overlay-three .portfolio-info {
  position: absolute;
  bottom: 28px;
  left: 40px;
}

.niro-portfolio-item .post-wrapper.overlay-three .portfolio-info .portfolio-title {
  font-weight: 700;
  font-size: 30px;
}

.niro-portfolio-item .post-wrapper.overlay-three .portfolio-info .portfolio-cat .cat {
  color: #7d7d7d;
}

.niro-portfolio-item .post-wrapper.overlay-three:hover .post-thumbnail-wrapper img {
  transform: scale(1.1);
}

.style-masonry .niro-portfolio-item .post-thumbnail-wrapper:hover img {
  transform: scale(1.1);
}

.style-masonry .niro-portfolio-item .post-thumbnail-wrapper:before {
  z-index: 1;
}

.style-masonry .niro-portfolio-item .portfolio-info.info-caption {
  text-align: center;
  position: static;
}

.style-masonry .niro-portfolio-item .portfolio-info.info-caption .portfolio-title {
  font-size: 24px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 0;
  position: relative;
  display: inline-block;
}

.style-masonry .niro-portfolio-item .portfolio-info.info-caption .portfolio-title:before {
  text-align: left;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  transition: all 400ms ease-in-out;
  content: attr(data-hover);
  width: 0;
}

.style-masonry .niro-portfolio-item .portfolio-info.info-caption .portfolio-title span {
  font-size: 24px;
  line-height: 1.6;
}

.style-masonry .niro-portfolio-item .portfolio-info.info-caption .portfolio-title:hover:before {
  width: 100%;
  color: #ff7070;
}

.niro-portfolio-item .overlay_effect .post-thumbnail {
  position: relative;
}

.niro-portfolio-item .overlay_effect .post-thumbnail:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: #000;
  transform: scaleX(1);
  transform-origin: right;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-delay: 0.4s;
}

.niro-portfolio-item .overlay_effect.is_show .post-thumbnail:before {
  transform: scale(0, 1);
}

@media (min-width: 1024px) {
  .filter-top .niro-filter-wrapper {
    position: absolute;
    left: 50%;
    top: -66px;
    transform: translateX(-50%);
  }
}

/*--------------------------------------------------------------
## Portfolio Details
--------------------------------------------------------------*/
.portfoli-details .video_section .round_shape_animation,
.portfoli-details-two .video_section .round_shape_animation {
  top: auto;
}

.portfolio_details_content {
  position: relative;
  z-index: 1;
}

.portfolio_details_content .portfolio_details_shape {
  position: absolute;
  left: 0;
  top: 40%;
}

@media (max-width: 991px) {
  .portfolio_details_content .portfolio_details_shape {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .portfolio_details_content .portfolio_details_shape img {
    max-width: 100px;
  }
}

.portfolio_details_content .portfolio_details_shape_2 {
  position: absolute;
  right: 0;
  top: 20%;
}

@media (max-width: 991px) {
  .portfolio_details_content .portfolio_details_shape_2 {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .portfolio_details_content .portfolio_details_shape_2 img {
    max-width: 100px;
  }
}

.portfolio_details_content h3 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 28px;
}

@media (max-width: 991px) {
  .portfolio_details_content h3 {
    font-size: 30px;
    margin-bottom: 15px;
  }
}

.portfolio_details_content .portfolio_content_iner p {
  margin-bottom: 30px;
}

.portfolio_details_content .portfolio_content_list h5 {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 3px;
  font-weight: 500;
  line-height: 1.2;
}

.portfolio_details_content .portfolio_content_list .content_list_iner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.portfolio_details_content .portfolio_content_list .single_content_list {
  margin-bottom: 48px;
  flex: 40% 0 0;
}

@media (max-width: 991px) {
  .portfolio_details_content .portfolio_content_list .single_content_list {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .portfolio_details_content .portfolio_content_list .single_content_list {
    flex: 48% 0 0;
  }
}

.portfolio_details_content .portfolio_content_list .single_content_list p a {
  color: #7d7d7d;
}

.portfolio_details_content .portfolio_content_list .single_content_list p a:hover {
  color: #ff7070;
}

.portfolio_details_content .portfolio_content_list ul {
  padding: 0;
  margin: 0;
}

.portfolio_details_content .portfolio_content_list ul li {
  list-style: none;
  display: inline-block;
}

.portfolio_details_content .portfolio_content_list .social_icon {
  float: none;
  margin-top: 10px;
}

.portfolio_details_content .portfolio_content_list .social_icon a {
  margin-left: 0;
  margin-right: 20px;
}

.portfolio_details_content .portfolio_content_list .social_icon a:nth-child(1) {
  color: #fd1693;
}

.portfolio_details_content .portfolio_content_list .social_icon a:nth-child(2) {
  color: #31428b;
}

.portfolio_details_content .portfolio_content_list .social_icon a:nth-child(3) {
  color: #35a2ff;
}

.portfolio_details_content.style_1 .portfolio_content_iner .cu_btn {
  margin-bottom: 5px;
}

.portfolio_details_content.style_1 .portfolio_content_iner h3 {
  font-size: 72px;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .portfolio_details_content.style_1 .portfolio_content_iner h3 {
    font-size: 35px;
    margin-top: 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .portfolio_details_content.style_1 .portfolio_content_iner h3 {
    font-size: 45px;
    margin-top: 20px;
  }
}

.portfolio_details_content.style_1 .portfolio_content_list .single_content_list {
  margin-bottom: 0;
  margin-top: 35px;
}

.portfolio_details_content.style_1 .portfolio_content_list h5 {
  font-weight: 600;
}

.portfolio_details_content.style_1 .portfolio_content_iner {
  text-align: center;
}

.portfolio_details_content.style_1 .portfolio_content_list {
  justify-content: space-between;
}

.portfolio_details_content.style_1 .portfolio_content_list .single_content_list {
  flex: inherit;
  text-align: center;
}

.portfolio_details_content.style_1 .portfolio_details_shape {
  left: auto;
  right: 50px;
}

.portfolio_details_content.style_1 .social-share-link {
  justify-content: center;
}

.portfolio_content_details h4 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 28px;
}

.portfolio_content_details p {
  margin-bottom: 28px;
}

.portfolio_content_details p:last-child {
  margin-bottom: 0;
}

.testimonial-slider,
.shape-right {
  position: relative;
}

.testimonial-slider .testimonial_icon_2,
.testimonial-slider .portfolio_details_shape,
.shape-right .testimonial_icon_2,
.shape-right .portfolio_details_shape {
  top: 50%;
  right: 0;
  position: absolute;
  transform: translateY(-50%);
}

@media (max-width: 991px) {

  .testimonial-slider .testimonial_icon_2,
  .testimonial-slider .portfolio_details_shape,
  .shape-right .testimonial_icon_2,
  .shape-right .portfolio_details_shape {
    display: none;
  }
}

.shape-right .portfolio_details_shape {
  top: 20%;
}

.portfolio_details_gallery {
  position: relative;
  z-index: 1;
}

.portfolio_details_gallery.sec_padding {
  padding: 120px 0 90px;
}

@media (max-width: 991px) {
  .portfolio_details_gallery.sec_padding {
    padding: 70px 0 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .portfolio_details_gallery.sec_padding {
    padding: 80px 0 50px;
  }
}

.portfolio_details_gallery .portfolio_details_shape_1 {
  position: absolute;
  top: 120px;
  left: 0;
  z-index: -1;
}

@media (max-width: 991px) {
  .portfolio_details_gallery .portfolio_details_shape_1 {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .portfolio_details_gallery .portfolio_details_shape_1 img img {
    max-width: 150px;
  }
}

.portfolio_details_gallery .portfolio_details_img {
  margin-bottom: 30px;
}

.portfolio_details_gallery .portfolio_details_shape {
  position: absolute;
  left: 0;
  bottom: 25%;
}

@media (max-width: 991px) {
  .portfolio_details_gallery .portfolio_details_shape {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .portfolio_details_gallery .portfolio_details_shape img {
    max-width: 100px;
  }
}

.details-style-three .portfolio_details_shape {
  top: 5%;
}

.portfolio_details_navigation {
  padding: 40px 0;
  background-color: #f7f7f7;
}

@media (max-width: 576px) {
  .portfolio_details_navigation {
    text-align: center;
  }

  .portfolio_details_navigation .menu_icon {
    margin: 15px 0;
  }
}

.portfolio_details_navigation a {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  color: #7d7d7d;
}

.portfolio_details_navigation a i {
  margin-right: 8px;
  margin-top: -4px;
}

.portfolio_details_navigation .portfolio_details_right a i {
  margin-right: 0;
  margin-left: 8px;
}

.single_content_list .share_social-wpapper {
  display: block;
  padding: 0;
}

.single_content_list .share_social-wpapper .share-text {
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 3px;
  font-weight: 600;
  letter-spacing: inherit;
  display: block;
  color: #051441;
}

.single_content_list .share_social-wpapper .social-share-link li:not(:last-child) {
  margin-right: 20px;
}

.single_content_list .share_social-wpapper .social-share-link li a {
  margin-left: 0;
}

.single_content_list .share_social-wpapper .social-share-link li a .ti-facebook {
  color: #31428b;
}

.single_content_list .share_social-wpapper .social-share-link li a .ti-twitter-alt {
  color: #35a2ff;
}

.single_content_list .share_social-wpapper .social-share-link li a .ti-pinterest {
  color: #e60023;
}

.single_content_list .share_social-wpapper .social-share-link li a .ti-linkedin {
  color: #0077b5;
}

.portfolio-category a:not(:last-child) {
  margin-right: 10px;
}

.gp-star-rating.gp-star-1:before {
  display: none;
}

.gp-star-1:before,
.gp-star-2:before,
.gp-star-3:before,
.gp-star-4:before,
.gp-star-5:before {
  content: "\f006";
  color: #f0b20c;
}

.gp-star-05 .gp-star-1:before,
.gp-star-15 .gp-star-2:before,
.gp-star-25 .gp-star-3:before,
.gp-star-35 .gp-star-4:before,
.gp-star-45 .gp-star-5:before {
  content: "\f123";
  color: #f0b20c;
}

.gp-star-10 .gp-star-1:before,
.gp-star-15 .gp-star-1:before,
.gp-star-20 .gp-star-1:before,
.gp-star-20 .gp-star-2:before,
.gp-star-25 .gp-star-1:before,
.gp-star-25 .gp-star-2:before,
.gp-star-30 .gp-star-1:before,
.gp-star-30 .gp-star-2:before,
.gp-star-30 .gp-star-3:before,
.gp-star-35 .gp-star-1:before,
.gp-star-35 .gp-star-2:before,
.gp-star-35 .gp-star-3:before,
.gp-star-40 .gp-star-1:before,
.gp-star-40 .gp-star-2:before,
.gp-star-40 .gp-star-3:before,
.gp-star-40 .gp-star-4:before,
.gp-star-45 .gp-star-1:before,
.gp-star-45 .gp-star-2:before,
.gp-star-45 .gp-star-3:before,
.gp-star-45 .gp-star-4:before,
.gp-star-50 .gp-star-1:before,
.gp-star-50 .gp-star-2:before,
.gp-star-50 .gp-star-3:before,
.gp-star-50 .gp-star-4:before,
.gp-star-50 .gp-star-5:before {
  content: "\f005";
  color: #f0b20c;
}

/*--------------------------------------------------------------
## Popup Video Box
--------------------------------------------------------------*/
.video_section {
  overflow: hidden;
}

.video_section {
  overflow: hidden;
}

.video_section.video_sec_padding {
  padding: 130px 0 120px;
}

@media (max-width: 991px) {
  .video_section.video_sec_padding {
    padding: 100px 0;
  }
}

.video_section .video_section_content {
  position: relative;
  z-index: 1;
}

.video_section .video_section_content .video_popup {
  height: 80px;
  width: 80px;
  box-shadow: 10px 17.321px 40px 0px rgba(1, 16, 58, 0.14);
}

.video_section .video_section_content .video_popup img {
  max-width: 14px;
  margin-left: 3px;
}

@media (max-width: 991px) {
  .video_section .video_section_content .video_popup {
    height: 60px;
    width: 60px;
  }
}

.video_section .about_img_shape {
  position: absolute;
  top: -70px;
  left: -40px;
  z-index: -1;
}

.video_section .round_shape_animation {
  border-radius: 50%;
  background: #acf2f0;
  position: absolute;
  right: -130px;
  bottom: -65px;
  width: 280px;
  height: 280px;
  -webkit-animation: circleAnimation 5s linear infinite;
  animation: circleAnimation 5s linear infinite;
  z-index: -1;
}

@media (max-width: 991px) {
  .video_section .round_shape_animation {
    width: 150px;
    height: 150px;
    right: -70px;
  }
}

.video_popup_section .video_popup {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}

.video_popup_section .video_popup i {
  font-size: 18px;
  color: #ff7070;
  margin-left: 5px;
}

.video_popup.play_animation:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
  z-index: -1;
}

.video_popup img {
  position: relative;
  z-index: 9;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.video_popup {
  background-color: #fff;
  height: 65px;
  width: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video_popup:hover {
  background-color: #ff7070;
}

.video_popup:hover i {
  color: #fff;
}

.popup-video-box.video_section .round_shape_animation {
  top: auto;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
## Parallax Image
--------------------------------------------------------------*/
.img_section {
  position: relative;
  min-height: 490px;
  z-index: -1;
}

@media (max-width: 767.98px) {
  .img_section {
    min-height: 410px;
  }
}

.img_section .about_img_1 {
  position: absolute;
  bottom: 35px;
  z-index: -2;
  left: 30px;
}

@media (max-width: 767.98px) {
  .img_section .about_img_1 {
    bottom: 52px;
    left: 30px;
    max-width: 250px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .img_section .about_img_1 {
    left: 30px;
    max-width: 300px;
  }
}

.img_section .about_img_1 {
  position: absolute;
  bottom: -25px;
  z-index: -1;
  left: -67px;
}

@media (max-width: 767.98px) {
  .img_section .about_img_1 {
    bottom: 62px;
    left: 30px;
    max-width: 250px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .img_section .about_img_1 {
    left: -62px;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .img_section .about_img_2 {
    max-width: 235px;
  }
}

.img_section .about_img_3 {
  position: absolute;
  top: 160px;
  right: 0;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .img_section .about_img_3 {
    max-width: 250px;
    right: 0;
    top: 108px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .img_section .about_img_3 {
    right: -70px;
    top: 167px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .img_section .about_img_3 {
    right: -70px;
    top: 60px;
  }
}

.about_section_img {
  display: flex;
  max-width: 540px;
}

.about_section_img .about_us_img {
  position: relative;
  margin-right: 30px;
  z-index: 1;
  margin-top: 50px;
}

.about_section_img .about_us_img:last-child {
  margin-top: 70px;
}

@media (max-width: 991px) {
  .about_section_img .about_us_img:last-child {
    margin-top: 10px;
  }
}

.about_section_img .about_us_img .about_img_shape {
  position: absolute;
  position: absolute;
  left: -45px;
  top: -15px;
  z-index: -1;
}

.about_section_img .about_us_img .round_shape_animation {
  border-radius: 50%;
  background: #acf2f0;
  position: absolute;
  left: -45px;
  bottom: -70px;
  width: 110px;
  height: 110px;
  -webkit-animation: circleAnimation 5s linear infinite;
  animation: circleAnimation 5s linear infinite;
  z-index: -1;
}

@media (max-width: 991px) {
  .about_section_img .about_us_img .round_shape_animation {
    bottom: -30px;
  }
}

.round_shape_animation {
  border-radius: 50%;
  background: #85b0fc;
  position: absolute;
  right: 95px;
  top: 60px;
  width: 190px;
  height: 190px;
  -webkit-animation: circleAnimation 5s linear infinite;
  animation: circleAnimation 5s linear infinite;
  z-index: -1;
}

.about_img {
  position: relative;
  z-index: 1;
  max-width: 475px;
  margin-left: auto;
}

@media (max-width: 1440px) {
  .about_img {
    margin-left: 40px;
  }
}

@media (max-width: 1280px) {
  .about_img {
    margin-left: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .about_img {
    max-width: 350px;
  }
}

@media (max-width: 1280px) {
  .about_img {
    margin-left: 0;
  }
}

.about_img .about_overlay {
  position: absolute;
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

@media (max-width: 1440px) {
  .about_img .about_overlay {
    right: -100px;
  }
}

/*--------------------------------------------------------------
## Testimonial
--------------------------------------------------------------*/
.dt-testimonial-wrapper {
  position: relative;
}

.dt-testimonial-wrapper .testimonial_icon_1,
.dt-testimonial-wrapper .testimonial_icon_2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 767.98px) {

  .dt-testimonial-wrapper .testimonial_icon_1,
  .dt-testimonial-wrapper .testimonial_icon_2 {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {

  .dt-testimonial-wrapper .testimonial_icon_1,
  .dt-testimonial-wrapper .testimonial_icon_2 {
    display: none;
  }
}

.dt-testimonial-wrapper .testimonial_icon_1 {
  left: 85px;
}

.dt-testimonial-wrapper .testimonial_icon_2 {
  right: 40px;
}

.testimonial_section {
  position: relative;
}

.testimonial_section .section_tittle {
  margin-bottom: 66px;
}

@media (max-width: 991px) {
  .testimonial_section .section_tittle {
    font-size: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .testimonial_section .section_tittle {
    font-size: 30px;
  }
}

.testimonial_section.testimonial_padding .testimonial_section_content {
  margin-bottom: -40px;
}

.testimonial_section.testimonial_padding .single_testimonial_slider {
  margin-bottom: 40px !important;
}

.testimonial_section.style_2 {
  overflow: hidden;
}

.testimonial_section.style_2 .testimonial_slider_style_2 {
  margin: -50px 0;
}

.testimonial_section.style_2 .single_testimonial_slider {
  padding: 40px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04);
  text-align: left;
  margin: 50px 25px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 991px) {
  .testimonial_section.style_2 .single_testimonial_slider {
    margin: 20px 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .testimonial_section.style_2 .single_testimonial_slider {
    margin: 20px 15px;
  }
}

.testimonial_section.style_2 .single_testimonial_slider .testimonial_shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 0;
  max-width: auto !important;
  margin-bottom: 0;
}

.testimonial_section.style_2 .single_testimonial_slider h4 {
  margin-bottom: 0;
  padding-top: 8px;
}

.testimonial_section.style_2 .single_testimonial_slider span {
  color: #4b4b4b;
}

.testimonial_section.style_2 .single_testimonial_slider .testimonial_slider_tittle {
  position: relative;
  padding-left: 90px;
}

.testimonial_section.style_2 .single_testimonial_slider .testimonial_slider_tittle img {
  left: 0;
  margin: 0;
  max-width: 70px;
  position: absolute;
  top: 0;
}

.testimonial_section.style_2 .single_testimonial_slider p {
  font-size: 20px;
  line-height: 1.5;
  font-style: normal;
  margin-top: 30px;
}

.testimonial_section.style_2 .owl-nav button.owl-prev {
  left: -80px;
}

.testimonial_section.style_2 .owl-nav button.owl-next {
  right: -80px;
  left: auto;
}

.testimonial_section.style_2 .testimonial_icon_2 {
  right: -100px;
  top: 50%;
}

.testimonial_section.dark_version .single_testimonial_slider p {
  color: #fff;
  font-weight: 400;
}

.testimonial_section.dark_version .single_testimonial_slider h4 {
  margin-top: 35px;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
}

@media (max-width: 991px) {
  .testimonial_section.dark_version .single_testimonial_slider h4 {
    font-size: 25px;
  }
}

.testimonial_section.dark_version .single_testimonial_slider span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}

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

.dt-testimonial .testimonial .avatar {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 17px;
}

.dt-testimonial .testimonial h4 {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}

.dt-testimonial .testimonial span {
  display: block;
  font-size: 16px;
  color: #4b4b4b;
  font-weight: 400;
}

.dt-testimonial .testimonial p {
  font-size: 30px;
  font-style: italic;
  line-height: 1.4;
  margin-top: 25px;
  color: #4b4b4b;
}

@media (max-width: 767.98px) {
  .dt-testimonial .testimonial p {
    font-size: 18px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .dt-testimonial .testimonial p {
    font-size: 24px;
  }
}

.dt-testimonial .testimonial.box_style {
  background-color: #fff;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.06);
  position: relative;
  margin: 57px 40px 0 40px;
  padding: 58px 100px 50px;
}

@media (max-width: 767.98px) {
  .dt-testimonial .testimonial.box_style {
    margin: 57px 15px 15px;
    padding: 34px 15px 39px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .dt-testimonial .testimonial.box_style {
    margin: 55px;
    padding: 34px 15px 39px;
  }
}

.dt-testimonial .testimonial.box_style .avatar {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -57px;
}

.dt-testimonial .testimonial.box_style h4 {
  margin-top: 38px;
}

@media (max-width: 991px) {
  .dt-testimonial .testimonial.box_style h4 {
    margin-top: 25px;
  }
}

.dt-testimonial.testimonial-style-2 .swiper-wrapper {
  padding-bottom: 40px;
}

.dt-testimonial.testimonial-style-3 .testimonial {
  padding: 40px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04);
  text-align: left;
  margin: 50px 25px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.dt-testimonial.testimonial-style-3 .testimonial .testimonial-info-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.dt-testimonial.testimonial-style-3 .testimonial .testimonial-info-wrapper .avatar {
  margin: 0 20px 0 0;
  height: 70px;
  width: 70px;
}

.dt-testimonial.testimonial-style-3 .testimonial .testimonial-info-wrapper .avatar img {
  margin: 0;
}

.dt-testimonial.testimonial-style-3 .testimonial .testimonial-info-wrapper .testi-info .name {
  margin: 0;
}

.dt-testimonial.testimonial-style-3 .testimonial p {
  font-size: 20px;
  line-height: 1.5;
  font-style: normal;
  color: #4b4b4b;
  margin: 0;
}

.dt-testimonial.testimonial-style-3 .testimonial .testimonial_shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 0;
  margin-bottom: 0;
}

.dt-testimonial-wrapper-three {
  position: relative;
}

.dt-testimonial-wrapper-three .testimonial_icon_2 {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .dt-testimonial-wrapper-three .slider-control {
    display: none;
  }
}

.dt-testimonial-wrapper-three .slider-control .testi-button-prev {
  left: -65px;
}

.dt-testimonial-wrapper-three .slider-control .testi-button-next {
  right: -65px;
}

.testimonial-style-4 .testimonial {
  max-width: 665px;
  margin: 0 auto;
}

.testi-arrow-prev,
.testi-arrow-next {
  font-size: 30px;
  height: 40px;
  width: 40px;
  color: #828488;
  position: absolute;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  z-index: 333;
}

.testi-arrow-prev:hover,
.testi-arrow-next:hover {
  color: #ff7070;
  outline: 0;
}

.testi-arrow-prev:focus,
.testi-arrow-next:focus {
  outline: 0;
}

.testi-arrow-prev {
  left: 0;
}

.testi-arrow-prev:hover {
  left: -10px;
}

.testi-arrow-next {
  right: 0;
}

.testi-arrow-next:hover {
  right: -10px;
}

.slider-control {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  height: 65px;
  transform: translateY(-50%);
  z-index: 999;
}

@media (max-width: 991px) {
  .slider-control {
    display: none;
  }
}

@media (max-width: 767px) {
  .slider-control {
    display: none;
  }
}

.slider-control .testi-button-next,
.slider-control .testi-button-prev {
  border: 1px solid #fff;
  height: 65px;
  width: 65px;
  line-height: 65px;
  text-align: center;
  color: #000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  z-index: 99;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.06);
  background-color: #fff;
  cursor: pointer;
  outline: 0;
}

.slider-control .testi-button-next:hover,
.slider-control .testi-button-prev:hover {
  background-color: #ff7070;
  border-color: #ff7070;
  color: #fff;
}

.slider-control .testi-button-prev {
  left: -15%;
}

@media (max-width: 991px) {
  .slider-control .testi-button-prev {
    left: 0;
    z-index: 2;
  }
}

.slider-control .testi-button-next {
  right: -15%;
}

@media (max-width: 991px) {
  .slider-control .testi-button-next {
    right: 0;
    z-index: 2;
  }
}

.testimonial-two .slider-control .testi-button-prev {
  left: -5%;
}

.testimonial-two .slider-control .testi-button-next {
  right: -5%;
}

/*--------------------------------------------------------------
## Counting
--------------------------------------------------------------*/
.countdown-container {
  position: relative;
}

.countdown-container .countdown_img {
  position: absolute;
  right: 50px;
  top: 0;
}

@media (max-width: 1200px) {
  .countdown-container .countdown_img {
    display: none;
  }
}

.dt-countdown-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .dt-countdown-wrapper {
    display: block;
  }
}

.dt-countdown-wrapper .dt-countdown {
  margin-bottom: 30px;
}

.dt-countdown-wrapper .dt-countdown .counter {
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  color: #ff7070;
  margin: 0;
}

.dt-countdown-wrapper .dt-countdown .counter-title {
  font-size: 18px;
  font-weight: 400;
  color: #7d7d7d;
  margin: 0;
}

.dt-heading-fill-gradient .dt-countdown-wrapper .dt-countdown .counter {
  background: -moz-linear-gradient(0deg, #fe422f 0%, #fe5196 100%);
  background: -webkit-linear-gradient(0deg, #fe422f 0%, #fe5196 100%);
  background: -ms-linear-gradient(0deg, #fe422f 0%, #fe5196 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/*--------------------------------------------------------------
## Pricing
--------------------------------------------------------------*/
.pricing_part {
  position: relative;
  z-index: 1;
}

.pricing_part .pricing_part_shape {
  position: absolute;
  bottom: 30%;
  left: 0;
  z-index: -1;
}

.pricing_part .b {
  display: block;
}

.pricing_part .toggle {
  margin: 10px;
  position: relative;
  width: 60px;
  height: 20px;
  border-radius: 100px;
  background-color: #ffdada;
  border: 1px solid #ffdada;
  box-shadow: inset 0 0 2px 1px rgba(0, 0, 0, 0.05);
}

.pricing_part .toggler {
  position: relative;
}

.pricing_part .toggler.toggler--is-active {
  color: #ff7070;
}

.pricing_part .toggler span {
  position: absolute;
  right: 0;
  top: -30px;
  font-size: 12px;
  color: #051441;
  height: 20px;
  line-height: 20px;
  width: 50px;
  text-align: center;
  background-color: #b7ffb7;
  border-radius: 5px;
}

.pricing_part .toggler span:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #b7ffb7;
  width: 8px;
  height: 5px;
  bottom: -5px;
}

.pricing_part .check {
  position: absolute;
  display: block;
  cursor: pointer;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 6;
}

.pricing_part .check:checked~.switch {
  right: 5px;
  left: 57.5%;
  transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-property: left, right;
  transition-delay: 0.08s, 0s;
}

.pricing_part .switch {
  position: absolute;
  left: 0px;
  top: -4px;
  bottom: 2px;
  right: 57.5%;
  background-color: #ff7070;
  border-radius: 50%;
  z-index: 1;
  transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-property: left, right;
  transition-delay: 0s, 0.08s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  height: 20px;
  width: 20px;
  padding: 14px !important;
  margin-right: 0;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.25);
}

.pricing_part .switch:after {
  display: none;
}

.pricing_part .hide {
  display: none;
}

.pricing_part .pricing_plan_header {
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}

.pricing_part .pricing_plan_header label {
  margin-bottom: 0;
}

.pricing_part .pricing_plan_header .toggle {
  margin: 0 10px;
}

.pricing_part.bark_img_bg {
  background-image: url("../img/dark_shadow_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pricing_style_2 {
  padding: 120px 0 150px;
}

@media (max-width: 767.98px) {
  .pricing_style_2 {
    padding: 70px 0px 40px;
  }
}

@media (max-width: 767.98px) {
  .pricing_style_2 {
    padding: 80px 0px 50px;
  }
}

.pricing_style_2 .section_tittle {
  margin-bottom: 103px;
}

@media (max-width: 767.98px) {
  .pricing_style_2 .section_tittle {
    margin-bottom: 40px;
  }
}

@media (max-width: 767.98px) {
  .pricing_style_2 .section_tittle {
    margin-bottom: 50px;
  }
}

.pricing_style_2 .pricing_part_shape {
  left: auto;
  right: 0;
}

.single_pricing_plan {
  background-color: #fff;
  padding: 47px 55px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .single_pricing_plan {
    margin-bottom: 30px;
  }
}

.single_pricing_plan h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 3px;
}

.single_pricing_plan h5 {
  font-size: 20px;
  margin-bottom: 27px;
}

.single_pricing_plan .cu_btn {
  margin-top: 38px;
  color: #ff7070;
  border: 1px solid #ff7070;
  letter-spacing: 1px;
}

.single_pricing_plan .cu_btn:hover {
  background-color: #ff7070;
  color: #fff;
}

.single_pricing_plan.box_shadow {
  box-shadow: 0px 20px 40px 0px rgba(0, 33, 121, 0.08);
}

.single_pricing_plan.box_shadow:hover {
  box-shadow: 0px 40px 80px 0px rgba(0, 33, 121, 0.08);
}

.single_pricing_plan:hover {
  box-shadow: 0px 20px 40px 0px rgba(0, 33, 121, 0.08);
}

.single_pricing_plan.active {
  position: relative;
  z-index: 1;
}

.single_pricing_plan.active:after {
  position: absolute;
  content: "";
  background-image: -moz-linear-gradient(-45deg, rgba(253, 83, 146, 0.99608) 0%, #f86f64 100%);
  background-image: -webkit-linear-gradient(-45deg, rgba(253, 83, 146, 0.99608) 0%, #f86f64 100%);
  background-image: -ms-linear-gradient(-45deg, rgba(253, 83, 146, 0.99608) 0%, #f86f64 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.single_pricing_plan.active:hover:after {
  box-shadow: 0px 20px 40px 0px rgba(248, 111, 100, 0.29608);
}

@media (min-width: 991px) {
  .single_pricing_plan.active:after {
    transform: scale(1.2);
  }
}

.single_pricing_plan.active h2,
.single_pricing_plan.active h5,
.single_pricing_plan.active p {
  color: #fff;
}

.single_pricing_plan.active .cu_btn {
  background-color: #fff;
  color: #ff7070;
  border: 1px solid #fff;
}

.single_pricing_plan.active .cu_btn:hover {
  background-color: #ff7070;
  color: #fff;
  border: 1px solid #ff7070;
}

@media (max-width: 768px) {
  .single_pricing_tittle {
    margin-bottom: 30px;
  }
}

.single_pricing_tittle img {
  margin-bottom: 24px;
  max-width: 90px !important;
}

.single_pricing_tittle h2 {
  font-weight: 600;
  margin-bottom: 25px;
}

.pricing_wrapper .single_plan {
  position: relative;
  text-align: center;
  padding: 50px 20px;
  background-color: white;
  box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: 30px;
}

.pricing_wrapper .single_plan h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}

.pricing_wrapper .single_plan h5.color_1 {
  color: #309bf2;
}

.pricing_wrapper .single_plan h5.color_2 {
  color: #61c330;
}

.pricing_wrapper .single_plan h5.color_3 {
  color: #ffa512;
}

.pricing_wrapper .single_plan h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 33px;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.pricing_wrapper .single_plan h2 small {
  display: inline-block;
  position: absolute;
  left: -10px;
  top: -7px;
  color: #051441;
  font-size: 18px;
}

.pricing_wrapper .single_plan h2 span {
  font-size: 16px;
  color: #677294;
  position: absolute;
  bottom: -9px;
}

.pricing_wrapper .single_plan ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 38px;
}

.pricing_wrapper .single_plan ul li {
  color: #6a7c92;
  font-size: 18px;
  margin: 11px 0;
}

.pricing_wrapper .single_plan .cu_btn {
  margin-top: 37px;
  color: #ff7070;
  border: 1px solid #ff7070;
  letter-spacing: 1px;
}

.pricing_wrapper .single_plan .cu_btn:hover {
  background-color: #ff7070;
  color: #fff;
}

.pricing_wrapper .single_plan:hover {
  box-shadow: 0px 20px 40px 0px rgba(0, 33, 121, 0.08);
}

.pricing_tricker {
  background-color: #b7ffb7;
  border: 1px solid #b7ffb7;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  line-height: 80px;
  text-align: center;
  position: absolute;
  right: -15px;
  top: -15px;
}

.pricing_tricker h3 {
  font-size: 20px;
  color: #051441;
  margin-bottom: 0;
  margin-top: 19px;
  line-height: 1.2;
  font-weight: 500;
}

.pricing_tricker h3 span {
  width: 100%;
  font-size: 70%;
  display: block;
}

/*--------------------------------------------------------------
## Progressbar
--------------------------------------------------------------*/
.elementor .elementor-widget-progress .elementor-title {
  font-size: 18px;
  color: #051441;
  margin-bottom: 10px;
  font-family: "Futura", sans-serif;
  display: inline-block;
}

.elementor .elementor-progress-percentage-outside .elementor-progress-percentage {
  position: absolute;
  top: -33px;
  right: 0;
  padding-right: 0;
  font-size: 16px;
  line-height: 1;
  color: #111;
}

/*--------------------------------------------------------------
## Social Profiles
--------------------------------------------------------------*/
.dt-social-link {
  margin: 0;
}

.dt-social-link li {
  display: inline-block;
  color: #7d7d7d;
  font-size: 14px;
  margin-right: 23px;
}

.dt-social-link li:last-child {
  margin-right: 0;
}

.dt-social-link li a {
  color: #7d7d7d;
  display: block;
}

.dt-social-link li a:hover {
  color: #ff7070;
}

/*--------------------------------------------------------------
## Service Image Box
--------------------------------------------------------------*/
.dt-service-image-box {
  position: relative;
  overflow: hidden;
}

.dt-service-image-box .box-image {
  position: relative;
  overflow: hidden;
}

.dt-service-image-box .box-image a {
  display: block;
}

.dt-service-image-box .box-image img {
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.dt-service-image-box .box-image:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.dt-service-image-box .box-image:hover img {
  transform: scale(1.1);
}

.dt-service-image-box .box-info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 40px 40px 30px;
  z-index: 2;
}

.dt-service-image-box .box-info .box-category {
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  margin: 0;
}

.dt-service-image-box .box-info .box-title {
  font-size: 30px;
  color: #fff;
  margin: 0;
  font-weight: 500;
}

.dt-service-image-box .box-info .box-title a {
  color: #fff;
}

.dt-service-image-box .box-info .box-title a:hover {
  color: #ff7070;
}

.dt-service-image-box.style-two {
  margin-bottom: 30px;
}

.dt-service-image-box.style-two .box-image:before {
  display: none;
}

.dt-service-image-box.style-two .box-info {
  position: unset;
  text-align: center;
  padding: 25px 0 0;
}

.dt-service-image-box.style-two .box-info .box-title {
  color: #051441;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.dt-service-image-box.style-two .box-info .box-title a {
  color: #051441;
}

.dt-service-image-box.style-two .box-info .box-title a:hover {
  color: #ff7070;
}

/*--------------------------------------------------------------
## Team
--------------------------------------------------------------*/
.team-member {
  margin-bottom: 30px;
}

.team-member .member-avater {
  position: relative;
  overflow: hidden;
}

.team-member .member-avater img {
  width: 100%;
}

.team-member .member-avater .member-social {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 50px;
  background-color: #ff7070;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 45px;
  left: -50px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  padding: 0 10px;
}

.team-member .member-avater .member-social li a {
  display: inline-block;
  width: 45px;
  color: #fff;
  font-size: 16px;
  line-height: 50px;
}

.team-member .member-avater:hover .member-social {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.team-member .team-info {
  text-align: center;
  padding-top: 27px;
}

.team-member .team-info .name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 2px;
  line-height: 1;
}

.team-member .team-info .designation {
  color: #7d7d7d;
  font-weight: 400;
  font-size: 18px;
}

.team-member.style-two .member-avater {
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.team-member.style-two .member-avater img {
  border-radius: 50%;
}

.team-member.style-two .member-avater .member-social {
  width: 100%;
}

.team-member.style-two .member-avater:hover .member-social {
  left: 0;
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
## Blog Post Grid
--------------------------------------------------------------*/
.single_blog_post {
  padding: 30px 0;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.single_blog_post .date {
  flex: 9% 0 0;
  text-align: center;
  padding: 0 10px;
}

@media (max-width: 576px) {
  .single_blog_post .date {
    flex: 100% 0 0;
    text-align: left;
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .single_blog_post .date {
    flex: 10% 0 0;
    text-align: left;
    margin-bottom: 20px;
  }
}

.single_blog_post .date h2 {
  font-size: 36px;
  font-weight: 500;
  line-height: 27px;
  margin-bottom: 0;
}

.single_blog_post .date h2 span {
  display: block;
  text-transform: uppercase;
  color: #7d7d7d;
  font-size: 16px;
  line-height: 12px;
  margin-top: 10px;
}

.single_blog_post .post_content {
  flex: 78% 0 0;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

@media (max-width: 576px) {
  .single_blog_post .post_content {
    flex: 100% 0 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .single_blog_post .post_content {
    flex: 88% 0 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .single_blog_post .post_content {
    flex: 70% 0 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .single_blog_post .post_content {
    flex: 70% 0 0;
  }
}

.single_blog_post .post_content img {
  max-width: 80px;
  border-radius: 5px;
}

.single_blog_post .post_content .post_content_iner {
  margin-left: 25px;
}

@media (max-width: 576px) {
  .single_blog_post .post_content .post_content_iner {
    margin-left: 15px;
  }
}

.single_blog_post .post_content .post_content_iner span {
  color: #5961ff;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 9px;
  display: inline-block;
}

@media (max-width: 576px) {
  .single_blog_post .post_content .post_content_iner span {
    margin-bottom: 4px;
  }
}

.single_blog_post .post_content .post_content_iner .text_success {
  color: #58cf61;
}

.single_blog_post .post_content .post_content_iner .text_danger {
  color: #ff3232;
}

.single_blog_post .post_content .post_content_iner .text_warning {
  color: #ffaa3b;
}

.single_blog_post .post_content h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
  font-family: "Spectral", serif;
  line-height: 1.2;
}

@media (max-width: 767.98px) {
  .single_blog_post .post_content h4 {
    font-size: 18px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .single_blog_post .post_content h4 {
    font-size: 20px;
  }
}

.single_blog_post .post_content h4 a {
  color: #051441;
}

.single_blog_post .post_content h4 a:hover {
  color: #ff7070;
}

.single_blog_post .read_more_btn {
  flex: 12% 0 0;
  text-align: right;
  color: #7d7d7d;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 0 5px;
}

@media (max-width: 576px) {
  .single_blog_post .read_more_btn {
    flex: 100% 0 0;
    text-align: left;
    margin-top: 15px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .single_blog_post .read_more_btn {
    flex: 100% 0 0;
    margin-top: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .single_blog_post .read_more_btn {
    margin-top: 20px;
    flex: 20% 0 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .single_blog_post .read_more_btn {
    margin-top: 20px;
    flex: 20% 0 0;
  }
}

.single_blog_post .read_more_btn i {
  margin-left: 7px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.single_blog_post .read_more_btn:hover {
  color: #ff7070;
}

.single_blog_post .read_more_btn:hover i {
  color: #ff7070;
}

.single_blog_post:first-child {
  padding: 0 0 30px;
}

.single_blog_post:last-child {
  padding: 30px 0 0;
  border-bottom: 0 solid transparent;
}

.sharp_border {
  width: 100%;
  height: 1px;
  background: #fefefe;
  background: -moz-linear-gradient(left, #fefefe 0%, #e5e5e5 20%, #e5e5e5 80%, #e5e5e5 80%, #fefefe 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #fefefe 0%, #e5e5e5 20%, #e5e5e5 80%, #e5e5e5 80%, #fefefe 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #fefefe 0%, #e5e5e5 20%, #e5e5e5 80%, #e5e5e5 80%, #fefefe 100%);
}

.sharp_border.mt_120 {
  margin-top: 120px;
}

@media (max-width: 767.98px) {
  .sharp_border.mt_120 {
    margin-top: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .sharp_border.mt_120 {
    margin-top: 70px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .sharp_border.mt_120 {
    margin-top: 70px;
  }
}

.blog_part.dark_version .single_blog_post ul li a {
  color: rgba(255, 255, 255, 0.5);
}

.blog_part.dark_version .single_blog_post ul li a:hover {
  color: #ff7070;
}

.blog_part.dark_version .single_blog_post h4 {
  color: #fff;
}

.blog_part.dark_version .single_blog_post h4 a {
  color: #fff;
}

.blog_part.dark_version .single_blog_post h4 a:hover {
  color: #ff7070;
}

.dt-blog-posts .post-grid {
  position: relative;
}

.dt-blog-posts .post-grid .feature-image {
  margin-bottom: 29px;
}

.dt-blog-posts .post-grid .feature-image .date {
  height: 65px;
  width: 65px;
  border-radius: 4px;
  background-color: #ff7070;
  line-height: 22px;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  font-family: Futura;
  position: absolute;
  left: 20px;
  top: 20px;
  padding-top: 9px;
}

.dt-blog-posts .post-grid .feature-image .date p {
  margin: 0;
}

.dt-blog-posts .post-grid .feature-image .date span {
  font-size: 50%;
  font-weight: 400;
  padding-top: 7px;
  display: block;
  text-transform: uppercase;
}

.dt-blog-posts .post-grid .blog-content {
  padding-top: 0;
}

.dt-blog-posts .post-grid .blog-content .entry-title {
  font-size: 24px;
  font-weight: 600;
  margin: 10px 0 0;
  margin-top: 15px;
}

/*--------------------------------------------------------------
## Icon Box
--------------------------------------------------------------*/
.dt-icon-box {
  margin-bottom: 30px;
}

.dt-icon-box .icon-container {
  margin-bottom: 40px;
  height: 95px;
  display: inline-flex;
  flex-wrap: wrap-reverse;
  align-items: baseline;
}

.dt-icon-box .icon-container img {
  max-width: 95px;
}

.dt-icon-box .box-title {
  font-weight: 600;
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .dt-icon-box .description br {
    display: none;
  }
}

.dt-icon-box.style-two {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
}

.dt-icon-box.style-two .icon-container {
  height: auto;
  margin: 0 25px 0 0;
  width: 75px;
  flex-wrap: wrap;
}

.dt-icon-box.style-two .icon-container img {
  max-width: 75px;
}

.dt-icon-box.style-two .box-content {
  flex: 2;
}

.dt-icon-box.style-two .box-title {
  font-weight: 600;
}

.dt-icon-box.style-two .box-title a {
  font-weight: 600;
}

/*--------------------------------------------------------------
## Icon Box
--------------------------------------------------------------*/
#newsletter {
  padding: 120px 0;
  background: #000;
}

#newsletter .section-heading {
  margin-bottom: 56px;
}

#newsletter .section-heading .section-title {
  color: #fff;
  margin: 0;
}

.newsletter-form input:not([type='checkbox']):not([type='submit']) {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 0;
  padding: 17px 25px;
  height: auto;
  line-height: 19px;
  font-size: 18px;
  height: 55px;
}

.newsletter-form input:not([type='checkbox']):not([type='submit']):focus {
  border: 1px solid rgba(255, 112, 112, 0.5) !important;
  box-shadow: none;
}

.newsletter-form .newsletter-submit {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  height: 55px;
}

.newsletter-form .newsletter-submit .fa-spin {
  display: none;
}

.newsletter-form .newsletter-submit.clicked .fa-spin {
  display: block;
}

.newsletter-form .newsletter-submit.clicked span {
  display: none;
}

/*--------------------------------------------------------------
## Fun Fact
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Tabs
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Faq
--------------------------------------------------------------*/
.faq_content {
  position: relative;
}

.faq_content.normal_style {
  overflow: hidden;
}

.faq_content.normal_style .faq_content_shape {
  position: absolute;
  right: 0;
  bottom: 20%;
}

@media (max-width: 767.98px) {
  .faq_content.normal_style .faq_content_shape {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .faq_content.normal_style .faq_content_shape {
    display: none;
  }
}

.faq_content.normal_style .section_tittle.style_2 {
  margin-bottom: 25px;
}

.faq_content.normal_style .faq_content_iner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.faq_content.normal_style .single_faq_content {
  flex: 43% 0 0;
  margin-top: 33px;
  padding-bottom: 33px;
  border-bottom: 1px solid #e4e0ee;
}

@media (max-width: 767.98px) {
  .faq_content.normal_style .single_faq_content {
    flex: 100% 0 0;
    margin-top: 20px;
    padding-bottom: 20px;
  }
}

.faq_content.normal_style .single_faq_content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 23px;
}

.faq_content.normal_style .single_faq_content p {
  color: #7d7d7d;
}

.faq_content.collaps_style .card-header {
  padding: 26px 0;
  background-color: transparent;
  line-height: 18px;
  border-bottom: 0 solid transparent;
}

@media (max-width: 991px) {
  .faq_content.collaps_style .card-header {
    line-height: 30px;
    padding: 26px 0;
  }
}

.faq_content.collaps_style .btn {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  color: #ff7070;
  font-family: "Futura", sans-serif;
  line-height: 18px;
  display: block;
  width: 100%;
  text-align: left;
  position: relative;
  border: none;
  text-decoration: none;
}

.faq_content.collaps_style .btn:after {
  position: absolute;
  content: "\e622";
  right: 0;
  top: 0;
  font-size: 18px;
  font-family: 'themify';
  -webkit-transition: 0.3s;
  transition: 0.3s;
  transform: rotate(0);
  color: #ff7070;
}

@media (max-width: 991px) {
  .faq_content.collaps_style .btn:after {
    display: none;
  }
}

.faq_content.collaps_style .btn.collapsed:after {
  content: "\e61a";
  transform: rotate(90deg);
  color: #7d7d7d;
}

@media (max-width: 991px) {
  .faq_content.collaps_style .btn {
    line-height: 30px;
    text-align: left;
  }
}

.faq_content.collaps_style .btn.collapsed {
  color: #051441;
}

.faq_content.collaps_style .card {
  border: 0px solid transparent;
  border-bottom: 1px solid #e4e0ee;
  color: #ff7070;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.faq_content.collaps_style .card:first-child .card-header {
  padding: 0 0 28px;
}

.faq_content.collaps_style .card-body {
  color: #7d7d7d;
  line-height: 30px;
  padding: 5px 0 33px;
  font-size: 18px;
}

.faq_content .collaps_style_content h2 {
  margin-bottom: 22px;
}

.btn-link:hover {
  text-decoration: none;
}

/*--------------------------------------------------------------
## Call to action
--------------------------------------------------------------*/
.cta_part {
  background-color: #ffeaea;
  padding: 85px 75px;
  position: relative;
}

@media (max-width: 576px) {
  .cta_part {
    padding: 35px 20px;
  }
}

.cta_part .cta_part_iner .cta_icon_1 {
  bottom: -71px;
  right: -148px;
  position: absolute;
  z-index: -1;
}

@media (max-width: 576px) {
  .cta_part .cta_part_iner .cta_icon_1 {
    display: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .cta_part .cta_part_iner .cta_icon_1 {
    max-width: 100px;
    right: -15px;
    bottom: -15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .cta_part .cta_part_iner .cta_icon_1 {
    max-width: 100px;
    right: -15px;
    bottom: -15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .cta_part .cta_part_iner .cta_icon_1 {
    max-width: 145px;
    right: -35px;
    bottom: -35px;
  }
}

.cta_part .cta_part_content h5 {
  font-size: 16px;
  letter-spacing: 2px;
  color: #ff7070;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta_part .cta_part_content h2 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -2px;
  margin-bottom: 27px;
}

@media (max-width: 767.98px) {
  .cta_part .cta_part_content h2 {
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .cta_part .cta_part_content h2 {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
}

.cta_part .cta_part_content .cu_btn {
  margin-top: 30px;
  letter-spacing: 1px;
}

.cta_part .cta_part_img {
  text-align: right;
}

@media (max-width: 767.98px) {
  .cta_part .cta_part_img {
    text-align: center;
    margin-top: 30px;
  }
}

.cta_part.cta_bg {
  padding: 85px 0;
  background-color: #ffeaea;
}

.cta_part.dark_version {
  background-image: -moz-linear-gradient(0deg, #fe422f 0%, #fe5196 100%);
  background-image: -webkit-linear-gradient(0deg, #fe422f 0%, #fe5196 100%);
  background-image: -ms-linear-gradient(0deg, #fe422f 0%, #fe5196 100%);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta_part.dark_version h2 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 400;
}

@media (max-width: 767.98px) {
  .cta_part.dark_version h2 {
    font-size: 30px;
    margin-bottom: 0;
  }
}

.cta_part.dark_version .cu_btn.white_bg {
  color: #051441;
}

.cta_part.dark_version .cu_btn.white_bg:hover {
  border: 1px solid #040911;
  background-color: #040911;
  color: #fff;
}

.cta_style_2 {
  padding: 107px 0 120px;
}

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

.cta_style_2 .cta_part_content h5 {
  font-size: 16px;
  color: #ff7070;
}

.cta_style_2 .cta_part_content h2 {
  font-weight: 700;
  color: #fff;
  font-size: 48px;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .cta_style_2 .cta_part_content h2 {
    font-size: 25px;
    letter-spacing: 0;
  }
}

.cta_style_2 .cta_part_content .cu_btn {
  display: inline-flex;
  margin-top: 12px;
}

.cta_style_2 .cta_part_content .cu_btn img {
  margin-left: 12px;
}

.cta_style_2.cta_style_2 h5 {
  font-family: "Futura", sans-serif;
  margin-bottom: 5px;
}

.cta_style_2.cta_style_2 h2 {
  margin-bottom: 33px;
}

.call-to-action-two {
  background: #000;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hire_section {
  position: relative;
}

@media (min-width: 991px) {
  .hire_section {
    padding: 65px 0 160px;
  }
}

@media (max-width: 991px) {
  .hire_section {
    padding: 0 0 70px;
  }
}

.hire_section .hire_shape_1 {
  position: absolute;
  left: 0;
  bottom: 10%;
}

@media (max-width: 991px) {
  .hire_section .hire_shape_1 {
    display: none;
  }
}

.hire_section .hire_shape_2 {
  position: absolute;
  right: 0;
  bottom: 12%;
}

@media (max-width: 991px) {
  .hire_section .hire_shape_2 {
    display: none;
  }
}

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

.hire_section .btn_1 {
  margin-top: 41px;
  font-family: "Futura", sans-serif;
  text-transform: capitalize;
  letter-spacing: 1pt;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 991px) {
  .hire_section .btn_1 {
    margin-top: 20px;
  }
}

.hire_section.bark_bg {
  background-color: #051441;
  padding: 120px 0;
}

.hire_section.bark_bg .overlay_effect {
  transform: scaleX(0);
  transform-origin: left;
  transition: .5s;
}

.hire_section.bark_bg .overlay_effect.is_show {
  transform: scaleX(1);
}

.hire_section.bark_bg h2 {
  margin-bottom: 41px;
}

.hire_section.bark_bg .cu_btn {
  background-color: #fff;
  border: 0;
  color: #051441;
}

.hire_section.bark_bg .cu_btn:hover {
  background-color: #ff7070;
  color: #fff;
  border: 0;
}

.hire_section.red_bg {
  background-color: #b60000;
  padding: 120px 0;
}

@media (max-width: 767.98px) {
  .hire_section.red_bg {
    padding: 70px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .hire_section.red_bg {
    padding: 80px 0;
  }
}

.hire_section.red_bg .cu_btn {
  background-color: #fff;
  border: 1px solid #fff;
  color: #051441;
  margin-top: 41px;
}

.hire_section.red_bg .cu_btn:hover {
  background-color: #051441;
  color: #fff;
  border: 1px solid #051441;
}

@media (max-width: 767.98px) {
  .hire_section.red_bg .cu_btn {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .hire_section.red_bg .cu_btn {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .hire_section.red_bg .cu_btn {
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------
## Contact Form
--------------------------------------------------------------*/
.contact_section_content.pr_60 {
  padding-right: 60px;
}

@media (max-width: 767.98px) {
  .contact_section_content.pr_60 {
    padding-right: 0;
  }
}

.contact_section_content h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact_section_content .contact_form {
  margin-top: 50px;
}

.contact_section_content .single_contact_form .cu_input {
  border-style: solid;
  border-width: 1px;
  border-color: #e5e5e5;
}

.contact_section_content ul {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: 35px;
}

.contact_section_content ul li {
  color: #7d7d7d;
  display: inline-flex;
  align-items: center;
  align-items: center;
  font-size: 18px;
  margin-bottom: 32px;
}

.contact_section_content ul li:last-child {
  margin-bottom: 0;
}

.contact_section_content ul li img {
  margin-right: 15px;
}

.contact_section {
  position: relative;
  z-index: 1;
}

.contact_section .contactMap {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 767.98px) {
  .contact_section .contactMap {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 70px;
  }
}

.contact_section .contact_shape_1 {
  position: absolute;
  left: 0;
  top: 40%;
  z-index: -1;
}

@media (max-width: 991px) {
  .contact_section .contact_shape_1 {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .contact_section .contact_shape_1 {
    display: none;
  }
}

.contact_section .contact_shape_2 {
  position: absolute;
  right: 0;
  top: 40%;
}

@media (max-width: 991px) {
  .contact_section .contact_shape_2 {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .contact_section .contact_shape_2 {
    display: none;
  }
}

#contactMap {
  height: 100% !important;
}

.contact_map_section .contactMap {
  height: 600px;
  width: 100%;
}

@media (max-width: 767.98px) {
  .contact_map_section .contactMap {
    height: 400px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .contact_map_section .contactMap {
    height: 450px;
  }
}

.contact_form_sec_tittle h2 {
  font-size: 48px;
  line-height: 56px;
}

@media (max-width: 767.98px) {
  .contact_form_sec_tittle h2 {
    font-size: 30px;
    line-height: 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .contact_form_sec_tittle h2 {
    font-size: 30px;
    line-height: 35px;
  }
}

#contactForm .single_contact_form {
  margin-bottom: 30px;
}

#contactForm .single_contact_form .cu_input {
  margin-bottom: 0;
}

#success,
#error {
  position: relative;
  top: 10px;
  display: block;
  right: 0;
  left: 0;
  bottom: -15px;
  display: none;
  font-weight: 600;
}

/*--------------------------------------------------------------
## Image
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## 404 Page
--------------------------------------------------------------*/
.error_page {
  position: relative;
}

.error_page .error_shape_1 {
  position: absolute;
  left: 0;
  top: 38%;
  z-index: -1;
}

@media (max-width: 991px) {
  .error_page .error_shape_1 img {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .error_page .error_shape_1 img {
    max-width: 150px;
  }
}

.error_page .error_shape_2 {
  position: absolute;
  right: 70px;
  top: 27%;
  z-index: -1;
}

@media (max-width: 991px) {
  .error_page .error_shape_2 img {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .error_page .error_shape_2 img {
    max-width: 150px;
  }
}

.error_page .error_page_content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.error_page .error_page_content .main_logo {
  top: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
}

.error_page .error_page_content_iner h2 {
  font-size: 120px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .error_page .error_page_content_iner h2 {
    font-size: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .error_page .error_page_content_iner h2 {
    font-size: 40px;
  }
}

.error_page .error_page_content_iner h3 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 25px;
}

@media (max-width: 991px) {
  .error_page .error_page_content_iner h3 {
    font-size: 25px;
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .error_page .error_page_content_iner h3 {
    font-size: 30px;
    margin-bottom: 15px;
  }
}

.error_page .error_page_content_iner p {
  max-width: 430px;
  margin: 0 auto;
}

.error-social-link {
  margin-top: 35px;
}

.error-social-link .footer-social-link li a {
  height: 55px;
  width: 55px;
  line-height: 55px;
  display: block;
}

.error-social-link .footer-social-link li a i {
  color: #fff;
  display: block;
  line-height: 53px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  font-size: 18px;
}

.error-social-link .footer-social-link li a i:hover {
  background: transparent;
}

.error-social-link .footer-social-link li a .ti-facebook {
  background: #31428b;
  border: 1px solid #31428b;
}

.error-social-link .footer-social-link li a .ti-facebook:hover {
  color: #31428b;
}

.error-social-link .footer-social-link li a .ti-twitter-alt {
  background-color: #35a2ff;
  border: 1px solid #35a2ff;
}

.error-social-link .footer-social-link li a .ti-twitter-alt:hover {
  color: #35a2ff;
}

.error-social-link .footer-social-link li a .ti-dribbble {
  background-color: #fd2299;
  border: 1px solid #fd2299;
}

.error-social-link .footer-social-link li a .ti-dribbble:hover {
  color: #fd2299;
}

.error-social-link .footer-social-link li a .ti-pinterest {
  background-color: #e60023;
  border: 1px solid #e60023;
}

.error-social-link .footer-social-link li a .ti-pinterest:hover {
  color: #e60023;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comments-rating {
  border: none;
  padding: 0;
  margin-left: 0;
}

.comments-rating label {
  display: inline-block;
}

.rating-container {
  /* remove inline-block whitespace */
  font-size: 0;
  /* flip the order so we can use the + and ~ combinators */
  unicode-bidi: bidi-override;
  direction: rtl;
}

.rating-container * {
  font-size: 1.4rem;
}

.rating-container>input {
  display: none;
}

.rating-container>input+label {
  /* only enough room for the star */
  font-family: 'dashicons';
  display: inline-block;
  overflow: hidden;
  text-indent: 9999px;
  width: 1em;
  white-space: nowrap;
  cursor: pointer;
  margin: 0;
}

.rating-container>input+label:before {
  display: inline-block;
  text-indent: -9999px;
  content: "\f154";
  color: #888;
}

.rating-container>input:checked~label:before,
.rating-container>input+label:hover~label:before,
.rating-container>input+label:hover:before {
  content: "\f155";
  color: #f0ae0f;
  text-shadow: 0 0 1px #333;
}

.rating-container>.star-cb-clear+label {
  text-indent: -9999px;
  width: .5em;
  margin-left: -.5em;
}

.rating-container>.star-cb-clear+label:before {
  width: .5em;
}

.rating-container:hover>input+label:before {
  content: "\f154";
  color: #888;
  text-shadow: none;
}

.rating-container:hover>input+label:hover~label:before,
.rating-container:hover>input+label:hover:before {
  content: "\f155";
  color: #f0ae0f;
  text-shadow: 0 0 1px #333;
}

.comment-respond .rating-container>.star-cb-clear+label,
.comment-respond .rating-container>input+label:before {
  text-indent: 9999px;
}

.comment-respond .rating-container>input+label {
  text-indent: -9999px;
}

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
.site-footer .footer-wrapper {
  padding: 120px 0 90px;
  border-top: 1px solid #e5e5e5;
}

.site-footer .site-info {
  border-top: 1px solid #e5e5e5;
}

.site-footer .site-info .site-info-inner {
  padding: 35px 0;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .site-footer .site-info .site-info-inner {
    display: block !important;
    text-align: center;
    padding: 20px 0;
  }

  .site-footer .site-info .site-info-inner .copyright {
    margin-bottom: 10px;
  }
}

.site-footer .site-info .copyright p {
  margin: 0;
}

@media (min-width: 992px) {
  .footer-sticky {
    position: fixed !important;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
  }
}

@media (max-width: 991px) {
  body {
    padding-bottom: 0 !important;
  }
}

.footer_three {
  padding: 80px 0;
}

@media (max-width: 991px) {
  .footer_three {
    padding: 40px 0;
  }
}

.footer_three .container {
  max-width: 1550px;
}

.footer_three .footer-three-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 991px) {
  .footer_three .footer-three-content {
    display: block;
    text-align: center;
  }
}

.footer_three .footer-three-content .footer-logo-wrap a {
  display: block;
}

@media (max-width: 991px) {
  .footer_three .footer-three-content .footer-logo-wrap {
    margin-bottom: 20px;
  }
}

.footer_three .footer-three-content .footer-logo-wrap,
.footer_three .footer-three-content .footer-social-wrapper {
  width: 25%;
}

@media (max-width: 991px) {

  .footer_three .footer-three-content .footer-logo-wrap,
  .footer_three .footer-three-content .footer-social-wrapper {
    width: 100%;
  }
}

.footer_three .footer-three-content .copyright-info {
  width: 50%;
  text-align: center;
}

@media (max-width: 991px) {
  .footer_three .footer-three-content .copyright-info {
    width: 100%;
    margin-bottom: 12px;
  }
}

.footer_three .footer-three-content .copyright-info p {
  color: #4b4b4b;
}

.footer_three .footer-three-content .footer-social-wrapper {
  text-align: right;
}

@media (max-width: 991px) {
  .footer_three .footer-three-content .footer-social-wrapper {
    text-align: center;
  }
}

.footer_three .copyright-info {
  color: #4b4b4b;
}

.footer_three .copyright-info a {
  color: #4b4b4b;
}

.footer_three .copyright-info a:hover {
  color: #ff7070;
}

.footer-social-link {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-social-link li {
  display: inline-block;
}

.footer-social-link li:not(:last-child) {
  margin-right: 23px;
}

.footer-social-link li a {
  display: inline-block;
  font-size: 14px;
  color: #7d7d7d;
}

.footer-social-link li a:hover {
  color: #ff7070;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  color: #fff;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  display: inline-block;
  padding: 13px 41px;
  height: auto;
}

input[type="submit"] {
  border: 0;
}

/* Back To Top */
.return-to-top {
  position: fixed;
  bottom: -40px;
  right: 30px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  cursor: pointer;
  z-index: 998;
  border-radius: 3%;
  opacity: 0;
  transition: bottom .5s ease, opacity .5s ease;
}

.return-to-top:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  opacity: 1;
  display: block;
  transform: scale(1);
  transition: all .3s ease;
  border-radius: inherit;
  transition: transform .5s ease, opacity .6s ease;
}

.return-to-top:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 0px 0px 0px transparent;
  box-shadow: 0px 0px 0px 0px transparent;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
  border-radius: inherit;
}

.return-to-top>i {
  position: relative;
  overflow: hidden;
  font-size: 12px;
  width: inherit;
  height: inherit;
  line-height: inherit;
  display: block;
  color: transparent;
  text-shadow: 0px 0px #fff, 0px 50px #fff;
  transition: text-shadow .2s ease;
  z-index: 1;
}

.return-to-top:hover:after {
  transform: scale(1.07);
  background: #ff7070;
  box-shadow: 0px 10px 20px 8px rgba(0, 0, 0, 0.15);
}

.return-to-top:hover>i {
  text-shadow: 0px -50px #fff, 0px 0px #fff;
}

.return-to-top.back-top {
  bottom: 30px;
  opacity: 1;
}

/******** base color css ********/
.cu_btn {
  display: inline-block;
  padding: 17px 26px;
  line-height: 18px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: "Futura", sans-serif;
  min-width: 180px;
  text-align: center;
}

@media (max-width: 767.98px) {
  .cu_btn {
    padding: 15px 20px;
    font-size: 15px;
  }
}

.cu_btn i {
  margin-left: 7px;
}

.cu_btn.btn_1 {
  background-color: transparent;
  border: 1px solid #d6d9dc;
  color: #fff;
}

.cu_btn.btn_1:hover {
  background-color: #ff7070;
  border: 1px solid #ff7070;
  color: #fff;
}

.cu_btn.btn_2 {
  background-color: transparent;
  border: 1px solid rgba(5, 20, 65, 0.2);
  color: #051441;
}

.cu_btn.btn_2:hover {
  background-color: #ff7070;
  border: 1px solid #ff7070;
  color: #fff;
}

.cu_btn.white_btn {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.cu_btn.white_btn:hover {
  background-color: transparent;
  border: 1px solid #ff7070;
  color: #fff;
  background-color: #ff7070;
}

.cu_btn.white_bg {
  background-color: #fff;
  border: 1px solid #fff;
  color: #ff7070;
}

.cu_btn.white_bg:hover {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  background-color: #ff7070;
}

.cu_btn.btn_3 {
  background-color: #ff7070;
  border: 1px solid #ff7070;
  color: #fff;
}

.cu_btn.btn_3:hover {
  background-color: transparent;
  border: 1px solid #ff7070;
  color: #ff7070;
}

.cu_btn.btn_4 {
  background-color: transparent;
  border: 1px solid #88888a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Futura", sans-serif;
  padding: 17px 40px;
}

.cu_btn.btn_4 img {
  margin-left: 10px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.cu_btn.btn_4:hover {
  background-color: #ff7070;
  border: 1px solid #ff7070;
}

.cu_btn.tag_btn {
  background-color: #f0f2f9;
  border: 1px solid #f0f2f9;
  color: #7d7d7d;
  border-radius: 50px;
  font-weight: 400;
  font-size: 16px;
  padding: 11px 20px;
  font-family: "Futura", sans-serif;
  min-width: auto;
  text-transform: capitalize;
}

.cu_btn.tag_btn:hover {
  background-color: transparent;
  border: 1px solid #ff7070;
  color: #fff;
  background-color: #ff7070;
}

.cu_btn.tag_btn_1 {
  background-color: #37a45d;
  border: 1px solid #37a45d;
  color: #fff;
  border-radius: 50px;
  font-weight: 400;
  font-size: 18px;
  min-width: 120px;
  height: 30px;
  line-height: 30px;
  padding: 0 5px;
  border-radius: 5px;
}

.cu_btn.tag_btn_1:hover {
  background-color: transparent;
  border: 1px solid #ff7070;
  color: #fff;
  background-color: #ff7070;
}

.cu_btn.sm_btn {
  padding: 11px 45px;
  min-width: auto;
}

.cu_btn.btn_ct {
  text-transform: capitalize;
  letter-spacing: 1pt;
  width: 180px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cu_btn.animate_btn {
  position: relative;
  z-index: 1;
  text-align: center;
  background-color: transparent;
  border: 1px solid #d6d9dc;
  color: #051441;
}

.cu_btn.animate_btn:after,
.cu_btn.animate_btn:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cu_btn.animate_btn:before {
  opacity: 0;
  -webkit-transition-duration: .6s;
  transition-duration: .6s;
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  z-index: -1;
}

.cu_btn.animate_btn:after {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  z-index: -1;
  background-color: #ff7070;
}

.cu_btn.animate_btn:hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  transform-origin: left;
  -webkit-transform-origin: left;
}

.cu_btn.animate_btn:hover:before {
  opacity: 1;
}

.cu_btn.animate_btn:hover {
  border: 1px solid #ff7070;
  color: #fff;
}

.cu_btn.animate_btn_2 {
  position: relative;
  z-index: 1;
  text-align: center;
  background-color: #ff7070;
  border: 1px solid #ff7070;
  color: #fff;
}

.cu_btn.animate_btn_2:after,
.cu_btn.animate_btn_2:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cu_btn.animate_btn_2:before {
  opacity: 0;
  -webkit-transition-duration: .6s;
  transition-duration: .6s;
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  z-index: -1;
}

.cu_btn.animate_btn_2:after {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  z-index: -1;
  background-color: #fff;
}

.cu_btn.animate_btn_2:hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  transform-origin: left;
  -webkit-transform-origin: left;
}

.cu_btn.animate_btn_2:hover:before {
  opacity: 1;
}

.cu_btn.animate_btn_2:hover {
  border: 1px solid #ff7070;
  color: #ff7070;
}

.btn_arrow {
  position: relative;
  padding-right: 27px;
  color: #051441;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
}

.btn_arrow img {
  position: absolute;
  right: 0;
  top: 9px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn_arrow i {
  font-size: 16px;
  margin-left: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  right: 0;
  top: 4px;
}

.btn_arrow:hover i,
.btn_arrow:hover img {
  transform: translateX(5px);
  color: #ff7070;
}

.border_animation {
  position: relative;
  display: inline-block;
}

.border_animation:after,
.border_animation .cu_btn:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 1px;
  background-color: #051441;
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.border_animation:before,
.border_animation .cu_btn:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 15px;
  background-color: #051441;
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.border_animation .cu_btn {
  padding: 22px 45px;
  border: 1px solid #ebebeb;
}

.border_animation .cu_btn:after {
  top: auto;
  bottom: 0;
  right: 0;
  left: auto;
}

.border_animation .cu_btn:before {
  top: auto;
  bottom: 0;
  right: 0;
  left: auto;
}

.border_animation .cu_btn:hover {
  background-color: transparent;
  color: #051441;
  border: 1px solid #ebebeb;
}

.border_animation .cu_btn:hover:after {
  width: 100%;
}

.border_animation .cu_btn:hover:before {
  height: 100%;
}

.border_animation:hover {
  background-color: transparent;
}

.border_animation:hover:after {
  width: 100%;
}

.border_animation:hover:before {
  height: 100%;
}

.btn_border_effect {
  background-color: transparent;
  position: relative;
  overflow: hidden;
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  border: 0;
  display: inline-block;
  height: 55px;
  line-height: 55px;
}

.btn_border_effect:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #c85831;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  left: 0;
  top: 0;
}

.btn_border_effect:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 7px;
  background-color: #c85831;
  left: 0;
  bottom: 17px;
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn_border_effect a {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  z-index: 1;
}

.btn_border_effect a:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 0;
  background-color: #c85831;
  transition: all 0.3s ease;
  right: 0;
  top: 0;
}

.btn_border_effect a:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 0;
  background-color: #c85831;
  transition: all 0.3s ease;
  left: 0;
  bottom: 0;
}

.btn_border_effect:hover {
  min-width: 150px;
  height: 55px;
  line-height: 55px;
  text-align: center;
}

.btn_border_effect:hover:before {
  width: 100%;
  transition: all 0.3s ease;
  background-color: #ff7070;
}

.btn_border_effect:hover:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ff7070;
  right: 0;
  bottom: 0;
}

.btn_border_effect:hover a {
  z-index: 1;
  color: #ff7070 !important;
}

.btn_border_effect:hover a:before,
.btn_border_effect:hover a:after {
  height: 100%;
  background-color: #ff7070;
}

.btn_border_effect:hover a:after {
  transition: all 0.1s ease;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

button:active {
  outline: none;
  border: none;
}

button:focus {
  outline: 0;
}

input:not([type='checkbox']):not([type='submit']),
textarea {
  margin-bottom: 20px;
  width: 100%;
  padding: 0 20px;
  border: 1px solid rgba(5, 20, 65, 0.2);
  font-weight: 400;
  outline: 0;
  transition: all 0.3s linear;
  border-radius: 4px;
}

input:not([type='checkbox']):not([type='submit'])::placeholder,
textarea::placeholder {
  color: #75757d;
}

input:not([type='checkbox']):not([type='submit']):focus,
textarea:focus {
  border-color: rgba(255, 112, 112, 0.5);
  box-shadow: none;
}

select {
  width: 100%;
  border: 1px solid rgba(5, 20, 65, 0.2);
  padding: 10px;
  height: 44px;
  border-radius: 0;
  color: #909090;
  font-size: 15px;
  display: inline-block;
  background-position: right 10px center;
  -moz-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 4px 20px;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='iso-8859-1'%3F%3E%3C!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 490.656 490.656' style='enable-background:new 0 0 490.656 490.656;' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath d='M487.536,120.445c-4.16-4.16-10.923-4.16-15.083,0L245.317,347.581L18.203,120.445c-4.16-4.16-10.923-4.16-15.083,0 c-4.16,4.16-4.16,10.923,0,15.083l234.667,234.667c2.069,2.091,4.8,3.136,7.531,3.136s5.461-1.045,7.552-3.115l234.667-234.667 C491.696,131.368,491.696,124.627,487.536,120.445z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 12px;
}

select:focus {
  outline: 0;
}

.form-submit {
  margin: 0;
}

input {
  height: 54px;
}

textarea {
  height: 150px;
  margin-bottom: 20px;
  padding: 10px 20px;
}

textarea:focus {
  border-color: rgba(255, 112, 112, 0.5);
}

.single_contact_form input {
  height: 54px;
}

.post-password-form input,
.post-password-form label {
  margin: 0;
}

.post-password-form input[type="password"] {
  height: 50px;
  border-width: 1px;
  padding: 0 15px;
}

.post-password-form input[type="submit"] {
  background: #ff7070;
  color: #fff;
  border: 0;
  height: 50px;
  border-radius: 4px;
}

.post-password-form input[type="submit"]:hover {
  background: #051441;
}

.contact_form {
  max-width: 950px;
  margin: 0 auto;
}

.contact_form .cu_input {
  padding: 13px 20px;
  border: 1px solid #f7f7f7;
  background-color: #fff;
  border-radius: 0 !important;
  color: #7d7d7d;
  font-size: 18px;
  background-clip: border-box;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact_form textarea {
  height: 140px !important;
}

.contact_form textarea:focus {
  border-color: rgba(255, 112, 112, 0.5);
  box-shadow: none !important;
}

.contact_form .cu_btn {
  width: 100%;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  font-family: Futura;
  letter-spacing: 1px;
  height: 54px;
}

.contact_form .wpcf7-response-output {
  max-width: 950px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: #051441;
  transition: all 0.3s ease-in-out;
}

a:hover,
a:focus,
a:active {
  color: #ff7070;
  text-decoration: none;
}

a:hover,
a:active {
  outline: 0;
}

/*--------------------------------------------------------------
## Primary Menu
--------------------------------------------------------------*/
.site-header {
  position: relative;
  z-index: 999;
  transition: all 0.3s ease-in-out;
  height: 100px;
}

.site-header .site-logo a {
  font-size: 34px;
  font-weight: 500;
  padding: 24px 0;
  display: block;
}

.site-header .add-menu {
  margin: 0;
  padding: 36px 0;
  list-style: none;
}

.site-header .dt-hamburger {
  width: 24px;
  cursor: pointer;
}

.site-header .dt-hamburger.active {
  opacity: 0;
  visibility: hidden;
}

@media (min-width: 992px) {
  .site-header .dt-hamburger {
    display: none;
  }
}

.site-header .dt-hamburger:focus {
  outline: 0;
}

.site-header .dt-hamburger .bar {
  background: #000;
  height: 2px;
  display: block;
}

.site-header .dt-hamburger .bar:not(:last-child) {
  margin-bottom: 5px;
}

.site-header.header-2 {
  z-index: auto;
}

.site-header.header-2 .dt-hamburger {
  display: block;
}

.site-header.header-2.menu-transparent {
  z-index: 999;
}

.site-header.header-3 {
  position: fixed;
  width: 90px;
  left: 0;
  top: 0;
  height: 100vh;
}

.header-position .site-header.header-3 {
  top: 32px;
}

.site-header.header-3 .full-width-menu {
  padding: 20px 0;
  text-align: center;
}

.site-header.header-3 .site-logo a {
  padding: 0;
}

.site-header.header-3 .site-logo .main-logo {
  display: none;
}

.site-header.header-3 #site-navigation {
  padding: 20px 0;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}

.site-header.header-3 #site-navigation>div {
  width: 100%;
  text-align: center;
  height: 33.33%;
}

.site-header.header-3 #site-navigation .burger-menu-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-header.header-3 .menu-trigger .dot_icon {
  margin: 0 auto;
}

.site-header.header-3 .menu-social-link-wrapper {
  vertical-align: bottom;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.site-header.header-3 .menu-social-link-wrapper .menu-social-link {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.site-header.header-3 .menu-social-link-wrapper .menu-social-link li {
  overflow: hidden;
}

.site-header.header-3 .menu-social-link-wrapper .menu-social-link li:not(:last-child) {
  margin-bottom: 5px;
}

.site-header.header-3 .menu-social-link-wrapper .menu-social-link li a {
  font-size: 14px;
  overflow: hidden;
  display: inline-block;
}

.site-header.header-3 .menu-social-link-wrapper .menu-social-link li a i {
  transition: all 0.3s ease-in-out;
  text-shadow: 0px 0px #7d7d7d, 0px 30px #7d7d7d;
  color: transparent;
}

.site-header.header-3 .menu-social-link-wrapper .menu-social-link li a:hover i {
  text-shadow: 0px -30px #ff7070, 0px 0px #ff7070;
}

.site-header.header-4 {
  position: fixed;
  height: 100%;
  width: 90px;
  left: 0;
  top: 0;
  padding: 60px;
  overflow-y: auto;
  border-right: 1px solid #e4e4e4;
  z-index: 7;
  background: #fff;
}

@media (max-width: 1024px) {
  .site-header.header-4 {
    padding: 40px 0;
  }
}

@media (min-width: 1440px) {
  .site-header.header-4 {
    width: 350px;
  }
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .site-header.header-4 {
    width: 280px;
    padding: 60px 40px;
  }
}

.site-header.header-4 .header-inner {
  height: 100%;
}

.site-header.header-4 #site-navigation {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  height: 100%;
}

.site-header.header-4 #site-navigation>div {
  width: 100%;
}

@media (max-width: 1024px) {
  .site-header.header-4 #site-navigation {
    text-align: center;
  }
}

.site-header.header-4 .site-logo {
  margin-bottom: 50px;
}

.site-header.header-4 .site-logo a {
  padding: 0;
}

.site-header.header-4 .site-logo .main-logo {
  display: none;
}

.site-header.header-4 .menu {
  padding-left: 0;
  margin: 0;
}

.site-header.header-4.canvas-menu .main-nav .sub-menu {
  display: none;
}

.site-header.header-4 li a {
  font-size: 18px;
  color: #051441;
  position: relative;
  z-index: 1;
  padding: 8px 0;
  display: block;
  align-items: center;
  justify-content: space-between;
  text-transform: capitalize;
  font-weight: 500;
}

.site-header.header-4 li.has-submenu>a {
  position: relative;
}

.site-header.header-4 li.has-submenu>a:after {
  content: "\e61a";
  font-family: 'themify';
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 12px;
}

.site-header.header-4 li.has-submenu>a.active:after {
  content: "\e622";
}

.site-header.header-4 li.has-submenu ul {
  padding-left: 10px;
}

.site-header.header-4 li.has-submenu ul li a {
  font-size: 16px;
  padding: 3px 0;
}

.site-header.header-4 .menu-item-depth-0>a.active {
  color: #ff7070;
}

.site-header.header-4 .menu-footer {
  height: auto;
}

.site-header.header-4 .menu-footer .footer-social-link {
  text-align: left;
  margin: auto 0 0;
}

.site-header.header-4 .menu-footer .footer-social-link li {
  font-size: 14px;
}

.site-header.header-4 .menu-footer .footer-social-link li:not(:last-child) {
  margin-right: 15px;
}

@media (max-width: 1024px) {
  .site-header.header-4 .menu-footer .footer-social-link li {
    text-align: center;
    display: block;
    margin-right: 0 !important;
  }
}

.site-header.header-4 .menu-footer .footer-social-link li a {
  font-size: 14px;
}

.site-header.header-4 .menu-footer .footer-social-link li a i {
  color: inherit !important;
}

.site-header.header-4 .menu-trigger {
  display: none;
}

@media (max-width: 1024px) {
  .site-header.header-4 .canvas-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
  }

  .site-header.header-4 .menu-trigger {
    display: block;
  }

  .site-header.header-4 .menu-trigger .dot_icon {
    margin: 0 auto;
  }
}

.site-header.menu-dark .main-logo {
  display: none;
}

.site-header.menu-dark .logo-sticky {
  display: block !important;
}

.site-header.menu-dark .cu_btn.animate_btn {
  border-color: #7d7e7e;
}

.site-header.menu-dark .cu_btn.animate_btn:hover {
  border-color: #ff7070;
}

.blog .site-header.blog-menu-dark .main-logo,
.archive .site-header.blog-menu-dark .main-logo {
  display: none;
}

.blog .site-header.blog-menu-dark .logo-sticky,
.archive .site-header.blog-menu-dark .logo-sticky {
  display: block !important;
}

.blog .site-header.blog-menu-dark .cu_btn.animate_btn,
.archive .site-header.blog-menu-dark .cu_btn.animate_btn {
  border-color: #7d7e7e;
}

.blog .site-header.blog-menu-dark .cu_btn.animate_btn:hover,
.archive .site-header.blog-menu-dark .cu_btn.animate_btn:hover {
  border-color: #ff7070;
}

.blog .site-header.blog-menu-dark .menu-trigger .dot_icon .dot,
.archive .site-header.blog-menu-dark .menu-trigger .dot_icon .dot {
  background: #051441;
}

.site-header.menu-transparent {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}

.site-header.menu-transparent:not(.showed).menu-light .dt-hamburger .bar {
  background: #fff;
}

.site-header.menu-transparent:not(.showed).menu-light:not(.showed) .menu>li>a {
  color: #fff;
}

.site-header.menu-transparent:not(.showed).menu-light:not(.showed) .menu>li>a:hover {
  color: #ff7070;
}

.site-header.menu-transparent:not(.showed).menu-light:not(.showed) .site-logo .logo-sticky {
  display: none;
}

.blog .site-header.menu-transparent:not(.showed).blog-menu-dark .dt-hamburger .bar,
.archive .site-header.menu-transparent:not(.showed).blog-menu-dark .dt-hamburger .bar {
  background: #051441;
}

.blog .site-header.menu-transparent:not(.showed).blog-menu-dark:not(.showed) .menu>li>a,
.archive .site-header.menu-transparent:not(.showed).blog-menu-dark:not(.showed) .menu>li>a {
  color: #051441;
}

.blog .site-header.menu-transparent:not(.showed).blog-menu-dark:not(.showed) .menu>li>a:hover,
.archive .site-header.menu-transparent:not(.showed).blog-menu-dark:not(.showed) .menu>li>a:hover {
  color: #ff7070;
}

.blog .site-header.menu-transparent:not(.showed).blog-menu-dark:not(.showed) .site-logo .logo-sticky,
.archive .site-header.menu-transparent:not(.showed).blog-menu-dark:not(.showed) .site-logo .logo-sticky {
  display: none;
}

.blog .site-header.menu-transparent:not(.showed).blog-menu-dark:not(.showed) .nav-right .cu_btn,
.archive .site-header.menu-transparent:not(.showed).blog-menu-dark:not(.showed) .nav-right .cu_btn {
  border-color: #051441;
  color: #051441;
}

.blog .site-header.menu-transparent:not(.showed).blog-menu-dark:not(.showed) .nav-right .cu_btn:hover,
.archive .site-header.menu-transparent:not(.showed).blog-menu-dark:not(.showed) .nav-right .cu_btn:hover {
  color: #fff;
  background: #ff7070;
  border-color: #ff7070;
}

.blog .site-header.menu-transparent:not(.showed).blog-menu-dark .fullscreen-menu .menu li a,
.archive .site-header.menu-transparent:not(.showed).blog-menu-dark .fullscreen-menu .menu li a {
  color: #fff;
}

.blog .site-header.menu-transparent:not(.showed).blog-menu-dark .fullscreen-menu .menu li a:hover,
.archive .site-header.menu-transparent:not(.showed).blog-menu-dark .fullscreen-menu .menu li a:hover {
  color: #ff7070;
}

.blog .site-header.menu-transparent:not(.showed).blog-menu-dark .fullscreen-menu .menu li.has-submenu>a,
.archive .site-header.menu-transparent:not(.showed).blog-menu-dark .fullscreen-menu .menu li.has-submenu>a {
  color: #fff;
}

.blog .site-header.menu-transparent:not(.showed).blog-menu-dark .fullscreen-menu .menu li.has-submenu>a:hover,
.archive .site-header.menu-transparent:not(.showed).blog-menu-dark .fullscreen-menu .menu li.has-submenu>a:hover {
  color: #ff7070;
}

.site-header.menu-transparent:not(.menu-dark):not(.showed) .site-logo a {
  color: #fff;
}

.site-header.menu-transparent:not(.menu-dark):not(.showed) .nav-right .cu_btn {
  color: #fff;
  margin-top: 0;
}

.site-header.menu-transparent:not(.menu-dark):not(.showed) .dt-hamburger-holder ._shape {
  background-color: #fff !important;
}

.header-static .site-header.menu-transparent,
.header-static-blog .site-header.menu-transparent {
  position: static;
}

.header-static .site-header.menu-transparent.menu-light .dt-hamburger .bar,
.header-static-blog .site-header.menu-transparent.menu-light .dt-hamburger .bar,
.error404 .site-header.menu-transparent.menu-light .dt-hamburger .bar {
  background: #051441;
}

.header-static .site-header.menu-transparent.menu-light .cu_btn.animate_btn,
.header-static-blog .site-header.menu-transparent.menu-light .cu_btn.animate_btn,
.error404 .site-header.menu-transparent.menu-light .cu_btn.animate_btn {
  color: #051441;
}

.header-static .site-header.menu-transparent.menu-light .cu_btn.animate_btn:hover,
.header-static-blog .site-header.menu-transparent.menu-light .cu_btn.animate_btn:hover,
.error404 .site-header.menu-transparent.menu-light .cu_btn.animate_btn:hover {
  color: #fff;
}

.header-static .site-header.menu-transparent.menu-light:not(.showed) .menu>li>a,
.header-static-blog .site-header.menu-transparent.menu-light:not(.showed) .menu>li>a,
.error404 .site-header.menu-transparent.menu-light:not(.showed) .menu>li>a {
  color: #051441;
}

.header-static .site-header.menu-transparent.menu-light:not(.showed) .site-logo .main-logo,
.header-static-blog .site-header.menu-transparent.menu-light:not(.showed) .site-logo .main-logo,
.error404 .site-header.menu-transparent.menu-light:not(.showed) .site-logo .main-logo {
  display: none;
}

.header-static .site-header.menu-transparent.menu-light:not(.showed) .site-logo .logo-sticky,
.header-static-blog .site-header.menu-transparent.menu-light:not(.showed) .site-logo .logo-sticky,
.error404 .site-header.menu-transparent.menu-light:not(.showed) .site-logo .logo-sticky {
  display: block;
}

.header-static .site-header.menu-transparent.header-fixed.showed,
.header-static-blog .site-header.menu-transparent.header-fixed.showed,
.error404 .site-header.menu-transparent.header-fixed.showed {
  position: fixed;
}

.header-static-blog .site-header {
  border-bottom: 1px solid #e5e5e5;
  transition: all 0.3s ease-in-out;
}

.header-static-blog .site-header .main-logo {
  display: none;
}

.header-static-blog .site-header .logo-sticky {
  display: block !important;
}

.header-static-blog .site-header.header-3 .logo-sticky {
  margin: 0 auto;
}

.header-static-blog .site-header.header-fixed.showed {
  border-bottom: none;
}

.site-header.header-fixed.showed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.header-position .site-header.header-fixed.showed {
  top: 32px;
}

@media (max-width: 782px) {
  .header-position .site-header.header-fixed.showed {
    top: 46px;
  }
}

.header-position .site-header.header-fixed.showed .fullscreen-menu {
  top: 0;
}

.site-header.header-fixed.showed .site-logo .main-logo {
  display: none;
}

.site-header.header-fixed.showed .menu-trigger .dot_icon .dot {
  background: #051441;
}

@media (min-width: 992px) {
  .site-header .container {
    position: relative;
  }
}

@media (min-width: 1200px) {

  .site-header:not(.mobile-header).header-1 .site-logo,
  .site-header:not(.mobile-header).header-1 .nav-right {
    width: 15%;
  }

  .site-header:not(.mobile-header).header-1 .nav-right {
    display: flex;
    justify-content: flex-end;
  }

  .site-header:not(.mobile-header).header-1 .menu-wrapper {
    justify-content: center;
    display: flex;
  }

  .submenu-align-right .site-header:not(.mobile-header).header-1 {
    width: auto;
  }
}

.site-header:not(.mobile-header).header-1 .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header:not(.mobile-header).header-1 .menu>li {
  padding: 35px 0;
}

.site-header:not(.mobile-header).header-1 .menu>li>a:after {
  display: none;
  visibility: hidden;
  opacity: 0;
}

.site-header:not(.mobile-header).header-1 .menu>li:not(.mega-menu) {
  position: relative;
}

.menu-light .site-header:not(.mobile-header).header-1 .menu>li>a {
  color: #fff;
}

.site-header:not(.mobile-header).header-1 .menu li {
  display: inline-block;
}

.site-header:not(.mobile-header).header-1 .menu li:not(:last-child) {
  margin-right: 55px;
}

.site-header:not(.mobile-header).header-1 .menu li.has-submenu>a:after {
  content: "\e61a";
  font-family: 'themify';
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 12px;
  transition: all 0.3s ease-in-out;
}

.site-header:not(.mobile-header).header-1 .menu li.has-submenu .sub-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 115%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: .25rem;
  min-width: 220px;
  padding: 15px 0;
  box-shadow: 0px 5px 10px #14303a15;
  z-index: 2222;
}

.site-header:not(.mobile-header).header-1 .menu li.has-submenu .sub-menu.sub-menu-wide {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 40px 80px 25px;
}

.site-header:not(.mobile-header).header-1 .menu li.has-submenu .sub-menu.sub-menu-wide>.mega-menu-item>a.menu-link {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  color: #051441;
}

.site-header:not(.mobile-header).header-1 .menu li.has-submenu .sub-menu.sub-menu-wide>.mega-menu-item>a.menu-link:after {
  display: none;
}

.site-header:not(.mobile-header).header-1 .menu li.has-submenu .sub-menu.sub-menu-wide .sub-menu {
  position: unset;
  box-shadow: unset;
  visibility: unset;
  opacity: unset;
}

.site-header:not(.mobile-header).header-1 .menu li.has-submenu .sub-menu li {
  display: block;
  position: relative;
  margin-right: 0;
  line-height: 36px;
}

.site-header:not(.mobile-header).header-1 .menu li.has-submenu .sub-menu li a {
  font-size: 16px;
  padding: 7px 25px;
  display: block;
  line-height: 1.5;
  color: #464A56;
}

.site-header:not(.mobile-header).header-1 .menu li.has-submenu .sub-menu li a:hover {
  color: #ff7070;
}

.site-header:not(.mobile-header).header-1 .menu li.has-submenu .sub-menu li ul {
  padding: 15px 0;
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  min-width: 220px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 5px 10px #14303a15;
}

.site-header:not(.mobile-header).header-1 .menu li.has-submenu .sub-menu li.has-submenu:hover ul {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.site-header:not(.mobile-header).header-1 .menu li.has-submenu:hover>a {
  color: #ff7070;
}

.site-header:not(.mobile-header).header-1 .menu li.has-submenu:hover>a:after {
  content: "\e622";
}

.site-header:not(.mobile-header).header-1 .menu li.has-submenu:hover ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.site-header:not(.mobile-header).submenu-align-right .menu-wrapper {
  width: auto;
}

.site-header:not(.mobile-header).submenu-align-right .menu>li:nth-last-child(-n+3).has-submenu .sub-menu {
  left: auto;
  right: 0;
}

.site-header:not(.mobile-header).submenu-align-right .menu>li:nth-last-child(-n+3).has-submenu .sub-menu li ul {
  right: 100%;
}

.site-header:not(.mobile-header) .nav-right .cu_btn {
  padding: 13px 26px;
  min-width: auto;
}

.site-header .container-fluid {
  max-width: 1450px;
  position: relative;
}

.site-header .full-width-menu {
  padding: 0 50px;
  position: relative;
}

@media (max-width: 991px) {
  .site-header .full-width-menu {
    padding: 0 15px;
  }
}

.site-header .full-width-menu .menu li.has-submenu .sub-menu.sub-menu-wide {
  width: calc(100% - 130px) !important;
  left: 50% !important;
  transform: translateX(-50%);
}

.header-style-3 .site {
  padding-left: 90px;
}

.header-style-4 .site {
  padding-left: 90px;
}

@media (min-width: 1440px) {
  .header-style-4 .site {
    padding-left: 350px;
  }
}

@media (min-width: 1024px) and (max-width: 1440px) {
  .header-style-4 .site {
    padding-left: 280px;
  }
}

@keyframes stickySlideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.menu-trigger {
  overflow: hidden;
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
  border: 0px solid transparent;
}

@media (max-width: 991px) {
  .menu-trigger {
    justify-content: center;
    display: block !important;
  }
}

.menu-trigger .dot_icon {
  display: flex;
  flex-wrap: wrap;
  width: 24px;
  height: 24px;
  margin: -2px;
  overflow: hidden;
}

.menu-trigger .dot_icon .dot {
  width: 4px;
  height: 4px;
  background: #051441;
  margin: 2px;
  transition: all 0.3s linear;
}

.menu-light .menu-trigger .dot_icon .dot {
  background: #fff;
}

.menu-trigger:hover .dot_icon .dot:nth-child(odd) {
  transform: translate(8px, 8px);
}

.menu-trigger:hover .dot_icon .dot:nth-child(5) {
  opacity: 0;
}

#site-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 992px) {
  .close-menu {
    display: none;
  }
}

.close-menu {
  height: 50px;
  width: 50px;
  background: rgba(136, 136, 136, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 54px;
  position: absolute;
  top: 25px;
  left: 20px;
  color: #051441;
}

.menu {
  list-style: none;
}

.menu ul {
  list-style: none;
}

/*--------------------------------------------------------------
### Main Nav Mobile
--------------------------------------------------------------*/
.mobile-header {
  height: auto;
  /*--------------------------------------------------------------
	### Main Nav
	--------------------------------------------------------------*/
}

.mobile-header .site-logo .logo-sticky {
  display: none;
}

@media (max-width: 991px) {
  .mobile-header .site-logo img {
    height: 40px;
  }
}

.mobile-header.header-fixed.showed .logo-sticky {
  display: block;
}

.mobile-header .site-logo a {
  padding: 13px 0;
}

.mobile-header .nav-right {
  display: none;
}

.mobile-header .main-nav-container {
  position: fixed;
  top: 0;
  height: 100vh;
  z-index: 1;
  background: #fff;
  max-width: 400px;
  width: 100%;
  text-align: left;
  overflow-y: auto;
  padding: 94px 0;
  left: -100px;
  transition-duration: .3s;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.header-position .mobile-header .main-nav-container {
  top: 32px;
}

@media (max-width: 780px) {
  .header-position .mobile-header .main-nav-container {
    top: 46px;
  }
}

@media (max-width: 420px) {
  .mobile-header .main-nav-container {
    max-width: 100%;
  }
}

.mobile-header .main-nav-container.open {
  opacity: 1;
  left: 0;
  visibility: visible;
}

.mobile-header .main-nav-container li a {
  font-size: 20px;
  color: #051441;
  position: relative;
  z-index: 1;
  padding: 8px 25px;
  display: block;
  align-items: center;
  justify-content: space-between;
  text-transform: capitalize;
  font-weight: 400;
  border-left: 2px solid transparent;
}

.mobile-header .main-nav-container li.has-submenu>a {
  position: relative;
}

.mobile-header .main-nav-container li.has-submenu>a:after {
  content: "\e61a";
  font-family: 'themify';
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  font-size: 12px;
}

.mobile-header .main-nav-container li.has-submenu>a.active:after {
  content: "\e622";
}

.mobile-header .main-nav-container li.has-submenu li a {
  font-size: 18px;
}

.mobile-header .main-nav-container .menu-item-depth-0>a.active {
  color: #ff7070;
  background: #f8f9fa;
  border-color: #ff7070;
}

.header-position .mobile-header.header-fixed.showed .main-nav-container {
  top: 0;
}

.mobile-header.header-2 .main-nav-container {
  max-width: 100%;
}

.mobile-header.menu-transparent {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
}

.header-position .mobile-header.menu-transparent {
  top: 32px;
}

@media (max-width: 780px) {
  .header-position .mobile-header.menu-transparent {
    top: 46px;
  }
}

.mobile-header.menu-transparent.menu-light .menu>li>a {
  color: #051441 !important;
}

.mobile-header .full-width-menu .menu li.has-submenu .sub-menu.sub-menu-wide {
  width: 100% !important;
  transform: unset;
  left: auto;
}

.mobile-header .main-nav {
  position: static;
  z-index: 3333;
  line-height: 1.2;
}

.mobile-header .main-nav .menu {
  padding-left: 0;
}

.mobile-header .main-nav .sub-menu {
  padding-left: 15px;
  margin-left: 0;
  margin-bottom: 0;
  display: none;
}

.mobile-header .main-nav .sub-menu.active .main-item>.menu-link {
  background: #f8f9fa;
}

.mobile-header .main-nav .sub-menu li a {
  border-top: 0;
}

.mobile-header .main-nav .sub-menu li.active a.active .ti-plus {
  color: #ff7070;
}

.mobile-header .main-nav .nav-item.active-main-item>.menu-link {
  color: #ff7070;
  background: #f8f9fa;
  border-color: #ff7070;
}

.mobile-header .main-nav .sub-menu {
  padding-left: 15px;
  margin-bottom: 0;
}

.mobile-header .main-nav {
  cursor: default;
  position: relative;
  font-weight: 600;
  z-index: 10;
  text-align: left;
  font-weight: 500;
  height: 100%;
  display: flex;
  align-items: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-header .main-nav a:before,
.mobile-header .main-nav .close-bar {
  display: none;
}

.mobile-header .main-nav .site-logo a {
  font-size: 40px;
}

.mobile-header .main-nav .menu,
.mobile-header .main-nav .menu ul {
  list-style: none;
}

.mobile-header .main-nav .nav-item:before,
.mobile-header .main-nav .nav-item.current-menu-item:before,
.mobile-header .main-nav .nav-item.current-menu-ancestor:before {
  background-color: #ff7070;
}

.mobile-header .main-nav .nav-item.active-main-item>.menu-link {
  color: #ff7070;
}

.mobile-header .main-nav .nav-right .cu_btn {
  padding: 13px 26px;
  min-width: auto;
  margin-top: 0;
}

.mobile-header .main-nav.hidden {
  display: none;
}

@media screen and (max-width: 1024px) {

  .mobile-header .main-nav .dt-hamburger,
  .mobile-header .main-nav .close-menu {
    display: block;
  }
}

.mask-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 222;
}

.fullscreen-menu {
  background: rgba(0, 0, 0, 0.9);
  transition: all 0.3s ease-in-out;
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 50px 0 30px;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
}

.page-popup-open .fullscreen-menu {
  opacity: 1;
  visibility: visible;
}

.header-position .fullscreen-menu {
  top: 32px;
}

@media (max-width: 780px) {
  .header-position .fullscreen-menu {
    top: 46px;
  }
}

.fullscreen-menu .close-menu {
  display: block;
  left: auto;
  right: 40px;
  top: 40px;
  color: #fff;
  background: transparent;
  font-size: 25px;
  padding: 0;
  cursor: pointer;
}

.fullscreen-menu .canvas-menu-wrapper {
  display: table;
  width: 100%;
  height: 75vh;
  text-align: center;
}

.fullscreen-menu .menu {
  padding: 0;
  margin: 0;
  display: table-cell;
  vertical-align: middle;
}

.fullscreen-menu .menu>li>a {
  text-transform: capitalize;
  font-size: 36px;
  line-height: 1.8;
  color: #fff;
  font-weight: 600;
  display: inline-block;
  padding: 5px 0;
  position: relative;
}

.page-popup-open .fullscreen-menu .menu li:nth-child(1) {
  animation: fadeInUp 0.4s both 0.4s;
}

.page-popup-open .fullscreen-menu .menu li:nth-child(2) {
  animation: fadeInUp 0.5s both 0.5s;
}

.page-popup-open .fullscreen-menu .menu li:nth-child(3) {
  animation: fadeInUp 0.6s both 0.6s;
}

.page-popup-open .fullscreen-menu .menu li:nth-child(4) {
  animation: fadeInUp 0.7s both 0.7s;
}

.page-popup-open .fullscreen-menu .menu li:nth-child(5) {
  animation: fadeInUp 0.8s both 0.8s;
}

.page-popup-open .fullscreen-menu .menu li:nth-child(6) {
  animation: fadeInUp 0.9s both 0.9s;
}

.page-popup-open .fullscreen-menu .menu li:nth-child(7) {
  animation: fadeInUp 1.1s both 1.1s;
}

.page-popup-open .fullscreen-menu .menu li:nth-child(8) {
  animation: fadeInUp 1.2s both 1.2s;
}

.page-popup-open .fullscreen-menu .menu li:nth-child(9) {
  animation: fadeInUp 1.3s both 1.3s;
}

.page-popup-open .fullscreen-menu .menu li:nth-child(10) {
  animation: fadeInUp 1.4s both 1.4s;
}

.fullscreen-menu .menu li.has-submenu>a {
  position: relative;
  display: inline-block;
}

.fullscreen-menu .menu li.has-submenu>a:after {
  content: "\e61a";
  font-family: 'themify';
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  font-size: 14px;
}

.fullscreen-menu .menu li.has-submenu>a.active:after {
  content: "\e622";
}

.fullscreen-menu .menu li .sub-menu {
  display: none;
  padding: 0;
  margin: 0;
}

.fullscreen-menu .menu li .sub-menu li a {
  font-size: 20px;
  font-weight: 600;
  line-height: 2.3;
}

.fullscreen-menu .menu li .sub-menu li li a {
  font-weight: 400;
  font-size: 18px;
}

.fullscreen-menu .menu li a {
  display: block;
  color: #fff;
}

.fullscreen-menu .menu li a:hover,
.fullscreen-menu .menu li a.active {
  color: #ff7070;
}

.menu-footer {
  text-align: center;
  height: 120px;
  margin-top: 30px;
}

.menu-footer h5 {
  font-style: 24px;
  font-weight: 600;
  color: #fff;
  font-family: "Futura", sans-serif;
}

.menu-footer .footer-social-link {
  animation: fadeInUp 1s both 1s;
  margin-top: 20px;
}

.menu-footer .footer-social-link a {
  color: #B6B3C1;
  font-size: 16px;
  display: inline-block;
}

.menu-footer .footer-social-link a:hover {
  color: #ff7070;
}

.menu-footer .footer-social-link a .ti-facebook {
  color: #31428b;
  margin-left: 0;
}

.menu-footer .footer-social-link a .ti-twitter-alt {
  color: #35a2ff;
}

.menu-footer .footer-social-link a .ti-dribbble {
  color: #f82196;
}

.menu-footer .footer-social-link a .ti-pinterest {
  color: #e60023;
}

.off_canvus_item {
  position: fixed;
  background-color: #fff;
  width: 550px;
  height: 100%;
  z-index: 99;
  top: 0;
  right: 0;
  padding: 30px 40px;
  transition: 0.5s;
  right: -550px;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  text-align: center;
}

.off_canvus_item.left_align {
  left: -550px;
  right: auto;
}

.off_canvus_item.left_align.active {
  left: 0;
  right: auto;
  overflow-y: auto;
}

.off_canvus_item .close_icon i {
  color: #051441;
}

@media (max-width: 767.98px) {
  .off_canvus_item {
    width: 300px;
    right: -300px;
  }
}

@media (min-width: 768px) {
  .off_canvus_item .canvus_menu_iner {
    min-width: 250px;
  }
}

@media (max-width: 767.98px) {
  .off_canvus_item .canvus_menu_iner {
    min-width: 200px;
  }
}

.off_canvus_item .canvas_menu_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  left: 0;
  z-index: 33;
}

.off_canvus_item .menu_btm_section {
  text-align: center;
  margin-top: 50px;
}

.off_canvus_item .menu_btm_section h5 {
  color: #051441;
}

.off_canvus_item .menu_btm_section .social_icon {
  float: none;
}

.off_canvus_item .canvus_item_warp .main_logo {
  display: block;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.off_canvus_item .canvus_item_warp .main_logo img {
  height: 52px;
}

.off_canvus_item .canvus_item_warp h2 {
  font-size: 36px;
  margin-top: 30px;
}

@media (max-width: 991px) {
  .off_canvus_item .canvus_item_warp h2 {
    font-size: 25px;
    margin-top: 20px;
  }
}

.off_canvus_item .canvus_item_warp .cu_btn {
  margin-top: 50px;
}

@media (max-width: 991px) {
  .off_canvus_item .canvus_item_warp .cu_btn {
    margin-top: 30px;
  }
}

.off_canvus_item.active {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.off_canvus_item.active .canvus_item_warp h2 {
  animation: fadeInUp .3s both .5s;
}

.off_canvus_item.active .canvus_item_warp .cu_btn {
  animation: fadeInUp .5s both .7s;
}

.off_canvus_item.active .menu_btm_section h5 {
  animation: fadeInUp .7s both .8s;
}

.off_canvus_item.active .menu_btm_section .social_icon a:nth-child(1) {
  animation: fadeInUp 0.8s both .8s;
}

.off_canvus_item.active .menu_btm_section .social_icon a:nth-child(2) {
  animation: fadeInUp 0.9s both .9s;
}

.off_canvus_item.active .menu_btm_section .social_icon a:nth-child(3) {
  animation: fadeInUp 1s both 1s;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 1em;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
  margin-bottom: 10px;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.alignright.size-full {
  margin-bottom: 60px;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Content
--------------------------------------------------------------*/
.content-area {
  padding: 120px 0;
  min-height: 35vh;
}

@media (max-width: 991px) {
  .content-area {
    padding: 80px 0;
  }
}

.blog-archive-wrapper {
  padding: 120px 0;
}

@media (max-width: 991px) {
  .blog-archive-wrapper {
    padding: 80px 0;
  }
}

.sidebar_left {
  flex-direction: row-reverse;
}

.page_404_wrapper .banner_404_text {
  max-width: 500px;
  margin: 0 auto 40px;
}

.page_404_wrapper .search_result_form {
  max-width: 400px;
  margin: 0 auto 30px;
}

/*--------------------------------------------------------------
## Page Header
--------------------------------------------------------------*/
.page-header {
  background: #f0f2f9;
  text-align: center;
  height: 500px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .page-header {
    height: 350px !important;
  }
}

@media (max-width: 768px) {
  .page-header {
    height: 350px !important;
  }
}

.page-header .overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
  z-index: 2;
}

.page-header .page-header_wrapper {
  position: relative;
  z-index: 22;
}

.page-header .page-header_title {
  font-family: "Futura", sans-serif;
  font-size: 86px;
  font-weight: 500;
  position: relative;
  z-index: 2;
  line-height: 1.2;
  margin: 0 auto 0;
}

.single-portfolio .page-header .page-header_title {
  color: #fff !important;
}

@media (max-width: 991px) {
  .page-header .page-header_title {
    font-size: 35px !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .page-header .page-header_title {
    font-size: 48px !important;
  }
}

@media (max-width: 991px) {
  .page-header .page-header_title {
    max-width: 520px;
  }
}

.page-header .breadcrumbs {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 2;
  margin-top: 13px;
}

@media (max-width: 991px) {
  .page-header .breadcrumbs {
    margin-top: 0;
  }
}

.single-portfolio .page-header .breadcrumbs {
  color: #fff !important;
}

.page-header .breadcrumbs .separator {
  display: inline-block;
  margin: 0 5px;
  font-size: 18px;
}

.page-header .breadcrumbs a {
  color: inherit;
  font-size: inherit;
}

.single-portfolio .page-header .breadcrumbs a {
  color: #fff !important;
}

.page-header .header-image {
  position: absolute;
  max-width: 260px;
  right: 0;
  bottom: -102px;
}

@media (max-width: 768px) {
  .page-header .header-image {
    display: none;
  }
}

.page-header.blog-single-header .page-title {
  font-size: 48px;
  max-width: 100%;
  margin-bottom: 25px;
}

.menu-transparent~.page-header .page-header_wrapper {
  margin-top: 63px;
}

.portfolio-details-banner {
  height: 500px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.portfolio-details-banner:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
}

.portfolio-details-banner .page-title-wrapper {
  position: relative;
  z-index: 2;
}

.portfolio-details-banner .page-title-wrapper .portfolio-cat {
  background-color: #37a45d;
  border: 1px solid #37a45d;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  min-width: 120px;
  height: 30px;
  line-height: 30px;
  padding: 0 5px;
  border-radius: 5px;
  display: inline-block;
}

.portfolio-details-banner .page-title-wrapper .page-title {
  font-size: 72px;
  color: #fff;
  margin-top: 7px;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .portfolio-details-banner .page-title-wrapper .page-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .portfolio-details-banner .page-title-wrapper .page-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-banner {
    height: 350px;
  }

  .page-banner .page-title {
    font-size: 35px;
  }
}

/*--------------------------------------------------------------
## Middle Area
--------------------------------------------------------------*/
#header-middle-area>div {
  padding-top: 25px;
  padding-bottom: 25px;
}

@media (max-width: 991.98px) {
  #header-middle-area>div {
    padding: 10px 0;
  }

  #header-middle-area #middle-logo {
    margin-bottom: 15px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
## Sideber Content
--------------------------------------------------------------*/
.sidebar_left .col-lg-4 {
  order: 1;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget:not(:last-child) {
  margin-bottom: 56px;
}

.widget .widget-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 28px;
}

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

.widget ul li {
  position: relative;
  margin-bottom: 8px;
}

.widget ul li a {
  font-size: 18px;
  color: #7d7d7d;
  display: flex;
  justify-content: space-between;
}

.widget ul li a .post_count {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #eee;
  height: 30px;
  width: 30px;
  line-height: 30px;
  font-size: 14px;
  text-align: center;
  border-radius: 5px;
}

.widget ul li a:hover {
  color: #ff7070;
}

.sidebar-widget-area .widget ul li:last-child a {
  border-bottom: 0;
}

.widget-area .widget:last-child {
  margin-bottom: 0;
}

.widget_recent_entries ul,
.widget_recent_comments ul,
.widget_archive ul,
.widget_categories ul,
.widget_meta ul,
.widget_product_categories ul,
.widget_rss ul,
.widget_pages ul,
.widget_nav_menu ul {
  margin: 0;
  padding: 0;
}

.widget_recent_entries li,
.widget_recent_comments li,
.widget_archive li,
.widget_categories li,
.widget_meta li,
.widget_product_categories li,
.widget_rss li,
.widget_pages li,
.widget_nav_menu li {
  transition: all 0.3s ease-in-out;
  display: block;
  margin: 0;
  list-style-type: none;
  position: relative;
}

.widget_recent_entries li:last-child,
.widget_recent_comments li:last-child,
.widget_archive li:last-child,
.widget_categories li:last-child,
.widget_meta li:last-child,
.widget_product_categories li:last-child,
.widget_rss li:last-child,
.widget_pages li:last-child,
.widget_nav_menu li:last-child {
  border-bottom: 0;
}

.widget_recent_entries li .children,
.widget_recent_comments li .children,
.widget_archive li .children,
.widget_categories li .children,
.widget_meta li .children,
.widget_product_categories li .children,
.widget_rss li .children,
.widget_pages li .children,
.widget_nav_menu li .children {
  margin-top: 5px;
  padding-left: 20px;
}

.widget_recent_entries li:last-child,
.widget_recent_comments li:last-child,
.widget_archive li:last-child,
.widget_categories li:last-child,
.widget_meta li:last-child,
.widget_product_categories li:last-child,
.widget_rss li:last-child,
.widget_pages li:last-child,
.widget_nav_menu li:last-child {
  margin-bottom: 0;
}

.widget_recent_entries li:hover .post-count,
.widget_recent_comments li:hover .post-count,
.widget_archive li:hover .post-count,
.widget_categories li:hover .post-count,
.widget_meta li:hover .post-count,
.widget_product_categories li:hover .post-count,
.widget_rss li:hover .post-count,
.widget_pages li:hover .post-count,
.widget_nav_menu li:hover .post-count {
  color: #ff7070;
}

.widget_recent_entries a,
.widget_recent_comments a,
.widget_archive a,
.widget_categories a,
.widget_meta a,
.widget_product_categories a,
.widget_rss a,
.widget_pages a,
.widget_nav_menu a {
  display: block;
  font-size: inherit;
  font-family: inherit;
}

.widget_recent_entries a:hover,
.widget_recent_comments a:hover,
.widget_archive a:hover,
.widget_categories a:hover,
.widget_meta a:hover,
.widget_product_categories a:hover,
.widget_rss a:hover,
.widget_pages a:hover,
.widget_nav_menu a:hover {
  color: #ff7070;
}

.widget_recent_comments ul {
  margin-top: 10px;
}

.widget_rss ul li {
  padding-left: 0;
  margin-bottom: 25px;
}

.widget_rss ul li:before {
  display: none;
}

.widget_rss ul li .rsswidget {
  font-weight: 600;
  color: #051441;
  line-height: 1.4;
}

.widget_rss ul li .rssSummary {
  color: #051441;
  line-height: 1.4;
}

.widget_rss ul li .rss-date {
  margin-bottom: 5px;
  display: block;
  color: #bbb;
}

.widget_rss ul li cite {
  font-weight: 500;
  margin-top: 6px;
  display: inline-block;
}

.widget_rss a {
  border-bottom: 0 !important;
  display: inline-block;
}

.post-count {
  margin-left: 20px;
}

.widget_pages .sub-menu,
.widget_nav_menu .sub-menu {
  margin-top: 7px;
}

.widget_pages .sub-menu>li,
.widget_nav_menu .sub-menu>li {
  border-bottom: 0;
}

.widget_pages .sub-menu>li .sub-menu,
.widget_nav_menu .sub-menu>li .sub-menu {
  padding-left: 15px;
}

.widget_pages .sub-menu>li .sub-menu>li>a,
.widget_nav_menu .sub-menu>li .sub-menu>li>a {
  padding-left: 5px;
}

.widget_pages .sub-menu>li .sub-menu>li>a,
.widget_nav_menu .sub-menu>li .sub-menu>li>a {
  padding: 0;
}

.widget_categories li,
.widget_product_categories li {
  margin: 0;
  padding: 0;
  position: relative;
}

.widget_categories a,
.widget_product_categories a {
  display: block;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.widget_recent_comments .recentcomments {
  padding-left: 35px;
  position: relative;
  margin-bottom: 20px;
  word-break: break-word;
  display: inline-block;
  border-top: 0 !important;
  width: 100%;
}

.widget_recent_comments .recentcomments a {
  line-height: 30px;
  border-bottom: 0 !important;
  padding-left: 0 !important;
}

.widget_recent_comments .recentcomments a:before {
  display: none;
}

.widget_recent_comments .recentcomments:before {
  position: absolute;
  top: 4px;
  left: 0;
  content: "\e645";
  font-family: 'themify';
  color: #465675;
  font-size: 20px;
}

.widget_recent_comments .recentcomments:last-child {
  margin-bottom: 0;
}

.widget_recent_comments .recentcomments a {
  display: inline-block;
}

.widget_recent_entries .post-date {
  display: block;
  font-size: 14px;
}

.widget_calendar td,
.widget_calendar th {
  padding: 10px 0;
  text-align: center;
  min-width: auto;
}

.widget_calendar td#today {
  background: #ff7070;
  color: #fff;
  border-radius: 3px;
}

.widget_calendar td#today a {
  color: #fff;
}

@media (max-width: 991.98px) {
  .page-content .widget {
    margin: 0 0 52px;
  }
}

@media (max-width: 767.98px) {
  .page-content .widget {
    margin: 0 0 32px;
  }

  .page-sidebar {
    margin-bottom: 50px;
  }

  .page-sidebar .page-sidebar-inner .page-sidebar-content {
    padding-right: 30px;
    border: 1px solid #eee;
  }

  .page-sidebar .page-sidebar-inner .page-sidebar-content:after {
    display: none;
  }

  .single-post .page-main-content {
    padding-bottom: 20px;
  }
}

.tagcloud a {
  font-size: inherit !important;
  display: inline-block;
  line-height: 1.7;
  background: #f8fcff;
}

.tagcloud a:hover {
  color: #ff7070;
}

.tagcloud .tagcloud {
  margin-top: 20px;
}

/* Recent Post */
.dt-recent-posts {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.dt-recent-posts .recent-posts-image_wrapper {
  width: 85px;
  margin-right: 20px;
  border-radius: 4px;
  overflow: hidden;
}

.dt-recent-posts .recent-posts-image_wrapper img {
  border-radius: 4px;
}

.dt-recent-posts .recent-posts-content_wrapper {
  flex: 1;
}

.dt-recent-posts .post_title {
  font-weight: 600;
  margin-bottom: 2px;
}

.dt-recent-posts .post_title a {
  color: #051441;
  font-size: 20px;
  line-height: 1.2;
}

.dt-recent-posts .post_title a:hover {
  color: #ff7070;
}

.dt-recent-posts .meta-wrapper span {
  color: #7d7d7d;
  font-size: 18px;
}

.about-widget_wrapper {
  max-width: 260px;
}

.about-widget_wrapper .about-widget_logo {
  margin-bottom: 35px;
}

.about-widget_wrapper .about-widget_logo a {
  display: block;
  max-width: 150px;
}

.about-widget_wrapper .about-widget_logo a img {
  height: 52px;
}

.logo_52 img {
  height: 52px !important;
}

/* Tags */
.tagcloud {
  color: #2b2350;
  display: inline-block;
  margin-right: 15px;
  font-size: 20px;
  font-weight: 500;
}

.tagcloud a {
  background-color: #f0f2f9;
  border: 1px solid #f0f2f9;
  color: #7d7d7d;
  border-radius: 50px;
  font-weight: 400;
  font-size: 16px !important;
  text-transform: capitalize;
  margin: 0 7px 10px 0;
  padding: 11px 20px;
  line-height: 1;
}

.tagcloud a:hover {
  background: #ff7070;
  border-color: #ff7070;
  color: #fff;
  position: relative;
  z-index: 2;
}

.newsletter-form-two.widget-newsletter {
  width: 100%;
  margin-top: 15px;
  display: inline-block;
}

.newsletter-form-two.widget-newsletter .newsletter-inner {
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
}

.newsletter-form-two.widget-newsletter .newsletter-inner input {
  color: #051441;
  height: 60px;
  padding: 10px 10px 10px 20px;
  border: 0;
  font-size: 14px;
  margin: 0;
  flex: 1;
}

.newsletter-form-two.widget-newsletter .newsletter-inner input::placeholder {
  color: #c5c5c5;
  font-weight: 300;
}

.newsletter-form-two.widget-newsletter .newsletter-inner input:focus {
  background: transparent;
}

.newsletter-form-two.widget-newsletter .newsletter-inner .newsletter-submit {
  height: 60px;
  box-shadow: none;
  outline: 0;
  background: #ff7070;
  width: 115px;
  text-align: center;
  padding: 0;
  font-size: 14px;
  display: block;
  color: #fff;
  border-radius: 0;
  border: 0;
}

.newsletter-form-two.widget-newsletter .newsletter-inner .newsletter-submit:hover {
  background: #ff5757;
}

.widget.department-sidebar {
  border: 2px solid #ecf4fd;
}

.widget.department-sidebar .widget-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  padding: 15px 30px 13px;
  color: #fff;
  background: #ff7070;
  margin-bottom: 0;
}

.widget.department-sidebar ul li a {
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  padding: 15px 30px 13px;
  border-bottom: 2px solid #ecf4fd;
  color: #051441;
  margin: 0;
}

.widget.department-sidebar ul li a:hover {
  color: #ff7070;
}

.site-footer .widget-title {
  font-size: 20px;
  margin-bottom: 38px;
  text-transform: capitalize;
  color: #051441;
  font-weight: 500;
}

.site-footer .widget ul li {
  color: #7d7d7d;
}

.site-footer .widget ul li a {
  display: block;
  color: #7d7d7d;
  font-size: 18px;
}

.site-footer .widget ul li a:hover {
  color: #ff7070;
}

.site-footer .widget ul.menu li:not(:last-child) {
  margin-bottom: 23px;
}

.site-footer .widget ul.menu li .sub-menu {
  padding-left: 15px;
}

.site-footer .widget ul.menu li .sub-menu li:not(:last-child) {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .site-footer .widget {
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .site-footer .footer-wrapper {
    padding: 80px 0 40px !important;
  }
}

@media (max-width: 768px) {
  .niro_widget {
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .sidebar-container {
    padding-left: 15px !important;
  }

  .sidebar {
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.blog-list .post.sticky {
  display: block;
  border-color: #ff7070;
}

.blog-list .post.sticky .blog-content .entry-title a {
  color: #ff7070;
}

.updated:not(.published) {
  display: none;
}

.no-results .page-content {
  padding: 50px 0 120px;
  text-align: left;
}

@media (max-width: 991px) {
  .no-results .page-content {
    padding: 50px 0 80px;
  }
}

.page-content,
.entry-content,
.entry-summary {
  word-break: break-word;
}

.page-content:after,
.entry-content:after,
.entry-summary:after {
  content: '';
  clear: both;
  display: block;
}

.page-header .page-title {
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 50px;
}

.page-content {
  padding: 120px 0;
}

.page-template-default .page-content {
  padding: 114px 0 97px;
}

.page-template-default .page-content .comments-area {
  padding: 34px 0 23px;
}

.page-template-default .page-content .page-links {
  margin-bottom: 20px;
}

.blog-post-archive {
  padding: 120px 0;
}

.search-no-results .page-content .page-content {
  padding: 20px 0 0;
}

.post-author {
  font-weight: 600;
  color: #051441;
  display: block;
}

.post-author img {
  border-radius: 50% !important;
  margin-right: 5px;
}

.post-author:hover {
  color: #7052fb;
}

.post-wrapper .blog-post-list,
.blog-posts .blog-post-list {
  margin-bottom: 50px;
}

.post-wrapper.blog-masonry {
  width: calc(100% + 30px);
}

.post-wrapper.blog-masonry .post-item {
  width: calc(50% - 30px);
  margin-right: 30px;
  margin-bottom: 50px;
}

.post-wrapper.blog-masonry.column-3 .post-item {
  width: calc(33.33% - 30px);
}

.post-wrapper .post-item {
  margin-bottom: 60px;
}

.post-grid {
  margin-bottom: 47px;
}

.post-grid .post-thumbnail,
.post-grid .post-image {
  border-radius: 4px;
  background-color: #9cc2f7;
  overflow: hidden;
  display: block;
}

.post-grid .post-thumbnail img,
.post-grid .post-image img {
  transition: all 0.4s ease-in-out;
}

.post-grid .blog-content {
  padding-top: 11px;
  position: relative;
}

.post-grid .blog-content .has-background-dim .wp-block-cover-text {
  color: #fff;
}

.post-grid .blog-content .post-meta-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.post-grid .blog-content .post-meta-wrapper .post-cat a {
  padding: 3px 20px;
  background: #ecf4fd;
  color: #051441;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 5px;
}

.post-grid .blog-content .post-meta-wrapper .post-cat a:hover {
  color: #fff;
  background: #ff7070;
}

.post-grid .blog-content .entry-title {
  margin: 10px 0 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.post-grid .blog-content .entry-title a {
  color: #465675;
}

.post-grid .blog-content .entry-title a:hover {
  color: #ff7070;
}

.post-grid .blog-content .blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-grid .blog-content .post-meta li:not(:last-child):after {
  top: 50%;
}

.post-grid:hover img {
  transform: scale(1.07);
}

.post-grid.style-two {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.post-grid.style-two .post-thumbnail,
.post-grid.style-two .feature-image,
.post-grid.style-two .feature-image img,
.post-grid.style-two .post-image {
  border-radius: 0;
}

.post-grid.style-two .entry-meta a,
.post-grid.style-two .post-categories a {
  font-weight: 500;
}

.post-grid.style-two .blog-content {
  padding: 20px 30px 30px;
}

.post-grid.post-single .blog-content {
  padding: 0;
}

.post-meta {
  margin: 0;
  padding: 5px 0 0;
  line-height: 1;
}

.post-meta li {
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #7d7d7d;
}

.post-meta li i {
  margin-right: 8px;
}

.post-meta li:not(:last-child) {
  margin-right: 15px;
}

@media (max-width: 480px) {
  .post-meta li:not(:last-child) {
    margin-bottom: 15px;
  }
}

.post-meta li.author a {
  color: #50658e;
}

.post-meta li.author a:hover {
  color: #ff7070;
}

.post-meta li a {
  color: #7d7d7d;
}

.post-meta li a:hover {
  color: #ff7070;
}

.post-categories {
  margin: 0;
  padding: 0;
  list-style: none;
}

.post-categories li {
  display: inline-block;
  position: relative;
}

.post-categories li:not(:last-child) a:after {
  content: '/';
  position: absolute;
  right: -15px;
  top: 0;
}

.entry-meta a,
.post-categories a {
  color: #ff7070;
  font-size: 12px;
  display: inline-block;
  text-transform: uppercase;
  margin-right: 20px;
  position: relative;
  line-height: 1.2;
  font-weight: 400;
}

.entry-meta a:not(:last-child):after,
.post-categories a:not(:last-child):after {
  content: '/';
  position: absolute;
  right: -15px;
  top: 0;
}

/** Blog List */
.blog-post-list {
  width: 100%;
}

.blog-post-list .post-thumbnail {
  margin-bottom: 28px;
  display: block;
  border-radius: 6px;
  overflow: hidden;
}

.blog-post-list .post-thumbnail img {
  border-radius: 6px;
}

.blog-post-list .entry-header {
  margin-bottom: 12px;
}

.blog-post-list .entry-content .entry-title {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 13px;
}

.blog-post-list .entry-content .entry-title a {
  color: #051441;
}

.blog-post-list .entry-content .entry-title a:hover {
  color: #ff7070;
}

.blog-post-list .entry-content p {
  margin-bottom: 11px;
  font-size: 18px;
  margin-bottom: 24px;
}

.blog-post-list.sticky .post-thumbnail {
  margin-bottom: 0;
}

.blog-post-list.sticky .blog-content {
  background: #f9f9f9;
  padding: 20px 30px;
}

.blog-post-list.sticky .entry-content .entry-title a {
  color: #ff7070;
}

.blog-post-list.sticky .entry-content .entry-title a:hover {
  color: #ff7070;
}

.blog-post-list .blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-post-list .blog-footer .read-more {
  position: relative;
  padding-right: 27px;
  color: #051441;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
}

.blog-post-list .blog-footer .read-more i {
  position: absolute;
  right: 0;
  top: 1px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #051441;
}

.blog-post-list .blog-footer .read-more:hover {
  color: #ff7070;
}

.blog-post-list .blog-footer .read-more:hover i {
  transform: translateX(5px);
  color: #ff7070;
}

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

.blog-post-list .post-meta-wrapper .post-meta {
  color: #7d7d7d;
  font-size: 14px;
  line-height: 1;
}

.blog-post-list .post-meta-wrapper .post-meta i {
  display: inline-block;
  vertical-align: -2px;
  font-size: 16px;
  line-height: 1;
  color: #3e3f6d;
}

.blog-post-list .post-meta-wrapper .post-meta a {
  color: #7d7d7d;
  display: inline-block;
  margin-bottom: 5px;
}

.blog-post-list .post-meta-wrapper .post-meta a:hover {
  color: #ff7070;
}

.post-meta-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.post-meta-list li {
  display: inline-block;
  margin-right: 20px;
  font-size: 16px;
  color: #7d7d7d;
  font-weight: 400;
}

.post-meta-list li i {
  margin-right: 10px;
  color: #5c6f96;
  font-size: 14px;
}

.post-meta-list li a {
  color: #7d7d7d;
  font-weight: 400;
  font-size: 16px;
}

.post-meta-list li a:hover {
  color: #ff7070;
}

.share_social-wpapper {
  display: flex;
  padding: 20px 0 0;
  align-items: center;
}

.share_social-wpapper .share-text {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #051441;
}

.social-share-link {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.social-share-link li a {
  background-color: transparent;
  display: inline-block;
  font-size: 14px;
  margin-left: 10px;
  color: #848ca5;
}

.social-share-link li a:hover {
  color: #ff7070;
}

.tag_list {
  margin-top: 30px;
}

.tag_list .tags {
  color: #051441;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 10px;
}

.tag_list .tagcloud a {
  padding: 12px 20px;
}

blockquote {
  background-color: white;
  box-shadow: 0px 10px 30px 0px rgba(20, 3, 67, 0.08);
  padding: 62px 40px 42px;
  position: relative;
  margin: 54px 0 52px;
}

blockquote p {
  font-size: 20px;
  color: #051441;
  font-style: italic;
  margin-bottom: 0;
  line-height: 34px;
}

blockquote cite {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  color: #051441;
  padding-top: 10px;
  display: block;
}

blockquote:before {
  content: '';
  position: absolute;
  left: 40px;
  top: 25px;
  background-image: url(../images/quote.png);
  width: 27px;
  height: 23px;
  z-index: 1;
  background-repeat: no-repeat;
}

blockquote:after {
  content: '';
  position: absolute;
  background-image: url(../images/quote_2.png);
  width: 104px;
  height: 62px;
  z-index: 1;
  right: 40px;
  bottom: 0;
  background-repeat: no-repeat;
}

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

.single-post .page-content {
  padding: 0;
}

.blog .page-content {
  padding: 120px 0;
}

.post-grid .feature-image {
  overflow: hidden;
  border-radius: 4px;
}

.post-grid .feature-image img {
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
}

.post-single {
  margin-bottom: 0;
}

.post-single .feature-image {
  margin-bottom: 54px;
}

.post-single .entry-content .entry-title {
  font-size: 28px;
  font-weight: 600;
  margin: 16px 0 25px;
}

.post-single .entry-content .wp-block-image {
  margin-top: 30px;
}

.post-single .entry-content h3 {
  font-weight: 700;
}

.post-single .entry-content blockquote p {
  font-size: 20px;
  margin: 0;
}

.post-single .wp-block-image {
  text-align: center;
}

.post-single .wp-block-image {
  margin-bottom: 39px;
}

.post-single .edit-link {
  margin-left: 15px;
}

.post-single.single-layout-one .single-post-header {
  margin-bottom: 50px;
}

.post-single.single-layout-one .single-post-header .single-post-title {
  font-size: 36px;
  margin-bottom: 25px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.post-single.single-layout-one .post-meta-cat {
  margin-bottom: 20px;
}

.post-single.single-layout-one .post-meta-cat a {
  height: 30px;
  line-height: 30px;
  padding: 0 30px;
  font-size: 18px;
  text-transform: capitalize;
  color: #fff;
  border-radius: 5px;
  background-color: #37a45d;
  min-width: auto;
  font-weight: 400;
  margin: 0 5px;
  border: 0px solid transparent;
  display: inline-block;
}

.post-single.single-layout-one .post-meta-cat a:first-child {
  background-color: #e9683e;
}

.post-single.single-layout-one .feature-image {
  text-align: center;
}

.post-single.single-layout-one .entry-content {
  max-width: 730px;
  margin: 0 auto;
}

.post-single.single-layout-one .entry-footer {
  margin-top: 60px;
}

.single_type-2 #comments {
  margin-top: 50px;
}

.single_type-2 .comment-form input[type="text"],
.single_type-2 .comment-form textarea {
  border-color: rgba(5, 20, 65, 0.2);
}

.single_type-2 .comment-respond .comment-reply-title,
.single_type-2 .comment-respond .comment-notes,
.single_type-2 .comment-respond .logged-in-as {
  text-align: left;
}

.single_type-3 {
  margin-top: -200px;
}

.single_type-3 .post-single .post-meta-wrapper {
  margin-bottom: 18px;
}

.single_type-3 .post-single .feature-image {
  margin-bottom: 44px;
}

.single_type-3 .post-single .entry-content blockquote {
  box-shadow: none;
  padding: 40px 50px 0;
  text-align: center;
}

.single_type-3 .post-single .entry-content blockquote:before {
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.single_type-3 .post-single .entry-content blockquote:after {
  display: none;
}

.single_type-3 .post-single .entry-content blockquote p {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 500;
}

.single_type-3 .post-single .entry-content blockquote p em {
  font-style: normal;
}

.single-three .comment-list-wrapper {
  max-width: 100%;
}

.single-three .comment-wrapper {
  max-width: 100%;
}

.feature-image-banner {
  height: 500px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .feature-image-banner {
    height: 380px;
  }
}

.feature-image-banner::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.feature-image-banner .single-post-header {
  position: relative;
  z-index: 2;
}

.feature-image-banner .single-post-header .single-post-title {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.3;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .feature-image-banner .single-post-header .single-post-title {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .feature-image-banner .single-post-header .single-post-title {
    font-size: 30px;
  }
}

.feature-image-banner .single-post-header .post-meta {
  margin-top: 24px;
}

.feature-image-banner .single-post-header .post-meta li,
.feature-image-banner .single-post-header .post-meta a {
  color: #fff;
}

.feature-image-banner .single-post-header .post-meta a:hover {
  color: #ff7070;
}

.single_type-2 .blog-content-area {
  padding-top: 0;
}

.blog-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.blog-share .share-title p {
  color: #2b2350;
  display: inline-block;
  margin: 0;
  font-weight: 500;
  font-size: 20px;
}

.share-link {
  margin: 0;
  padding: 0;
  list-style: none;
}

.share-link li {
  display: inline-block;
  margin-right: 5px;
  padding-left: 0 !important;
}

.share-link li:before {
  display: none;
}

.share-link li:last-child {
  margin-right: 0;
}

.share-link li a {
  display: block;
  height: 44px;
  width: 44px;
  text-align: center;
  line-height: 43px;
  color: #aba8a4;
  border-radius: 50%;
  font-size: 14px;
  border: 1px solid #e5dada;
}

.share-link li a:hover {
  background: #ff7070;
  color: #fff;
  border-color: #ff7070;
}

@media (max-width: 991px) {
  .post-wrapper.blog-masonry.column-3 .post-item {
    width: calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .post-wrapper.blog-masonry.column-3 .post-item {
    width: 100%;
    margin-right: 0;
  }

  .comment-list .comment .comment-body.menu-comments .comment-author {
    height: 60px;
    width: 60px;
    margin-right: 15px;
  }

  .comment-list .comment .comment-body .comment-author {
    height: 60px;
    width: 60px;
    margin-right: 15px;
  }

  .comment-list .comment .comment-body .comment-content {
    padding-bottom: 20px;
  }

  .comment-list .comment .comment-body .comment-content h4 {
    font-size: 18px;
  }

  .comment-list .comment .comment-body .comment-content p {
    font-size: 16px;
    line-height: 26px;
  }

  .comment-list .children {
    padding-left: 70px;
  }

  .comment-respond .comment-reply-title {
    font-size: 35px;
    margin-bottom: 30px;
  }
}

@media (max-width: 420px) {
  .comment-list .comment .comment-body .comment-content .ratings {
    position: static;
  }
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
  padding-top: 20px;
}

.page-links a,
.page-links .current {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: #f8f6f2;
  color: #051441;
  display: inline-block;
  text-align: center;
  line-height: 31px;
  font-size: 16px;
  margin-left: 5px;
}

.page-links a:hover,
.page-links .current:hover {
  background: #ff7070;
  color: #fff;
}

.page-links .current {
  background: #ff7070;
  color: #fff;
}

.post-navigation {
  margin-bottom: 50px;
}

.post-navigation .nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  position: relative;
  width: calc(100% + 2%);
}

.post-navigation .nav-links .nav-previous,
.post-navigation .nav-links .nav-next {
  width: calc(50% - 2%);
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  background: #333;
  margin-right: 2%;
  flex: 1;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.post-navigation .nav-links .nav-previous a,
.post-navigation .nav-links .nav-next a {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  display: block;
  outline: 0;
}

.post-navigation .nav-links .nav-previous a:hover,
.post-navigation .nav-links .nav-next a:hover {
  color: #fff;
}

.post-navigation .nav-links .nav-previous:hover,
.post-navigation .nav-links .nav-next:hover {
  background: #ff7070;
}

.post-navigation .nav-links .nav-previous {
  padding-right: 30px;
}

.post-navigation .nav-links .nav-next {
  padding-left: 30px;
}

.first-lg {
  -webkit-order: -1;
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1;
}

/* Author Box */
.fiana_post_author_box {
  background: #faf8f5;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
  border-radius: 6px;
  max-width: 670px;
}

.fiana_post_author_box .profile_image {
  width: 80px;
  margin-right: 20px;
  border-radius: 50%;
}

.fiana_post_author_box .profile_image img {
  border-radius: 50%;
}

.fiana_post_author_box .profile_content {
  flex: 1;
}

.fiana_post_author_box .profile_content .profile_name {
  font-size: 20px;
  line-height: 28px;
  color: #051441;
  margin-bottom: 10px;
  margin-top: 0;
  font-weight: 600;
}

.fiana_post_author_box .profile_content .author-job {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 15px;
  display: inline-block;
}

.fiana_post_author_box .profile_content .profile_bio p {
  font-size: 16px;
  color: #827f79;
  margin-bottom: 0;
  font-weight: 500;
}

.fiana_post_author_box .user-social-link {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fiana_post_author_box .user-social-link li {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
}

.post-share {
  display: inline-block;
  flex: 1;
}

.share-trigger .share-items {
  float: right;
}

.share-trigger .share-items a {
  height: 35px;
  width: 35px;
  display: inline-block;
  background: #f5f5f5;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  margin-right: 5px;
  color: #fff;
}

.share-trigger .share-items a.facebook-bg {
  background: #3b5998;
}

.share-trigger .share-items a.facebook-bg:hover {
  background: #263961;
}

.share-trigger .share-items a.twitter-bg {
  background: #3cf;
}

.share-trigger .share-items a.twitter-bg:hover {
  background: #00ace6;
}

.share-trigger .share-items a.google-plus-bg {
  background: #dc4a38;
}

.share-trigger .share-items a.google-plus-bg:hover {
  background: #aa2d1e;
}

.share-trigger .share-items a.linkedin-bg {
  background: #0077B5;
}

.share-trigger .share-items a.linkedin-bg:hover {
  background: #004569;
}

@media (max-width: 991px) {
  .blog-container {
    padding: 80px 0;
  }

  #secondary {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .blog-container {
    padding: 50px 0;
  }
}

.search-header {
  margin-bottom: 30px;
}

.search_page_404_wrapper {
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
}

.search_page_404_wrapper .page-title {
  margin-bottom: 14px;
}

.search_page_404_wrapper .banner_404_text {
  margin-bottom: 30px;
}

.search_result_form .search-form {
  display: flex;
  border: 1px solid rgba(5, 20, 65, 0.2);
  margin-bottom: 20px;
}

.search_result_form .search-form input {
  border: none;
  border-radius: 0;
  padding: 20px;
  margin: 0;
}

.search_result_form .search-form .search-submit {
  border: 0;
  background: transparent;
  padding: 15px 20px;
}

.no-results .page-content {
  padding: 0 0 120px;
}

@media (max-width: 991px) {
  .no-results .page-content {
    padding: 0 0 80px;
  }
}

.pagination-wrapper~.sidebar {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
## Pagination
--------------------------------------------------------------*/
.pagination-wrapper {
  margin-top: 30px;
}

#post-pagination .page-numbers {
  margin: 0;
  padding: 0;
  list-style: none;
}

#post-pagination .page-numbers li {
  display: inline-block;
}

#post-pagination .page-numbers li a,
#post-pagination .page-numbers li span {
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  border: 1px solid #e7e7f6;
  text-align: center;
  color: #7b8a9e;
  font-size: 18px;
  border-radius: 50px;
  margin-right: 10px;
}

#post-pagination .page-numbers li a:hover,
#post-pagination .page-numbers li a .current,
#post-pagination .page-numbers li span:hover,
#post-pagination .page-numbers li span .current {
  background: #ff7070;
  border-color: #ff7070;
  color: #fff;
}

#post-pagination .page-numbers li a:hover a,
#post-pagination .page-numbers li a .current a,
#post-pagination .page-numbers li span:hover a,
#post-pagination .page-numbers li span .current a {
  color: #fff;
}

#post-pagination .page-numbers li a.current,
#post-pagination .page-numbers li span.current {
  background: #ff7070;
  color: #fff;
  border-color: #ff7070;
}

#post-pagination .page-numbers li i {
  font-size: 20px;
}

#post-pagination .page-numbers li.next {
  line-height: 54px;
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 30px;
}

.woocommerce nav.woocommerce-pagination .page-numbers {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
  text-align: center;
}

.woocommerce nav.woocommerce-pagination .page-numbers li {
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  font-size: 16px;
  margin-right: 10px !important;
  text-align: center;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  border: 1px solid #e7e7f6;
  border-radius: 50%;
}

.woocommerce nav.woocommerce-pagination .page-numbers li a,
.woocommerce nav.woocommerce-pagination .page-numbers li span {
  display: block;
  line-height: 50px;
  font-size: 16px;
}

.woocommerce nav.woocommerce-pagination .page-numbers li a i,
.woocommerce nav.woocommerce-pagination .page-numbers li span i {
  font-size: 18px;
}

.woocommerce nav.woocommerce-pagination .page-numbers li a.current,
.woocommerce nav.woocommerce-pagination .page-numbers li a:hover,
.woocommerce nav.woocommerce-pagination .page-numbers li span.current,
.woocommerce nav.woocommerce-pagination .page-numbers li span:hover {
  background: #ff7070;
  border-color: #ff7070;
}

.woocommerce nav.woocommerce-pagination .page-numbers li i {
  font-size: 14px;
}

.woocommerce nav.woocommerce-pagination .page-numbers li svg {
  height: 20px;
  width: 20px;
  transition: all 0.3s ease-in-out;
}

.woocommerce nav.woocommerce-pagination .page-numbers li.next,
.woocommerce nav.woocommerce-pagination .page-numbers li.prev {
  line-height: 45px;
}

.woocommerce nav.woocommerce-pagination .page-numbers li a.prev,
.woocommerce nav.woocommerce-pagination .page-numbers li a.next {
  line-height: 45px;
}

.woocommerce nav.woocommerce-pagination .page-numbers li a.prev:hover svg path,
.woocommerce nav.woocommerce-pagination .page-numbers li a.next:hover svg path {
  fill: #fff !important;
}

.woocommerce nav.woocommerce-pagination .page-numbers li:hover,
.woocommerce nav.woocommerce-pagination .page-numbers li .current {
  background: #ff7070;
  color: #fff;
}

.woocommerce nav.woocommerce-pagination .page-numbers li:hover a,
.woocommerce nav.woocommerce-pagination .page-numbers li .current a {
  color: #fff;
}

.woocommerce nav.woocommerce-pagination .page-numbers li.current {
  background: #ff7070;
  color: #fff;
}

.woocommerce .pprefix-post-navigation {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  align-items: center;
  padding: 20px;
  border: 1px solid #eee;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper,
.woocommerce .pprefix-post-navigation .next-link_wrapper {
  width: 50%;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper a,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper a,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper a,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper a .next_title,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper a .prev_title,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper a .next_title,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper a .prev_title,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper a .next_title,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper a .prev_title,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper a .next_title,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper a .prev_title {
  font-size: 16px;
  font-weight: 600;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper a .date_post,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper a .date_post,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper a .date_post,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper a .date_post {
  font-size: 14px;
  font-weight: 500;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .meta-wrapper,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .meta-wrapper,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .meta-wrapper,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .meta-wrapper {
  display: block;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_exist,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .image_exist,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .image_exist,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_exist {
  display: block;
  width: 100px;
  position: relative;
  overflow: hidden;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_exist i,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .image_exist i,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .image_exist i,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_exist i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_exist:before,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .image_exist:before,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .image_exist:before,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_exist:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 112, 112, 0.8);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_exist:hover:before,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .image_exist:hover:before,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .image_exist:hover:before,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_exist:hover:before {
  opacity: 1;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_exist:hover i,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .image_exist:hover i,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .image_exist:hover i,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_exist:hover i {
  opacity: 1;
  visibility: visible;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .prev-link-info_wrapper,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .next-link-info_wrapper,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .prev-link-info_wrapper,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .next-link-info_wrapper,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .prev-link-info_wrapper,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .next-link-info_wrapper,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .prev-link-info_wrapper,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .next-link-info_wrapper {
  flex: 2;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_prev {
  margin-right: 20px;
}

.woocommerce .pprefix-post-navigation .next-link_wrapper {
  width: 50%;
}

.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper {
  justify-content: flex-end;
  text-align: right;
}

.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_next {
  margin-left: 20px;
}

.woocommerce .gp-slider-nav-wrapper {
  position: absolute;
  width: 100%;
  height: 50px;
  z-index: 22;
  top: 50%;
  transform: translateY(-50%);
}

.woocommerce .gp-slider-nav-wrapper .gp-slider-prev,
.woocommerce .gp-slider-nav-wrapper .gp-slider-next {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  background: #fff;
  color: #ff7070;
  cursor: pointer;
  outline: 0;
  border-radius: 50%;
}

.woocommerce .gp-slider-nav-wrapper .gp-slider-next {
  position: absolute;
  right: 0;
}

.woocommerce .format-gallery .gp-slider-nav-wrapper {
  position: absolute;
  width: 100%;
  height: 50px;
  z-index: 22;
  top: 50%;
  transform: translateY(-50%);
}

.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-prev,
.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-next {
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: left;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-prev {
  left: -80px;
  text-align: right;
}

.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-prev i {
  margin-right: 20px;
}

.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-next {
  right: -80px;
  text-align: left;
}

.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-next i {
  margin-left: 20px;
}

.woocommerce .format-gallery:hover .gp-slider-prev,
.woocommerce .format-gallery:hover .gp-slider-next {
  opacity: 1;
  visibility: visible;
}

.woocommerce .format-gallery:hover .gp-slider-prev {
  left: -40px;
  text-align: right;
}

.woocommerce .format-gallery:hover .gp-slider-next {
  right: -40px;
}

/*--------------------------------------------------------------
## Search Form
--------------------------------------------------------------*/
.widget_search .search-form {
  border-radius: 4px;
  position: relative;
}

.widget_search .search-form label {
  margin: 0;
  width: 100%;
}

.widget_search .search-form input {
  padding: 17px 30px;
  background-color: #f3f4f9;
  border-radius: 6px;
  border: 1px solid #f3f4f9;
  width: 100%;
  color: #7d7d7d;
  height: 60px;
  margin: 0;
}

.widget_search .search-form input::placeholder {
  color: #7d7d7d;
}

.widget_search .search-form input:focus {
  border-color: transparent;
}

.widget_search .search-form .search-submit {
  background: transparent;
  border: 0;
  padding: 0;
  position: absolute;
  font-size: 18px;
  outline: 0;
  right: 30px;
  top: 18px;
  color: #7d7d7d;
}

#search-menu-wrapper {
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease, visibility .7s ease;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
}

#search-menu-wrapper .close-search {
  color: #fff;
  z-index: 9999999;
  opacity: 5;
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 40px;
  cursor: pointer;
}

#search-menu-wrapper .overlay-bg {
  transition: -webkit-filter 0.2s;
  transition: filter 0.2s;
  transition: filter 0.2s, -webkit-filter 0.2s;
  -webkit-filter: blur(4px);
  filter: blur(4px);
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#search-menu-wrapper.toggled {
  opacity: 1;
  visibility: visible;
}

#search-menu-wrapper .wrapper {
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#search-menu-wrapper .search-form {
  width: 100%;
}

#search-menu-wrapper .search-form input {
  border-radius: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.7);
  height: 80px;
  color: #fff;
  font-size: 30px;
}

#search-menu-wrapper .search-form button i {
  color: #fff;
  transition: all 0.3s ease-in-out;
}

#search-menu-wrapper .search-form button i:hover {
  color: #ff7070;
}

.sea-wrapper .search-form {
  display: flex;
  align-items: center;
}

.sea-wrapper .search-form label {
  margin: 0;
  width: 100%;
}

.sea-wrapper .search-form input {
  margin: 0;
}

.sea-wrapper .search-form .search-submit {
  background: #ff7070;
  color: #fff;
  border: 0;
  height: 54px;
  border-radius: 4px;
  margin-left: 20px;
}

.sea-wrapper .search-form .search-submit:hover {
  background: #004ce5;
  color: #fff;
}

/*--------------------------------------------------------------
## Author Box
--------------------------------------------------------------*/
.author-info_wrapper {
  border-radius: 4px;
  padding: 30px 25px;
  margin-top: 75px;
  background: #f7f9fe;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .author-info_wrapper {
    padding: 20px 15px;
  }
}

.author-info_avatar {
  margin-right: 20px;
  width: 120px;
}

@media (max-width: 480px) {
  .author-info_avatar {
    width: 80px;
  }
}

.author-info_avatar img {
  border-radius: 50%;
}

.author-info_content {
  flex: 2;
}

.author-info_name {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 15px;
}

.author-info_name span {
  margin-right: 7px;
  font-size: 14px;
  display: block;
}

.author-info_description {
  color: #535a69;
}

.author-info_description p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0;
}

.author-info_social-wrapper {
  line-height: 1;
  margin-top: 19px;
}

.author-info_wrapper .title_soc_share {
  font-size: 14px;
  font-weight: bold;
  margin-right: 20px;
}

.author-info_social-link {
  display: inline-block;
  margin-right: 13px;
  color: #bfc1c2;
  font-size: 14px;
}

.author-info_social-wrapper a {
  color: #333333;
}

.author-info_social-wrapper a:hover {
  color: #ff7070;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comments-section {
  padding: 80px 0;
}

.comment-wrapper {
  max-width: 730px;
  margin: 0 auto;
}

.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

#comments .comments-title {
  font-size: 30px;
  margin-bottom: 63px;
}

.comments-area .comment-inner {
  margin-bottom: 50px;
}

.comments-area .reply-title {
  font-size: 24px;
  font-weight: 600;
  color: #051441;
  margin-bottom: 30px;
}

.comments-area .no-comments {
  margin: 0;
  line-height: 11px;
}

.comment-list-wrapper {
  max-width: 730px;
  margin: 0 auto;
  padding-top: 60px;
  border-top: 1px solid #e8ebf4;
}

.page .comment-list-wrapper {
  margin-top: 40px;
}

.page .comment-respond .comment-reply-title,
.page .comment-respond .comment-notes,
.page .comment-respond .logged-in-as {
  text-align: left;
}

.page .comment-list {
  margin-bottom: 0;
}

.page .comment-respond {
  margin-top: 60px;
}

.page .comment-form input[type="text"],
.page .comment-form textarea {
  border: 1px solid rgba(5, 20, 65, 0.2);
}

.page .comment-list .comment .comment-body .comment_info .meta-wrapper {
  color: #bbb;
}

.comments-section .comment-list-wrapper {
  padding-top: 0;
  border: 0;
}

.comment-list {
  padding: 0;
  list-style: none;
  overflow: auto;
  margin-bottom: 60px;
}

.comment-list>li {
  margin-bottom: 40px;
}

.comment-list>li:not(:last-child) {
  border-bottom: 1px solid #e8ebf4;
}

.comment-list .comment-body {
  margin-bottom: 30px;
}

.comment-list .comment .comment-body {
  overflow: auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 23px;
}

.comment-list .comment .comment-body .comment-avatar {
  margin-right: 25px;
  border-radius: 50%;
  height: 75px;
  width: 75px;
}

.comment-list .comment .comment-body .comment-avatar img {
  border-radius: 50%;
}

.comment-list .comment .comment-body .comment_content {
  margin-top: 7px;
}

.comment-list .comment .comment-body .comment_info {
  position: relative;
  overflow: auto;
  flex: 2;
}

.comment-list .comment .comment-body .comment_info .comment_author_says {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: #051441;
}

.comment-list .comment .comment-body .comment_info .meta-wrapper {
  display: block;
  font-weight: 400;
}

.comment-list .comment .comment-body .comment_info .comment-reply-wrapper {
  position: absolute;
  right: 0;
  top: 0;
}

.comment-list .comment .comment-body .comment_info p img {
  margin: 15px 0 5px;
}

.comment-list .comment .comment-body .comment-reply-link {
  color: #051441;
  font-weight: 500;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 1;
}

.comment-list .comment .comment-body .comment-reply-link i {
  font-size: 14px;
  margin-left: 5px;
}

.comment-list .comment .comment-body .comment-reply-link:hover {
  color: #ff7070;
}

.comment-list .comment .children {
  margin: 0;
  padding-left: 100px;
  list-style: none;
}

.comment-list .comment .children .comment-avatar {
  height: 60px;
  width: 60px;
}

.comment-list .comment .children .comment .comment-body .comment-reply-link {
  margin-left: 80px;
}

#comments .comment-list .comment-respond {
  margin: 20px 0;
  max-width: 100%;
}

#comments .comment-list .comment-respond #cancel-comment-reply-link {
  font-size: 16px;
  color: #ff7070;
}

.children .comment-respond {
  margin-left: 80px !important;
}

.comment-respond .comment-reply-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 20px;
  text-align: center;
}

.comment-respond .comment-notes,
.comment-respond .logged-in-as {
  margin-bottom: 40px;
  text-align: center;
}

.comment-form .comment-form-author,
.comment-form .comment-form-email {
  width: 50%;
  float: left;
  margin-bottom: 0;
}

.comment-form .comment-form-author {
  padding-right: 15px;
}

.comment-form .comment-form-email {
  padding-left: 15px;
}

.comment-form input[type="text"],
.comment-form textarea {
  padding: 13px 20px;
  border: 1px solid #f7f7f7;
  background-color: #fff;
  border-radius: 0;
  color: #7d7d7d;
  font-size: 18px;
  height: auto;
  background-clip: border-box;
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
}

.comment-form input[type="text"]::placeholder,
.comment-form textarea::placeholder {
  color: #75757d;
}

.comment-form input[type="text"]:focus,
.comment-form textarea:focus {
  border-color: rgba(255, 112, 112, 0.5);
}

.comment-form textarea {
  height: 140px;
  margin-bottom: 20px;
}

.comment-form #submit {
  margin-bottom: 0;
  background-color: #ff7070;
  color: #fff;
  border: 1px solid transparent;
  padding: 15px 41px;
  width: 100%;
  text-align: center;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
}

.comment-form #submit:hover {
  color: #ff7070;
  border-color: #ff7070;
  background: transparent;
}

.comment-form .comment-form-cookies-consent {
  margin-bottom: 20px;
  font-size: 18px;
  color: #797986;
  position: relative;
}

.comment-form .comment-form-cookies-consent:after {
  content: '';
  display: block;
  clear: both;
}

.comment-form .comment-form-cookies-consent #wp-comment-cookies-consent {
  width: auto;
  height: auto;
}

.comment-form .comment-form-cookies-consent label {
  cursor: pointer;
  display: inline;
  line-height: 1.25em;
  vertical-align: top;
  clear: both;
  padding-left: 1px;
}

.comment-form .comment-form-cookies-consent label:not(:empty) {
  padding-left: 0.75em;
}

.comment-form .comment-form-cookies-consent label:before,
.comment-form .comment-form-cookies-consent label:after {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
}

.comment-form .comment-form-cookies-consent label:before {
  width: 16px;
  height: 16px;
  border: 1px solid #ff7070;
  cursor: pointer;
  transition: background .3s;
}

.comment-form .comment-form-cookies-consent input[type="checkbox"] {
  outline: 0;
  visibility: hidden;
  width: 1.25em;
  margin: 0;
  display: block;
  float: left;
  font-size: inherit;
}

.comment-form .comment-form-cookies-consent input[type="checkbox"]:checked+label:before {
  background: #ff7070;
  border: none;
}

.comment-form .comment-form-cookies-consent input[type="checkbox"]:checked+label:after {
  transform: translate(0.17em, 0.25em) rotate(-45deg);
  width: 0.60em;
  height: 0.25em;
  border: 0.125em solid #fff;
  border-top-style: none;
  border-right-style: none;
}

@media (max-width: 991px) {
  .comment-list .comment .children {
    padding-left: 50px;
  }
}

@media (max-width: 576px) {
  .comment-list .comment .comment-body .comment-avatar {
    width: 55px;
    height: 55px;
  }

  .comment-list .comment .children {
    padding-left: 20px;
  }

  .comment-list .comment .children .comment .comment-body .comment-avatar {
    width: 40px;
    height: 40px;
  }
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

iframe {
  border-width: 0px;
}

.entry-content iframe {
  max-height: 500px;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

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

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

.blog-content .gallery {
  padding: 0;
  margin: 0;
}

/*--------------------------------------------------------------
## Block
--------------------------------------------------------------*/
.wp-block-button .wp-block-button__link {
  background: #051441;
  border-radius: 5px;
  margin-bottom: 10px;
  color: #fff;
}

.wp-block-button .wp-block-button__link:hover {
  background: #ff7070;
  color: #fff;
}

.wp-block-button .wp-block-button__link br {
  display: none;
}

.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: #051441;
  border-color: #051441;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
  border-color: #ff7070;
  color: #ff7070;
}

.wp-block-button.is-style-squared .wp-block-button__link {
  border-radius: 0;
}

.wp-block-cover .wp-block-cover-text {
  padding: 30px;
}

.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
  padding-left: 0;
}

.wp-block-gallery .blocks-gallery-image:before,
.wp-block-gallery .blocks-gallery-item:before {
  display: none;
}

.wp-block-cover p:not(.has-text-color) {
  color: #fff !important;
}

.wp-block-quote.is-large,
.wp-block-quote.is-style-large {
  background-color: transparent;
}

.wp-block-quote.is-large p,
.wp-block-quote.is-style-large p {
  font-size: 1.6em;
  font-weight: 300;
}

.wp-block-quote.is-large:before,
.wp-block-quote.is-large:after,
.wp-block-quote.is-style-large:before,
.wp-block-quote.is-style-large:after {
  display: none;
}

.wp-block-pullquote {
  border-top: 4px solid #F3F3F3;
  border-bottom: 4px solid #F3F3F3;
  color: #40464d;
}

.entry .entry-content .wp-block-pullquote.is-style-solid-color {
  background-color: #0073aa;
  padding-left: 0;
  padding-right: 0;
}

.entry .entry-content .wp-block-pullquote {
  border-color: transparent;
  border-width: 2px;
  padding: 1rem;
}

.entry .entry-content .wp-block-pullquote blockquote {
  background-color: transparent;
}

.entry .entry-content .wp-block-pullquote blockquote:before,
.entry .entry-content .wp-block-pullquote blockquote:after {
  display: none;
}

.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote {
  max-width: 100%;
  color: #fff;
  padding-left: 0;
  margin-left: 1rem;
  margin-right: 1rem;
}

.entry .entry-content .wp-block-pullquote blockquote {
  color: #111;
  border: none;
  margin-top: calc(4 * 1rem);
  margin-bottom: calc(4.33 * 1rem);
  margin-right: 0;
  padding-left: 0;
}

.entry .entry-content .wp-block-pullquote.is-style-solid-color p {
  font-size: 1.6875em;
  line-height: 1.3;
  margin-bottom: .5em;
  margin-top: .5em;
}

.entry .entry-content .wp-block-pullquote p {
  font-size: 1.6875em;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: .5em;
  margin-top: .5em;
}

.entry .entry-content .wp-block-archives li,
.entry .entry-content .wp-block-categories li,
.entry .entry-content .wp-block-latest-posts li {
  margin-bottom: 7px;
  padding-left: 15px;
  position: relative;
}

.entry .entry-content .wp-block-archives li time,
.entry .entry-content .wp-block-categories li time,
.entry .entry-content .wp-block-latest-posts li time {
  line-height: 1;
}

.entry .entry-content .wp-block-archives li:before,
.entry .entry-content .wp-block-categories li:before,
.entry .entry-content .wp-block-latest-posts li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #7d92bb;
}

.entry .entry-content .wp-block-archives li a,
.entry .entry-content .wp-block-categories li a,
.entry .entry-content .wp-block-latest-posts li a {
  font-size: 16px;
  color: #465675;
}

.entry .entry-content .wp-block-archives li a:hover,
.entry .entry-content .wp-block-categories li a:hover,
.entry .entry-content .wp-block-latest-posts li a:hover {
  color: #ff7070;
}

.entry .entry-content .wp-block-archives li .children,
.entry .entry-content .wp-block-categories li .children,
.entry .entry-content .wp-block-latest-posts li .children {
  padding-left: 30px;
}

.entry .entry-content .wp-block-categories-list .children li {
  padding-left: 0;
}

.entry .entry-content .wp-block-categories-list .children li:before {
  display: none;
}

.wp-block-latest-posts.wp-block-latest-posts__list,
.wp-block-latest-comments {
  padding-left: 0;
}

.wp-block-media-text.alignfull.has-media-on-the-right.has-background.is-stacked-on-mobile {
  margin-bottom: 15px;
}

pre.wp-block-preformatted {
  margin-top: 20px;
}

.post_format-post-format-quote blockquote {
  margin-top: 0;
}

.wp-block-archives,
.wp-block-categories-list {
  padding: 0;
  list-style: none;
}

.wp-block-archives-dropdown select {
  height: 50px;
  width: 100%;
  padding: 7px 10px;
  margin-bottom: 20px;
}

.wp-block-latest-comments__comment {
  font-size: 20px;
}

.wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta a {
  color: #051441;
  font-weight: 600;
}

.wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta a:hover {
  color: #ff7070;
}

.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  max-width: 100px;
}

.entry .entry-content .wp-block-separator,
.entry .entry-content hr {
  background-color: #767676;
  border: 0;
  height: 2px;
  margin-bottom: 2rem;
  margin-top: 2rem;
  max-width: 2.25em;
  text-align: left;
  margin-left: 0;
}

.wp-block-calendar .wp-calendar-nav {
  margin-bottom: 20px;
}

.wp-block-categories-dropdown .postform {
  margin-bottom: 20px;
}

.wp-block-search .wp-block-search__button {
  padding: 0 20px;
  height: 54px;
  border: 0;
  background: #ff7070;
  border-radius: 3px;
  color: #fff;
  font-weight: 500;
}

.wp-block-search .wp-block-search__button:hover {
  background: #051441;
}

.wp-block-gallery.is-cropped .blocks-gallery-caption:last-child,
.wp-block-gallery.is-cropped {
  margin-bottom: 1rem;
}

@media only screen and (min-width: 768px) {
  .entry .entry-content .wp-block-pullquote.is-style-solid-color {
    padding-left: 10%;
    padding-right: 10%;
  }

  .entry .entry-content .wp-block-pullquote.is-style-solid-color p {
    font-size: 2.22em;
    color: #fff;
  }

  .entry .entry-content .wp-block-pullquote p {
    font-size: 2.25em;
  }

  .entry .entry-content .wp-block-separator.is-style-wide,
  .entry .entry-content hr.is-style-wide {
    max-width: calc(8 * (100vw / 12) - 28px);
  }

  .entry .entry-content .wp-block-separator.is-style-dots,
  .entry .entry-content hr.is-style-dots {
    max-width: calc(8 * (100vw / 12) - 28px);
  }
}

@media only screen and (min-width: 1168px) {

  .entry .entry-content .wp-block-separator.is-style-wide,
  .entry .entry-content hr.is-style-wide {
    max-width: calc(6 * (100vw / 12) - 28px);
  }

  .entry .entry-content .wp-block-separator.is-style-dots,
  .entry .entry-content hr.is-style-dots {
    max-width: calc(6 * (100vw / 12) - 28px);
  }
}

.entry .entry-content .wp-block-separator.is-style-dots,
.entry .entry-content hr.is-style-dots {
  max-width: 100%;
  background-color: inherit;
  border: inherit;
  height: inherit;
  text-align: center;
}

.entry .entry-content .wp-block-separator.is-style-dots:before,
.entry .entry-content hr.is-style-dots:before {
  color: #767676;
  font-size: 1.6875em;
  letter-spacing: .88889em;
  padding-left: .88889em;
}

.wp-block-separator.is-style-dots:before {
  content: "\00b7 \00b7 \00b7";
  color: #191e23;
  font-size: 20px;
  letter-spacing: 2em;
  padding-left: 2em;
  font-family: serif;
}

.wp-block-table.is-style-stripes {
  border-collapse: collapse;
}

.wp-block-table.is-style-stripes td {
  border-color: #F3F3F3;
  border-bottom-width: 1px;
}

.wp-block-table.is-style-stripes td:not(:first-child) {
  border-left-width: 1px;
}

.wp-block-table.is-style-stripes tr {
  border-top: 1px solid #F3F3F3;
}

.wp-block-table.is-style-stripes tr:last-child td {
  border-bottom-width: 1px;
}