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


/* ADDED */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
/* ADDED */

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

:root {
  --theme-color: #485b86;
  --theme-color-rgb: rgb(56, 104, 146);
  --secondary-color: #dcb06b;
  --theme-color-2: #1a1a18;
  --white-color: #fff;
  --bg-color: #F5F5F5;
  --image-filter: grayscale(100%);
  --image-filter-hover: grayscale(0);
  --transition: all 0.3s ease-in-out;
  scroll-behavior: smooth;
}

::selection {
  color: #fff;
  background-color: var(--secondary-color);
}

.container {
  max-width: 1250px;
}

body {
  font-family: "Inter", sans-serif;
  color: #232323;
  background-color: #fff;
  font-size: 14px;
  font-size: calc-rem-value(16);
  overflow-x: hidden;
  overscroll-behavior: none;
  counter-reset: courseNumber;
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

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

p {
  font-size: 14px;
  line-height: 22px;
  text-align: justify;
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #021936;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
}

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

li{
    font-family: "Inter", sans-serif;
    font-size: 14px;
}

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

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.section-fluid {
  padding: 120px 65px;
}

@media (max-width: 991px) {
  .section-fluid {
    padding: 90px 30px;
  }
}

@media (max-width: 575px) {
  .section-fluid {
    padding: 80px 0px;
  }
}

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

.hidden {
  display: none;
}

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

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

@media (max-width: 991px) {
  .page-wrapper {
    overflow: hidden;
  }
}

.wow {
  visibility: hidden;
}

.fi:before {
  margin: 0;
}

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

.separator-padding {
  padding: 120px 0;
}

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

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

@media (max-width: 575px) {
  .separator-padding {
    padding: 60px 0;
  }
}

.pt-120 {
  padding-top: 120px;
}

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

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

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

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


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

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

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

/*** contact form error handling ***/
.contact-activation .error-handling-messages {
  width: 100% !important;
  margin-top: 15px !important;
}

.contact-activation label.error {
  color: red;
  font-size: 13px;
  font-weight: normal;
  margin: 5px 0 0 0;
  text-align: left;
  display: block;
  margin-bottom: 10px;
}

.contact-activation #c-loader,
.contact-activation #loader {
  display: none;
  margin-top: 10px;
}

.contact-activation #c-loader i,
.contact-activation #loader i {
  font-size: 30px;
  font-size: calc-rem-value(30);
  color: var(--theme-color);
  display: inline-block;
  -webkit-animation: rotating linear 2s infinite;
  animation: rotating linear 2s infinite;
}

.contact-activation #success,
.contact-activation #c-success,
.contact-activation #c-error,
.contact-activation #error {
  width: 100%;
  color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  text-align: center;
  display: none;
}

@media (max-width: 767px) {

  .contact-activation #success,
  .contact-activation #c-success,
  .contact-activation #c-error,
  .contact-activation #error {
    font-size: 15px;
  }
}

.contact-activation #c-success,
.contact-activation #success {
  background-color: #009a00;
  border-left: 5px solid green;
  margin-bottom: 5px;
}

.contact-activation #c-error,
.contact-activation #error {
  background-color: #ff1a1a;
  border-left: 5px solid red;
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rotating {
  -webkit-animation: rotating 5s alternate infinite;
  animation: rotating 5s alternate infinite;
}

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

@media (max-width: 991px) {
  .back-btn {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

.back-btn:hover {
  background-color: var(--theme-color);
}

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

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

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

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

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

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

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

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

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

.sticky {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s ease;
  animation: smoothScroll 1s forwards;
  box-shadow: 0 -5px 15px rgba(8, 106, 216, 0.2901960784);
  z-index: 999;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-142px);
  }

  100% {
    transform: translateY(0px);
  }
}

.header-style-2 .sticky {
  background: #141414 !important
}

@media (max-width: 991px) {
  .header-style-1 .sticky {
    padding: 15px;
    background: #1F212D;
  }
}

@media (max-width: 575px) {
  .header-style-1 .sticky {
    padding: 15px 0;
  }
}

.header-style-1 .sticky .mean-container .mean-nav {
  margin-top: 15px;
}

@media (max-width: 991px) {
  .header-style-3 .sticky {
    padding: 15px;
  }
}

@media (max-width: 575px) {
  .header-style-3 .sticky {
    padding: 15px 0;
  }
}

.heading-title,
.heading-title-s2,
.heading-title-s3 {
  margin-bottom: 60px;
}

@media (max-width: 991px) {

  .heading-title,
  .heading-title-s2,
  .heading-title-s3 {
    text-align: center;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {

  .heading-title,
  .heading-title-s2,
  .heading-title-s3 {
    margin-bottom: 40px;
    text-align: center;
  }
}

@media (max-width: 575px) {

  .heading-title,
  .heading-title-s2,
  .heading-title-s3 {
    margin-bottom: 20px;
    text-align: center;
  }
}

.heading-title small,
.heading-title-s2 small,
.heading-title-s3 small {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  display: inline-block;
  font-family: "Cormorant";
  padding-bottom: 10px;
  margin-bottom: 15px;
  position: relative;
  color: var(--theme-color);
}

.heading-title small:before,
.heading-title-s2 small:before,
.heading-title-s3 small:before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 63px;
  background: var(--theme-color);
  content: "";
}

@media (max-width: 991px) {

  .heading-title small:before,
  .heading-title-s2 small:before,
  .heading-title-s3 small:before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.heading-title small:after,
.heading-title-s2 small:after,
.heading-title-s3 small:after {
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 8px;
  width: 8px;
  background: #fff;
  content: "";
  border: 1px solid var(--theme-color);
  border-radius: 50%;
}

@media (max-width: 991px) {

  .heading-title small:after,
  .heading-title-s2 small:after,
  .heading-title-s3 small:after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.heading-title h2,
.heading-title-s2 h2,
.heading-title-s3 h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 58px;
}

.heading-title h2 span,
.heading-title-s2 h2 span,
.heading-title-s3 h2 span {
  color: var(--theme-color);
}

@media (max-width: 1399px) {

  .heading-title h2,
  .heading-title-s2 h2,
  .heading-title-s3 h2 {
    font-size: 45px;
  }
}

@media (max-width: 1199px) {

  .heading-title h2,
  .heading-title-s2 h2,
  .heading-title-s3 h2 {
    font-size: 42px;
  }
}

@media (max-width: 991px) {

  .heading-title h2,
  .heading-title-s2 h2,
  .heading-title-s3 h2 {
    font-size: 42px;
    line-height: 48px;
  }
}

@media (max-width: 575px) {

  .heading-title h2,
  .heading-title-s2 h2,
  .heading-title-s3 h2 {
    font-size: 35px;
    margin-top: 0;
    line-height: 40px;
  }
}

.heading-title p,
.heading-title-s2 p,
.heading-title-s3 p {
  font-size: 18px;
}

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

.heading-title-s2 small {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  display: inline-block;
  font-family: "Cormorant";
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
  color: var(--theme-color);
}

.heading-title-s2 small:before {
  left: 50%;
  transform: translateX(-50%);
}

.heading-title-s2 small:after {
  left: 50%;
  transform: translateX(-50%);
}

.heading-title-s3 small:after {
  background: transparent;
}

.heading-title-s3 small:before {
  left: 8px;
}

@media (max-width: 991px) {
  .heading-title-s3 small:before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.heading-title-s3 h2 {
  color: #fff;
}

.btn-style-1,
.btn-style-2 {
  background: var(--theme-color);
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 29px;
  padding: 12px 35px;
  padding-right: 60px;
  border: 0;
  z-index: 1;
  border: 2px solid var(--theme-color);
  position: relative;
  overflow: hidden;
  transition: all 0.8s;
}

.btn-style-1:before,
.btn-style-2:before {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 10px;
  width: 10px;
  border-radius:15px;
  z-index: -1;
  content: "";
  border-radius: 0px;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s;
}

.btn-style-1:after,
.btn-style-2:after {
  position: absolute;
  right: 30px;
  top: 13px;
  content: "\e912";
  font-family: "icomoon" !important;
  transform: rotate(-45deg);
  transition: all 0.3s;
}

.btn-style-1.btn-style-1-s3,
.btn-style-2.btn-style-1-s3 {
  width: 100%;
  height: 100%;
  background: #fff;
  color: var(--theme-color);
}

.btn-style-1.btn-style-1-s3:after,
.btn-style-2.btn-style-1-s3:after {
  border: 1px solid #fff;
}

.btn-style-1.btn-style-1-s4,
.btn-style-2.btn-style-1-s4 {
  background: var(--theme-color);
  color: #fff;
}

.btn-style-1.btn-style-1-s4:after,
.btn-style-2.btn-style-1-s4:after {
  border: 1px solid var(--theme-color);
}

.btn-style-1:hover,
.btn-style-1:focus,
.btn-style-1:active,
.btn-style-2:hover,
.btn-style-2:focus,
.btn-style-2:active {
  color: var(--theme-color);
}

.btn-style-1:hover:before,
.btn-style-1:focus:before,
.btn-style-1:active:before,
.btn-style-2:hover:before,
.btn-style-2:focus:before,
.btn-style-2:active:before {
  width: 100%;
  height: 100%;
  left: 0%;
  right: auto;
}

.btn-style-1:hover:after,
.btn-style-1:focus:after,
.btn-style-1:active:after,
.btn-style-2:hover:after,
.btn-style-2:focus:after,
.btn-style-2:active:after {
  transform: rotate(0deg);
}

.btn-style-1:hover:after,
.btn-style-2:hover:after {
  opacity: 1;
}

@media (max-width: 991px) {

  .btn-style-1,
  .btn-style-2 {
    font-size: 18px;
    font-size: calc-rem-value(18);
  }
}

@media (max-width: 767px) {

  .btn-style-1,
  .btn-style-2 {
    padding: 10px 18px;
    padding-right: 40px;
    font-size: 14px;
  }

  .btn-style-1:after,
  .btn-style-2:after {
    right: 16px;
    top: 12px;
  }
}

.btn-style-2 {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-style-2:hover {
  color: #000;
}

.form input,
.form textarea,
.form select {
  border-color: #bfbfbf;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  color: #595959;
  font-style: normal;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--theme-color);
  -webkit-box-shadow: 0 0 5px 0 #f05455;
  -moz-box-shadow: 0 0 5px 0 #f05455;
  -o-box-shadow: 0 0 5px 0 #f05455;
  -ms-box-shadow: 0 0 5px 0 #f05455;
  box-shadow: 0 0 5px 0 #f05455;
}

.form ::-webkit-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form :-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form ::-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form :-ms-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form select {
  font-style: normal;
  background: url(../images/select-icon.png) no-repeat right center;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  cursor: pointer;
}

.form select::-ms-expand {
  /* for IE 11 */
  display: none;
}

.form ::-webkit-input-placeholder {
  /* Edge */
  font-style: normal;
}

.form :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-style: normal;
}

.form ::placeholder {
  font-style: normal;
}

.social-links {
  overflow: hidden;
}

.social-links li {
  float: left;
  width: 35px;
  height: 35px;
  margin-right: 1px;
}

.social-links li a {
  background-color: #f05455;
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  color: #fff;
  text-align: center;
}

.social-links li a:hover {
  background-color: var(--theme-color);
}

.header-search-form {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  transform: translateY(-100%);
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.header-search-form .close-header-search {
  position: absolute;
  right: 25px;
  left: auto;
  color: #ffffff;
  width: auto;
  height: auto;
  top: 25px;
  margin: 0px;
  border: none;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
}

.header-search-form .close-header-search i {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 20px;
}

.header-search-form form {
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: -35px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  background-color: transparent;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.header-search-form .form-group {
  position: relative;
  margin: 0px;
  overflow: hidden;
  border-radius: 40px;
}

.header-search-form .form-group input[type=text],
.header-search-form .form-group input[type=search] {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 50px;
  color: #000000;
  height: 70px;
  width: 100%;
  padding: 10px 30px;
  background: #ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 40px;
  border: 0;
}

.header-search-form .form-group input[type=text]:focus,
.header-search-form .form-group input[type=search]:focus {
  outline: none;
  border-color: var(--theme-color);
}

.header-search-form .form-group input[type=submit] {
  position: absolute;
  right: 30px;
  top: 0px;
  height: 70px;
  line-height: 70px;
  background: transparent;
  text-align: center;
  font-size: 24px;
  color: #000000;
  padding: 0;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.header-search-form .form-group input[type=submit]:hover,
.header-search-form .form-group button:hover {
  color: #000000;
}

.header-search-form .form-group .search-btn {
  width: 60px;
  height: 70px;
  background: var(--theme-color);
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  border: 0;
}

.header-search-form input::placeholder,
.header-search-form textarea::placeholder {
  color: #000000;
}

.header-search-form.active {
  transform: translateY(0%);
  margin-top: 0;
}

.header-search-form.active .close-header-search {
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.header-search-form.active form {
  transform: scaleX(1);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.page-title {
  background: #FDF9F6;
  min-height: 380px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
}

.page-title:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #1F212D 29.03%, rgba(31, 33, 45, 0) 100%);
  z-index: -1;
}

@media (max-width: 991px) {
  .page-title {
    min-height: 280px;
  }
}

@media (max-width: 575px) {
  .page-title {
    min-height: 180px;
  }
}

.page-title .breadcumb-wrap {
  padding-top: 150px;
  display: inline-block
}

@media (max-width: 991px) {
  .page-title .breadcumb-wrap {
    padding-top: 0;
  }
}

.page-title .breadcumb-wrap h2 {
    font-size: 35px;
    font-style: normal;
    font-weight: normal;
    line-height: 58px;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
  .page-title .breadcumb-wrap h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

.page-title .breadcumb-wrap ol {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
}

@media (max-width: 575px) {
  .page-title .breadcumb-wrap ol {
    justify-content: center;
  }
}

.page-title .breadcumb-wrap ol li {
  display: inline-block;
  padding: 0px 15px;
  color: #ffffff;
  position: relative;
  font-size: 13px;
}

.page-title .breadcumb-wrap ol li i {
  color: #a3a3a3;
  margin-right: 5px;
}

.page-title .breadcumb-wrap ol li:first-child {
  padding-left: 0;
}

@media (max-width: 767px) {
  .page-title .breadcumb-wrap ol li {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .page-title .breadcumb-wrap ol li {
    font-size: 16px;
    padding: 0 10px;
  }

  .page-title .breadcumb-wrap ol li:first-child {
    padding-left: 0;
  }
}

.page-title .breadcumb-wrap ol li:after {
  content: "/";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.page-title .breadcumb-wrap ol li:last-child span {
  color: #cbd4fd;
}

.page-title .breadcumb-wrap ol li:last-child:after {
  display: none;
}

.page-title .breadcumb-wrap ol li a {
  color: #a3a3a3;
  font-size: 13px;
  transition: all 0.3s;
}

.page-title .breadcumb-wrap ol li a:hover {
  color: var(--theme-color);
}

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

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

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

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

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

/**** pagination ****/
.pagination-wrapper {
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 991px) {
  .pagination-wrapper {
    text-align: left;
    margin-top: 40px;
  }
}

.pagination-wrapper .pg-pagination {
  display: inline-block;
  overflow: hidden;
  list-style-type: none;
  text-align: center;
}

.pagination-wrapper .pg-pagination li {
  float: left;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .pagination-wrapper .pg-pagination li {
    margin-right: 5px;
  }
}

.pagination-wrapper .pg-pagination li:last-child {
  margin-right: 0;
}

.pagination-wrapper .pg-pagination li a {
  background-color: transparent;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-size: calc-rem-value(16);
  font-weight: 600;
  color: #1F212D;
  background: #f9f7f6;
  display: block;
}

@media (max-width: 991px) {
  .pagination-wrapper .pg-pagination li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    font-size: calc-rem-value(15);
  }
}

.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: #fff;
}

.pagination-wrapper .pg-pagination .fi:before {
  font-size: 15px;
  font-size: calc-rem-value(15);
}

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

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

@media screen and (min-width: 1200px) {
  .pagination-wrapper-right {
    padding-right: 50px;
  }
}

@media (max-width: 991px) {
  .pagination-wrapper-right {
    margin-top: 45px;
    text-align: left;
  }
}

/*--------------------------------------------------------------
02. Header Style
--------------------------------------------------------------*/
/*-- 2.1 topbar --*/
.topbar {
  background: var(--theme-color);
}

@media (max-width: 575px) {
    
    .about-three .row{
        flex-direction:column-reverse;
    }
    .product__item__img__item img{height:auto !important;}
    .service-card2 .box-text,.product__item__img__item{max-width:100% !important}
  .topbar {
    padding: 10px 0;display:none;
  }
  .service-card2{
      margin-bottom:30px;
  }
}

@media (max-width: 991px) {
  .topbar .container-fluid {
    padding: 0;
  }
}

@media (max-width: 575px) {
  .topbar .container-fluid {
    padding: 0 15px;
  }
}

.topbar .contact-info ul {
  display: flex;
}

@media (max-width: 991px) {
  .topbar .contact-info ul {
    justify-content: center;
  }
}

.topbar .contact-info ul li {
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 29px;
  padding: 10px 0;
  color: #fff;
}

.topbar .contact-info.social {
  background: #fff;
  padding-left: 0px;
  margin-left: -20px;
  clip-path: polygon(0 0, 100% 0, 87% 100%, 0 100%);
}

@media (max-width: 991px) {
  .topbar .contact-info.social {
    clip-path: unset;
    margin: 0;
  }
}

@media (max-width: 575px) {
  .topbar .contact-info.social {
    background: none;
  }
}

.topbar .contact-info.social ul {
  justify-content: center;
}

.topbar .contact-info.social li {
  color: #fff;
}

@media (max-width: 575px) {
  .topbar .contact-info.social li {
    padding: 0;
  }
}

.topbar .contact-info.social li+li {
  margin-left: 15px;
}

.topbar .contact-info.social li a {
  color: #1F212D;
}

@media (max-width: 575px) {
  .topbar .contact-info.social li a {
    color: #fff;
  }
}

@media (max-width: 575px) {
  .topbar .contact-intro {
    text-align: center;
  }
}

.topbar .contact-intro ul {
  display: flex;
}

@media (max-width: 991px) {
  .topbar .contact-intro ul {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.topbar .contact-intro ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  color: #fff;
}

@media (max-width: 1399px) {
  .topbar .contact-intro ul li {
    font-size: 13px;
  }
}

@media (max-width: 1199px) {
  .topbar .contact-intro ul li {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .topbar .contact-intro ul li {
    font-size: 10px;
  }
}

@media (max-width: 575px) {
  .topbar .contact-intro ul li {
    padding-bottom: 0;
  }
}

.topbar .contact-intro ul li a {
  color: #fff;
}

.topbar .contact-intro ul li i {
  margin-right: 10px;
}

@media (max-width: 1199px) {
  .topbar .contact-intro ul li i {
    margin-right: 5px;
  }
}

.topbar .col:last-child {
  padding-right: 20px;
}

.topbar .col:last-child .contact-intro ul {
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .topbar .col:last-child .contact-intro ul {
    justify-content: center;
  }
}

.topbar .col:last-child .contact-intro ul li+li {
  margin-left: 20px;
}

.header-area {
  z-index: 99;
}

@media (max-width: 991px) {
  .header-area {
    padding: 15px 0;
  }
}

.header-area .main-menu .row {
  width: 100%;
}

.header-area ul.nav {
  list-style: none;
  justify-content: flex-start;
}

.header-area .main-menu>ul {
  display: flex;
  list-style: none;
}

@media screen and (min-width: 992px) {
  .header-area .main-menu #navbar li {
    position: relative;
  }

  .header-area .main-menu ul li.has-submenu {
    position: relative;
  }

  .header-area .main-menu ul>li>a {
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px;
    padding: 35px 40px;
    display: block;
    color: #1F212D;
    position: relative;
    text-transform: uppercase;
  }
}

@media screen and (min-width: 992px) and (max-width: 1650px) {
  .header-area .main-menu ul>li>a {
    padding: 35px 30px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1500px) {
  .header-area .main-menu ul>li>a {
    padding: 35px 20px;
  }
}

@media screen and (min-width: 992px) {

  .header-area .main-menu ul>li>a:hover,
  .header-area .main-menu ul>li>a.active {
    color: #fff;
  }

  .header-area .main-menu ul>li>a:hover:before,
  .header-area .main-menu ul>li>a.active:before {
    opacity: 1;
    visibility: visible;
  }

  .header-area .main-menu ul .sub-menu {
    background-color: #fff;
    box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
    width: 230px;
    position: absolute;
    left: 0;
    border-top: 4px solid var(--secondary-color);
    top: 110%;
    z-index: 10;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform-origin: center top 0;
    -webkit-transform-origin: center top 0;
    -moz-transform-origin: center top 0;
    -ms-transform-origin: center top 0;
    -o-transform-origin: center top 0;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    visibility: hidden;
  }

  .header-area .main-menu ul .sub-menu .third-lavel-menu {
    position: relative;
  }

  .header-area .main-menu ul .sub-menu .third-lavel-menu:before {
    position: absolute;
    right: 10px;
    top: 20px;
    content: "\e906";
    font-family: "icomoon";
    transform: rotate(270deg);
    font-size: 12px;
  }

  .header-area .main-menu ul .sub-menu .third-lavel-menu .sub-menu {
    top: 0;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area .main-menu ul .sub-menu .third-lavel-menu .sub-menu {
    left: auto;
    right: 100%;
  }
}

@media screen and (min-width: 992px) {
  .header-area .main-menu ul .sub-menu .third-lavel-menu:hover .sub-menu {
    top: 0;
    left: 100%;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area .main-menu ul .sub-menu .third-lavel-menu:hover .sub-menu {
    top: 0;
    left: auto;
  }
}

/*.header-area .main-menu ul>li .sub-menu li:nth-child(odd) {*/
/*  border-bottom: 1px solid #00000035*/
/*}*/
.header-area .main-menu ul>li .sub-menu li {
  border-bottom: 1px solid #00000035
}

@media screen and (min-width: 992px) {
  .header-area .main-menu ul>li .sub-menu a {
    font-size: 14px;
    font-size: calc-rem-value(16);
    display: block;
    padding: 12px 20px;
    color: #1F212D;
    position: relative;
    overflow: hidden;
  }

  .header-area .main-menu ul>li .sub-menu a:hover,
  .header-area .main-menu ul>li .sub-menu a.active {
    color: var(--theme-color);
  }

  .header-area .main-menu ul>li>.sub-menu .sub-menu {
    left: 100%;
    top: 0;
  }

  .header-area .main-menu ul>li>.sub-menu>.menu-item-has-children>a {
    position: relative;
  }

  .header-area .main-menu ul>li>.sub-menu>.menu-item-has-children>a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.73333rem;
    position: absolute;
    right: 15px;
    top: 58%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .header-area .main-menu ul>li:hover>.sub-menu {
    opacity: 1;
    top: 100%;
    transform: scaleY(100%);
    -webkit-transform: scaleY(100%);
    -moz-transform: scaleY(100%);
    -ms-transform: scaleY(100%);
    -o-transform: scaleY(100%);
    visibility: visible;
  }

  .header-area .main-menu #navbar .sub-menu>li:hover>.sub-menu {
    visibility: visible;
    opacity: 1;
  }
}

.header-area .header-area-right>ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 991px) {
  .header-area .main-menu .navigation {
    padding: 20px 0;
  }
}

@media (max-width: 1700px) {
  .header-area .main-menu ul>li>a {
    padding: 35px 20px;
  }
}

@media (max-width: 1399px) {
  .header-area .main-menu ul>li>a {
    padding: 30px 18px;
  }
}

@media (max-width: 1199px) {
  .header-area .main-menu ul>li>a {
    padding: 35px 8px;
    font-size: 15px;
  }
}

.header-area .header-area-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .header-area .header-area-right {
    padding-right: 80px;
  }
}

@media (max-width: 575px) {
  .header-area .header-area-right {
    padding-right: 65px;
  }
}

.header-area .header-area-right .search-toggle-btn {
  margin-right: 20px;
}

.header-area .header-area-right .search-toggle-btn i {
  font-size: 25px;
  color: #1F212D;
}

@media (max-width: 991px) {
  .header-area .header-area-right .search-toggle-btn i {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .header-area .header-area-right .search-toggle-btn i {
    font-size: 25px;
  }
}

.header-area .header-area-right .contact-ft {
  margin-top: -2px;
}

@media (max-width: 991px) {
  .header-area .header-area-right .contact-ft {
    margin-top: 0;
  }
}

.header-area .header-area-right .contact-ft a {
  display: flex;
  align-items: center;
  padding: 26px 40px;
  padding-left: 70px;
  background: #1F212D;
  padding-right: 40px;
  margin-right: -20px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 28% 100%);
}

@media (max-width: 1399px) {
  .header-area .header-area-right .contact-ft a {
    padding-right: 30px;
    padding-left: 50px;
  }
}

@media (max-width: 1199px) {
  .header-area .header-area-right .contact-ft a {
    padding-right: 20px;
    padding-left: 35px;
  }
}

@media (max-width: 991px) {
  .header-area .header-area-right .contact-ft a {
    padding: 12px;
    margin: 0;
    border: 1px solid #fff;
    clip-path: unset;
    text-align: center;
    border-radius: 50%;
  }
}

.header-area .header-area-right .contact-ft a i {
  margin-right: 10px;
}

@media (max-width: 991px) {
  .header-area .header-area-right .contact-ft a i {
    margin-right: 0;
  }
}

@media (max-width: 1399px) {
  .header-area .header-area-right .contact-ft a i img {
    max-width: 28px;
  }
}

@media (max-width: 991px) {
  .header-area .header-area-right .contact-ft a span {
    display: none;
  }
}

.header-area .header-area-right .contact-ft a span small {
  display: block;
  color: #fff;
}

@media (max-width: 1199px) {
  .header-area .header-area-right .contact-ft a span small {
    font-size: 13px;
  }
}

.header-area .header-area-right .contact-ft a span b {
  font-family: "Cormorant";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  color: #fff;
}

@media (max-width: 1399px) {
  .header-area .header-area-right .contact-ft a span b {
    font-size: 20px;
  }
}

@media (max-width: 1199px) {
  .header-area .header-area-right .contact-ft a span b {
    font-size: 18px;
  }
}

@media (max-width: 1199px) {
  .header-area .header-area-right .btn-style-1 {
    padding: 12px 20px;
    padding-right: 35px;
  }

  .btn-style-1:after {
    right: 12px;
  }
}

.header-area.header-style-1 {
  border-bottom: 1px solid #D7D7D7;
}

@media (max-width: 991px) {
  .header-area.header-style-1 {
    background: #1F212D;
  }
}

@media (max-width: 991px) {
  .header-area.header-style-1 .header-area-right .search-toggle-btn i {
    color: #fff;
  }
}

.header-area.header-style-1 .logo {
  position: relative;
  background: #1F212D;
  z-index: 1;
  padding: 30px 0;
  padding-left: 40px;
  margin-left: -20px;
  clip-path: polygon(0 0, 100% 0, 72% 100%, 0% 100%);
}

@media (max-width: 1399px) {
  .header-area.header-style-1 .logo {
    padding-left: 20px;
  }
}

@media (max-width: 991px) {
  .header-area.header-style-1 .logo {
    clip-path: unset;
    padding: 0;
    margin-left: 0px;
  }
}

.header-style-2 {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 99;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 991px) {
  .header-style-2 {
    position: relative;
    background: #1F212D;
    padding: 0;
  }
}

.header-style-2 .menu-area {
  padding: 0 40px;
  background: #00000087;
}

@media (max-width: 1800px) {
  .header-style-2 .menu-area {
    padding: 0 30px;
  }
}

@media (max-width: 1399px) {
  .header-style-2 .menu-area {
    padding: 0 10px;
  }
}

@media (max-width: 991px) {
  .header-style-2 .menu-area {
    padding: 20px 0px;
  }
}

.header-style-2 .mean-container a.meanmenu-reveal {
  margin-top: -50px;
}

@media (max-width: 767px) {
  .header-style-2 .mean-container a.meanmenu-reveal {
    margin-top: -55px;
  }
}
@media (max-width: 450px) {
  .header-style-2 .mean-container a.meanmenu-reveal {
    margin-top: -55px;
  }
}

@media (max-width: 991px) {
  .header-style-2 .btn-style-1 {
    display: none;
  }
}

.header-style-2 .topbar .contact-info.social {
  background: #171821;
  clip-path: polygon(0 0, 84% 0, 100% 100%, 100% 100%, 0 100%, 0% 50%);
  padding-left: 60px;
}

@media (max-width: 991px) {
  .header-style-2 .topbar .contact-info.social {
    clip-path: unset;
    padding-left: 0;
    background: none;
  }
}

.header-style-2 .topbar .contact-info.social ul {
  justify-content: flex-start;
}

@media (max-width: 991px) {
  .header-style-2 .topbar .contact-info.social ul {
    justify-content: center;
  }
}

.header-style-2 .topbar .contact-info.social li a {
  color: #fff;
}

.header-style-2 .main-menu ul>li>a {
  color: #dfdfdf;
}

.header-style-2 .header-area-right .search-toggle-btn i {
  color: #fff;
}

@media (max-width: 991px) {
  .header-style-2 .header-area-right .search-toggle-btn {
    margin-right: 0;
  }
}

.header-style-2 ul.nav {
  justify-content: center;
}

.header-style-3 {
  padding: 0 65px;
  z-index: 99;
}

@media (max-width: 1700px) {
  .header-style-3 {
    padding: 0 45px;
  }
}

@media (max-width: 1199px) {
  .header-style-3 {
    padding: 0 15px;
  }
}

@media (max-width: 991px) {
  .header-style-3 {
    padding: 30px 15px;
  }
}

.header-style-3 .mean-container a.meanmenu-reveal {
  margin-top: -52px;
}

@media (max-width: 450px) {
  .header-style-3 .mean-container a.meanmenu-reveal {
    margin-top: -45px;
  }
}

@media (max-width: 991px) {
  .header-style-3 .btn-style-1 {
    display: none;
  }
}

/*--------------------------------------------------------------
04. Hero
--------------------------------------------------------------*/
/*1.2.1 static-hero */
.static-hero {
  position: relative;
  z-index: 1;
  padding-bottom: 120px;
}

.static-hero .back-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 70%;
  z-index: -1;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  .static-hero {
    padding: 80px 30px;
  }
}

@media (max-width: 575px) {
  .static-hero {
    padding: 70px 0px;
  }
}

.static-hero .static-banner-sec {
  position: relative;
  z-index: 1;
}

@media (max-width: 575px) {
  .static-hero .static-banner-sec img {
    min-height: 200px;
  }
}

.static-hero .static-banner-sec .hero-img {
  position: absolute;
  right: 15px;
  bottom: 0;
}

@media (max-width: 1199px) {
  .static-hero .static-banner-sec .hero-img {
    max-width: 485px;
  }
}

@media (max-width: 991px) {
  .static-hero .static-banner-sec .hero-img {
    max-width: 50%;
  }
}

@media (max-width: 400px) {
  .static-hero .static-banner-sec .hero-img {
    max-width: 70%;
    right: -70px;
  }
}

@media (max-width: 575px) {
  .static-hero .static-banner-sec .hero-img img {
    min-height: unset;
  }
}

.static-hero .static-banner-sec .radial-bar {
  position: absolute;
  bottom: -115px;
  right: 50px;
  z-index: -1;
}

@media (max-width: 991px) {
  .static-hero .static-banner-sec .radial-bar {
    max-width: 200px;
    bottom: -30px;
    right: -30px;
  }
}

@media (max-width: 575px) {
  .static-hero .static-banner-sec .radial-bar {
    display: none;
  }
}

.static-hero .static-hero-text {
  display: flex;
  padding-top: 60px;
}

@media (max-width: 991px) {
  .static-hero .static-hero-text {
    text-align: center;
    padding-top: 0;
    display: block;
    margin-bottom: 50px;
  }
}

.static-hero .static-hero-text h2 {
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: #1F212D;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  max-width: 1000px;
}

@media (max-width: 1500px) {
  .static-hero .static-hero-text h2 {
    font-size: 100px;
    line-height: 100px;
  }
}

@media (max-width: 1199px) {
  .static-hero .static-hero-text h2 {
    font-size: 70px;
    line-height: 70px;
    max-width: 715px;
  }
}

@media (max-width: 767px) {
  .static-hero .static-hero-text h2 {
    font-size: 50px;
    line-height: 60px;
  }
}

@media (max-width: 575px) {
  .static-hero .static-hero-text h2 {
    font-size: 44px;
    line-height: 44px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

@media (max-width: 450px) {
  .static-hero .static-hero-text h2 {
    font-size: 30px;
    line-height: 35px;
  }
}

.static-hero .static-hero-text h2 span {
  color: var(--theme-color);
}

.static-hero .static-hero-text h2 span i {
  display: block;
  line-height: 20px;
}

@media (max-width: 991px) {
  .static-hero .static-hero-text h2 span i img {
    max-width: 45%;
  }
}

.static-hero .static-hero-text h2 small {
  position: absolute;
  right: -20px;
  top: -65px;
}

@media (max-width: 450px) {
  .static-hero .static-hero-text h2 small {
    display: none;
  }
}

.static-hero .static-hero-text .rotate-text-wrap {
  position: absolute;
  right: 200px;
  top: 100px;
  width: 200px;
  height: 200px;
  line-height: 200px;
  border-radius: 50%;
  z-index: 11;
  border: 1px dashed #707070;
}

@media (max-width: 1500px) {
  .static-hero .static-hero-text .rotate-text-wrap {
    right: 100px;
  }
}

@media (max-width: 1400px) {
  .static-hero .static-hero-text .rotate-text-wrap {
    right: 40px;
  }
}

@media (max-width: 1199px) {
  .static-hero .static-hero-text .rotate-text-wrap {
    top: 50px;
  }
}

@media (max-width: 991px) {
  .static-hero .static-hero-text .rotate-text-wrap {
    position: relative;
    left: 0;
    margin: 0 auto;
    top: 0;
  }
}

.static-hero .static-hero-text .rotate-text-wrap .rotate-text {
  position: relative;
  top: 0px;
  animation: circle 30s linear infinite;
  max-width: 200px;
}

.static-hero .static-hero-text .rotate-text-wrap .rotate-text svg path {
  fill: transparent;
}

.static-hero .static-hero-text .rotate-text-wrap .rotate-text text {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  color: #1F212D;
  text-transform: uppercase;
  font-family: "Cormorant";
  letter-spacing: 9px;
}

.static-hero .static-hero-text .rotate-text-wrap .icon {
  position: absolute;
  left: 20%;
  top: 15px;
}

.static-hero .static-hero-text .rotate-text-wrap .icon i {
  display: inline-block;
  font-size: 50px;
  color: #fff;
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  background: var(--theme-color);
  border-radius: 50%;
}

.static-hero .progress-wrap {
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(191, 191, 191, 0.25);
  text-align: center;
  padding: 20px;
  max-width: 142px;
  position: absolute;
  left: -80px;
  top: 50px;
}

@media (max-width: 1500px) {
  .static-hero .progress-wrap {
    left: -50px;
  }
}

@media (max-width: 767px) {
  .static-hero .progress-wrap {
    left: 20px;
    top: 30px;
  }
}

.static-hero .progress-wrap span {
  font-family: "Cormorant";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  color: #1F212D;
  display: block;
  margin-bottom: 10px;
}

.static-hero .progress-wrap .progress {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: none;
  margin: 0 auto;
  box-shadow: none;
  position: relative;
}

.static-hero .progress-wrap .progress:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.static-hero .progress-wrap .progress>span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.static-hero .progress-wrap .progress .progress-left {
  left: 0;
}

.static-hero .progress-wrap .progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 6px;
  border-style: solid;
  position: absolute;
  top: 0;
}

.static-hero .progress-wrap .progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.static-hero .progress-wrap .progress .progress-right {
  right: 0;
}

.static-hero .progress-wrap .progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
  animation: loading-1 1.8s linear forwards;
}

.static-hero .progress-wrap .progress .progress-value {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: #ffffff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  color: #1F212D;
  line-height: 65px;
  text-align: center;
  position: absolute;
  top: 5%;
  left: 5%;
  font-family: "Cormorant";
}

.static-hero .progress-wrap .progress.blue .progress-bar {
  border-color: var(--theme-color);
}

.static-hero .progress-wrap .progress.blue .progress-left .progress-bar {
  animation: loading-2 1.5s linear forwards 1.8s;
}

@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(144deg);
    transform: rotate(144deg);
  }
}

@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@keyframes loading-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(36deg);
    transform: rotate(36deg);
  }
}

@keyframes loading-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(126deg);
    transform: rotate(126deg);
  }
}

.static-hero .vector-shape {
  position: absolute;
  right: 10%;
  bottom: 20%;
  animation: zoom-in-zoom-out 5s ease infinite;
}

/*3.1 hero-slider*/
.hero-slider {
  width: 100%;
  height: 641px;
  display: flex;
  position: relative;
  z-index: 0;
}

@media (max-width: 991px) {
  .hero-slider {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: 435px;
  }
}
@media (max-width: 425px) {
  .hero-slider {
    height: 250px;
  }
}

.hero-slider .swiper-slide {
  overflow: hidden;
}

.hero-slider .swiper-container,
.hero-slider .hero-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.hero-slider .slide-inner:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /*background: linear-gradient(90deg, #1F212D 29.03%, rgba(31, 33, 45, 0) 100%);*/
  background: linear-gradient(90deg, #1f212d99 29.03%, rgba(31, 33, 45, 0) 100%);
  content: "";
}

.hero-slider .slide-inner .left-shape-1 {
  position: absolute;
  left: 0;
  top: 30px;
  z-index: 1;
}

.hero-slider .slide-inner .left-shape-2 {
  position: absolute;
  left: 0;
  top: 70%;
  transform: translateY(-50%);
  z-index: 1;
}

.hero-slider .slide-inner .frame {
  position: absolute;
  right: 0;
  bottom: 0px;
  z-index: 1;
}

@media (max-width: 1399px) {
  .hero-slider .slide-inner .frame {
    max-width: 350px;
  }
}

@media (max-width: 1199px) {
  .hero-slider .slide-inner .frame {
    max-width: 300px;
  }
}

@media (max-width: 991px) {
  .hero-slider .slide-inner .frame {
    display: none;
  }
}

.hero-slider .slide-inner .slide-content {
  padding-top: 95px;
  position: relative;
  z-index: 11;
}

@media (max-width: 991px) {
  .hero-slider .slide-inner .slide-content {
    padding-top: 0;
  }
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  background: rgb(0 0 0 / 60%);
  width: 50px;
  height: 50px;
  line-height: 48px;
  border: 2px solid #00000026;
  border-radius: 50%;
  text-align: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}

.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover {
  opacity: 0.9;
}

@media (max-width: 767px) {

  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }
}

.hero-slider .swiper-button-prev {
  left: -25px;
}

.hero-slider .swiper-button-prev:before {
  font-family: "icomoon";
  content: "\e913";
  font-size: 20px;
  color: #fff;
}

.hero-slider .swiper-button-next {
  right: -25px;
}

.hero-slider .swiper-button-next:before {
  font-family: "icomoon";
  content: "\e912";
  font-size: 20px;
  color: #fff;
}

@media (max-width: 991px) {

  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }
}

.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  text-align: center;
  line-height: 12px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
}

@media screen and (min-width: 992px) {
  .hero-slider .swiper-pagination-bullet {
    display: none;
  }
}

.hero-slider .swiper-pagination-bullet-active {
  color: #fff;
  background: #fff;
  width: 12px;
  height: 12px;
  text-align: center;
  line-height: 12px;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
  bottom: 30px;
}

@media (max-width: 991px){
    .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
  display:none;
}
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
}

.hero-slider:hover .swiper-button-prev {
  left: 25px;
}

.hero-slider:hover .swiper-button-next {
  right: 25px;
}

@media (max-width: 991px) {
  .hero-slider .slide-content {
    text-align: left;
    padding-top: 0;
    display: block;
    margin-bottom: 0px;
  }
}

.hero-slider .slide-content h2 {
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  max-width: 1000px;
  padding-bottom: 30px;
  font-family: "Cormorant";
  left: 40px;
}

@media (max-width: 1500px) {
  .hero-slider .slide-content h2 {
    font-size: 40px;
    line-height: 60px;
  }
}

@media (max-width: 1199px) {
  .hero-slider .slide-content h2 {
    font-size: 35px;
    line-height: 70px;
    max-width: 715px;
  }
}

@media (max-width: 767px) {
  .hero-slider .slide-content h2 {
    font-size: 30px;
    line-height: 60px;
  }
}

@media (max-width: 575px) {
  .hero-slider .slide-content h2 {
    font-size: 25px;
    line-height: 44px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

@media (max-width: 450px) {
  .hero-slider .slide-content h2 {
    font-size: 28px;
    line-height: 35px;
  }
}

.hero-slider .slide-content h2 span {
  color: var(--theme-color);
  position: relative;
  display: block;
  font-size: 55px;
}

.hero-slider .slide-content h2 span i {
  display: block;
  line-height: 20px;
  position: absolute;
  left: 0;
  bottom: -30px;
}
.hero-slider .slide-content h2 span img {
    filter: contrast(0.5) brightness(3.5);
}
@media (max-width: 991px) {
    .hero-slider .slide-content h2 span i{
        width:100%;
    }
  .hero-slider .slide-content h2 span i img {
    max-width: 45%;
  }
}

.hero-slider .slide-content p {
  max-width: 598px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #fff;
  padding-left: 30px;
  position: relative;
  margin-bottom: 0px;
  left: 40px;
}

.hero-slider .slide-content p:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  content: "";
  background: var(--theme-color);
  border-radius: 5px;
}

@media (max-width: 991px) {
  .hero-slider .slide-content p:before {
    display: none;
  }
}

@media (max-width: 991px) {
  /*.hero-slider .slide-content p {*/
  /*  display:none;*/
  /*}*/
}
@media (max-width: 768px) {
  /*.hero-slider .slide-content p {*/
  /*  display:none;*/
  /*}*/
  .hero-slider .slide-content p
  {
      font-size: 12px !important;
          line-height: 21px !important;
          padding-left:0px !important;
  }
}

.hero-slider .slide-content .slide-title {
  position: relative;
  max-width: 850px;
}

@media (max-width: 1199px) {
  .hero-slider .slide-content .slide-title {
    max-width: 720px;
  }
}
@media (max-width: 991px) {
  .hero-slider .slide-content .slide-title {
    margin: 0 auto;
    max-width: 720px;
  }
}

.hero-slider .slide-content .customer-review {
  display: flex;
  align-items: center;
  padding: 15px;
  padding-left: 20px;
  border-radius: 40px;
  border: 4px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2.5px);
  max-width: 275px;
  position: absolute;
  right: 0;
  bottom: 50px;
}

@media (max-width: 1199px) {
  .hero-slider .slide-content .customer-review {
    bottom: 30px;
  }
}

@media (max-width: 991px) {
  .hero-slider .slide-content .customer-review {
    position: relative;
    margin: 0 auto;
    bottom: 0;
    margin-bottom: 20px;
  }
}

.hero-slider .slide-content .customer-review .customer-review-img {
  margin-right: 20px;
  display: flex;
}

.hero-slider .slide-content .customer-review .customer-review-img img {
  margin: -10px;
  border-radius: 50%;
}

.hero-slider .slide-content .customer-review .customer-review-text span {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  color: #fff;
  display: block;
}

.hero-slider .slide-content .customer-review .customer-review-text ul {
  display: flex;
  margin-top: 3px;
}

.hero-slider .slide-content .customer-review .customer-review-text ul li {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #fff;
}

/*1.2.1 static-hero-s2  */
@media (max-width: 991px) {
  .static-hero-s2 {
    padding-top: 20px;
  }
}

.static-hero-s2 .static-hero-text {
  display: flex;
  padding-top: 100px;
  text-align: center;
  position: relative;
}

@media (max-width: 991px) {
  .static-hero-s2 .static-hero-text {
    text-align: center;
    padding-top: 0;
    display: block;
    margin-bottom: 0px;
  }
}

.static-hero-s2 .static-hero-text .vector-shape {
  position: absolute;
  left: 200px;
  bottom: 100px;
}

@media (max-width: 1199px) {
  .static-hero-s2 .static-hero-text .vector-shape {
    display: none;
  }
}

.static-hero-s2 .static-hero-text h2 {
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #1F212D;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 1500px) {
  .static-hero-s2 .static-hero-text h2 {
    font-size: 100px;
    line-height: 100px;
  }
}

@media (max-width: 1199px) {
  .static-hero-s2 .static-hero-text h2 {
    font-size: 70px;
    line-height: 70px;
    max-width: 715px;
  }
}

@media (max-width: 991px) {
  .static-hero-s2 .static-hero-text h2 {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .static-hero-s2 .static-hero-text h2 {
    font-size: 50px;
    line-height: 60px;
  }
}

@media (max-width: 575px) {
  .static-hero-s2 .static-hero-text h2 {
    font-size: 44px;
    line-height: 44px;
    margin-top: 10px;
    margin-bottom: 0px;
  }
}

@media (max-width: 450px) {
  .static-hero-s2 .static-hero-text h2 {
    font-size: 30px;
    line-height: 35px;
  }
}

.static-hero-s2 .static-hero-text h2 b {
  position: relative;
  top: -30px;
}

.static-hero-s2 .static-hero-text h2 b img {
  border-radius: 84px 84px 0px 84px;
}

@media (max-width: 767px) {
  .static-hero-s2 .static-hero-text h2 b img {
    max-width: 120px;
  }
}

@media (max-width: 575px) {
  .static-hero-s2 .static-hero-text h2 b img {
    max-width: 80px;
    top: -20px;
  }
}

.static-hero-s2 .static-hero-text h2 span {
  color: var(--theme-color);
}

.static-hero-s2 .static-hero-text h2 span i {
  display: block;
  line-height: 20px;
}

@media (max-width: 991px) {
  .static-hero-s2 .static-hero-text h2 span i img {
    max-width: 45%;
  }
}

.static-hero-s2 .static-hero-text h2 small {
  position: absolute;
  right: -20px;
  top: -65px;
}

@media (max-width: 991px) {
  .static-hero-s2 .static-hero-text h2 small {
    right: -44px;
    top: -20px;
  }
}

@media (max-width: 767px) {
  .static-hero-s2 .static-hero-text h2 small {
    display: none;
  }
}

.static-hero-s2 .about-text {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .static-hero-s2 .about-text {
    padding-left: 0;
    padding-top: 30px;
    text-align: center;
    margin-bottom: 30px;
  }
}

.static-hero-s2 .about-text .about-icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .static-hero-s2 .about-text .about-icon-wrap {
    justify-content: center;
  }
}

.static-hero-s2 .about-text .about-icon-wrap i {
  font-size: 70px;
  color: var(--theme-color);
  margin-right: 20px;
}

.static-hero-s2 .about-text .about-icon-wrap h4 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 58px;
}

.static-hero-s2 .about-text .about-icon-wrap small {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}

.static-hero-s2 .about-text span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}

.static-hero-s2 .about-text p {
  font-family: "Cormorant";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  color: #1F212D;
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .static-hero-s2 .about-text p {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  .static-hero-s2 .about-text p {
    font-size: 19px;
    line-height: 25px;
  }
}

.static-hero-s2 .about-text p b {
  color: var(--theme-color);
}

.static-hero-s2 .static-banner-sec {
  position: relative;
  z-index: 1;
}

.static-hero-s2 .static-banner-sec .left-shape {
  position: absolute;
  left: -30px;
  top: 0;
}

@media (max-width: 991px) {
  .static-hero-s2 .static-banner-sec .left-shape {
    max-width: 100px;
  }
}

@media (max-width: 575px) {
  .static-hero-s2 .static-banner-sec .left-shape {
    max-width: 80px;
  }
}

.static-hero-s2 .static-banner-sec .radial-shape {
  position: absolute;
  right: -150px;
  bottom: -100px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .static-hero-s2 .static-banner-sec .radial-shape {
    max-width: 200px;
    right: -80px;
    bottom: -50px;
  }
}

@media (max-width: 575px) {
  .static-hero-s2 .static-banner-sec .radial-shape {
    display: none;
  }
}

.static-hero-s2 .funfact-section {
  padding-top: 50px;
}

/*--------------------------------------------------------------
03. Footer
--------------------------------------------------------------*/
.footer-section,
.footer-section-s2 {
  background: #1F212D;
  position: relative;
  font-size: 15px;
  overflow: hidden;
  z-index: 1;
}

.footer-section ul,
.footer-section-s2 ul {
  list-style: none;
}

.footer-section p,
.footer-section-s2 p {
  color: #fff;
  margin-top: 30px;
}

.footer-section li,
.footer-section-s2 li {
  color: #fff;
}

.footer-section .container,
.footer-section-s2 .container {
  position: relative;
}

.footer-section .upper-footer,
.footer-section-s2 .upper-footer {
  padding: 120px 0 70px;
}

@media (max-width: 991px) {

  .footer-section .upper-footer,
  .footer-section-s2 .upper-footer {
    padding: 80px 0 0px;
  }
}

@media (max-width: 767px) {

  .footer-section .upper-footer,
  .footer-section-s2 .upper-footer {
    padding: 60px 0 30px;
  }
}

@media (max-width: 991px) {

  .footer-section .upper-footer .col,
  .footer-section-s2 .upper-footer .col {
    min-height: 235px;
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {

  .footer-section .upper-footer .col,
  .footer-section-s2 .upper-footer .col {
    min-height: auto;
  }
}

.footer-section .widget-title,
.footer-section-s2 .widget-title {
  margin-bottom: 30px;
}

@media (max-width: 767px) {

  .footer-section .widget-title,
  .footer-section-s2 .widget-title {
    margin-bottom: 20px;
  }
}

.footer-section .widget-title h3,
.footer-section-s2 .widget-title h3 {
  color: #fff;
  margin: 0;
  position: relative;
  font-family: "Cormorant";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
}

@media (max-width: 1399px) {

  .footer-section .widget-title h3,
  .footer-section-s2 .widget-title h3 {
    font-size: 29px;
  }
}

@media (max-width: 1199px) {

  .footer-section .widget-title h3,
  .footer-section-s2 .widget-title h3 {
    font-size: 24px;
  }
}

.footer-section .about-widget .widget-title,
.footer-section-s2 .about-widget .widget-title {
  margin-bottom: 0;
}

.footer-section .about-widget p,
.footer-section-s2 .about-widget p {
  margin-bottom: 0.8em;
  line-height: 1.9em;
}

.footer-section .about-widget p:last-child,
.footer-section-s2 .about-widget p:last-child {
  margin-bottom: 0;
}

.footer-section .link-widget,
.footer-section-s2 .link-widget {
  overflow: hidden;
}

.footer-section .link-widget ul li,
.footer-section-s2 .link-widget ul li {
  position: relative;
}

.footer-section .link-widget ul li a,
.footer-section-s2 .link-widget ul li a {
  color: #fff;
  font-size: 16px;
  line-height: 35px;
  display: block;
}

.footer-section .link-widget ul li a:hover,
.footer-section-s2 .link-widget ul li a:hover {
  color: var(--theme-color);
}

.footer-section .link-widget ul li+li,
.footer-section-s2 .link-widget ul li+li {
  margin-top: 5px;
}

.footer-section .contact-ft,
.footer-section-s2 .contact-ft {
  margin-top: 20px;
}

.footer-section .contact-ft ul li,
.footer-section-s2 .contact-ft ul li {
  padding-bottom: 15px;
  position: relative;
  color: #e5e3e3;
  font-size: 16px;
}

.footer-section .contact-ft ul li i,
.footer-section-s2 .contact-ft ul li i {
  position: absolute;
  left: 0;
  top: 0;
}

.footer-section .contact-ft ul li .fi:before,
.footer-section-s2 .contact-ft ul li .fi:before {
  font-size: 20px;
  margin-right: 15px;
}

.footer-section .subscribe h3,
.footer-section-s2 .subscribe h3 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  margin-bottom: 20px;
}

.footer-section .subscribe .form-field,
.footer-section-s2 .subscribe .form-field {
  position: relative;
}

.footer-section .subscribe .form-field input,
.footer-section-s2 .subscribe .form-field input {
  width: 100%;
  height: 60px;
  border-radius: 5px;
  border: 0;
  background: #292C39;
  padding: 15px;
  padding-right: 70px;
  color: #fff;
}

.footer-section .subscribe .form-field input:focus,
.footer-section-s2 .subscribe .form-field input:focus {
  outline: none;
  border-color: var(--theme-color);
}

.footer-section .subscribe .form-field button,
.footer-section-s2 .subscribe .form-field button {
  position: absolute;
  right: 0;
  top: 0;
  height: 60px;
  width: 60px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 20px;
}

.footer-section .subscribe .radio-buttons label,
.footer-section-s2 .subscribe .radio-buttons label {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #fff;
}

.footer-section .subscribe [type=radio]:checked,
.footer-section .subscribe [type=radio]:not(:checked),
.footer-section-s2 .subscribe [type=radio]:checked,
.footer-section-s2 .subscribe [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.footer-section .subscribe [type=radio]:checked+label,
.footer-section .subscribe [type=radio]:not(:checked)+label,
.footer-section-s2 .subscribe [type=radio]:checked+label,
.footer-section-s2 .subscribe [type=radio]:not(:checked)+label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  font-family: "Cormorant";
}

.footer-section .subscribe [type=radio]:checked+label:before,
.footer-section .subscribe [type=radio]:not(:checked)+label:before,
.footer-section-s2 .subscribe [type=radio]:checked+label:before,
.footer-section-s2 .subscribe [type=radio]:not(:checked)+label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: transparent;
}

.footer-section .subscribe [type=radio]:checked+label:after,
.footer-section .subscribe [type=radio]:not(:checked)+label:after,
.footer-section-s2 .subscribe [type=radio]:checked+label:after,
.footer-section-s2 .subscribe [type=radio]:not(:checked)+label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--theme-color);
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.footer-section .subscribe [type=radio]:not(:checked)+label:after,
.footer-section-s2 .subscribe [type=radio]:not(:checked)+label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.footer-section .subscribe [type=radio]:checked+label:after,
.footer-section-s2 .subscribe [type=radio]:checked+label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.footer-section .social ul,
.footer-section-s2 .social ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-section .social ul li+li,
.footer-section-s2 .social ul li+li {
  margin-left: 15px;
}

.footer-section .social ul li a,
.footer-section-s2 .social ul li a {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 35px;
  border-radius: 50%;
  background: #707070;
  text-align: center;
  color: #1F212D;
}

.footer-section .social ul li a:hover,
.footer-section-s2 .social ul li a:hover {
  background: var(--theme-color);
}

.footer-section .lower-footer,
.footer-section-s2 .lower-footer {
  text-align: center;
  position: relative;
}

.footer-section .lower-footer .row,
.footer-section-s2 .lower-footer .row {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-section .lower-footer .lower-footer-link,
.footer-section-s2 .lower-footer .lower-footer-link {
  display: flex;
}

@media (max-width: 991px) {

  .footer-section .lower-footer .lower-footer-link,
  .footer-section-s2 .lower-footer .lower-footer-link {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.footer-section .lower-footer .lower-footer-link li a,
.footer-section-s2 .lower-footer .lower-footer-link li a {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #fff;
}

.footer-section .lower-footer .lower-footer-link li a:hover,
.footer-section-s2 .lower-footer .lower-footer-link li a:hover {
  color: var(--theme-color);
}

.footer-section .lower-footer .lower-footer-link li+li,
.footer-section-s2 .lower-footer .lower-footer-link li+li {
  padding-left: 70px;
}

@media (max-width: 1199px) {

  .footer-section .lower-footer .lower-footer-link li+li,
  .footer-section-s2 .lower-footer .lower-footer-link li+li {
    padding-left: 50px;
  }
}

@media (max-width: 991px) {

  .footer-section .lower-footer .lower-footer-link li+li,
  .footer-section-s2 .lower-footer .lower-footer-link li+li {
    padding: 0 20px;
  }
}

.footer-section .lower-footer .copy-right,
.footer-section-s2 .lower-footer .copy-right {
  text-align: right;
}

@media (max-width: 991px) {

  .footer-section .lower-footer .copy-right,
  .footer-section-s2 .lower-footer .copy-right {
    text-align: center;
    margin-top: 10px;
  }
}

.footer-section .lower-footer .copyright,
.footer-section-s2 .lower-footer .copyright {
  display: inline-block;
  font-size: 14px;
  margin: 0;
}

.footer-section .lower-footer .copyright a,
.footer-section-s2 .lower-footer .copyright a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 991px) {

  .footer-section .lower-footer .copyright,
  .footer-section-s2 .lower-footer .copyright {
    float: none;
    display: block;
  }
}

.footer-section-s2 .top-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 40px;
  padding-top: 50px;
}

@media (max-width: 767px) {
  .footer-section-s2 .top-title {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .footer-section-s2 .top-title {
    display: block;
  }
}

.footer-section-s2 .top-title h2 {
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .footer-section-s2 .top-title h2 {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .footer-section-s2 .top-title h2 {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .footer-section-s2 .top-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 450px) {
  .footer-section-s2 .top-title h2 {
    font-size: 30px;
  }
}

.footer-section-s2 .top-title h2 span {
  font-weight: 300;
  color: var(--theme-color);
}

.footer-section-s2 .upper-footer {
  padding-top: 50px;
}

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

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

/*--------------------------------------------------------------
2.0 Home-style-1
--------------------------------------------------------------*/
/*==================================
 05. About-section 
 ==================================*/
.about-section .about-img-1,
.about-section-s2 .about-img-1 {
  margin-top: 40px;
  margin-bottom: 30px;
}

.about-section .about-img-1 img,
.about-section-s2 .about-img-1 img {
  width: 100%;
}

.about-section .about-img-2,
.about-section-s2 .about-img-2 {
  position: relative;
}

.about-section .about-img-2 img,
.about-section-s2 .about-img-2 img {
  width: 100%;
}

.about-section .about-img-2 .shape,
.about-section-s2 .about-img-2 .shape {
  position: absolute;
  bottom: -30px;
  right: 0;
  animation: bounceTopToBottom 4s infinite;
}

.about-section .about-text,
.about-section-s2 .about-text {
  padding-left: 30px;
}

@media (max-width: 991px) {

  .about-section .about-text,
  .about-section-s2 .about-text {
    padding-left: 0;
    padding-top: 30px;
  }
}

.about-section .about-text .about-icon-wrap,
.about-section-s2 .about-text .about-icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.about-section .about-text .about-icon-wrap i,
.about-section-s2 .about-text .about-icon-wrap i {
  font-size: 70px;
  color: var(--theme-color);
  margin-right: 20px;
}

.about-section .about-text .about-icon-wrap h4,
.about-section-s2 .about-text .about-icon-wrap h4 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 58px;
}

.about-section .about-text .about-icon-wrap small,
.about-section-s2 .about-text .about-icon-wrap small {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}

.about-section .about-text span,
.about-section-s2 .about-text span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}

.about-section .about-text p,
.about-section-s2 .about-text p {
  font-family: "Cormorant";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  color: #1F212D;
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {

  .about-section .about-text p,
  .about-section-s2 .about-text p {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {

  .about-section .about-text p,
  .about-section-s2 .about-text p {
    font-size: 19px;
    line-height: 25px;
  }
}

.about-section .about-text p b,
.about-section-s2 .about-text p b {
  color: var(--theme-color);
}

/*=================================
 06. Features-section 
 ==================================*/
.features-section {
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
  padding-top: 90px;
}

@media (max-width: 991px) {
  .features-section {
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .features-section {
    padding-bottom: 10px;
  }
}

.features-section .back-shape {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.features-section .features-btn {
  text-align: right;
}

@media (max-width: 991px) {
  .features-section .features-btn {
    text-align: center;
    margin-bottom: 30px;
  }
}

.features-section .features-item {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .features-section .features-item {
    text-align: center;
  }
}

.features-section .features-item h3 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
}

.features-section .features-item h3 i {
  color: var(--theme-color);
  margin-right: 10px;
}

@media (max-width: 1199px) {
  .features-section .features-item h3 {
    font-size: 25px;
  }
}

@media (max-width: 991px) {
  .features-section .features-item h3 {
    font-size: 25px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .features-section .features-item h3 {
    justify-content: center;
  }
}

.features-section .features-item ul li {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 29px;
}

.features-section .features-item ul li+li {
  margin-top: 10px;
}

/*===================================
 07. Animate-marque-sec 
 ====================================*/
.animate-marque-sec {
  position: relative;
  z-index: -1;
}

.animate-marque-sec .animate-marque {
  position: relative;
  left: -10%;
  width: 120%;
  z-index: -1;
}

.animate-marque-sec .animate-marque .track {
  animation: marquee 200s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.animate-marque-sec .animate-marque h1 {
  white-space: nowrap;
  will-change: transform;
  animation: marquee 20s linear infinite;
  margin-bottom: 0;
  color: #1F212D;
}

.animate-marque-sec .animate-marque h1 span {
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  line-height: 120px;
}

@media (max-width: 991px) {
  .animate-marque-sec .animate-marque h1 span {
    font-size: 50px;
    line-height: 80px;
  }
}

@media (max-width: 575px) {
  .animate-marque-sec .animate-marque h1 span {
    font-size: 30px;
    line-height: 15px;
    animation: marquee 10s linear infinite;
  }
}

.animate-marque-sec .animate-marque h1 span:nth-child(even) {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #1F212D;
}

.animate-marque-sec .animate-marque-s2 {
  position: relative;
  left: -100%;
  width: 120%;
  z-index: -1;
}

.animate-marque-sec .animate-marque-s2 .track {
  animation: marquee2 200s linear infinite;
}

@keyframes marquee2 {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(50%);
  }
}

.animate-marque-sec .animate-marque-s2 h1 {
  white-space: nowrap;
  will-change: transform;
  animation: marquee2 20s linear infinite;
  margin-bottom: 0;
  color: #1F212D;
}

.animate-marque-sec .animate-marque-s2 h1 span {
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  line-height: 120px;
}

@media (max-width: 991px) {
  .animate-marque-sec .animate-marque-s2 h1 span {
    font-size: 50px;
    line-height: 80px;
  }
}

@media (max-width: 575px) {
  .animate-marque-sec .animate-marque-s2 h1 span {
    font-size: 30px;
    animation: marquee2 10s linear infinite;
  }
}

.animate-marque-sec .animate-marque-s2 h1 span:nth-child(even) {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #1F212D;
}

/*=====================================
 08. Service-section 
 ======================================*/
.service-section,
.service-section-s2 {
  padding-bottom: 90px;
}

@media (max-width: 991px) {

  .service-section,
  .service-section-s2 {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {

  .service-section,
  .service-section-s2 {
    padding-bottom: 50px;
  }
}

.service-section .service-wrap .service-item,
.service-section-s2 .service-wrap .service-item {
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 15px;
  margin-bottom: 30px;
  position: relative;
}

.service-section .service-wrap .service-item:before,
.service-section-s2 .service-wrap .service-item:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  content: "";
  background: var(--theme-color);
  transition: all 0.4s;
}

.service-section .service-wrap .service-item .service-top,
.service-section-s2 .service-wrap .service-item .service-top {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.service-section .service-wrap .service-item .service-top i,
.service-section-s2 .service-wrap .service-item .service-top i {
  display: block;
  width: 86px;
  height: 86px;
  line-height: 86px;
  font-size: 45px;
  text-align: center;
  margin-right: 20px;
  transition: all 0.3s;
  border-radius: 5px;
}

.service-section .service-wrap .service-item .service-text h2,
.service-section-s2 .service-wrap .service-item .service-text h2 {
  color: #707070;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 58px;
  margin-bottom: 0;
}

@media (max-width: 450px) {

  .service-section .service-wrap .service-item .service-text h2,
  .service-section-s2 .service-wrap .service-item .service-text h2 {
    font-size: 38px;
  }
}

.service-section .service-wrap .service-item .service-text h3,
.service-section-s2 .service-wrap .service-item .service-text h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
}

@media (max-width: 450px) {

  .service-section .service-wrap .service-item .service-text h3,
  .service-section-s2 .service-wrap .service-item .service-text h3 {
    font-size: 20px;
  }
}

.service-section .service-wrap .service-item .service-text h3 a,
.service-section-s2 .service-wrap .service-item .service-text h3 a {
  color: #1F212D;
}

.service-section .service-wrap .service-item .service-text h3 a:hover,
.service-section-s2 .service-wrap .service-item .service-text h3 a:hover {
  color: var(--theme-color);
}

.service-section .service-wrap .service-item:hover:before,
.service-section-s2 .service-wrap .service-item:hover:before {
  width: 100%;
}

.service-section .service-wrap .service-item:hover .service-top i,
.service-section-s2 .service-wrap .service-item:hover .service-top i {
  background: var(--theme-color);
  color: #fff;
}

/*===============================
 09. Video-section 
 ===============================*/
.video-section .video-text {
  max-width: 414px;
  margin-left: auto;
}

@media (max-width: 991px) {
  .video-section .video-text {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 30px;
  }
}

.video-section .video-text p {
  margin-bottom: 0;
}

.video-section .video-wrap {
  padding: 70px 50px 40px;
}

@media (max-width: 575px) {
  .video-section .video-wrap {
    padding: 40px 20px 40px;
  }
}

.video-section .video-wrap h2 {
  text-align: center;
  font-size: 200px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #fff;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .video-section .video-wrap h2 {
    font-size: 100px;
    margin-bottom: 20px;
  }
}

@media (max-width: 450px) {
  .video-section .video-wrap h2 {
    font-size: 70px;
  }
}

.video-section .skill-section {
  padding: 50px 40px;
  background: #1F212D;
  max-width: 586px;
  border-bottom: 3px solid var(--theme-color);
}

@media (max-width: 575px) {
  .video-section .skill-section {
    padding: 30px 20px;
  }
}

.video-section .skill-section .progress-single {
  margin-bottom: 30px;
  position: relative;
}

.video-section .skill-section .progress-single h5 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  color: #fff;
}

@media (max-width: 767px) {
  .video-section .skill-section .progress-single h5 {
    font-size: 18px;
  }
}

.video-section .skill-section .progress-single:last-child {
  margin-bottom: 0;
}

.video-section .skill-section .progress-single .progress {
  background: #2E2E2E;
  height: 6px;
  position: relative;
}

.video-section .skill-section .progress-single .progress .progress-bar {
  background-color: #707070;
}

.video-section .skill-section .progress-number {
  position: absolute;
  right: 0;
  top: 4px;
  font-size: 12px;
  color: #fff;
  font-weight: 400;
}

@media (max-width: 767px) {
  .video-section .skill-section .progress-number {
    font-size: 18px;
    top: -5px;
  }
}

.video-section .video-btn-wrap {
  position: relative;
}

.video-section .video-btn-wrap .shape {
  position: absolute;
  right: 0;
  top: -110%;
  animation: bounceTopToBottom 2s infinite;
}

@media (max-width: 767px) {
  .video-section .video-btn-wrap .shape {
    top: -50px;
  }
}

.video-section .video-btn-wrap .video-btn {
  display: block;
  width: 124px;
  height: 124px;
  line-height: 124px;
  background: linear-gradient(328deg, var(--theme-color) -9.33%, #30323D 125.4%);
  border-radius: 50%;
  z-index: 1;
  position: relative;
  margin-left: auto;
}

@media (max-width: 767px) {
  .video-section .video-btn-wrap .video-btn {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    line-height: 100px;
    margin-top: 50px;
  }
}

.video-section .video-btn-wrap .video-btn:before {
  content: "";
  width: 0px;
  height: 0px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #fff;
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.video-section .video-btm-text {
  margin-top: 40px;
}

@media (max-width: 991px) {
  .video-section .video-btm-text {
    text-align: center;
  }
}

/*===================================
 10. Funfact-section 
 ===================================*/
.funfact-section .heading-title {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .funfact-section .heading-title {
    margin-bottom: 40px;
  }
}

.funfact-section .fun-fact-wrap {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .funfact-section .fun-fact-wrap {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .funfact-section .fun-fact-wrap {
    flex-wrap: wrap;
  }
}

.funfact-section .fun-fact-wrap .info {
  flex-basis: 33.33%;
}

@media (max-width: 767px) {
  .funfact-section .fun-fact-wrap .info {
    flex-basis: auto;
    text-align: center;
    padding: 0 15px;
  }
}

.funfact-section .fun-fact-wrap .info h3 {
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 1199px) {
  .funfact-section .fun-fact-wrap .info h3 {
    font-size: 80px;
  }
}

@media (max-width: 767px) {
  .funfact-section .fun-fact-wrap .info h3 {
    font-size: 50px;
  }
}

.funfact-section .fun-fact-wrap .info h3 span {
  font-family: "Cormorant";
}

.funfact-section .fun-fact-wrap .info h3 small {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--theme-color);
}

.funfact-section .fun-fact-wrap .info p {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  font-family: "Cormorant";
  padding-left: 50px;
  color: var(--theme-color);
  margin-top: -30px;
}

@media (max-width: 767px) {
  .funfact-section .fun-fact-wrap .info p {
    padding-left: 10px;
    margin-top: -10px;
  }
}

/*==============================
 11. Case-section 
 ===============================*/
.case-section {
  background: #FAFAFA;
}

.case-section .case-left-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 530px;
}

@media (max-width: 1199px) {
  .case-section .case-left-image-wrap {
    min-height: 425px;
  }
}

@media (max-width: 991px) {
  .case-section .case-left-image-wrap {
    min-height: 100%;
  }
}

.case-section .case-left-image-wrap .case-left-image-group {
  width: 100%;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.case-section .case-left-image-wrap .case-left-image-group .img-item {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  transition: all 0.8s;
  transform: translateX(-100%);
  z-index: -1;
}

.case-section .case-left-image-wrap .case-left-image-group .img-item.active {
  position: relative;
  opacity: 1;
  z-index: 1;
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translateX(0);
}

.case-section .case-left-image-wrap .case-left-image-group .img-item img {
  width: 100%;
}

.case-section .case-right-items {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(201, 201, 201, 0.1);
}

@media (max-width: 991px) {
  .case-section .case-right-items {
    margin-top: 30px;
  }
}

.case-section .case-right-items .item {
  padding: 28px 50px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}

@media (max-width: 1399px) {
  .case-section .case-right-items .item {
    padding: 20px 50px;
  }
}

@media (max-width: 1199px) {
  .case-section .case-right-items .item {
    padding: 15px 30px;
  }
}

@media (max-width: 767px) {
  .case-section .case-right-items .item {
    padding: 15px;
  }
}

.case-section .case-right-items .item:last-child {
  border: 0;
}

.case-section .case-right-items .item h2 {
  margin-bottom: 0;
  transition: all 0.3s;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin-top: 3px;
}

@media (max-width: 1399px) {
  .case-section .case-right-items .item h2 {
    font-size: 25px;
  }
}

@media (max-width: 1199px) {
  .case-section .case-right-items .item h2 {
    font-size: 22px;
    line-height: 25px;
    margin-top: 2px;
  }
}

.case-section .case-right-items .item span {
  transition: all 0.3s;
  font-family: "Cormorant";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  color: #1F212D;
}

@media (max-width: 1199px) {
  .case-section .case-right-items .item span {
    font-size: 16px;
  }
}

.case-section .case-right-items .item a i {
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  text-align: center;
  color: #1F212D;
}

.case-section .case-right-items .item.active {
  background: var(--theme-color);
}

.case-section .case-right-items .item.active h2 {
  color: #fff;
}

.case-section .case-right-items .item.active span {
  color: #fff;
}

.case-section .case-right-items .item.active a i {
  background: #1F212D;
  color: #fff;
}

/*=======================================
 12. Testimonial-section 
 =======================================*/
.testimonial-section,
.testimonial-section-s2 {
  position: relative;
  z-index: 1;
}

.testimonial-section .testimonial-left,
.testimonial-section-s2 .testimonial-left {
  padding: 60px 40px;
  background: #FAFAFA;
  max-width: 526px;
}

@media (max-width: 991px) {

  .testimonial-section .testimonial-left,
  .testimonial-section-s2 .testimonial-left {
    max-width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {

  .testimonial-section .testimonial-left,
  .testimonial-section-s2 .testimonial-left {
    padding: 30px 20px;
  }
}

.testimonial-section .testimonial-left .heading-title,
.testimonial-section-s2 .testimonial-left .heading-title {
  border-bottom: 1px solid #D7D7D7;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.testimonial-section .testimonial-left p,
.testimonial-section-s2 .testimonial-left p {
  margin-bottom: 30px;
}

@media (max-width: 991px) {

  .testimonial-section .testimonial-item .testimonial-text,
  .testimonial-section-s2 .testimonial-item .testimonial-text {
    text-align: center;
  }
}

.testimonial-section .testimonial-item .testimonial-text .ratting-wrap,
.testimonial-section-s2 .testimonial-item .testimonial-text .ratting-wrap {
  display: flex;
  margin-bottom: 25px;
  align-items: center;
}

@media (max-width: 991px) {

  .testimonial-section .testimonial-item .testimonial-text .ratting-wrap,
  .testimonial-section-s2 .testimonial-item .testimonial-text .ratting-wrap {
    justify-content: center;
  }
}

.testimonial-section .testimonial-item .testimonial-text .ratting-wrap .ratting,
.testimonial-section-s2 .testimonial-item .testimonial-text .ratting-wrap .ratting {
  display: flex;
  margin-right: 20px;
}

.testimonial-section .testimonial-item .testimonial-text .ratting-wrap .ratting li,
.testimonial-section-s2 .testimonial-item .testimonial-text .ratting-wrap .ratting li {
  width: 36px;
  height: 36px;
  line-height: 38px;
  background: var(--theme-color);
  text-align: center;
  color: #fff;
  border-radius: 5px;
}

@media (max-width: 991px) {

  .testimonial-section .testimonial-item .testimonial-text .ratting-wrap .ratting li,
  .testimonial-section-s2 .testimonial-item .testimonial-text .ratting-wrap .ratting li {
    width: 26px;
    height: 26px;
    line-height: 26px;
  }
}

.testimonial-section .testimonial-item .testimonial-text .ratting-wrap .ratting li+li,
.testimonial-section-s2 .testimonial-item .testimonial-text .ratting-wrap .ratting li+li {
  margin-left: 10px;
}

.testimonial-section .testimonial-item .testimonial-text .ratting-wrap .count,
.testimonial-section-s2 .testimonial-item .testimonial-text .ratting-wrap .count {
  display: flex;
}

.testimonial-section .testimonial-item .testimonial-text .ratting-wrap .count li,
.testimonial-section-s2 .testimonial-item .testimonial-text .ratting-wrap .count li {
  font-family: "Cormorant";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  color: #1F212D;
}

.testimonial-section .testimonial-item .testimonial-text p,
.testimonial-section-s2 .testimonial-item .testimonial-text p {
  font-family: "Cormorant";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  color: #151515;
}

@media (max-width: 575px) {

  .testimonial-section .testimonial-item .testimonial-text p,
  .testimonial-section-s2 .testimonial-item .testimonial-text p {
    font-size: 20px;
  }
}

.testimonial-section .testimonial-item .testimonial-text .testimonial-avatar,
.testimonial-section-s2 .testimonial-item .testimonial-text .testimonial-avatar {
  max-width: 100px;
  border-radius: 50%;
  border: 2px solid var(--theme-color);
  margin-top: 30px;
  margin-bottom: 20px;
}

@media (max-width: 991px) {

  .testimonial-section .testimonial-item .testimonial-text .testimonial-avatar,
  .testimonial-section-s2 .testimonial-item .testimonial-text .testimonial-avatar {
    margin: 20px auto;
  }
}

.testimonial-section .testimonial-item .testimonial-text .testimonial-avatar img,
.testimonial-section-s2 .testimonial-item .testimonial-text .testimonial-avatar img {
  border-radius: 50%;
}

.testimonial-section .testimonial-item .testimonial-text .testimonial-text-btm h3,
.testimonial-section-s2 .testimonial-item .testimonial-text .testimonial-text-btm h3 {
  font-family: "Cormorant";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 0px;
}

.testimonial-section .testimonial-item .testimonial-text .testimonial-text-btm span,
.testimonial-section-s2 .testimonial-item .testimonial-text .testimonial-text-btm span {
  font-family: "Cormorant";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  color: var(--theme-color);
}

.testimonial-section .owl-nav,
.testimonial-section-s2 .owl-nav {
  display: none;
}

.testimonial-section .back-shape,
.testimonial-section-s2 .back-shape {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/*==================================
 13. Team-section 
 ==================================*/
.team-section {
  position: relative;
  padding-top: 100px;
  z-index: 1;
  padding-right: 85px;
  border-bottom: 3px solid var(--theme-color);
  margin-bottom: 60px;
}

@media (max-width: 1700px) {
  .team-section {
    padding-right: 45px;
  }
}

@media (max-width: 1399px) {
  .team-section {
    padding-right: 0px;
  }
}

@media (max-width: 991px) {
  .team-section {
    padding-top: 90px;
  }
}

@media (max-width: 767px) {
  .team-section {
    padding-top: 70px;
  }
}

.team-section::before {
  position: absolute;
  bottom: -60px;
  right: 0;
  height: 60px;
  content: "";
  background: #1F212D;
  width: 30%;
}

.team-section .team-wrap {
  padding-left: 100px;
  margin-bottom: -60px;
}

@media (max-width: 1700px) {
  .team-section .team-wrap {
    padding-left: 0px;
  }
}

.team-section .team-wrap .heading-title {
  max-width: 470px;
}

@media (max-width: 991px) {
  .team-section .team-wrap .heading-title {
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

.team-section .team-wrap .heading-title h2 {
  color: #fff;
}

.team-section .team-wrap .team-item {
  position: relative;
  overflow: hidden;
}

.team-section .team-wrap .team-item:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 78%;
  content: "";
  background: #1F212D;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-section .team-wrap .team-item::after {
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 0;
  content: "";
  background: var(--theme-color);
  opacity: 0.75;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.team-section .team-wrap .team-item .team-img-wrap {
  position: relative;
  z-index: 1;
}

.team-section .team-wrap .team-item .team-img-wrap .team-shape {
  position: absolute;
  left: 10px;
  top: 5px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.team-section .team-wrap .team-item .team-img {
  margin: 0 auto;
  position: relative;
}

.team-section .team-wrap .team-item .team-img img {
  transition: all 0.3s;
  display: unset;
  max-width: 300px;
  filter: grayscale(100%);
}

.team-section .team-wrap .team-item .team-text {
  position: absolute;
  left: 50%;
  bottom: -200px;
  padding: 15px 45px;
  transform: translateX(-50%);
  min-width: 80%;
  border-radius: 10px 10px 0px 0px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  transition: all 0.6s;
  text-align: center;
  z-index: 11;
}

@media (max-width: 1700px) {
  .team-section .team-wrap .team-item .team-text {
    padding: 15px 25px;
  }
}

@media (max-width: 767px) {
  .team-section .team-wrap .team-item .team-text {
    padding: 10px 15px;
  }
}

.team-section .team-wrap .team-item .team-text h3 {
  margin-bottom: 0;
}

.team-section .team-wrap .team-item .team-text h3 a {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
}

@media (max-width: 1700px) {
  .team-section .team-wrap .team-item .team-text h3 a {
    font-size: 25px;
  }
}

@media (max-width: 1399px) {
  .team-section .team-wrap .team-item .team-text h3 a {
    font-size: 22px;
  }
}

.team-section .team-wrap .team-item .team-text span {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.48px;
  color: #fff;
  font-family: "Cormorant";
}

@media (max-width: 1399px) {
  .team-section .team-wrap .team-item .team-text span {
    font-size: 16px;
  }
}

.team-section .team-wrap .team-item:hover .team-text {
  bottom: 0px;
}

.team-section .team-wrap .team-item .right-title {
  position: absolute;
  right: -36%;
  bottom: 40%;
  transform: rotate(-90deg);
  z-index: 1;
  width: 320px;
}

@media (max-width: 1700px) {
  .team-section .team-wrap .team-item .right-title {
    right: -46%;
  }
}

@media (max-width: 575px) {
  .team-section .team-wrap .team-item .right-title {
    right: -60%;
  }
}

@media (max-width: 450px) {
  .team-section .team-wrap .team-item .right-title {
    right: -40%;
  }
}

@media (max-width: 375px) {
  .team-section .team-wrap .team-item .right-title {
    right: -41%;
  }
}

@media (max-width: 350px) {
  .team-section .team-wrap .team-item .right-title {
    right: -45%;
  }
}

.team-section .team-wrap .team-item .right-title h3 {
  font-family: "Cormorant";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 5px;
  display: inline-block;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.6);
}

.team-section .team-wrap .owl-item.active.center .team-item::after,
.team-section .team-wrap .owl-item:hover .team-item::after {
  height: 78%;
  bottom: 0;
}

.team-section .team-wrap .owl-item.active.center .team-item .team-text,
.team-section .team-wrap .owl-item:hover .team-item .team-text {
  bottom: 0px;
}

.team-section .team-wrap .owl-nav [class*=owl-] {
  background: #1F212D;
  width: 60px;
  height: 60px;
  line-height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0;
  font-size: 20px;
  margin: 0;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}

.team-section .team-wrap .owl-nav [class*=owl-]:hover {
  background: var(--theme-color);
}

.team-section .team-wrap .owl-nav [class*=owl-]:hover:before {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991px) {
  .team-section .team-wrap .owl-nav [class*=owl-] {
    display: none;
  }
}

.team-section .team-wrap .owl-dots {
  text-align: center;
}

.team-section .team-wrap .owl-dots button {
  width: 10px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  margin: 5px;
  background-color: #d6d6d6;
}

.team-section .team-wrap .owl-dots button.active {
  background-color: var(--theme-color);
}

.team-section .team-wrap .owl-next {
  position: absolute;
  top: -120px;
  right: 0;
}

.team-section .team-wrap .owl-prev {
  position: absolute;
  top: -120px;
  right: 80px;
}

/*===============================
 14. Faq-section 
 ================================*/
.faq-section .faq-img-wrap,
.faq-section-s2 .faq-img-wrap {
  display: flex;
}

@media (max-width: 1199px) {

  .faq-section .faq-img-wrap,
  .faq-section-s2 .faq-img-wrap {
    margin-bottom: 30px;
  }
}

.faq-section .faq-img-wrap .faq-img,
.faq-section-s2 .faq-img-wrap .faq-img {
  flex-basis: 50%;
}

.faq-section .faq-img-wrap .faq-img img,
.faq-section-s2 .faq-img-wrap .faq-img img {
  width: 100%;
}

.faq-section .faq-img-wrap .faq-img-with-bg,
.faq-section-s2 .faq-img-wrap .faq-img-with-bg {
  min-height: 100%;
  width: 100%;
  background: #FAFAFA;
  flex-basis: 50%;
  margin-left: 20px;
  position: relative;
}

.faq-section .faq-img-wrap .faq-img-with-bg .shape,
.faq-section-s2 .faq-img-wrap .faq-img-with-bg .shape {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.faq-section .accordion-item,
.faq-section-s2 .accordion-item {
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.faq-section .accordion-item button,
.faq-section-s2 .accordion-item button {
  padding: 28px 0;
  color: #1F212D;
  text-align: left;
  font-family: "Cormorant";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  background: none;
}

@media (max-width: 1399px) {

  .faq-section .accordion-item button,
  .faq-section-s2 .accordion-item button {
    padding: 20px 0;
  }
}

@media (max-width: 1199px) {

  .faq-section .accordion-item button,
  .faq-section-s2 .accordion-item button {
    font-size: 20px;
    padding: 24px 0;
    line-height: 28px;
  }
}

.faq-section .accordion-item button::after,
.faq-section-s2 .accordion-item button::after {
  background: none;
  content: "\e906";
  font-family: "icomoon";
  font-size: 15px;
  font-weight: 700;
}

.faq-section .accordion-item button.collapsed,
.faq-section-s2 .accordion-item button.collapsed {
  color: #373b3e;
}

.faq-section .accordion-item button:focus,
.faq-section-s2 .accordion-item button:focus {
  box-shadow: none;
  outline: none;
  border-color: #e1e1e1;
}

.faq-section .accordion-item .accordion-body,
.faq-section-s2 .accordion-item .accordion-body {
  padding: 20px 0;
}

.faq-section .accordion-item .accordion-collapse,
.faq-section-s2 .accordion-item .accordion-collapse {
  border: 0;
}

/*==================================
 15. Contact-area 
 ===================================*/
.contact-area,
.contact-area-s2 {
  position: relative;
  z-index: 1;
  background: #F5F5F5;
  padding-bottom: 90px;
}

@media (max-width: 991px) {

  .contact-area,
  .contact-area-s2 {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {

  .contact-area,
  .contact-area-s2 {
    padding-bottom: 50px;
  }
}

.contact-area .left-img,
.contact-area-s2 .left-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 43%;
  min-height: 845px;
  height: 100%;
}

@media (max-width: 991px) {

  .contact-area .left-img,
  .contact-area-s2 .left-img {
    display: none;
  }
}

.contact-area .left-img img,
.contact-area-s2 .left-img img {
  min-height: 845px;
  object-fit: cover;
}

.contact-area .left-img .shape,
.contact-area-s2 .left-img .shape {
  position: absolute;
  right: 0;
  top: 0;
}

.contact-area .right-shape,
.contact-area-s2 .right-shape {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
}

.contact-area .contact-area-wrapper,
.contact-area-s2 .contact-area-wrapper {
  position: relative;
}

.contact-area .contact-area-wrapper .contact-form-area,
.contact-area-s2 .contact-area-wrapper .contact-form-area {
  position: relative;
  z-index: 9;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  z-index: 1;
}

@media (max-width: 991px) {

  .contact-area .contact-area-wrapper .contact-form-area,
  .contact-area-s2 .contact-area-wrapper .contact-form-area {
    padding: 20px;
  }
}

@media (max-width: 991px) {

  .contact-area .contact-area-wrapper .contact-form-area,
  .contact-area-s2 .contact-area-wrapper .contact-form-area {
    margin-top: 50px;
  }
}

.contact-area .contact-area-wrapper .contact-form-area .shape,
.contact-area-s2 .contact-area-wrapper .contact-form-area .shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.contact-area .contact-area-wrapper .contact-form-area .form-control,
.contact-area-s2 .contact-area-wrapper .contact-form-area .form-control {
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  border: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #707070;
  border: 1px solid rgba(31, 33, 45, 0.15);
}

.contact-area .contact-area-wrapper .contact-form-area .form-control:focus,
.contact-area-s2 .contact-area-wrapper .contact-form-area .form-control:focus {
  outline: none;
  box-shadow: none;
}

.contact-area .contact-area-wrapper .contact-form-area .form-control::-webkit-input-placeholder,
.contact-area-s2 .contact-area-wrapper .contact-form-area .form-control::-webkit-input-placeholder {
  color: #707070;
}

.contact-area .contact-area-wrapper .contact-form-area .form-control:-ms-input-placeholder,
.contact-area-s2 .contact-area-wrapper .contact-form-area .form-control:-ms-input-placeholder {
  color: #707070;
}

.contact-area .contact-area-wrapper .contact-form-area .form-control::placeholder,
.contact-area-s2 .contact-area-wrapper .contact-form-area .form-control::placeholder {
  color: #707070;
}

.contact-area .contact-area-wrapper .contact-form-area textarea.form-control,
.contact-area-s2 .contact-area-wrapper .contact-form-area textarea.form-control {
  height: 130px;
}

.contact-area .contact-area-wrapper .contact-form-area select.form-control,
.contact-area-s2 .contact-area-wrapper .contact-form-area select.form-control {
  color: #707070;
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: #fff url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
  position: relative;
}

.contact-area .contact-area-wrapper .contact-form-area select.form-control option,
.contact-area-s2 .contact-area-wrapper .contact-form-area select.form-control option {
  border: 0;
}

.contact-area .contact-area-wrapper .contact-form-area .submit-area,
.contact-area-s2 .contact-area-wrapper .contact-form-area .submit-area {
  margin-top: 20px;
}

/*=================================
 16. Blog-section 
 ==================================*/
.blog-section {
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .blog-section {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .blog-section {
    padding-bottom: 50px;
  }
}

.blog-section .blog-items .blog-item {
  display: flex;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 94.4px 0px rgba(224, 224, 224, 0.2);
  padding: 40px 30px;
  align-items: center;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .blog-section .blog-items .blog-item {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .blog-section .blog-items .blog-item {
    display: block;
    text-align: center;
  }
}

.blog-section .blog-items .blog-item .blog-img-left {
  flex-basis: 35%;
}

@media (max-width: 575px) {
  .blog-section .blog-items .blog-item .blog-img-left img {
    width: 100%;
  }
}

.blog-section .blog-items .blog-item .blog-content {
  padding-left: 25px;
  flex-basis: 65%;
}

@media (max-width: 575px) {
  .blog-section .blog-items .blog-item .blog-content {
    padding-left: 0;
    margin-top: 20px;
  }
}

.blog-section .blog-items .blog-item .blog-content ul {
  display: flex;
  align-items: center;
}

@media (max-width: 575px) {
  .blog-section .blog-items .blog-item .blog-content ul {
    justify-content: center;
  }
}

.blog-section .blog-items .blog-item .blog-content ul li {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.blog-section .blog-items .blog-item .blog-content ul li+li {
  margin-left: 20px;
}

.blog-section .blog-items .blog-item .blog-content ul li i {
  color: var(--theme-color);
}

.blog-section .blog-items .blog-item .blog-content ul li strong {
  color: #1F212D;
  font-family: "Cormorant";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.blog-section .blog-items .blog-item .blog-content h2 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-top: 15px;
  margin-bottom: 20px;
}

@media (max-width: 1399px) {
  .blog-section .blog-items .blog-item .blog-content h2 {
    font-size: 25px;
  }
}

@media (max-width: 1199px) {
  .blog-section .blog-items .blog-item .blog-content h2 {
    font-size: 22px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  .blog-section .blog-items .blog-item .blog-content h2 {
    margin-top: 5px;
  }
}

.blog-section .blog-items .blog-item .blog-content h2 a {
  color: #1F212D;
}

.blog-section .blog-items .blog-item .blog-content h2 a:hover {
  color: var(--theme-color);
}

/*===============================
 17. Cta-section 
 ================================*/
.cta-section {
  position: relative;
}

.cta-section:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #1F212D 16.03%, rgba(31, 33, 45, 0.31) 50.8%, #1F212D 89.47%), url(../images/cta.jpg), lightgray 0px -229.955px/100% 238.363% no-repeat;
}

.cta-section .cta-title {
  position: relative;
}

.cta-section .cta-title h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 58px;
  color: #fff;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .cta-section .cta-title h2 {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .cta-section .cta-title h2 {
    font-size: 30px;
    line-height: 38px;
  }
}

.cta-section .cta-btn {
  text-align: right;
}

@media (max-width: 991px) {
  .cta-section .cta-btn {
    text-align: center;
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------
18. Home-style-2
--------------------------------------------------------------*/
/* about-section-s2 */
.about-section-s2 {
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .about-section-s2 {
    padding-bottom: 100px;
  }
}

.about-section-s2 .back-shape {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.about-section-s2 .top-shape {
  position: absolute;
  right: 0;
  top: -2px;
  z-index: -1;
}

.about-section-s2 .top-shape svg {
  width: 720px;
  height: 92px;
}

@media (max-width: 1399px) {
  .about-section-s2 .top-shape svg {
    width: 520px;
    height: 68px;
  }
}

@media (max-width: 1199px) {
  .about-section-s2 .top-shape svg {
    width: 220px;
    height: 32px;
  }
}

@media (max-width: 991px) {
  .about-section-s2 .top-shape svg {
    display: none;
  }
}

.about-section-s2 .top-shape svg path {
  fill: var(--theme-color);
}

.about-section-s2 .about-wrap .row {
  align-items: flex-end;
}

.about-section-s2 .about-top-left {
  background: #FAFAFA;
  padding: 40px;
}

@media (max-width: 1399px) {
  .about-section-s2 .about-top-left {
    padding: 20px 15px;
  }
}

@media (max-width: 991px) {
  .about-section-s2 .about-top-left {
    text-align: center;
  }
}

.about-section-s2 .about-top-left .about-top-text {
  display: flex;
  padding-bottom: 20px;
}

@media (max-width: 991px) {
  .about-section-s2 .about-top-left .about-top-text {
    justify-content: center;
  }
}

.about-section-s2 .about-top-left .about-top-right {
  padding-left: 20px;
  margin-left: 20px;
  border-left: 1px solid #D7D7D7;
}

.about-section-s2 .about-top-left .about-top-right p {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  color: #1F212D;
  margin-bottom: 10px;
}

.about-section-s2 .about-top-left .about-top-right span {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  color: #1F212D;
}

@media (max-width: 350px) {
  .about-section-s2 .about-top-left .btn-style-1 {
    padding: 5px 10px;
  }

  .about-section-s2 .about-top-left .btn-style-1::after {
    display: none;
  }
}

.about-section-s2 .about-top-left h2 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.about-section-s2 .about-text {
  border-bottom: 1px solid #D7D7D7;
  padding-bottom: 20px;
}

@media (max-width: 991px) {
  .about-section-s2 .about-text {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .about-section-s2 .about-text .about-icon-wrap {
    justify-content: center;
    text-align: left;
  }
}

.about-section-s2 .about-bottom-wrap {
  padding-top: 120px;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .about-section-s2 .about-bottom-wrap {
    padding-top: 90px;
  }
}

@media (max-width: 767px) {
  .about-section-s2 .about-bottom-wrap {
    padding-top: 70px;
  }
}

.about-section-s2 .about-bottom-wrap .about-bottom-left .heading-title {
  max-width: 654px;
}

@media (max-width: 1199px) {
  .about-section-s2 .about-bottom-wrap .about-bottom-left .heading-title {
    max-width: 454px;
  }
}

@media (max-width: 991px) {
  .about-section-s2 .about-bottom-wrap .about-bottom-left .heading-title {
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

.about-section-s2 .about-bottom-wrap .about-bottom-left img {
  width: 100%;
}

.about-section-s2 .about-bottom-wrap .ab-shape {
  position: absolute;
  left: -200px;
  bottom: -70px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .about-section-s2 .about-bottom-wrap .ab-shape {
    left: -80px;
    bottom: 0px;
  }

  .about-section-s2 .about-bottom-wrap .ab-shape img {
    max-width: 200px;
  }
}

@media (max-width: 1199px) {
  .about-section-s2 .about-bottom-wrap .ab-shape {
    display: none;
  }
}

@media (max-width: 991px) {
  .about-section-s2 .about-bottom-wrap .about-bottom-left-text {
    margin: 30px 0;
  }
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text h2 {
  font-family: "Cormorant";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 20px;
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text p {
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 29px;
  padding-left: 20px;
  border-left: 3px solid var(--theme-color);
  margin-bottom: 20px;
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text ul li {
  font-family: "Cormorant";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
}

@media (max-width: 1399px) {
  .about-section-s2 .about-bottom-wrap .about-bottom-left-text ul li {
    font-size: 18px;
  }
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text ul li i {
  color: var(--theme-color);
  margin-right: 10px;
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text ul li+li {
  margin-top: 10px;
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text .icon-wraps {
  display: flex;
  margin-top: 20px;
}

@media (max-width: 450px) {
  .about-section-s2 .about-bottom-wrap .about-bottom-left-text .icon-wraps {
    flex-wrap: wrap;
  }
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text .icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text .icon-wrap+.icon-wrap {
  margin-left: 20px;
}

@media (max-width: 450px) {
  .about-section-s2 .about-bottom-wrap .about-bottom-left-text .icon-wrap+.icon-wrap {
    margin-left: 0;
  }
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text .icon-wrap i {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #1F212D;
  display: block;
  font-size: 30px;
  text-align: center;
  margin-right: 15px;
  border-radius: 5px;
  color: #fff;
  transition: all 0.3s;
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text .icon-wrap h4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text .icon-wrap:hover i {
  background-color: var(--theme-color);
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text a {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  text-decoration-line: underline;
  position: relative;
  padding-right: 30px;
  color: var(--theme-color);
  transition: all 0.3s;
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text a:after {
  position: absolute;
  right: 0;
  top: -2px;
  content: "\e912";
  font-family: "icomoon" !important;
  transform: rotate(-45deg);
  transition: all 0.3s;
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text a:hover {
  letter-spacing: 1px;
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text a:hover:after {
  transform: rotate(0);
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .about-bottom-right-img {
  position: relative;
  margin-bottom: 30px;
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .about-bottom-right-img:last-child {
  margin-bottom: 0;
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .about-bottom-right-img img {
  width: 100%;
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap {
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(191, 191, 191, 0.25);
  text-align: center;
  padding: 20px;
  max-width: 142px;
  position: absolute;
  left: -80px;
  top: 50px;
}

@media (max-width: 1500px) {
  .about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap {
    left: -50px;
  }
}

@media (max-width: 767px) {
  .about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap {
    left: 20px;
    top: 30px;
  }
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap span {
  font-family: "Cormorant";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  color: #1F212D;
  display: block;
  margin-bottom: 10px;
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap .progress {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: none;
  margin: 0 auto;
  box-shadow: none;
  position: relative;
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap .progress:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap .progress>span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap .progress .progress-left {
  left: 0;
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap .progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 6px;
  border-style: solid;
  position: absolute;
  top: 0;
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap .progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap .progress .progress-right {
  right: 0;
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap .progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
  animation: loading-1 1.8s linear forwards;
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap .progress .progress-value {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: #ffffff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  color: #1F212D;
  line-height: 65px;
  text-align: center;
  position: absolute;
  top: 5%;
  left: 5%;
  font-family: "Cormorant";
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap .progress.blue .progress-bar {
  border-color: var(--theme-color);
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap .progress.blue .progress-left .progress-bar {
  animation: loading-2 1.5s linear forwards 1.8s;
}

@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(144deg);
    transform: rotate(144deg);
  }
}

@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@keyframes loading-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(36deg);
    transform: rotate(36deg);
  }
}

@keyframes loading-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(126deg);
    transform: rotate(126deg);
  }
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .video-btn-wrap .video-btn {
  display: block;
  width: 124px;
  height: 124px;
  line-height: 124px;
  background: linear-gradient(328deg, var(--theme-color) -9.33%, #30323D 125.4%);
  border-radius: 50%;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .video-btn-wrap .video-btn:before {
  content: "";
  width: 0px;
  height: 0px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #fff;
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .video-btn-wrap .video-btn:after {
  content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  left: -12.5px;
  top: -12.5px;
  border: 1px dashed #fff;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .about-section-s2 .about-bottom-wrap .about-bottom-right .video-btn-wrap .video-btn {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    line-height: 100px;
  }

  .about-section-s2 .about-bottom-wrap .about-bottom-right .video-btn-wrap .video-btn:after {
    content: "";
    width: 120px;
    height: 120px;
    position: absolute;
    left: -10px;
    top: -10px;
    border: 1px dashed #fff;
    border-radius: 50%;
  }
}

.animate-marque-sec.style-2 {
  margin-bottom: -25px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .animate-marque-sec.style-2 {
    margin-bottom: -20px;
  }
}

@media (max-width: 575px) {
  .animate-marque-sec.style-2 {
    margin-bottom: -5px;
  }
}

.animate-marque-sec.style-2 .animate-marque h1 {
  color: var(--theme-color);
}

/* service-section-s2 */
.service-section-s2 {
  background: #FAFAFA;
}

.service-section-s2 .service-wrap {
  background: #fff;
  padding: 80px 70px 70px;
}

@media (max-width: 991px) {
  .service-section-s2 .service-wrap {
    padding: 50px 25px 40px;
  }
}

@media (max-width: 575px) {
  .service-section-s2 .service-wrap {
    padding: 30px 10px 20px;
  }
}

.service-section-s2 .service-wrap .service-item {
  padding-right: 40px;
}

@media (max-width: 575px) {
  .service-section-s2 .service-wrap .service-item .service-top i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 30px;
    margin-right: 8px;
  }
}

.service-section-s2 .service-wrap .service-item .right-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: transparent;
  text-align: center;
  border-radius: 5px;
  color: #1F212D;
  transition: all 0.3s;
}

.service-section-s2 .service-wrap .service-item:hover .right-btn {
  background: var(--theme-color);
  color: #fff;
}

.service-section-s2 .bottom-link {
  text-align: center;
  margin-top: 40px;
}

.service-section-s2 .bottom-link p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}

.service-section-s2 .bottom-link a {
  color: var(--theme-color);
}

.service-section-s2 .bottom-link a.s-btn {
  display: inline-block;
  padding: 5px 15px;
  background: var(--theme-color);
  color: #fff;
  margin-left: 20px;
}

/* choose-section */
.choose-section {
  position: relative;
  z-index: 1;
  padding-bottom: 85px;
}

.choose-section:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #1F212D 33.88%, rgba(31, 33, 45, 0) 100%);
  z-index: -1;
}

.choose-section::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url(../images/choose/shape.png);
  background-repeat: no-repeat;
  z-index: -1;
}

.choose-section .heading-title-s3 p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 20px;
}

.choose-section .choose-items {
  padding-right: 60px;
}

@media (max-width: 991px) {
  .choose-section .choose-items {
    text-align: center;
    padding-right: 0;
  }
}

.choose-section .choose-items .choose-item {
  padding-left: 60px;
  position: relative;
}

@media (max-width: 991px) {
  .choose-section .choose-items .choose-item {
    text-align: center;
    margin-bottom: 30px;
    padding: 0;
  }
}

.choose-section .choose-items .choose-item h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  color: #fff;
}

@media (max-width: 991px) {
  .choose-section .choose-items .choose-item h3 {
    margin-top: 20px;
  }
}

.choose-section .choose-items .choose-item p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 470px;
}

@media (max-width: 991px) {
  .choose-section .choose-items .choose-item p {
    margin: 0 auto;
  }
}

.choose-section .choose-items .choose-item i {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 40px;
  color: var(--theme-color);
}

@media (max-width: 991px) {
  .choose-section .choose-items .choose-item i {
    position: relative;
  }
}

.choose-section .choose-items .btn-style-1 {
  margin-top: 20px;
}

.choose-section .choose-list {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 50px;
  margin-top: 20px;
}

.choose-section .choose-list ul {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 575px) {
  .choose-section .choose-list ul {
    display: block;
  }
}

.choose-section .choose-list ul li {
  flex-basis: 50%;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  color: #fff;
  margin-bottom: 20px;
  font-family: "Cormorant";
}

@media (max-width: 1199px) {
  .choose-section .choose-list ul li {
    font-size: 17px;
  }
}

.choose-section .choose-list ul li i {
  margin-right: 10px;
  color: var(--theme-color);
}

.choose-section .choose-right-wrap {
  position: absolute;
  right: 120px;
  top: 45%;
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .choose-section .choose-right-wrap {
    position: relative;
    transform: unset;
    right: auto;
    margin: 0 auto;
  }
}

.choose-section .choose-right-wrap .choose-img {
  position: relative;
}

@media (max-width: 1399px) {
  .choose-section .choose-right-wrap .choose-img {
    max-width: 400px;
  }
}

@media (max-width: 1199px) {
  .choose-section .choose-right-wrap .choose-img {
    max-width: 300px;
  }
}

@media (max-width: 991px) {
  .choose-section .choose-right-wrap .choose-img {
    margin: 0 auto;
    margin-top: 100px;
  }
}

@media (max-width: 575px) {
  .choose-section .choose-right-wrap .choose-img {
    max-width: 250px;
  }
}

.choose-section .choose-right-wrap .choose-img img {
  border-radius: 40px;
  border: 8px solid #fff;
  transform: rotate(45deg);
}

.choose-section .choose-right-wrap .choose-img .flot-img {
  position: absolute;
  left: -70px;
  bottom: -70px;
}

@media (max-width: 1399px) {
  .choose-section .choose-right-wrap .choose-img .flot-img {
    max-width: 200px;
    left: -40px;
    bottom: -40px;
  }
}

@media (max-width: 1199px) {
  .choose-section .choose-right-wrap .choose-img .flot-img {
    max-width: 150px;
  }
}

/* case-section-s2 */
.case-section-s2 {
  margin-top: -50px;
  position: relative;
  background: transparent;
  z-index: 1;
}

@media (max-width: 991px) {
  .case-section-s2 {
    margin-top: 0px;
    overflow: hidden;
  }
}

.case-section-s2 .case-wrap {
  display: flex;
}

@media (max-width: 991px) {
  .case-section-s2 .case-wrap {
    display: block;
  }
}

.case-section-s2 .case-left-wrap {
  min-height: 100%;
  flex-basis: 50%;
}

.case-section-s2 .case-left {
  padding: 120px 0 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
}

@media (max-width: 991px) {
  .case-section-s2 .case-left {
    position: relative;
    padding: 80px 0;
  }
}

.case-section-s2 .case-left-text {
  padding-left: 315px;
  padding-right: 45px;
}

@media (max-width: 1700px) {
  .case-section-s2 .case-left-text {
    padding-left: 250px;
  }
}

@media (max-width: 1500px) {
  .case-section-s2 .case-left-text {
    padding-left: 200px;
  }
}

@media (max-width: 1400px) {
  .case-section-s2 .case-left-text {
    padding-left: 150px;
  }
}

@media (max-width: 1300px) {
  .case-section-s2 .case-left-text {
    padding-left: 100px;
  }
}

@media (max-width: 1199px) {
  .case-section-s2 .case-left-text {
    padding-left: 60px;
  }
}

@media (max-width: 991px) {
  .case-section-s2 .case-left-text {
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
  }
}

.case-section-s2 .case-left-text .heading-title {
  margin-bottom: 30px;
}

.case-section-s2 .case-left-text .funfact {
  max-width: 265px;
  text-align: right;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .case-section-s2 .case-left-text .funfact {
    margin: 0 auto;
    text-align: center;
  }
}

.case-section-s2 .case-left-text .funfact small {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  font-family: "Cormorant";
  color: #1F212D;
}

.case-section-s2 .case-left-text .funfact h2 {
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: 100px;
  margin-top: -20px;
}

@media (max-width: 575px) {
  .case-section-s2 .case-left-text .funfact h2 {
    font-size: 80px;
  }
}

.case-section-s2 .case-left-text .funfact h2 span {
  font-family: "Cormorant";
  line-height: 100px;
}

.case-section-s2 .case-left-text p {
  padding-left: 25px;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 29px;
  border-left: 2px solid var(--theme-color);
  margin-bottom: 60px;
  margin-top: 30px;
}

@media (max-width: 991px) {
  .case-section-s2 .case-left-text p {
    border: 0;
    padding-left: 0;
    margin-bottom: 20px;
    margin-top: 10px;
  }
}

.case-section-s2 .bottom-shape {
  margin-top: -100px;
  z-index: -1;
}

@media (max-width: 991px) {
  .case-section-s2 .bottom-shape {
    display: none;
  }
}

.case-section-s2 .case-right {
  flex-basis: 50%;
  padding-top: 150px;
  padding-right: 80px;
}

@media (max-width: 991px) {
  .case-section-s2 .case-right {
    padding: 0 15px;
    padding-top: 70px;
  }
}

.case-section-s2 .case-right .case-right-item {
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .case-section-s2 .case-right .case-right-item {
    margin-bottom: 30px;
  }
}

.case-section-s2 .case-right .case-right-item:last-child {
  margin-bottom: 0;
}

.case-section-s2 .case-right .case-right-item img {
  width: 100%;
}

.case-section-s2 .case-right .case-right-item a {
  position: relative;
}

.case-section-s2 .case-right .case-right-item a i {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: var(--theme-color);
  color: #fff;
  text-align: center;
  font-size: 40px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}

.case-section-s2 .case-right .case-right-item:hover a i {
  top: 50%;
  opacity: 1;
  visibility: visible;
}

/* benefit-section */
.benefit-section {
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .benefit-section {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .benefit-section {
    padding-bottom: 50px;
  }
}

.benefit-section .benefit-item {
  background: #FAFAFA;
  padding: 60px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .benefit-section .benefit-item {
    padding: 30px;
  }
}

@media (max-width: 1199px) {
  .benefit-section .benefit-item {
    padding: 20px 20px;
  }
}

@media (max-width: 575px) {
  .benefit-section .benefit-item {
    padding: 40px 20px;
  }
}

.benefit-section .benefit-item i {
  font-size: 60px;
  color: var(--theme-color);
}

.benefit-section .benefit-item h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.benefit-section .benefit-item p {
  margin-bottom: 0;
}

.benefit-section .benefit-item .bottom-text {
  position: absolute;
  left: 0;
  bottom: -200px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  background: #fff;
  align-items: center;
  transition: all 0.3s;
  border-bottom: 5px solid var(--Primary, var(--theme-color));
  box-shadow: 0px 4px 20px 0px rgba(236, 236, 236, 0.25);
}

.benefit-section .benefit-item .bottom-text h3 {
  margin: 0;
}

.benefit-section .benefit-item .bottom-text h3 a {
  color: #1F212D;
}

.benefit-section .benefit-item .bottom-text a.right-btn {
  width: 32px;
  height: 32px;
  line-height: 32px;
  display: block;
  text-align: center;
  background: var(--theme-color);
  color: #fff;
  border-radius: 50%;
}

.benefit-section .benefit-item .bottom-text a.right-btn i {
  font-size: 10px;
  color: #fff;
}

.benefit-section .benefit-item .benefit-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 80%;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.benefit-section .benefit-item .benefit-img img {
  width: 100%;
}

.benefit-section .benefit-item .benefit-img:before {
  position: absolute;
  left: 50%;
  top: 35%;
  width: 122px;
  height: 122px;
  background: var(--theme-color);
  filter: blur(60px);
  content: "";
  transform: translateX(-50%);
}

@media (max-width: 1199px) {
  .benefit-section .benefit-item .benefit-img:before {
    width: 70px;
    height: 70px;
    filter: blur(28px);
  }
}

@media (max-width: 991px) {
  .benefit-section .benefit-item .benefit-img:before {
    filter: blur(60px);
  }
}

.benefit-section .benefit-item:hover {
  background: #fff;
}

.benefit-section .benefit-item:hover .bottom-text {
  bottom: 0;
}

.benefit-section .benefit-item:hover .benefit-img {
  width: 100%;
  padding: 15px;
  opacity: 1;
  visibility: visible;
}

/* faq-section-s2 */
.faq-section-s2 {
  position: relative;
  z-index: 1;
  padding-bottom: 150px;
}

@media (max-width: 991px) {
  .faq-section-s2 {
    padding-bottom: 90px;
  }
}

@media (max-width: 767px) {
  .faq-section-s2 {
    padding-bottom: 80px;
  }
}

.faq-section-s2:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, rgba(31, 33, 45, 0) 0%, #1F212D 55.49%);
  z-index: -1;
}

@media (max-width: 991px) {
  .faq-section-s2:before {
    background: linear-gradient(75deg, rgba(31, 33, 45, 0) -27%, #1F212D 29.49%);
  }
}

.faq-section-s2::after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 67px;
  content: "";
  background: #fff;
  width: 50%;
  border-top: 3px solid var(--theme-color);
}

@media (max-width: 991px) {
  .faq-section-s2::after {
    display: none;
  }
}

.faq-section-s2 .faq-img {
  position: relative;
}

@media (max-width: 991px) {
  .faq-section-s2 .faq-img {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 50px;
  }
}

.faq-section-s2 .faq-img .sball-1 {
  position: absolute;
  left: 30px;
  top: 30px;
  width: 80px;
  height: 80px;
  background: var(--theme-color);
  border-radius: 50%;
  animation: zoom-in-zoom-out 5s ease infinite;
}

.faq-section-s2 .faq-img .sball-1:before {
  position: absolute;
  left: -20px;
  top: -20px;
  width: 30px;
  height: 30px;
  content: "";
  background: var(--theme-color);
  border-radius: 50%;
  animation: zoom-in-zoom-out 6s ease infinite;
}

.faq-section-s2 .faq-img .sball-2 {
  position: absolute;
  left: 100px;
  bottom: 40px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  animation: zoom-in-zoom-out 5s ease infinite;
}

.faq-section-s2 .faq-img .sball-2:before {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 18px;
  height: 18px;
  content: "";
  background: #fff;
  border-radius: 50%;
  animation: zoom-in-zoom-out 6s ease infinite;
}

.faq-section-s2 .accordion-item {
  background: none;
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-section-s2 .accordion-item button {
  color: #fff;
}

.faq-section-s2 .accordion-item button.collapsed {
  color: #fff;
}

.faq-section-s2 .accordion-item button:not(.collapsed) {
  box-shadow: none;
}

.faq-section-s2 .accordion-item button:focus {
  box-shadow: none;
  outline: none;
  border-color: #e1e1e1;
}

.faq-section-s2 .accordion-item p {
  color: #B1B1B1;
}

/* testimonial-section-s2 */
.testimonial-section-s2 {
  padding: 200px 0;
  overflow: hidden;
}

@media (max-width: 991px) {
  .testimonial-section-s2 {
    padding: 120px 0 80px;
  }
}

.testimonial-section-s2 .testimonial-left-wrap {
  position: relative;
  max-width: 720px;
}

@media (max-width: 991px) {
  .testimonial-section-s2 .testimonial-left-wrap {
    margin: 0 auto;
  }
}

.testimonial-section-s2 .testimonial-left-wrap .testimonial-left-img {
  border-radius: 40px;
  border: 15px solid #EFEFEF;
  max-width: 459.076px;
  transform: rotate(45deg);
  position: relative;
}

@media (max-width: 1399px) {
  .testimonial-section-s2 .testimonial-left-wrap .testimonial-left-img {
    max-width: 400px;
  }
}

@media (max-width: 991px) {
  .testimonial-section-s2 .testimonial-left-wrap .testimonial-left-img {
    margin: 0 auto;
    margin-bottom: 100px;
    max-width: 300px;
  }
}

@media (max-width: 575px) {
  .testimonial-section-s2 .testimonial-left-wrap .testimonial-left-img {
    max-width: 250px;
  }
}

.testimonial-section-s2 .testimonial-left-wrap .testimonial-left-img img {
  border-radius: 25px;
}

.testimonial-section-s2 .testimonial-left-wrap .testimonial-left-img .testimonial-left-img-inner {
  border-radius: 40px;
  border: 15px solid #EFEFEF;
  max-width: 459.076px;
  transform: rotate(0);
  position: absolute;
  left: -110px;
  top: 60%;
}

@media (max-width: 1399px) {
  .testimonial-section-s2 .testimonial-left-wrap .testimonial-left-img .testimonial-left-img-inner {
    max-width: 300px;
  }
}

@media (max-width: 991px) {
  .testimonial-section-s2 .testimonial-left-wrap .testimonial-left-img .testimonial-left-img-inner {
    max-width: 200px;
  }
}

@media (max-width: 767px) {
  .testimonial-section-s2 .testimonial-left-wrap .testimonial-left-img .testimonial-left-img-inner {
    display: none;
  }
}

.testimonial-section-s2 .testimonial-left-wrap .quote {
  position: absolute;
  right: 110px;
  bottom: 0;
  width: 182px;
  height: 182px;
  line-height: 205px;
  background: var(--theme-color);
  transform: unset;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-size: 100px;
}

@media (max-width: 575px) {
  .testimonial-section-s2 .testimonial-left-wrap .quote {
    width: 130px;
    height: 130px;
    line-height: 155px;
    font-size: 60px;
    right: 30px;
  }
}

.testimonial-section-s2 .testimonial-item {
  text-align: center;
}

.testimonial-section-s2 .testimonial-item .ratting-wrap {
  justify-content: center;
}

.testimonial-section-s2 .testimonial-item .testimonial-text .testimonial-avatar {
  margin: 20px auto;
}

/* partner-section */
.partner-section {
  background: #FAFAFA;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .partner-section {
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .partner-section {
    padding-bottom: 70px;
  }
}

.partner-section .container-fluid {
  padding: 0;
}

@media (max-width: 991px) {
  .partner-section .container-fluid {
    padding: 0 15px;
  }
}

.partner-section .heading-title {
  margin-bottom: 0;
}

.partner-section .heading-title p {
  margin-top: 20px;
  margin-bottom: 30px;
}

.partner-section .partner-left {
  padding-left: 315px;
  padding-right: 45px;
}

@media (max-width: 1700px) {
  .partner-section .partner-left {
    padding-left: 250px;
  }
}

@media (max-width: 1500px) {
  .partner-section .partner-left {
    padding-left: 200px;
  }
}

@media (max-width: 1400px) {
  .partner-section .partner-left {
    padding-left: 150px;
  }
}

@media (max-width: 1300px) {
  .partner-section .partner-left {
    padding-left: 100px;
  }
}

@media (max-width: 1199px) {
  .partner-section .partner-left {
    padding-left: 60px;
  }
}

@media (max-width: 991px) {
  .partner-section .partner-left {
    padding: 70px 15px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .partner-section .partner-left {
    padding: 70px 0px;
  }
}

.partner-section .partner-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: -1px;
  margin-right: -5px;
}

@media (max-width: 991px) {
  .partner-section .partner-wrap {
    margin: 0;
  }
}

.partner-section .partner-wrap .partner-item {
  flex-basis: 33.33%;
  height: 176px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: -1px;
  margin-left: -1px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  transition: all 0.3s;
}

@media (max-width: 575px) {
  .partner-section .partner-wrap .partner-item {
    flex-basis: 50%;
  }
}

@media (max-width: 450px) {
  .partner-section .partner-wrap .partner-item {
    flex-basis: 100%;
  }
}

.partner-section .partner-wrap .partner-item:hover {
  background-color: #fff;
}

/* blog-section-s2 */
.blog-section-s2 {
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .blog-section-s2 {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .blog-section-s2 {
    padding-bottom: 50px;
  }
}

.blog-section-s2 .blog-item {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 94.4px 0px rgba(224, 224, 224, 0.2);
  padding: 40px 30px;
  align-items: center;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .blog-section-s2 .blog-item {
    padding: 40px 20px;
  }
}

.blog-section-s2 .blog-item .blog-content ul {
  display: flex;
  align-items: center;
  padding-top: 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .blog-section-s2 .blog-item .blog-content ul {
    justify-content: center;
  }
}

.blog-section-s2 .blog-item .blog-content ul li {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.blog-section-s2 .blog-item .blog-content ul li+li {
  margin-left: 20px;
}

.blog-section-s2 .blog-item .blog-content ul li i {
  color: var(--theme-color);
}

.blog-section-s2 .blog-item .blog-content ul li strong {
  color: #1F212D;
  font-family: "Cormorant";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

@media (max-width: 1199px) {
  .blog-section-s2 .blog-item .blog-content p {
    font-size: 14px;
  }
}

.blog-section-s2 .blog-item .blog-content h2 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-top: 15px;
  margin-bottom: 20px;
}

@media (max-width: 1399px) {
  .blog-section-s2 .blog-item .blog-content h2 {
    font-size: 25px;
  }
}

@media (max-width: 1199px) {
  .blog-section-s2 .blog-item .blog-content h2 {
    font-size: 22px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  .blog-section-s2 .blog-item .blog-content h2 {
    margin-top: 5px;
  }
}

.blog-section-s2 .blog-item .blog-content h2 a {
  color: #1F212D;
}

.blog-section-s2 .blog-item .blog-content h2 a:hover {
  color: var(--theme-color);
}

.blog-section-s2 .blog-item .blog-flip-box {
  background-color: transparent;
  perspective: 1000px;
  margin-bottom: 30px;
}

.blog-section-s2 .blog-item .blog-flip-box .blog-flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  min-height: 116px;
  max-height: 116px;
}

.blog-section-s2 .blog-item .blog-flip-box .blog-flip-box-front,
.blog-section-s2 .blog-item .blog-flip-box .blog-flip-box-back {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.blog-section-s2 .blog-item .blog-flip-box .blog-flip-box-front p,
.blog-section-s2 .blog-item .blog-flip-box .blog-flip-box-back p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

.blog-section-s2 .blog-item .blog-flip-box .blog-flip-box-back {
  background-color: #ffffff;
  color: #000;
  transform: rotateY(180deg);
  border-radius: 10px;
}

.blog-section-s2 .blog-item .blog-flip-box .blog-flip-box-back img {
  min-height: 116px;
  object-fit: cover;
}

.blog-section-s2 .blog-item:hover .blog-flip-box .blog-flip-box-inner {
  transform: rotateY(180deg);
}

.instagram-section {
  padding-bottom: 10px;
}

.instagram-section .instagram-item a {
  position: relative;
  display: block;
}

.instagram-section .instagram-item a:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "\e902";
  border-radius: 5px;
  background: rgba(236, 37, 38, 0.8);
  font-family: "icomoon";
  color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1;
  font-size: 40px;
  transition: all 0.6s;
}

.instagram-section .instagram-item:hover a:before {
  opacity: 1;
  visibility: visible;
}

.instagram-section .owl-nav {
  display: none;
}

/*--------------------------------------------------------------
19. Home-style-3
--------------------------------------------------------------*/
/* business-section */
.business-section {
  position: relative;
  z-index: 1;
  padding-bottom: 85px;
  margin-bottom: 320px;
  padding-top: 90px;
}

@media (max-width: 575px) {
  .business-section {
    padding-top: 70px;
    padding-bottom: 45px;
    margin-bottom: 280px;
  }
}

.business-section:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #1F212D 33.88%, rgba(31, 33, 45, 0) 100%);
  z-index: -1;
}

.business-section::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url(../images/choose/shape.png);
  background-repeat: no-repeat;
  z-index: -1;
}

.business-section .business-bottom-img {
  position: relative;
  margin-bottom: -320px;
}

.business-section .business-bottom-img img {
  border-radius: 40px;
}

@media (max-width: 575px) {
  .business-section .business-bottom-img img {
    min-height: 250px;
    object-fit: cover;
  }
}

.business-section .business-bottom-img .video-btn-wrap .video-btn {
  display: block;
  width: 124px;
  height: 124px;
  line-height: 124px;
  background: linear-gradient(328deg, var(--theme-color) -9.33%, #30323D 125.4%);
  border-radius: 50%;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 575px) {
  .business-section .business-bottom-img .video-btn-wrap .video-btn {
    top: 120px;
  }
}

.business-section .business-bottom-img .video-btn-wrap .video-btn:before {
  content: "";
  width: 0px;
  height: 0px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #fff;
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.business-section .business-bottom-img .video-btn-wrap .video-btn:after {
  content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  left: -12.5px;
  top: -12.5px;
  border: 1px dashed #fff;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .business-section .business-bottom-img .video-btn-wrap .video-btn {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    line-height: 100px;
  }

  .business-section .business-bottom-img .video-btn-wrap .video-btn:after {
    content: "";
    width: 120px;
    height: 120px;
    position: absolute;
    left: -10px;
    top: -10px;
    border: 1px dashed #fff;
    border-radius: 50%;
  }
}

.business-section .business-bottom-img .rotate-outer {
  width: 230px;
  height: 230px;
  line-height: 230px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  right: -50px;
  bottom: -50px;
}

@media (max-width: 575px) {
  .business-section .business-bottom-img .rotate-outer {
    position: relative;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    margin-top: 40px;
  }
}

.business-section .business-bottom-img .rotate-text-wrap {
  width: 200px;
  height: 200px;
  line-height: 200px;
  border-radius: 50%;
  z-index: 11;
  border: 1px dashed #707070;
  position: relative;
  left: 15px;
  top: 15px;
}

.business-section .business-bottom-img .rotate-text-wrap .rotate-text {
  position: relative;
  top: 0px;
  animation: circle 30s linear infinite;
  max-width: 200px;
}

.business-section .business-bottom-img .rotate-text-wrap .rotate-text svg path {
  fill: transparent;
}

.business-section .business-bottom-img .rotate-text-wrap .rotate-text text {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  color: #1F212D;
  text-transform: uppercase;
  font-family: "Cormorant";
  letter-spacing: 9px;
}

.business-section .business-bottom-img .rotate-text-wrap .icon {
  position: absolute;
  left: 20%;
  top: 15px;
}

.business-section .business-bottom-img .rotate-text-wrap .icon i {
  display: inline-block;
  font-size: 50px;
  color: #fff;
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  background: var(--theme-color);
  border-radius: 50%;
}

/* about-section-s3 */
.about-section-s3 .about-wrap .about-img-1 .shape {
  padding-left: 40px;
  padding-top: 20px;
}

@media (max-width: 1399px) {
  .about-section-s3 .about-wrap .about-img-1 .shape {
    padding-left: 10px;
  }
}

.about-section-s3 .about-wrap .about-img-2 .shape {
  margin-bottom: 20px;
}

.about-section-s3 .about-wrap .about-img-2 .about-img-inner {
  margin-left: -200px;
}

@media (max-width: 991px) {
  .about-section-s3 .about-wrap .about-img-2 .about-img-inner {
    margin-left: 0px;
  }
}

@media (max-width: 767px) {
  .about-section-s3 .about-wrap .about-img-2 .about-img-inner {
    margin-left: 0px;
  }
}

@media (max-width: 991px) {
  .about-section-s3 .about-bottom-left {
    margin-top: 30px;
  }
}

.about-section-s3 .about-bottom-left .heading-title {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .about-section-s3 .about-bottom-left .heading-title {
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

.about-section-s3 .about-bottom-left img {
  width: 100%;
}

@media (max-width: 991px) {
  .about-section-s3 .about-bottom-left-text {
    margin: 30px 0;
  }
}

.about-section-s3 .about-bottom-left-text h2 {
  font-family: "Cormorant";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 20px;
}

.about-section-s3 .about-bottom-left-text p {
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 29px;
  padding-left: 20px;
  border-left: 3px solid var(--theme-color);
  margin-bottom: 20px;
}

.about-section-s3 .about-bottom-left-text ul li {
  font-family: "Cormorant";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
}

@media (max-width: 1399px) {
  .about-section-s3 .about-bottom-left-text ul li {
    font-size: 18px;
  }
}

.about-section-s3 .about-bottom-left-text ul li i {
  color: var(--theme-color);
  margin-right: 10px;
}

.about-section-s3 .about-bottom-left-text ul li+li {
  margin-top: 10px;
}

.about-section-s3 .about-bottom-left-text .icon-wraps {
  display: flex;
  margin-top: 20px;
}

@media (max-width: 450px) {
  .about-section-s3 .about-bottom-left-text .icon-wraps {
    flex-wrap: wrap;
  }
}

.about-section-s3 .about-bottom-left-text .icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.about-section-s3 .about-bottom-left-text .icon-wrap+.icon-wrap {
  margin-left: 20px;
}

@media (max-width: 450px) {
  .about-section-s3 .about-bottom-left-text .icon-wrap+.icon-wrap {
    margin-left: 0;
  }
}

.about-section-s3 .about-bottom-left-text .icon-wrap i {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #1F212D;
  display: block;
  font-size: 30px;
  text-align: center;
  margin-right: 15px;
  border-radius: 5px;
  color: #fff;
  transition: all 0.3s;
}

.about-section-s3 .about-bottom-left-text .icon-wrap h4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.about-section-s3 .about-bottom-left-text .icon-wrap:hover i {
  background-color: var(--theme-color);
}

.about-section-s3 .about-bottom-left-text a {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  text-decoration-line: underline;
  position: relative;
  padding-right: 30px;
  color: var(--theme-color);
}

.about-section-s3 .about-bottom-left-text a:after {
  position: absolute;
  right: 0;
  top: -2px;
  content: "\e912";
  font-family: "icomoon" !important;
  transform: rotate(-45deg);
  transition: all 0.3s;
}

/* case-section-s3 */
.case-section-s3 .case-filters {
  max-width: 856px;
  margin: 0 auto;
  margin-bottom: 60px;
}

@media (max-width: 575px) {
  .case-section-s3 .case-filters {
    margin-bottom: 40px;
  }
}

.case-section-s3 .case-filters ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.case-section-s3 .case-filters ul li {
  margin: 10px;
}

.case-section-s3 .case-filters ul li a {
  padding: 0px 20px;
  display: block;
  border-radius: 10px;
  background: transparent;
  color: #1F212D;
}

@media (max-width: 575px) {
  .case-section-s3 .case-filters ul li a {
    padding: 0px 15px;
  }
}

.case-section-s3 .case-filters ul li a.current {
  color: var(--theme-color);
}

.case-section-s3 .case-item {
  position: relative;
  margin-bottom: 22px;
  overflow: hidden;
}

.case-section-s3 .case-item .case-img {
  position: relative;
}

.case-section-s3 .case-item .case-img i {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: var(--theme-color);
  color: #fff;
  text-align: center;
  font-size: 30px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}

.case-section-s3 .case-item .case-img:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(31, 33, 45, 0.8) 100%);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}

.case-section-s3 .case-item .case-text {
  padding: 20px 30px;
  position: absolute;
  left: 0;
  bottom: -100%;
  transition: all 0.3s;
}

.case-section-s3 .case-item .case-text span {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  font-family: "Cormorant";
  color: #fff;
}

.case-section-s3 .case-item .case-text h2 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .case-section-s3 .case-item .case-text h2 {
    font-size: 24px;
  }
}

.case-section-s3 .case-item .case-text h2 a {
  color: #fff;
}

.case-section-s3 .case-item .case-text h2 a:hover {
  color: var(--theme-color);
}

.case-section-s3 .case-item:hover .case-img i {
  top: 50%;
  opacity: 1;
  visibility: visible;
}

.case-section-s3 .case-item:hover .case-img:before {
  opacity: 1;
  visibility: visible;
}

.case-section-s3 .case-item:hover .case-text {
  bottom: 0;
}

/* service-section style-3 */
.service-section.style-3 .service-left {
  background: #FAFAFA;
  padding: 40px;
}

@media (max-width: 1399px) {
  .service-section.style-3 .service-left {
    padding: 20px 15px;
  }
}

@media (max-width: 991px) {
  .service-section.style-3 .service-left {
    text-align: center;
    margin-bottom: 30px;
  }
}

.service-section.style-3 .service-left .heading-title {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #D7D7D7;
}

.service-section.style-3 .service-left .heading-title p {
  font-size: 16px;
  margin-bottom: 0;
}

.service-section.style-3 .service-left .service-top-text {
  display: flex;
  padding-bottom: 0px;
}

@media (max-width: 991px) {
  .service-section.style-3 .service-left .service-top-text {
    justify-content: center;
  }
}

.service-section.style-3 .service-left .service-top-right {
  padding-left: 20px;
  margin-left: 20px;
  border-left: 1px solid #D7D7D7;
}

.service-section.style-3 .service-left .service-top-right p {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  color: #1F212D;
  margin-bottom: 10px;
}

.service-section.style-3 .service-left .service-top-right span {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  color: #1F212D;
}

@media (max-width: 1199px) {
  .service-section.style-3 .service-left .btn-style-1 {
    padding: 5px 10px;
    height: 45px;
  }

  .service-section.style-3 .service-left .btn-style-1::after {
    display: none;
  }
}

.service-section.style-3 .service-left h2 {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 10px;
}

/* choose-section style-3 */
.choose-section.style-3 {
  padding-bottom: 150px;
}

/* graph-section */
.graph-section,
.graph-section-s2 {
  padding-bottom: 120px;
  position: relative;
  z-index: 11;
}

@media (max-width: 991px) {

  .graph-section,
  .graph-section-s2 {
    padding: 90px 0;
  }
}

@media (max-width: 767px) {

  .graph-section,
  .graph-section-s2 {
    padding: 80px 0;
  }
}

.graph-section::after,
.graph-section-s2::after {
  position: absolute;
  left: 0;
  top: -70px;
  width: 20%;
  height: 50px;
  content: "";
  background: #fff;
  z-index: 1;
}

@media (max-width: 991px) {

  .graph-section::after,
  .graph-section-s2::after {
    display: none;
  }
}

.graph-section:before,
.graph-section-s2:before {
  position: absolute;
  left: 0;
  top: -70px;
  width: 45%;
  height: 90%;
  content: "";
  background: url(../images/graph/left-img.png);
  z-index: 11;
  border-top: 3px solid var(--theme-color);
}

@media (max-width: 1399px) {

  .graph-section:before,
  .graph-section-s2:before {
    height: 79%;
  }
}

@media (max-width: 1199px) {

  .graph-section:before,
  .graph-section-s2:before {
    height: 70%;
  }
}

@media (max-width: 991px) {

  .graph-section:before,
  .graph-section-s2:before {
    display: none;
  }
}

.graph-section .graph-left-img,
.graph-section-s2 .graph-left-img {
  margin-top: -70px;
  position: relative;
  z-index: 11;
  border-top: 3px solid var(--theme-color);
}

@media (max-width: 991px) {

  .graph-section .graph-left-img,
  .graph-section-s2 .graph-left-img {
    margin: 0;
    text-align: center;
  }

  .graph-section .graph-left-img img,
  .graph-section-s2 .graph-left-img img {
    width: 100%;
  }
}

.graph-section .graph-text,
.graph-section-s2 .graph-text {
  padding-top: 120px;
}

@media (max-width: 991px) {

  .graph-section .graph-text,
  .graph-section-s2 .graph-text {
    padding-top: 50px;
  }
}

@media (max-width: 991px) {

  .graph-section .graph-text .grap-img,
  .graph-section-s2 .graph-text .grap-img {
    text-align: center;
  }
}

/* pricing-section */
.pricing-section {
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .pricing-section {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .pricing-section {
    padding-bottom: 50px;
  }
}

.pricing-section .pricing-item {
  padding: 50px;
  background: #F5F5F5;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .pricing-section .pricing-item {
    padding: 40px;
  }
}

@media (max-width: 1199px) {
  .pricing-section .pricing-item {
    padding: 30px;
  }
}

.pricing-section .pricing-item .price-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.pricing-section .pricing-item .price-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
}

@media (max-width: 1199px) {
  .pricing-section .pricing-item .price-price {
    margin-bottom: 30px;
  }
}

.pricing-section .pricing-item .price-price span {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 46px;
  font-family: "Cormorant";
}

.pricing-section .pricing-item .price-price h3 {
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--theme-color);
}

@media (max-width: 1199px) {
  .pricing-section .pricing-item .price-price h3 {
    font-size: 60px;
  }
}

.pricing-section .pricing-item ul {
  margin-bottom: 50px;
}

.pricing-section .pricing-item ul li {
  font-family: "Cormorant";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  color: #1F212D;
}

@media (max-width: 1399px) {
  .pricing-section .pricing-item ul li {
    font-size: 22px;
  }
}

@media (max-width: 1199px) {
  .pricing-section .pricing-item ul li {
    font-size: 20px;
    line-height: 28px;
  }
}

.pricing-section .pricing-item ul li i {
  margin-right: 10px;
}

.pricing-section .pricing-item ul li i.gray {
  color: #707070;
}

.pricing-section .pricing-item ul li+li {
  margin-top: 40px;
}

.pricing-section .col:nth-child(2) .pricing-item {
  border-top: 10px solid var(--theme-color);
}

.pricing-section .col:nth-child(odd) .pricing-item {
  margin-top: 40px;
}

@media (max-width: 1199px) {
  .pricing-section .col:nth-child(odd) .pricing-item {
    margin-top: 0px;
  }
}

/* contact-area-s2 */
@media (max-width: 991px) {
  .contact-area-s2 {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .contact-area-s2 {
    padding: 70px 0;
  }
}

.contact-area-s2::after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 67px;
  content: "";
  background: #fff;
  width: 50%;
  border-top: 3px solid var(--theme-color);
}

@media (max-width: 991px) {
  .contact-area-s2::after {
    display: none;
  }
}

.contact-area-s2 .contact-area-wrapper .contact-form-area {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  padding: 80px 40px;
  margin: 0;
}

@media (max-width: 991px) {
  .contact-area-s2 .contact-area-wrapper .contact-form-area {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
  }
}

@media (max-width: 575px) {
  .contact-area-s2 .contact-area-wrapper .contact-form-area {
    padding: 40px 15px;
  }
}

.contact-area-s2 .contact-area-wrapper .contact-form-area .heading-title-s3 h2 {
  color: #fff;
}

.contact-area-s2 .contact-area-wrapper .contact-form-area .heading-title-s3 h2 span {
  color: #fff;
}

.contact-area-s2 .contact-area-wrapper .contact-form-area .heading-title-s3 small {
  color: #fff;
}

.contact-area-s2 .contact-area-wrapper .contact-form-area .heading-title-s3 small::after {
  border-color: #fff;
}

.contact-area-s2 .contact-area-wrapper .contact-form-area .heading-title-s3 small::before {
  background-color: #fff;
}

.contact-area-s2 .contact-area-wrapper .contact-form-area .form-control {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: #A5A5A5;
}

.contact-area-s2 .contact-area-wrapper .contact-form-area .form-control::-webkit-input-placeholder {
  color: #A5A5A5;
}

.contact-area-s2 .contact-area-wrapper .contact-form-area .form-control:-ms-input-placeholder {
  color: #A5A5A5;
}

.contact-area-s2 .contact-area-wrapper .contact-form-area .form-control::placeholder {
  color: #A5A5A5;
}

.contact-area-s2 .contact-area-wrapper .contact-form-area select.form-control {
  background: url(../images/select-icon2.png) calc(100% - 15px) center no-repeat transparent;
  color: #A5A5A5;
}

/* ======================================
20. About Page  
========================================*/
/* about-page */
.about-page .graph-section {
  padding: 0;
}

.about-page .graph-section:before,
.about-page .graph-section:after {
  display: none;
}

.about-page .graph-section .graph-left-img {
  margin: 0;
}

.about-page .graph-section .graph-text {
  padding: 0;
}

.about-page .graph-section .graph-left-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
}

@media (max-width: 991px) {
  .about-page .graph-section .graph-left-img {
    position: relative;
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
  }
}

.about-page .graph-section .graph-left-img img {
  width: 100%;
}

.about-page .work-section .work-item {
  display: flex;
}

@media (max-width: 991px) {
  .about-page .work-section .work-item {
    display: block;
    margin-bottom: 30px;
  }
}

.about-page .work-section .work-item .work-content {
  flex-basis: 49%;
  padding: 40px 60px;
  border: 1px solid rgba(31, 33, 45, 0.15);
}

.about-page .work-section .work-item .work-content p {
  margin-bottom: 0;
}

@media (max-width: 1399px) {
  .about-page .work-section .work-item .work-content {
    padding: 20px;
  }
}

.about-page .work-section .work-item .work-img {
  flex-basis: 51%;
}

.about-page .work-section .work-item .work-img img {
  width: 100%;
}

@media (max-width: 1199px) {
  .about-page .work-section .work-item .work-img img {
    min-height: 395px;
    object-fit: cover;
  }
}

@media (max-width: 991px) {
  .about-page .work-section .work-item .work-img img {
    min-height: 100%;
  }
}

.about-page .work-section .work-item:nth-child(odd) .work-img {
  order: 1;
}

@media (max-width: 991px) {
  .about-page .work-section .work-item:nth-child(odd) .work-img {
    order: unset;
  }
}

.about-page .work-section .work-item:nth-child(odd) .work-content {
  order: 2;
}

@media (max-width: 991px) {
  .about-page .work-section .work-item:nth-child(odd) .work-content {
    order: unset;
  }
}

.about-page .work-section .work-item .work-top {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.about-page .work-section .work-item .work-top i {
  display: block;
  width: 86px;
  height: 86px;
  line-height: 86px;
  font-size: 45px;
  text-align: center;
  margin-right: 20px;
  transition: all 0.3s;
  border-radius: 5px;
}

.about-page .work-section .work-item .work-text h2 {
  color: #707070;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 58px;
  margin-bottom: 0;
}

@media (max-width: 450px) {
  .about-page .work-section .work-item .work-text h2 {
    font-size: 38px;
  }
}

.about-page .work-section .work-item .work-text h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
}

@media (max-width: 450px) {
  .about-page .work-section .work-item .work-text h3 {
    font-size: 20px;
  }
}

.about-page .work-section .work-item .work-text h3 a {
  color: #1F212D;
}

.about-page .work-section .work-item .work-text h3 a:hover {
  color: var(--theme-color);
}

.about-page .work-section .work-item:hover .work-top i {
  background: var(--theme-color);
  color: #fff;
}

/* =======================================
21. Services Page    
 =========================================*/
.service-single-page .service-single-text {
  margin-top: 30px;
  margin-bottom: 30px;
}

.service-single-page .service-single-text h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 58px;
  margin-bottom: 20px;
}

@media (min-width: 991px) {
  .service-single-page .service-single-grap .col {
    padding: 0;
  }
}

.service-single-page .service-single-grap-text h3 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 20px;
}

.service-single-page .service-single-grap-text ul li {
  font-family: "Cormorant";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 20px;
}

.service-single-page .service-single-grap-text ul li i {
  margin-right: 10px;
  color: var(--theme-color);
}

.service-single-page .service-wrap {
  margin-top: 30px;
}

.service-single-page .service-wrap .service-item {
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 15px;
  margin-bottom: 30px;
  position: relative;
}

.service-single-page .service-wrap .service-item:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  content: "";
  background: var(--theme-color);
  transition: all 0.4s;
}

.service-single-page .service-wrap .service-item .service-top {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.service-single-page .service-wrap .service-item .service-top i {
  display: block;
  width: 86px;
  height: 86px;
  line-height: 86px;
  font-size: 45px;
  text-align: center;
  margin-right: 20px;
  transition: all 0.3s;
  border-radius: 5px;
}

.service-single-page .service-wrap .service-item .service-text h2 {
  color: #707070;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 58px;
  margin-bottom: 0;
}

@media (max-width: 450px) {
  .service-single-page .service-wrap .service-item .service-text h2 {
    font-size: 38px;
  }
}

.service-single-page .service-wrap .service-item .service-text h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
}

@media (max-width: 450px) {
  .service-single-page .service-wrap .service-item .service-text h3 {
    font-size: 20px;
  }
}

.service-single-page .service-wrap .service-item .service-text h3 a {
  color: #1F212D;
}

.service-single-page .service-wrap .service-item .service-text h3 a:hover {
  color: var(--theme-color);
}

.service-single-page .service-wrap .service-item:hover:before {
  width: 100%;
}

.service-single-page .service-wrap .service-item:hover .service-top i {
  background: var(--theme-color);
  color: #fff;
}

.service-single-page .faq-section-wrap {
  padding: 80px;
  background: #FAFAFA;
  margin-top: 70px;
}

@media (max-width: 767px) {
  .service-single-page .faq-section-wrap {
    padding: 30px;
    margin-top: 40px;
  }
}

.service-single-page .faq-section-wrap .accordion-item {
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  background: #FAFAFA;
}

.service-single-page .faq-section-wrap .accordion-item button {
  padding: 28px 0;
  color: #1F212D;
  text-align: left;
  font-family: "Cormorant";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  background: none;
}

@media (max-width: 1399px) {
  .service-single-page .faq-section-wrap .accordion-item button {
    padding: 20px 0;
  }
}

@media (max-width: 1199px) {
  .service-single-page .faq-section-wrap .accordion-item button {
    font-size: 20px;
    padding: 24px 0;
    line-height: 28px;
  }
}

.service-single-page .faq-section-wrap .accordion-item button::after {
  background: none;
  content: "\e906";
  font-family: "icomoon";
  font-size: 15px;
  font-weight: 700;
}

.service-single-page .faq-section-wrap .accordion-item button.collapsed {
  color: #373b3e;
}

.service-single-page .faq-section-wrap .accordion-item button:focus {
  box-shadow: none;
  outline: none;
  border-color: #e1e1e1;
}

.service-single-page .faq-section-wrap .accordion-item .accordion-body {
  padding: 20px 0;
}

.service-single-page .faq-section-wrap .accordion-item .accordion-collapse {
  border: 0;
}

@media (max-width: 991px) {
  .service-single-page .service-sidebar {
    margin-top: 50px;
  }
}

.service-single-page .service-sidebar .service-widget {
  padding: 30px 20px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #F4F1FA;
  margin-bottom: 30px;
}

.service-single-page .service-sidebar .service-widget ul li a {
  display: block;
  padding: 21px 20px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-family: "Cormorant";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  color: #1F212D;
  position: relative;
}

@media (max-width: 1199px) {
  .service-single-page .service-sidebar .service-widget ul li a {
    font-size: 18px;
    padding: 15px 20px;
  }
}

.service-single-page .service-sidebar .service-widget ul li a:after {
  position: absolute;
  right: 20px;
  top: 28px;
  content: "\e912";
  font-family: "icomoon";
  transform: rotate(-45deg);
  transition: all 0.3s;
  font-size: 10px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background: #707070;
  border-radius: 50%;
  color: #fff;
  text-align: center;
}

@media (max-width: 1199px) {
  .service-single-page .service-sidebar .service-widget ul li a:after {
    top: 24px;
  }
}

.service-single-page .service-sidebar .service-widget ul li a:hover {
  background: var(--theme-color);
  color: #fff;
}

.service-single-page .service-sidebar .service-widget ul li a:hover:after {
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--theme-color);
}

.service-single-page .service-sidebar .service-widget ul li:last-child a {
  border: 0;
}

.service-single-page .service-sidebar .info-widget {
  padding: 40px 20px 60px;
  background: #1F212D;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.service-single-page .service-sidebar .info-widget .icon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: -1;
}

.service-single-page .service-sidebar .info-widget h3 {
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 30px;
}

.service-single-page .service-sidebar .info-widget .info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  background: var(--theme-color);
  margin-top: 20px;
}

@media (max-width: 1199px) {
  .service-single-page .service-sidebar .info-widget .info-item {
    padding: 15px;
  }
}

.service-single-page .service-sidebar .info-widget .info-item h4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  color: #fff;
}

@media (max-width: 1199px) {
  .service-single-page .service-sidebar .info-widget .info-item h4 {
    font-size: 18px;
  }
}

.service-single-page .service-sidebar .info-widget .info-item h4 i {
  margin-right: 20px;
}

.service-single-page .service-sidebar .info-widget .info-item i {
  color: #fff;
  font-size: 25px;
}

.service-single-page .service-sidebar .info-widget .info-item:last-child {
  background: #707070;
}

.service-single-page .service-sidebar .invest-widget {
  padding: 60px 50px;
  height: 450px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {
  .service-single-page .service-sidebar .invest-widget {
    padding: 30px 20px;
  }
}

.service-single-page .service-sidebar .invest-widget::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(31, 33, 45, 0.8) 64.57%);
  z-index: -1;
}

.service-single-page .service-sidebar .invest-widget h3 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  margin-bottom: 10px;
}

.service-single-page .service-sidebar .invest-widget p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #fff;
  margin-bottom: 30px;
}

/* ===========================
22. Team Page
 =============================*/
.team-page .team-section {
  padding-bottom: 60px;
  border: 0;
  margin: 0;
}

.team-page .team-section:before {
  display: none;
}

.team-page .team-section .team-wrap {
  margin: 0;
}

.team-page .team-section .team-wrap .team-item {
  margin-bottom: 50px;
}

@media (max-width: 1199px) {
  .team-page .team-section .team-wrap .team-item {
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

.team-page .team-section .team-wrap .team-item:hover::after {
  height: 78%;
  bottom: 0;
}

.team-page .team-section .team-wrap .team-item:hover .team-text {
  bottom: 0px;
}

@media (max-width: 1700px) {
  .team-page .team-section .team-wrap .team-item .right-title {
    right: -28%;
  }
}

@media (max-width: 1399px) {
  .team-page .team-section .team-wrap .team-item .right-title {
    right: -38%;
  }
}

@media (max-width: 767px) {
  .team-page .team-section .team-wrap .team-item .right-title {
    right: -48%;
  }
}

@media (max-width: 991px) {
  .team-single-page .team-single-sidebar {
    margin-top: 50px;
  }
}

.team-single-page .team-single-sidebar .team-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  max-width: 350px;
}

.team-single-page .team-single-sidebar .team-item:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 78%;
  content: "";
  background: #1F212D;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-single-page .team-single-sidebar .team-item::after {
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 0;
  content: "";
  background: var(--theme-color);
  opacity: 0.75;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.team-single-page .team-single-sidebar .team-item .team-img-wrap {
  position: relative;
  z-index: 1;
}

.team-single-page .team-single-sidebar .team-item .team-img-wrap .team-shape {
  position: absolute;
  left: 10px;
  top: 5px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.team-single-page .team-single-sidebar .team-item .team-img {
  margin: 0 auto;
  position: relative;
}

.team-single-page .team-single-sidebar .team-item .team-img img {
  transition: all 0.3s;
  display: unset;
  max-width: 300px;
  filter: grayscale(100%);
}

.team-single-page .team-single-sidebar .team-item .right-title {
  position: absolute;
  right: -23%;
  bottom: 40%;
  transform: rotate(-90deg);
  z-index: 1;
}

@media (max-width: 1700px) {
  .team-single-page .team-single-sidebar .team-item .right-title {
    width: 320px;
    right: -28%;
  }
}

@media (max-width: 450px) {
  .team-single-page .team-single-sidebar .team-item .right-title {
    right: -35%;
  }
}

.team-single-page .team-single-sidebar .team-item .right-title h3 {
  font-family: "Cormorant";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 5px;
  display: inline-block;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.6);
}

.team-single-page .team-single-sidebar .team-info ul li {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  font-family: "Cormorant";
  color: #1F212D;
}

@media (max-width: 1199px) {
  .team-single-page .team-single-sidebar .team-info ul li {
    font-size: 22px;
  }
}

.team-single-page .team-single-sidebar .team-info ul li+li {
  margin-top: 20px;
}

.team-single-page .team-single-sidebar .team-info ul li i {
  margin-right: 10px;
  color: var(--theme-color);
}

.team-single-page .team-single-sidebar .team-social {
  margin-top: 30px;
}

.team-single-page .team-single-sidebar .team-social ul {
  display: flex;
}

.team-single-page .team-single-sidebar .team-social ul li+li {
  margin-left: 20px;
}

.team-single-page .team-single-sidebar .team-social ul li a {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 56px;
  background: #707070;
  color: #fff;
  border-radius: 50%;
  text-align: center;
}

.team-single-page .team-single-content h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 58px;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .team-single-page .team-single-content h2 {
    font-size: 42px;
    line-height: 48px;
  }
}

@media (max-width: 575px) {
  .team-single-page .team-single-content h2 {
    font-size: 35px;
    margin-top: 0;
    line-height: 40px;
  }
}

.team-single-page .team-single-content p {
  margin-bottom: 0;
}

.team-single-page .team-single-content .skill-section {
  padding: 50px 40px 20px;
  background: #1F212D;
  margin-top: 40px;
}

@media (max-width: 575px) {
  .team-single-page .team-single-content .skill-section {
    padding: 30px 20px;
  }
}

.team-single-page .team-single-content .skill-section .progress-single {
  margin-bottom: 30px;
  position: relative;
}

.team-single-page .team-single-content .skill-section .progress-single h5 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  color: #fff;
}

@media (max-width: 767px) {
  .team-single-page .team-single-content .skill-section .progress-single h5 {
    font-size: 18px;
  }
}

.team-single-page .team-single-content .skill-section .progress-single .progress {
  background: #2E2E2E;
  height: 6px;
  position: relative;
}

.team-single-page .team-single-content .skill-section .progress-single .progress .progress-bar {
  background-color: var(--theme-color);
}

.team-single-page .team-single-content .skill-section .progress-number {
  position: absolute;
  right: 0;
  top: 4px;
  font-size: 12px;
  color: #fff;
  font-weight: 400;
}

@media (max-width: 767px) {
  .team-single-page .team-single-content .skill-section .progress-number {
    font-size: 18px;
    top: -5px;
  }
}

.team-single-page .team-single-content .service-wrap {
  margin-top: 60px;
  padding-bottom: 70px;
}

@media (max-width: 991px) {
  .team-single-page .team-single-content .service-wrap {
    padding-bottom: 0;
  }
}

.team-single-page .team-single-content .service-wrap .row {
  margin-top: 20px;
}

.team-single-page .team-single-content .service-wrap .service-item {
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 15px;
  margin-bottom: 30px;
  position: relative;
}

.team-single-page .team-single-content .service-wrap .service-item:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  content: "";
  background: var(--theme-color);
  transition: all 0.4s;
}

.team-single-page .team-single-content .service-wrap .service-item .service-top {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.team-single-page .team-single-content .service-wrap .service-item .service-top i {
  display: block;
  width: 86px;
  height: 86px;
  line-height: 86px;
  font-size: 45px;
  text-align: center;
  margin-right: 20px;
  transition: all 0.3s;
  border-radius: 5px;
}

.team-single-page .team-single-content .service-wrap .service-item .service-text h2 {
  color: #707070;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 58px;
  margin-bottom: 0;
}

@media (max-width: 450px) {
  .team-single-page .team-single-content .service-wrap .service-item .service-text h2 {
    font-size: 38px;
  }
}

.team-single-page .team-single-content .service-wrap .service-item .service-text h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
}

@media (max-width: 1199px) {
  .team-single-page .team-single-content .service-wrap .service-item .service-text h3 {
    font-size: 22px;
  }
}

@media (max-width: 450px) {
  .team-single-page .team-single-content .service-wrap .service-item .service-text h3 {
    font-size: 20px;
  }
}

.team-single-page .team-single-content .service-wrap .service-item .service-text h3 a {
  color: #1F212D;
}

.team-single-page .team-single-content .service-wrap .service-item .service-text h3 a:hover {
  color: var(--theme-color);
}

.team-single-page .team-single-content .service-wrap .service-item:hover:before {
  width: 100%;
}

.team-single-page .team-single-content .service-wrap .service-item:hover .service-top i {
  background: var(--theme-color);
  color: #fff;
}

.team-single-page .team-single-content .contact-area {
  background: none;
  padding: 0;
}

.team-single-page .team-single-content .contact-area .contact-form-area {
  padding: 120px 95px;
  box-shadow: 0px 4px 30px 0px rgba(149, 149, 149, 0.15);
}

@media (max-width: 1199px) {
  .team-single-page .team-single-content .contact-area .contact-form-area {
    padding: 80px;
  }
}

@media (max-width: 991px) {
  .team-single-page .team-single-content .contact-area .contact-form-area {
    padding: 50px;
  }
}

@media (max-width: 575px) {
  .team-single-page .team-single-content .contact-area .contact-form-area {
    padding: 30px 15px;
  }
}

/* =============================
23. Project-page
 ===============================*/
/* case-section-s3 */
.project-page .case-section-s3 {
  padding-bottom: 80px;
}

@media (max-width: 991px) {
  .project-page .case-section-s3 {
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .project-page .case-section-s3 {
    padding-bottom: 30px;
  }
}

.project-page .case-section-s3 .case-item {
  margin-bottom: 40px;
}

.project-page .case-section-s3 .case-item .case-text {
  position: relative;
  bottom: 0;
  padding: 0;
  padding-top: 20px;
}

.project-page .case-section-s3 .case-item .case-text span {
  color: var(--theme-color);
}

.project-page .case-section-s3 .case-item .case-text h2 {
  margin-bottom: 15px;
}

.project-page .case-section-s3 .case-item .case-text h2 a {
  color: #1F212D;
}

.project-page .case-section-s3 .case-item .case-text p {
  margin-bottom: 0;
}

/* project-single-page */
.project-single-page .project-single-text {
  margin-bottom: 60px;
}

.project-single-page .project-single-text h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 58px;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .project-single-page .project-single-text h2 {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 575px) {
  .project-single-page .project-single-text h2 {
    font-size: 28px;
    line-height: 35px;
  }
}

.project-single-page .problem {
  margin-bottom: 30px;
}

.project-single-page .problem h3 {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 46px;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .project-single-page .problem h3 {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 575px) {
  .project-single-page .problem h3 {
    font-size: 28px;
    line-height: 35px;
  }
}

.project-single-page .challenges h4 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D7D7D7;
}

@media (max-width: 991px) {
  .project-single-page .challenges h4 {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 575px) {
  .project-single-page .challenges h4 {
    font-size: 25px;
    line-height: 35px;
  }
}

.project-single-page .challenges h4 i {
  color: var(--theme-color);
}

.project-single-page .challenges ul li {
  padding-bottom: 15px;
}

@media (max-width: 991px) {
  .project-single-page .project-sidebar {
    margin-top: 40px;
  }
}

.project-single-page .project-sidebar .project-category {
  padding: 45px 48px;
  background: #FAFAFA;
}

@media (max-width: 1199px) {
  .project-single-page .project-sidebar .project-category {
    padding: 30px 20px;
  }
}

.project-single-page .project-sidebar .project-category ul li {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  font-family: "Cormorant";
  display: flex;
}

@media (max-width: 1199px) {
  .project-single-page .project-sidebar .project-category ul li {
    font-size: 20px;
  }
}

.project-single-page .project-sidebar .project-category ul li+li {
  margin-top: 20px;
}

.project-single-page .project-sidebar .project-category ul li span {
  font-weight: 700;
  color: #1F212D;
  flex-basis: 50%;
  display: flex;
  align-items: center;
}

.project-single-page .project-sidebar .project-category ul li span i {
  color: var(--theme-color);
  margin-right: 20px;
}

.project-single-page .project-sidebar .project-category .cloud-btn {
  margin-top: 30px;
}

.project-single-page .project-sidebar .project-category .cloud-btn button {
  width: 100%;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  font-family: "Cormorant";
  background: var(--theme-color);
  padding: 18px 25px;
  border: 0;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1199px) {
  .project-single-page .project-sidebar .project-category .cloud-btn button {
    font-size: 20px;
  }
}

.project-single-page .project-sidebar .project-category .cloud-btn button span {
  display: flex;
  align-items: center;
}

.project-single-page .project-sidebar .project-category .cloud-btn button span i {
  margin-right: 20px;
}

.project-single-page .project-sidebar .project-category .cloud-btn button:last-child {
  margin-top: 20px;
  background-color: #707070;
}

.project-single-page .project-sidebar .project-side {
  margin-top: 80px;
  position: relative;
}

.project-single-page .project-sidebar .project-side img {
  width: 100%;
}

.project-single-page .project-sidebar .project-side:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(31, 33, 45, 0.8) 100%);
}

.project-single-page .project-single-bottom {
  padding-top: 100px;
}

.project-single-page .project-single-bottom h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 58px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .project-single-page .project-single-bottom h2 {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 575px) {
  .project-single-page .project-single-bottom h2 {
    font-size: 28px;
    line-height: 35px;
  }
}

.project-single-page .project-single-bottom .challenges ul li {
  padding-left: 25px;
  position: relative;
}

.project-single-page .project-single-bottom .challenges ul li:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "\e914";
  font-family: "icomoon";
  color: var(--theme-color);
}

.project-single-page .project-single-bottom .service-section {
  padding-bottom: 0;
  padding-top: 60px;
}

/* =============================
24. Faq-page
 ===============================*/
/* faq-page */
.faq-page .choose-section {
  padding-bottom: 100px;
}

.faq-page .case-section {
  position: relative;
}

.faq-page .case-section:after {
  position: absolute;
  left: 0;
  top: -67px;
  height: 67px;
  content: "";
  background: #fff;
  width: 50%;
  border-top: 3px solid var(--theme-color);
  z-index: 11;
}

@media (max-width: 991px) {
  .faq-page .case-section:after {
    display: none;
  }
}

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

/* blog-page-area */
.blog-page-area .blog-item {
  margin-bottom: 60px;
}

.blog-page-area .blog-item:last-child {
  margin-bottom: 0;
}

.blog-page-area .blog-item .blog-content {
  padding-top: 30px;
}

.blog-page-area .blog-item .blog-content ul {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.blog-page-area .blog-item .blog-content ul li {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.blog-page-area .blog-item .blog-content ul li+li {
  margin-left: 20px;
}

.blog-page-area .blog-item .blog-content ul li i {
  color: var(--theme-color);
}

.blog-page-area .blog-item .blog-content ul li strong {
  color: #1F212D;
  font-family: "Cormorant";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.blog-page-area .blog-item .blog-content h2 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .blog-page-area .blog-item .blog-content h2 {
    font-size: 25px;
  }
}

.blog-page-area .blog-item .blog-content h2 a {
  color: #1F212D;
}

.blog-page-area .blog-item .blog-content h2 a:hover {
  color: var(--theme-color);
}

.blog-page-area .blog-item .blog-content p {
  margin-bottom: 20px;
}

.blog-page-full .blog-img img {
  width: 100%;
}

/* blog-right-sidebar */
.blog-sidebar {
  /*** search-widget ***/
}

@media (max-width: 991px) {
  .blog-sidebar {
    margin-top: 50px;
  }
}

.blog-sidebar .widget {
  margin-top: 50px;
  padding: 40px;
  background: #FAFAFA;
}

@media (max-width: 1399px) {
  .blog-sidebar .widget {
    padding: 20px;
  }
}

@media (max-width: 1199px) {
  .blog-sidebar .widget {
    padding: 15px;
  }
}

@media (max-width: 1199px) {
  .blog-sidebar .widget {
    margin-top: 30px;
  }
}

.blog-sidebar .widget h3 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

@media (max-width: 1199px) {
  .blog-sidebar .widget h3 {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (max-width: 575px) {
  .blog-sidebar .widget h3 {
    font-size: 22px;
    line-height: 27px;
  }
}

.blog-sidebar .search-widget {
  padding: 30px;
  background: #FAFAFA;
}

.blog-sidebar .search-widget form div {
  position: relative;
}

.blog-sidebar .search-widget input {
  background: none;
  border: 1px solid rgba(31, 33, 45, 0.15);
  height: 55px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  padding: 6px 50px 6px 20px;
  border-radius: 0;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.blog-sidebar .search-widget input:focus {
  background-color: #fff;
}

.blog-sidebar .search-widget form button {
  background: transparent;
  width: 55px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  font-size: calc-rem-value(20);
  color: #1F212D;
  border: 0;
  outline: 0;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
}

.blog-sidebar .search-widget form button i {
  font-size: 14px;
}

.blog-sidebar .blog-right-info p {
  margin-bottom: 0;
}

.blog-sidebar .recent-post .post {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
}

.blog-sidebar .recent-post .post:last-child {
  margin-bottom: 0;
}

.blog-sidebar .recent-post .post .post-img {
  flex-basis: 35%;
  margin-right: 20px;
}

@media (max-width: 1199px) {
  .blog-sidebar .recent-post .post .post-img {
    margin-right: 10px;
  }
}

.blog-sidebar .recent-post .post .post-content {
  flex-basis: 65%;
}

.blog-sidebar .recent-post .post .post-content span {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.blog-sidebar .recent-post .post .post-content ul {
  display: flex;
  align-items: center;
}

.blog-sidebar .recent-post .post .post-content ul li {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1199px) {
  .blog-sidebar .recent-post .post .post-content ul li {
    font-size: 11px;
  }
}

.blog-sidebar .recent-post .post .post-content ul li+li {
  margin-left: 10px;
}

@media (max-width: 1199px) {
  .blog-sidebar .recent-post .post .post-content ul li+li {
    margin-left: 5px;
  }
}

.blog-sidebar .recent-post .post .post-content ul li i {
  color: var(--theme-color);
}

.blog-sidebar .recent-post .post .post-content ul li strong {
  color: #1F212D;
  font-family: "Cormorant";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.blog-sidebar .recent-post .post .post-content h4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  margin-top: 6px;
}

.blog-sidebar .recent-post .post .post-content h4 a {
  color: #1F212D;
}

.blog-sidebar .recent-post .post .post-content h4 a:hover {
  color: var(--theme-color);
}

.blog-sidebar .category-widget ul li+li {
  margin-top: 20px;
}

.blog-sidebar .category-widget ul li a {
  color: #1F212D;
  font-family: "Cormorant";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
}

@media (max-width: 1199px) {
  .blog-sidebar .category-widget ul li a {
    font-size: 20px;
    line-height: 27px;
  }
}

.blog-sidebar .category-widget ul li a i {
  margin-right: 20px;
  color: var(--theme-color);
}

.blog-sidebar .category-widget ul li a:hover {
  color: var(--theme-color);
}

.blog-sidebar .tag-widget ul {
  display: flex;
  flex-wrap: wrap;
}

.blog-sidebar .tag-widget ul li {
  margin-right: 15px;
  margin-bottom: 15px;
}

.blog-sidebar .tag-widget ul li a {
  color: #1F212D;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  font-family: "Cormorant";
  padding-left: 20px;
  position: relative;
}

.blog-sidebar .tag-widget ul li a:before {
  position: absolute;
  left: 0;
  top: 0;
  content: url(../images/tag.png);
}

.blog-sidebar .tag-widget ul li a:hover {
  color: var(--theme-color);
}

.blog-sidebar .cta-widget {
  background: url(../images/service/cta.jpg);
  background-size: cover;
  padding-top: 160px;
}

.blog-sidebar .cta-widget .cta-text {
  padding: 120px 45px 50px;
  text-align: center;
  margin-top: 50px;
  background: rgba(31, 31, 31, 0.9);
  clip-path: polygon(50% 0%, 100% 38%, 100% 100%, 0 100%, 0% 38%);
}

@media (max-width: 1199px) {
  .blog-sidebar .cta-widget .cta-text {
    padding: 80px 25px 40px;
  }
}

.blog-sidebar .cta-widget p {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
  font-family: "Cormorant";
}

@media (max-width: 1199px) {
  .blog-sidebar .cta-widget p {
    font-size: 18px;
  }
}

.blog-sidebar .cta-widget span {
  font-size: 29px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #fff;
}

@media (max-width: 1199px) {
  .blog-sidebar .cta-widget span {
    font-size: 25px;
  }
}

/* =======================
26. Blog Single Page
 ========================*/
/* blog-single-page-area  */
.blog-single-page-area .blog-single-wrap {
  /*** comment-respond ***/
}

.blog-single-page-area .blog-single-wrap .blog-single-text ul {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.blog-single-page-area .blog-single-wrap .blog-single-text ul li {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.blog-single-page-area .blog-single-wrap .blog-single-text ul li+li {
  margin-left: 20px;
}

.blog-single-page-area .blog-single-wrap .blog-single-text ul li i {
  color: var(--theme-color);
}

.blog-single-page-area .blog-single-wrap .blog-single-text ul li strong {
  color: #1F212D;
  font-family: "Cormorant";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.blog-single-page-area .blog-single-wrap .blog-single-text blockquote {
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: "Cormorant";
  text-align: center;
  padding: 100px 0;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .blog-single-page-area .blog-single-wrap .blog-single-text blockquote {
    font-size: 45px;
    padding: 70px 0;
  }
}

@media (max-width: 575px) {
  .blog-single-page-area .blog-single-wrap .blog-single-text blockquote {
    font-size: 30px;
    padding: 30px 0;
  }
}

.blog-single-page-area .blog-single-wrap .blog-single-text-wrap {
  margin-top: 30px;
  margin-bottom: 40px;
}

.blog-single-page-area .blog-single-wrap .blog-single-text-wrap h2 {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 46px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .blog-single-text-wrap h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .blog-single-page-area .blog-single-wrap .blog-single-text-wrap h2 {
    font-size: 25px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}

.blog-single-page-area .blog-single-wrap .blog-single-text-wrap p {
  margin-bottom: 30px;
}

.blog-single-page-area .blog-single-wrap .blog-single-text-wrap ul li {
  padding-bottom: 15px;
}

.blog-single-page-area .blog-single-wrap blockquote {
  background: #1F212D;
  padding: 30px;
  font-family: "Cormorant";
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: 34px;
  color: #fff;
  margin-bottom: 40px;
}

@media (max-width: 575px) {
  .blog-single-page-area .blog-single-wrap blockquote {
    padding: 15px;
    font-size: 18px;
    line-height: 27px;
  }
}

.blog-single-page-area .blog-single-wrap blockquote span {
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 29px;
  font-family: "DM Sans";
  color: #707070;
  margin-top: 15px;
}

.blog-single-page-area .blog-single-wrap .detail-img {
  margin-top: 40px;
  margin-bottom: 30px;
}

.blog-single-page-area .blog-single-wrap .tag-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .tag-share {
    flex-wrap: wrap;
  }
}

.blog-single-page-area .blog-single-wrap .tag-share h3 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .tag-share h3 {
    font-size: 20px;
    margin-right: 10px;
  }
}

.blog-single-page-area .blog-single-wrap .tag-share ul {
  display: flex;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .tag-share ul {
    flex-wrap: wrap;
  }
}

.blog-single-page-area .blog-single-wrap .tag-share ul li+li {
  margin-left: 25px;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .tag-share ul li+li {
    margin-left: 5px;
  }
}

.blog-single-page-area .blog-single-wrap .tag-share ul li a {
  color: #1F212D;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  font-family: "Cormorant";
  padding-left: 20px;
  position: relative;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .tag-share ul li a {
    font-size: 16px;
  }
}

.blog-single-page-area .blog-single-wrap .tag-share ul li a:before {
  position: absolute;
  left: 0;
  top: 0;
  content: url(../images/tag.png);
}

.blog-single-page-area .blog-single-wrap .tag-share ul li a:hover {
  color: var(--theme-color);
}

.blog-single-page-area .blog-single-wrap .comment-respond {
  margin-top: 70px;
  padding: 50px;
  background: #FAFAFA;
}

@media (max-width: 1199px) {
  .blog-single-page-area .blog-single-wrap .comment-respond {
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .blog-single-page-area .blog-single-wrap .comment-respond {
    padding: 15px;
  }
}

.blog-single-page-area .blog-single-wrap .comment-respond .comment-respond-inner {
  background: #fff;
  padding: 70px;
}

@media (max-width: 1199px) {
  .blog-single-page-area .blog-single-wrap .comment-respond .comment-respond-inner {
    padding: 40px;
  }
}

@media (max-width: 575px) {
  .blog-single-page-area .blog-single-wrap .comment-respond .comment-respond-inner {
    padding: 15px;
  }
}

.blog-single-page-area .blog-single-wrap .comment-respond .comment-reply-title {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 991px) {
  .blog-single-page-area .blog-single-wrap .comment-respond .comment-reply-title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .blog-single-page-area .blog-single-wrap .comment-respond .comment-reply-title {
    font-size: 30px;
  }
}

.blog-single-page-area .blog-single-wrap .comment-respond p {
  margin-bottom: 50px;
}

.blog-single-page-area .blog-single-wrap .comment-respond form input,
.blog-single-page-area .blog-single-wrap .comment-respond form textarea {
  color: #A5A5A5;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: none;
  width: 100%;
  height: 55px;
  border: 0;
  padding: 6px 15px;
  margin-bottom: 15px;
  outline: 0;
  border-radius: 0px;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid rgba(31, 33, 45, 0.15);
}

.blog-single-page-area .blog-single-wrap .comment-respond form input:focus,
.blog-single-page-area .blog-single-wrap .comment-respond form textarea:focus {
  box-shadow: none;
  border-color: var(--theme-color);
}

@media (max-width: 991px) {

  .blog-single-page-area .blog-single-wrap .comment-respond form input,
  .blog-single-page-area .blog-single-wrap .comment-respond form textarea {
    height: 50px;
  }
}

.blog-single-page-area .blog-single-wrap .comment-respond form textarea {
  height: 220px;
  padding: 15px;
}

@media (max-width: 991px) {
  .blog-single-page-area .blog-single-wrap .comment-respond form textarea {
    height: 150px;
  }
}

.blog-single-page-area .blog-single-wrap .comment-respond .form-inputs,
.blog-single-page-area .blog-single-wrap .comment-respond .form-textarea {
  overflow: hidden;
}

.blog-single-page-area .blog-single-wrap .comment-respond .form-inputs label,
.blog-single-page-area .blog-single-wrap .comment-respond .form-textarea label {
  font-family: "Cormorant";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 10px;
}

.blog-single-page-area .blog-single-wrap .comment-respond .form-inputs>.form-field:nth-child(1) {
  width: 49%;
  float: left;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .comment-respond .form-inputs>.form-field:nth-child(1) {
    width: 100%;
    float: none;
  }
}

.blog-single-page-area .blog-single-wrap .comment-respond .form-inputs>.form-field:nth-child(2) {
  width: 49%;
  float: right;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .comment-respond .form-inputs>.form-field:nth-child(2) {
    width: 100%;
    float: none;
  }
}

.blog-single-page-area .blog-single-wrap .comment-respond .form-submit input {
  max-width: 180px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  margin-bottom: 0;
  border: 1px solid var(--theme-color);
  outline: 0;
  background: var(--theme-color);
  border-radius: 0;
  margin-top: 30px;
  color: #fff;
}

.blog-single-page-area .blog-single-wrap .comment-respond .form-submit input:hover {
  background-color: #d11213;
  color: #fff;
}

.blog-single-page-area.full-width .blog-img img {
  width: 100%;
}

.blog-single-page-area.full-width .detail-img img {
  width: 100%;
}

/* ============================
27. Contact Page
 ==============================*/
/* map-section */
.map-section {
  max-width: 1600px;
  margin: 0 auto;
}

.map-section iframe {
  width: 100%;
  height: 400px;
}

/* contact-page */
@media (max-width: 991px) {
  .contact-page .office-info {
    margin-top: 40px;
  }
}

.contact-page .office-info .heading-title h2 {
  margin-bottom: 20px;
}

.contact-page .office-info .contact-info {
  margin-top: 30px;
}

.contact-page .office-info .contact-info ul li {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  font-family: "Cormorant";
  color: #1F212D;
}

@media (max-width: 1199px) {
  .contact-page .office-info .contact-info ul li {
    font-size: 22px;
  }
}

.contact-page .office-info .contact-info ul li+li {
  margin-top: 20px;
}

.contact-page .office-info .contact-info ul li i {
  margin-right: 10px;
  color: var(--theme-color);
}

.contact-page .office-info .info-social {
  margin-top: 30px;
}

.contact-page .office-info .info-social ul {
  display: flex;
}

@media (max-width: 991px) {
  .contact-page .office-info .info-social ul {
    justify-content: center;
  }
}

.contact-page .office-info .info-social ul li+li {
  margin-left: 20px;
}

.contact-page .office-info .info-social ul li a {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 56px;
  background: #707070;
  color: #fff;
  border-radius: 50%;
  text-align: center;
}

.contact-page .office-info .info-social ul li a:hover {
  background: var(--theme-color);
}

.contact-page .contact-area-wrapper {
  position: relative;
  padding: 50px;
  background: #FAFAFA;
}

@media (max-width: 1199px) {
  .contact-page .contact-area-wrapper {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .contact-page .contact-area-wrapper {
    padding: 15px;
  }
}

.contact-page .contact-area-wrapper .contact-form-area {
  position: relative;
  z-index: 9;
  margin: 0 auto;
  background: #fff;
  padding: 70px;
  z-index: 1;
}

@media (max-width: 1199px) {
  .contact-page .contact-area-wrapper .contact-form-area {
    padding: 30px;
  }
}

.contact-page .contact-area-wrapper .contact-form-area h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 58px;
  text-transform: capitalize;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .contact-page .contact-area-wrapper .contact-form-area h2 {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .contact-page .contact-area-wrapper .contact-form-area h2 {
    font-size: 30px;
    line-height: 48px;
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .contact-page .contact-area-wrapper .contact-form-area {
    padding: 20px;
  }
}

.contact-page .contact-area-wrapper .contact-form-area label {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  font-family: "Cormorant";
  margin-bottom: 15px;
}

.contact-page .contact-area-wrapper .contact-form-area .form-control {
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  border: 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #A5A5A5;
  border: 1px solid rgba(31, 33, 45, 0.15);
}

.contact-page .contact-area-wrapper .contact-form-area .form-control:focus {
  outline: none;
  box-shadow: none;
}

.contact-page .contact-area-wrapper .contact-form-area .form-control::-webkit-input-placeholder {
  color: #707070;
}

.contact-page .contact-area-wrapper .contact-form-area .form-control:-ms-input-placeholder {
  color: #707070;
}

.contact-page .contact-area-wrapper .contact-form-area .form-control::placeholder {
  color: #707070;
}

.contact-page .contact-area-wrapper .contact-form-area textarea.form-control {
  height: 130px;
}

.contact-page .contact-area-wrapper .contact-form-area select.form-control {
  color: #707070;
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: #fff url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
  position: relative;
}

.contact-page .contact-area-wrapper .contact-form-area select.form-control option {
  border: 0;
}

.contact-page .contact-area-wrapper .contact-form-area .submit-area {
  margin-top: 20px;
}

@media (max-width: 991px) {
  .contact-page .contact-area-wrapper .contact-form-area .submit-area {
    text-align: center;
  }
}

/* =============================
28. 404 page
 ===============================*/
/* 404-section */
.opps-404-section {
  text-align: center;
}

.opps-404-section .opps-message {
  margin-top: 70px;
  padding: 0 200px;
}

@media (max-width: 991px) {
  .opps-404-section .opps-message {
    margin-top: 50px;
    padding: 0 100px;
  }
}

@media (max-width: 767px) {
  .opps-404-section .opps-message {
    padding: 0;
  }
}

.opps-404-section .opps-message h3 {
  font-size: 30px;
  margin: 0 0 0.8em;
}

.opps-404-section .opps-message p {
  margin-bottom: 1.8em;
}

.gift-cards {
  padding: 0px 0 60px;
}

.gift-box {
  background: #f5f5f5;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  border-radius: 50px 50px 50px 50px;
  justify-content: space-between;
  /* align-items: center; */
  overflow: hidden;
  margin-top: 60px;
  flex-direction: column;
}

.gift-box.left-shape {
  border-radius: 50px 50px 50px 10px;
}

.gift-box .gift-content {
  /* width: calc(100% - 250px); */
}

.gift-box .gift-content h3 {
    font-size: 22px;
font-weight: normal;
color: #465a84;
  margin-bottom: 0;
}

.gift-box .gift-image {
  /* width: 100%; */
  min-height: 280px;
  text-align: center;
}

@media (max-width: 768px){
    .gift-box .gift-image {
      /*width: 200px; */
    min-height: 400px;
    }
}
@media (max-width: 425px){
    .gift-box .gift-content{
        width:161px;
    }
    .gift-box .gift-image img{
        height:140px !important;
    }
    .gift-box .gift-image {
      /*width: 160px;*/
    min-height: auto;
    }
    .text-box {
        margin-top: 15px !important;
    }
}

.gift-box .gift-image img {
  /* position: relative; */
   height: 280px; 
  border-radius: 50px 50px 50px 50px;
  transition: var(--transition);
  width: 80%;
}

.pricing {
  /* background: var(--bg-color); */
  /*background: radial-gradient(#ffffff54 2px, transparent 0) 0 0/40px 40px, radial-gradient(#00000026 2px, transparent 0) -1px 1px/40px 40px, radial-gradient(ellipse at 150% -50%, #98a1b4, #fff);*/
  padding: 50px 0 50px;
  overflow: hidden;
}

.pricing-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  text-shadow: 0.25em 0.25em 1px #00000010;
  --shadow-color: 0deg 0% 64%;
  --shadow-elevation-high: 0.5px 1px 1.1px hsl(var(--shadow-color) / 0.28),
    1.4px 3.1px 3.4px -0.4px hsl(var(--shadow-color) / 0.27),
    2.5px 5.3px 5.9px -0.7px hsl(var(--shadow-color) / 0.25),
    3.9px 8.4px 9.3px -1.1px hsl(var(--shadow-color) / 0.24),
    6px 12.9px 14.3px -1.5px hsl(var(--shadow-color) / 0.23),
    9px 19.5px 21.6px -1.8px hsl(var(--shadow-color) / 0.21),
    13.4px 28.9px 32px -2.2px hsl(var(--shadow-color) / 0.2),
    19.3px 41.7px 46.2px -2.6px hsl(var(--shadow-color) / 0.19),
    27.1px 58.5px 64.8px -2.9px hsl(var(--shadow-color) / 0.17),
    37.1px 80px 88.6px -3.3px hsl(var(--shadow-color) / 0.16);
  --inner-light: inset 0 -6px 2px -5px #ffffff24,
    inset 0 -8px 3px -5px #ffffff3b, inset 0 -20px 10px -15px #ffffff5c,
    inset 7px 25px 10px -20px #ffffff5c;
  --inner-shadow: inset -20px 5px 10px -20px #00000021,
    inset -40px 50px 7px -55px #00000021;
  --external-light: 5px -30px 30px -20px #ffffff70,
    5px 10px 30px -20px #ffffff70;
  --default: var(--external-light), var(--shadow-elevation-high),
    var(--inner-light), var(--inner-shadow);
  box-shadow: var(--default);
  padding: 7px 25px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /*border-radius: 50px 50px 10px 50px;*/
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}


/* .pricing-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  border-radius: 20px;
  opacity: 0;
  background: var(--theme-color);
  transition: var(--transition);
} */

.pricing-item::after {
  --br-top-left: 50px;
  --br-top-right: 50px;
  --br-bottom-right: 10px;
  --br-bottom-left: 50px;
  --light-reflect: inset -5px 20px 2px -20px #fff,
    inset 5px -20px 2px -20px #fff;
  --shadow-reflect: inset -19px 1px 2px -20px #000,
    inset 19px 1px 2px -20px #000, inset 19px 1px 2px -20px #000,
    inset -15px -26px 3px -30px #000;
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 3px;
  border-radius: var(--br-top-left) var(--br-top-right) var(--br-bottom-right) var(--br-bottom-left);
  /* border-radius: calc(var(--br) - 3px); */
  box-shadow: var(--light-reflect), var(--shadow-reflect);
}

.pricing-item:focus {
  outline: none;
}

.pricing-item-gradient {
  background-position: center;
  background: linear-gradient(45deg, #85d5e757, #7a9ed254, #ba6ac93d, #de54c217, #f86b2d4f);
}


.pricing-item .pricing-info {
  width: calc(100% - 150px);
  margin-right: 20px;
  position: relative;
  z-index: 1;
}

.pricing-item .pricing-info h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0px;
  color: var(--theme-color-2);
}

.pricing-item .pricing-info p {
  margin-bottom: 0;
}

.pricing-item .pricing-price {
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px 50px 50px 8px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.pricing-item .pricing-price img {
  width: 111px;
  height: 111px;
  display: flex;
  align-items: center;
  justify-content: center;
  /*border-radius: 50px 50px 50px 8px;*/
  border-radius: 35px;
  position: relative;
  z-index: 1;
  border: #ccc solid 1px;
  transition: var(--transition);
}


.pricing-item:hover:before {
  width: 100%;
  border-radius: 0;
  opacity: 1;
  transition: var(--transition);
}

/* .pricing-item:hover .pricing-info a,
.pricing-item:hover .pricing-info h3 {
  color: var(--white-color);
} */

.pricing-item:hover .pricing-info p {
  color: #AEAEAE;
}

/* .pricing-item:hover .pricing-price {
  background: var(--white-color);
} */

.pricing-item:hover .pricing-price p {
  color: var(--theme-color-2);
}

.footer-main {
  padding: 30px 0;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img{
     filter: brightness(0) invert(1);
}

.footer-social ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-social ul li {
  display: inline-block;
  margin-right: 6px;
}

.footer-social ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  color: var(--white-color);
  font-size: 16px;
  border-radius: 20px 20px 20px 20px;
  transition: var(--transition);
}

.footer-social ul li a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-menu {
  text-align: right;
  margin-bottom: 20px;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu ul li {
  display: inline-block;
  margin-left: 30px;
}

.footer-menu ul li a {
  color: #AEAEAE;
  transition: var(--transition);
}

.footer-menu ul li a:hover {
  color: var(--white-color);
}

.copyright {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.copyright p {
  color: #AEAEAE;
  margin-bottom: 5px;
  float: right;
}

.copyright a {
  color: #AEAEAE;
  transition: var(--transition);
}

.copyright a:hover {
  color: var(--theme-color);
}

footer.footer {
  position: relative;
  background-color: var(--theme-color-2);
  z-index: 0;
}

.footer-contact-information {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  ;
}

.contact-info-item {
  text-align: center;
}

.contact-info-item .icon-box {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: var(--white-color);
  /*border-radius: 50px 50px 8px 50px;*/
  border-radius: 50px;
}

.contact-info-item h3 {
  color: var(--white-color);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-info-item p {
  color: #AEAEAE;
  margin-bottom: 0;
  text-align: center;
}
.logo img{
    filter: brightness(0) invert(1);
}
.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

.feature-one__item__sub-title {
  font-size: 18px;
  color: #dcb06b;
  font-weight: 400;
  line-height: 1;
  font-family: "Roboto Condensed";
  /* margin: 0 0 -2px; */
  text-transform: uppercase;
}

.feature-one__item__title {
  color: #455a85;
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 0 -5px;
  font-family: "Oswald", sans-serif;
}

.feature-one__item__text {
  /* text-align: left; */
}

.active svg {
  width: 31px;
  height: 4px;
  fill: #c2a74e;
  display: block;
  text-align: center;
  align-items: center;
  margin: auto;
  margin-top: 2px;
}

.feature-one__item svg {
  width: 31px;
  height: 4px;
  fill: #485b86;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.text-center .feature-one__item svg {
  margin: auto;
  margin-top: 16px;
  margin-bottom: 16px;
}

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

.gift-content img {
  height: 35px;
  margin-bottom: 14px;
}

.gift-cards {
  padding: 60px 0px
}

.rs-about-service {
  background-image: url(../images/feacture-h4-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-about-service {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.rs-about-service__item {
  display: flex;
  padding: 30px 30px;
}

.rs-about-service__item .rs-icon {
  margin-right: 16px;
  transition: all linear 0.3s;
}

.rs-about-service__item .rs-content .title {
  color: #ffffff;
  font-size: 23px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 30px;
  margin-bottom: 11px;
}

.rs-about-service__item .rs-content p {
  color: #FFFFFFDB;
  font-size: 15px;
}

.rs-about-service__item.item-2 {
  position: relative;
  z-index: 10;
}

.rs-about-service__item.item-2::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--theme-color);
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-about-service__item.item-3 {
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .rs-about-service__item.item-3 {
    margin-left: 0;
  }
}

.rs-about-service__item:hover .rs-icon {
  -webkit-animation-name: dance_hover;
  animation-name: dance_hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

@-webkit-keyframes dance_hover {
  16.65% {
    transform: translateY(8px);
  }

  33.3% {
    transform: translateY(-6px);
  }

  49.95% {
    transform: translateY(4px);
  }

  66.6% {
    transform: translateY(-2px);
  }

  83.25% {
    transform: translateY(1px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes dance_hover {
  16.65% {
    transform: translateY(8px);
  }

  33.3% {
    transform: translateY(-6px);
  }

  49.95% {
    transform: translateY(4px);
  }

  66.6% {
    transform: translateY(-2px);
  }

  83.25% {
    transform: translateY(1px);
  }

  100% {
    transform: translateY(0);
  }
}

.rs-about {
  padding-bottom: 160px;
  background-image: url(../images/testimonial_right_img.png);
  background-repeat: no-repeat;
  background-position: 90% 10%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-about {
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-about {
    padding-bottom: 100px;
  }
}

.rs-about__thumb {
  position: relative;
  z-index: 10;
}

.rs-about__thumb .rs-thumb-1 {
  position: absolute;
  right: 50px;
  bottom: -120px;
  z-index: 5;
  border-radius: 5px;
  overflow: hidden;
}

@media only screen and (max-width: 575px) {
  .rs-about__thumb .rs-thumb-1 {
    position: static;
    margin-top: 30px;
  }
}

.rs-about__thumb .rs-shape-1 {
  position: absolute;
  left: 75px;
  bottom: -80px;
  z-index: 4;
}

.rs-about__thumb .rs-shape-2 {
  position: absolute;
  left: -60px;
  top: -40px;
  z-index: -1;
  animation: scale 1s alternate infinite;
  -webkit-animation: scale 1s alternate infinite;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.rs-about__content {
  position: relative;
  margin-left: -20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1549px) {
  .rs-about__content {
    margin-left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-about__content {
    margin-left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-about__content {
    margin-left: 0;
    padding-top: 180px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-about__content {
    margin-left: 0;
    padding-top: 180px;
  }
}

@media only screen and (max-width: 575px) {
  .rs-about__content {
    padding-top: 120px;
  }
}

.rs-about__content>span {
  border: 1px solid #25826A66;
  font-size: 16px;
  font-weight: 500;
  color: #25826A;
  border-radius: 40px;
  line-height: 26px;
  padding: 4px 20px 2px 20px;
  display: inline-block;
}

.rs-about__content .title {
  font-size: 40px;
  line-height: 50px;
  margin-top: 20px;
  margin-bottom: 33px;
}

@media only screen and (max-width: 767px) {
  .rs-about__content .title {
    font-size: 32px;
    line-height: 42px;
  }
}

.rs-about__content ul {
  margin-top: 35px;
}

@media only screen and (max-width: 575px) {
  .rs-about__content ul {
    display: flex;
    flex-direction: column;
  }
}

.rs-about__content ul li {
  display: inline-block;
}

.rs-about__content ul li:last-child a {
  margin-left: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #25826A;
}

@media only screen and (max-width: 575px) {
  .rs-about__content ul li:last-child a {
    margin-left: 0;
    margin-top: 20px;
  }
}

.rs-about__content ul li:last-child a i {
  padding-left: 6px;
  transition: all linear 0.3s;
}

.rs-about__counter-box {
  border-top: 1px solid #E8E5E8;
  margin-top: 60px;
  padding-top: 60px;
  margin-left: -20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-about__counter-box {
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .rs-about__counter-box {
    margin-left: 0;
  }
}

.rs-about__counter-box .rs-counter-item {
  display: flex;
}

@media only screen and (max-width: 767px) {
  .rs-about__counter-box .rs-counter-item {
    margin: 20px 0;
  }
}

.rs-about__counter-box .rs-counter-item .rs-icon {
  margin-right: 20px;
}

.rs-about__counter-box .rs-counter-item .rs-content .title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -2.3px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-about__counter-box .rs-counter-item .rs-content .title {
    font-size: 24px;
  }
}

.rs-about__counter-box .rs-counter-item .rs-content .title .suffix {
  font-size: 30px;
}

.rs-about__counter-box .rs-counter-item .rs-content .title .prefix {
  font-weight: 500;
}

.rs-about__counter-box .rs-counter-item .rs-content>span {
  display: block;
  margin-top: 5px;
}

@media only screen and (min-width: 1200px) and (max-width: 1549px) {
  .rs-about__counter-box .rs-counter-item .rs-content>span {
    font-size: 14px;
    line-height: 22px;
    display: block;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-about__counter-box .rs-counter-item .rs-content>span {
    font-size: 14px;
    line-height: 22px;
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-about__counter-box .rs-counter-item .rs-content>span {
    font-size: 14px;
    line-height: 22px;
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .rs-about__counter-box .rs-counter-item .rs-content>span {
    font-size: 14px;
    line-height: 22px;
    display: block;
  }
}

@keyframes scale {
  from {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
  }

  to {
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
  }
}

@-webkit-keyframes scale {
  from {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
  }

  to {
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
  }
}

.rs-about-featured-2__item {
  background-image: url(../images/about-service-bg.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  z-index: 10;
  box-shadow: 3px 4px 73px -31px rgba(29, 27, 28, 0.32);
}

@media only screen and (max-width: 1599px) {
  .rs-about-featured-2__item {
    background-size: 130%;
    padding: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-about-featured-2__item {
    margin-bottom: 30px;
    background-size: 60%;
  }
}

@media only screen and (max-width: 767px) {
  .rs-about-featured-2__item {
    margin-bottom: 30px;
    background-size: 70%;
  }
}

@media only screen and (max-width: 575px) {
  .rs-about-featured-2__item {
    background-size: auto;
  }
}

.rs-about-featured-2__item .rs-icon {
  margin-bottom: 35px;
  transition: all linear 0.3s;
  display: inline-block;
}

.rs-about-featured-2__item .rs-icon img {
  height: 65px;
}

.rs-about-featured-2__item .title {
  font-size: 24px;
  font-weight: 600;
  color: #0C2543;
  margin-bottom: 14px;
}

.rs-about-featured-2__item .title a {
  transition: all linear 0.3s;
}

.rs-about-featured-2__item .title a:hover {
  color: #008eff;
}

.rs-about-featured-2__item .rs-number {
  position: absolute;
  right: 35px;
  top: 35px;
  color: #ffffff;
  font-weight: 700;
  font-size: 40px;
}

.rs-about-featured-2__item:hover .rs-icon {
  -webkit-animation: foldAnimation linear 0.3s;
  animation: foldAnimation linear 0.3s;
}

.section-space {
  padding-top: 60px;
  padding-bottom: 60px;
}

.p-relative {
  position: relative;
}

.fix {
  overflow: hidden;
}

.about-us-section.two {
  padding: 0px;
  padding-bottom:50px;
}

.about-us-section.two .img-2 {
  position: absolute;
  bottom: -175px;
  right: 40px;
}

.about-us-section.two .img-1 img,
.about-us-section.two .img-2 img {
  border-radius: 5px;
}

.about-us-image-area.two .content {
  top: 50%;
  left: 60%;
  transform: translate(-50%, -60%);
}

.about-us-image-area.two .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top right;
}

.about-us-image-area.two .shape-2 {
  position: absolute;
  top: 150px;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: -1;
}


@media only screen and (max-width: 1440px) {

  .about-us-section.two .img-1 img {
    max-width: 50%;
  }

  .about-us-section.two .img-2 {
    right: 30px;
    bottom: -293px;
  }

  .about-us-image-area.two .content {
    top: 70%;
  }

}


.about-us-content-area.two .inner {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  margin-bottom: 0;
  gap: 20px;
  width: 50%;
}

@media (max-width: 425px){
    .about-us-content-area.two .inner{
        align-items: center;
    }
}

.site-footer__shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: .40;
  z-index: -1;
}

.site-footer__shape-1 img {
  width: auto;
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(-30px);
  }
}

@keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(-30px);
  }
}

.about-us-content-area .icon-content-area {
  display: flex;
  flex-direction: row;
}

@media (max-width:425px){
    .about-us-content-area .icon-content-area {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.pt-20 {
  padding-top: 20px;
}

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

.about-us-content-area .icon-content-area {
  padding-right: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.about-us-content-area .about-us-button-area {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 50px;
}

.about-us-content-area .chat-us {
  display: flex;
  gap: 33px;
}

.about-us-content-area .chat-us .content a {
  color: #000;
  font-size: 20px;
  font-weight: 600;
}

.about-us-content-area .chat-us span {
  color: var(--gray-color);
  font-size: 16px;
}

.icon-content-area h5 {
  font-size: 20px;
  font-weight: 600;
}

.mt-30 {.
  margin-top: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

.feature-one {
  position: relative;
  display: block;
  padding: 60px 0 60px;
  z-index: 1;
  background-color: #fff;
}

.feature-one__single {
  position: relative;
  display: flex;
  margin-bottom: 30px;
  background-color: rgb(255, 255, 255);
  /*box-shadow: 0px 0px 60px 0px rgba(4, 23, 26, 0.08);*/
  /*box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;*/
  z-index: 1;   
  min-height: 225px;
  height: 250px;
border: 1px solid #e5e5e5;
}
.smallp{font-size: 13px;
    margin-bottom: 10px !important;}

.feature-one__shape-1 {
  position: absolute;
  top: 0px;
  right: 0;
  left: 95px;
  height: 29px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center left;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: left;
  transform-style: preserve-3d;
  transform: scaleY(1);
  z-index: -1;
}

.feature-one__single:hover .feature-one__shape-1 {
  transform: scaleY(0.0);
}

.feature-one__shape-1 img {
  width: auto;
}

.feature-one__hover-shape-1 {
  position: absolute;
  top: 0px;
  right: 0;
  left: 95px;
  height: 29px;
  background-size: cover;
  background-repeat: no-repeat;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}

.feature-one__single:hover .feature-one__hover-shape-1 {
  transform: scaleY(1.0);
}

.feature-one__hover-shape-1 img {
  width: auto;
}

.feature-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 105px;
  background-color: var(--theme-color);
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  overflow: hidden;
  z-index: 1;
}

.feature-one__icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--secondary-color);
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  background-position: center bottom;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}

.feature-one__single:hover .feature-one__icon::after {
  transform: scaleY(1.0);
}

.feature-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 40px;
  font-weight: 300;
  color: var(--white-color);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-one__single:hover .feature-one__icon span {
  color: var(--white-color);
}

.feature-one__content {
  position: relative;
  display: block;
  margin-left: 30px;
  padding: 25px 0 35px;
}

.feature-one__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.feature-one__title a {
  color: var(--theme-color-2);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-one__title a:hover {
  color: var(--theme-color);
}

.feature-one__read-more {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.016em;
  color: var(--theme-color);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-one__read-more:hover {
  color: var(--theme-color);
}

.feature-one__read-more span {
  position: relative;
  margin-left: 10px;
}

.mb-0 {
  margin-bottom: 0px;
}

.service-two {
  padding: 60px 0px;
}

@media (max-width: 991px) {
  .service-two {
    padding: 60px 0px;
  }
}

.service-two__item {
  position: relative;
  border: 1px solid #DBDBDB;
  padding: 0px 30px 25px;
  margin-bottom: 40px;
  background-size: cover;
}

.service-two__item::before {
  content: ' ';
  position: absolute;
  background-color: #000;
  top: 0px;
  left: 0px;
  opacity: 0.5;
  z-index: 0;
  height: 100%;
  width: 100%;
}


@media (max-width: 1199px) and (min-width: 991px) {
  .service-two__item {
    padding: 0px 20px 30px;
  }
}

.service-two__item:hover .service-two__icon {
  background: var(--secondary-color);
}

.col-lg-3:nth-child(even) .service-two__item:hover .service-two__icon {
  background: var(--theme-color);
}

.service-two__icon {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100.000000 92.000000"> <g transform="translate(0.000000,92.000000) scale(0.050000,-0.050000)" > <path d="M1 1205 l1 -635 487 -275 c268 -151 499 -275 514 -274 15 0 243 124 507 275 l480 276 5 634 6 634 -1001 0 -1000 0 1 -635z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100.000000 92.000000"> <g transform="translate(0.000000,92.000000) scale(0.050000,-0.050000)" > <path d="M1 1205 l1 -635 487 -275 c268 -151 499 -275 514 -274 15 0 243 124 507 275 l480 276 5 634 6 634 -1001 0 -1000 0 1 -635z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
  width: 100px;
  height: 92px;
  background: var(--theme-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  color: var(--white-color);
  margin-bottom: 105px;
  transition: all 0.4s ease-in-out;
}

.col-lg-3:nth-child(even) .service-two__icon {
  background: var(--secondary-color);
}

.service-two__icon img {
  height: 50px;
  width: 50px;
  filter: invert(1) brightness(1);
}

.service-two__title {
  position: relative;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: -0.48px;
  padding-bottom: 0;
  z-index: 2;
}

.service-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.service-two__title a:hover {
  background-size: 100% 1px;
}

@media (max-width: 991px) {
  .service-two__title {
    font-size: 23px;
  }
}

.service-two__text {
  color: #6A6A6A;
  font-size: 16px;
  font-weight: 500;
  line-height: 187.5%;
  padding-bottom: 0;
  margin-bottom: -2px;
}

.about-three {
  position: relative;
  z-index: 1;
  padding: 60px 0px 100px;
}

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

@media (max-width: 767px) {
  .about-three {
    padding: 50px 0px 80px;
  }
}

.about-three__image {
  position: relative;
  z-index: 1;
  margin-right: 40px;
}

@media (max-width: 1199px) {
  .about-three__image {
    margin-right: 0;
  }
}

@media (max-width: 991px) {
  .about-three__image {
    margin-bottom: 30px;
  }
}

.about-three__image__item {
  /*-webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 343.000000"> <g transform="translate(0.000000,343.000000) scale(0.050000,-0.050000)"> <path d="M1500 6204 l-1490 -655 -5 -2112 -5 -2112 595 -260 c327 -144 997 -437 1488 -653 492 -216 904 -392 916 -392 16 0 2609 1128 2949 1283 l52 24 -5 2111 -5 2111 -1490 654 c-820 360 -1494 655 -1500 655 -5 0 -680 -295 -1500 -654z"/> </g> </svg>');*/
  /*mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 343.000000"> <g transform="translate(0.000000,343.000000) scale(0.050000,-0.050000)"> <path d="M1500 6204 l-1490 -655 -5 -2112 -5 -2112 595 -260 c327 -144 997 -437 1488 -653 492 -216 904 -392 916 -392 16 0 2609 1128 2949 1283 l52 24 -5 2111 -5 2111 -1490 654 c-820 360 -1494 655 -1500 655 -5 0 -680 -295 -1500 -654z"/> </g> </svg>');*/
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
  width: 528px;
  height: 528px;
  /*height: 603px;*/
}

@media (max-width: 1500px) {
  .about-three__image__item {
    width: 100%;
    height: 500px;
  }

  .about-three__image__item img {
    object-fit: cover;
    width: 100%;
  }
}

.about-three__image__item__two {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 343.000000"> <g transform="translate(0.000000,343.000000) scale(0.050000,-0.050000)"> <path d="M1500 6204 l-1490 -655 -5 -2112 -5 -2112 595 -260 c327 -144 997 -437 1488 -653 492 -216 904 -392 916 -392 16 0 2609 1128 2949 1283 l52 24 -5 2111 -5 2111 -1490 654 c-820 360 -1494 655 -1500 655 -5 0 -680 -295 -1500 -654z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 343.000000"> <g transform="translate(0.000000,343.000000) scale(0.050000,-0.050000)"> <path d="M1500 6204 l-1490 -655 -5 -2112 -5 -2112 595 -260 c327 -144 997 -437 1488 -653 492 -216 904 -392 916 -392 16 0 2609 1128 2949 1283 l52 24 -5 2111 -5 2111 -1490 654 c-820 360 -1494 655 -1500 655 -5 0 -680 -295 -1500 -654z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
  width: 236px;
  height: 260px;
  position: absolute;
  bottom: -15%;
  right: 0;
}

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

@media (max-width: 767px) {
  .about-three__image__item__two {
    width: 180px;
    height: 200px;
  }
}

.about-three__image__funfact {
  /*-webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 216 245"><path d="M108 0.0750732L216 46.9034L216 197.247L108 244.075L0.000214611 197.247L0 46.9034L108 0.0750732Z"/></svg>');*/
  /*mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 216 245"><path d="M108 0.0750732L216 46.9034L216 197.247L108 244.075L0.000214611 197.247L0 46.9034L108 0.0750732Z"/></svg>');*/
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
  width: 180px;
  height: 180px;
  /*height: 245px;*/
  background: var(--theme-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  bottom: 19%;
  left: -10%;
}

@media (max-width: 991px) {
  .about-three__image__funfact {
    bottom: 19%;
    left: 0;
  }
}

.about-three__image__funfact__text {
  color: var(--white-color);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
}

@media (max-width: 767px) {
  .about-three__image__funfact {
    width: 180px;
    height: 200px;
  }
}

.about-three__image__shape {
  position: absolute;
  top: 10%;
  z-index: -1;
  right: -20px;
  animation: heroleft 4s ease-in-out infinite;
}

@media (max-width: 1500px) {
  .about-three__image__shape img {
    object-fit: cover;
    width: 90%;
  }
}

@media (max-width: 1199px) {
  .about-three__image__shape {
    right: 0px;
  }

  .about-three__image__shape img {
    object-fit: cover;
    width: 100%;
  }
}

@media (max-width: 991px) {
  .about-three__image__shape img {
    object-fit: cover;
    width: 90%;
  }
}

.about-three__image__count {
  color: var(--white-color);
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  line-height: 116.667%;
  display: flex;
  gap: 0;
  justify-content: center;
  padding-bottom: 0;
  margin-bottom: 0;
}

.about-three__top {
  margin-bottom: 40px;
}

.about-three__top .sec-title {
  padding-bottom: 22px;
}

.about-three__top .sec-title .sec-title__title {
  color: var(--white-color);
}

.about-three__top__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 187.5%;
}

.about-three__feature {
  padding: 40px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 1199px) {
  .about-three__feature {
    padding: 20px;
  }
}

.about-three__feature__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}

.about-three__feature__bg::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(56, 104, 146, 0.9);
  position: absolute;
  top: 0;
  left: 0;
}

.about-three__feature__icon__box {
  /*-webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 81 94"><path d="M40.5 0.0749512L81 23.325V69.825L40.5 93.075L0 69.825V23.325L40.5 0.0749512Z"/></svg>');*/
  /*mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 81 94"><path d="M40.5 0.0749512L81 23.325V69.825L40.5 93.075L0 69.825V23.325L40.5 0.0749512Z"/></svg>');*/
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
  width: 81px;
  height: 81px;
  /*height: 94px;*/
  background: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--theme-color);
  font-size: 48px;
  transition: all 0.7s ease-in-out;
  border-radius: 50%;
}

.about-three__feature__title {
  color: var(--white-color);
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 5px;
}

.about-three__feature__text {
      color: var(--white-color);
    font-size: 23px;
    font-weight: 500;
    line-height: 187.5%;
    padding-bottom: 0;
    margin-bottom: 0;
    font-style: italic;
}

.about-three__feature:hover .about-three__feature__icon__box {
  background: var(--secondary-color);
  transform: rotateY(360deg);
  color: var(--white-color);
}

.about-three__list {
  margin-top: 50px;
  margin-bottom: 0;
  margin-left: 0;
}

.about-three__list__item {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.about-three__list__item i {
  resize: 18px;
  color: var(--theme-color);
  margin-right: 17px;
}

.about-three__list__item+.about-three__list__item {
  margin-top: 18px;
}

@keyframes heroleft {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(15px);
  }

  100% {
    transform: translateX(0px);
  }
}

.testimonials-one__item {
  padding-top: 80px;
}

.testimonials-one__content {
  background: #fdfdfd;
  padding: 80px 44px 45px 50px;
  position: relative;
}

.testimonials-one__content::after {
  position: absolute;
  bottom: -20px;
  top: -20px;
  left: 20px;
  right: 20px;
  border: 1px solid var(--theme-color);
  background-color: transparent;
  content: "";
  z-index: -1;
  animation: borderScale 4s ease-in-out infinite;
}

.testimonials-one__author {
  display: inline-flex;
  align-items: end;
  gap: 30px;
  margin-top: -160px;
  position: absolute;
}

.testimonials-one__author__thumb {
  width: 140px;
  height: 140px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: -75px;
  position: relative;
  z-index: 2;
}

.testimonials-one__author__thumb img {
  object-fit: cover;
  width: 100%;
}

.testimonials-one__author__content {
  padding: 23px 80px;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

.testimonials-one__author__content::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-color);
  content: "";
  clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
  z-index: -1;
}

.testimonials-one__author__name {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  padding-bottom: 0;
  margin-bottom: -1px;
}

.testimonials-one__author__deg {
  display: block;
  color: var(--white-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 178.529%;
  padding-bottom: 0;
  margin-bottom: -1px;
}

.testimonials-one__text {
  color: #6A6A6A;
  font-size: 16px;
  font-weight: 500;
  line-height: 187.5%;
}

.testimonials-one__star {
  font-size: 22px;
  color: var(--theme-color);
  letter-spacing: 1px;
  margin-bottom: -4px;
}

.work-step-one {
  position: relative;
  display: block;
  padding: 60px 0 60px;
  background-color: #f4f4f4;
  z-index: 1;
}

.work-step-one__bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

@keyframes borderScale {
  0% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.8);
  }
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.product__item {
  position: relative;
  background-color: var(--white-color);
  border: 1px solid #DBDBDB;
  transition: all 500ms ease;
  border-radius: 24px;
}

.product__item:hover {
  box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--theme-color);
}

.product__item__img {
  /*background-color: var(--white-color);*/
  position: relative;
  overflow: hidden;
}

.product__item__img__item {
  /*max-width: 228px;*/
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.product__item__img__item img {
    width: 100%;
    /*height: 215px !important;*/
    mix-blend-mode: multiply;
    transition: all 500ms ease;
    transform: scale(1);
    border-radius: 35px;
    padding: 15px;
    /*object-fit: contain;*/
}

.product__item:hover .product__item__img img {
  transform: scale(1.05);
}

.product__item:hover .product__item__btn a {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
}

.product__item__content {
  position: relative;
  text-align: center;
  padding: 20px 20px 30px 20px;
}

.product__item__title {
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 130%;
  color: #212529;
  font-family: "Inter", sans-serif;
}

.product__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.product__item__title a:hover {
  background-size: 100% 1px;
}

.product__item__title a:hover {
  color: var(--secondary-color);
}

.product-one {
  background-color: #f5f5f5;
  padding: 60px 0 60px;
}

@media (max-width: 767px) {
  .product-one {
    padding: 60px 0 60px;
  }
}

.product-one--home {
  position: relative;
  padding: 0 0 90px;
}

@media (max-width: 767px) {
  .product-one--home {
    padding-bottom: 50px;
  }
}

.product__categories {
  margin-bottom: -4px;
  background-color: var(--white-color);
  padding: 30px 30px 23px 30px;
  box-shadow: 0px 0px 60px 0px rgba(2, 2, 2, 0.07);
}

.product__categories__title {
  color: var(--theme-color);
  margin: 0;
  margin-top: -5px;
  padding-bottom: 15px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--theme-color);
  position: relative;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

.product__categories ul {
  margin-bottom: 0;
}

.product__categories ul li:not(:last-of-type) {
  border-bottom: 1px solid #DBDBDB;
}

.product__categories ul li:first-child a {
  padding-top: 0;
}

.product__categories ul li:last-child a {
  padding-bottom: 0 !important;
}

.product__categories ul li a {
  display: flex;
  align-items: center;
  padding: 10px 0 14.44px 0px;
  transition: all 500ms ease;
  color: #6A6A6A;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.product__categories ul li a i {
  font-size: 12px;
  margin-right: 7px;
  color: #6A6A6A;
}

.product__categories ul li:hover a i {
  color: var(--secondary-color);
}

.product__categories ul li a:hover {
  padding-left: 20px;
  background-color: var(--white-color);
  color: var(--secondary-color);
}

.product-details {
  position: relative;
  padding: 120px 0;
}

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

@media (max-width: 767px) {
  .product-details {
    padding: 80px 0;
  }
}

.product-details__img {
  background-color: var(--white-color);
  position: relative;
  border: 1px solid var(--laboix-border-color, #DBDBDB);
  max-width: 570px;
  height: auto;
}

.product-details__img img {
  object-fit: cover;
  width: 100%;
  height: auto;
}

.product-details__content {
  position: relative;
  margin-top: -10px;
}

@media (max-width: 991px) {
  .product-details__content {
    margin-top: 0px;
  }
}

.product-details__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
  margin-bottom: 0;
  padding-bottom: 10px;
}

.product-details__title {
  margin-top: 5px;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media (min-width: 768px) {
  .product-details__title {
    font-size: 30px;
  }
}

.product-details__price {
  margin: 0 0 0 17px;
  color: var(--theme-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
}

.product-details__review {
  position: relative;
  display: flex;
  align-items: center;
  letter-spacing: 2.5px;
  font-size: 17px;
  color: var(--theme-color);
}

.product-details__review a {
  display: inline-block;
  margin-left: 20px;
  transition: all 500ms ease;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
}

.product-details__review a:hover {
  color: var(--theme-color);
}

.product-details__divider {
  width: 100%;
  height: 1px;
  background-color: #DBDBDB;
  margin: 32px 0 20px 0;
}

.product-details__excerpt {
  margin: 0;
  font-size: 15px;
  line-height: 30px;
}

.product-details__excerpt-text1 {
  margin: 0 0 17px;
  max-width: 514px;
  font-size: 16px;
  font-weight: 500;
  line-height: 187.5%;
}

.product-details__excerpt-text2 {
  margin-bottom: 37px;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

@media (max-width: 767px) {
  .product-details__excerpt-text2 br {
    display: block;
  }
}

.product-details__excerpt-text2 span {
  display: block;
  margin-top: 5px;
  font-weight: 600;
  color: var(--theme-color);
}

.product-details__description__lists {
  margin-bottom: 25px;
  margin-top: 25px;
  padding: 0;
}

.product-details__description__lists li {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  font-size: 16px;
  line-height: 40px;
  font-weight: 700;
}

.product-details__description__lists li i {
  font-size: 23px;
  color: var(--secondary-color);
  margin-right: 5px;
}

.image_1 img {
  height: 600px;
  width: auto;
}
@media (max-width: 425px){
    .image_1 img{
        height:450px;
    }
}
.join-us-tow {
  background-color: #f5f5f5;
  padding: 70px 0 60px;
}

.join-us-tow__item {
  background-color: var(--white-color);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
}

.join-us-tow__content {
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 1;
  padding: 1px 30px 30px;
}

@media (min-width: 576px) {
  .join-us-tow__content {
    padding: 1px 50px 30px;
  }
}

.join-us-tow__content:hover {
  background-color: var(--theme-color);
}

.join-us-tow__content:hover .join-us-tow__icon {
  background-color: var(--secondary-color);
}

.join-us-tow__content:hover .join-us-tow__title {
  color: var(--white-color);
}

.join-us-tow__content:hover .join-us-tow__text {
  color: var(--white-color);
}

.join-us-tow__icon {
  position: relative;
  margin-top: -50px;
  /*-webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 102 121"><path d="M51 0.043457L102 30.0435V90.0435L51 120.043L0 90.0435V30.0435L51 0.043457Z"/></svg>');*/
  /*mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 102 121"><path d="M51 0.043457L102 30.0435V90.0435L51 120.043L0 90.0435V30.0435L51 0.043457Z"/></svg>');*/
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
  width: 102px;
  height: 102px;
  /*height: 121px;*/
  background: var(--theme-color);
  font-size: 60px;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 23px;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}

.join-us-tow__icon img {
  height: 70px;
  width: 70px;
}

.join-us-tow__title {
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.48px;
  margin-bottom: 17px;
}

.join-us-tow__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.join-us-tow__title a:hover {
  background-size: 100% 1px;
}

.join-us-tow__text {
  color: #6A6A6A;
  font-size: 15px;
  font-weight: 500;
  line-height: 187%;
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}

.join-us-tow__shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.contact-form {
  padding: 40px;
  background: #f5f5f5;
}
.contact-form.in_con{
    padding: 15px 30px;
}

.contact-form .inner-box {
  position: relative;
  display: block;
}

.contact-form form {
  position: relative;
  display: block;
}

.contact-form form .input-box {
  position: relative;
  display: block;
}

.contact-form form .input-box .icon {
  position: absolute;
  top: 19px;
  left: 20px;
}

.contact-form form .input-box .icon i {
  color: #b6b6b6;
  font-size: 16px;
}

.contact-form form .input-box .icon.envelop {
  position: absolute;
  top: 16px;
  left: 20px;
}

.contact-form form input[type="text"],
.contact-form form input[type="email"],
.contact-form form textarea,
.contact-form form select {
  position: relative;
  display: block;
  background: #ffffff;
  border: 1px solid #ededed;
  width: 100%;
  height: 60px;
  font-size: 15px;
  padding-left: 50px;
  padding-right: 20px;
  border-radius: 0px;
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.contact-form form textarea {
  height: 110px;
  padding-left: 50px;
  padding-right: 20px;
  padding-top: 14px;
  padding-bottom: 15px;
}

.contact-form form input[type="text"]:focus {
  border-color: #1d1d1d;
  color: #222222;
}

.contact-form form input[type="email"]:focus {
  border-color: #1d1d1d;
  color: #222222;
}

.contact-form form textarea:focus {
  border-color: #1d1d1d;
  color: #222222;
}

.contact-form form select:focus {
  border-color: #1d1d1d;
  color: #222222;
}

.contact-form form input[type="text"]::-webkit-input-placeholder {
  color: #828282;
}

.contact-form form input[type="text"]:-moz-placeholder {
  color: #828282;
}

.contact-form form input[type="text"]::-moz-placeholder {
  color: #828282;
}

.contact-form form input[type="text"]:-ms-input-placeholder {
  color: #828282;
}

.contact-form form input[type="email"]::-webkit-input-placeholder {
  color: #828282;
}

.contact-form form input[type="email"]:-moz-placeholder {
  color: #828282;
}

.contact-form form input[type="email"]::-moz-placeholder {
  color: #828282;
}

.contact-form form input[type="email"]:-ms-input-placeholder {
  color: #828282;
}

.contact-form form button {
  position: relative;
  display: block;
  width: 100%;
}

.contact-form-image-box {
  position: absolute;
  top: -110px;
  right: -350px;
  z-index: 1;
}

.contact-form-image-box img {
  max-width: none;
  float: left;
}

.inq-main {
  position: relative;
  padding: 60px 0px;
}

@media (max-width: 991px) {
  .service-sidebar__single {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

.service-sidebar__single+.service-sidebar__single {
  margin-top: 30px;
}

.service-sidebar__title {
  position: relative;
  margin: 0;
  padding: 25px 30px;
  background-color: var(--theme-color);
  color: var(--white-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 108.333%;
}

.service-sidebar__title::after {
  content: "";
  width: 40px;
  height: 25px;
  position: absolute;
  bottom: -20px;
  left: 8%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: var(--theme-color);
  transform: rotate(180deg);
}

@media (min-width: 576px) {
  .service-sidebar__title {
    font-size: 24px;
  }
}

.service-sidebar__nav {
  border-top: 0;
  margin-bottom: 0;
  padding: 40px 30px;
  background: #F5F7FA;
}

@media (max-width: 1200px) and (min-width: 992px) {
  .service-sidebar__nav {
    padding: 30px 20px;
  }
}

@media (max-width: 575px) {
  .service-sidebar__nav {
    padding: 30px 20px;
  }
}

.service-sidebar__nav li a {
  color: #3c4d70;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: var(--white-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 500ms ease;
  padding: 14px 30px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 162.5%;
  box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1200px) and (min-width: 992px) {
  .service-sidebar__nav li a {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .service-sidebar__nav li a {
    font-size: 14px;
  }
}

.service-sidebar__nav li a::after {
  content: "\e92c";
  font-family: "icomoon" !important;
  font-weight: 900;
  transition: all 500ms ease;
  font-size: 12px;
  color: var(--theme-color);
}

@media (max-width: 1200px) and (min-width: 992px) {
  .service-sidebar__nav li a::after {
    font-size: 12px;
  }
}

.service-sidebar__nav li a::before {
  content: "";
  width: 0%;
  height: 100%;
  background-color: var(--theme-color);
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  z-index: -1;
  transition: all 500ms ease-in-out;
}

.service-sidebar__nav li.current a,
.service-sidebar__nav li:hover a {
  color: var(--white-color);
}

.service-sidebar__nav li.current a::after,
.service-sidebar__nav li:hover a::after {
  color: var(--white-color);
}

.service-sidebar__nav li.current a::before,
.service-sidebar__nav li:hover a::before {
  width: 100%;
  left: 0;
  right: auto;
}

.service-sidebar__nav li:last-child a {
  margin-bottom: 0;
}

.tp-blog-2__area {
  padding: 60px 0px;
}

.tp-blog-2__item {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.tp-blog-2__item:hover .tp-blog-2__thumb img {
  transform: scale(1.1);
}

.tp-blog-2__item:hover .tp-blog-2__thumb::after {
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1);
  transform: perspective(400px) rotateX(0deg) scaleY(1);
}

.tp-blog-2__item:hover .tp-blog-2__link {
  background-color: var(--theme-color);
}

.tp-blog-2__item:hover .tp-blog-2__link span {
  color: var(--white-color);
}

.tp-blog-2__item:hover .tp-blog-2__icon {
  opacity: 1;
  visibility: visible;
}

.tp-blog-2__thumb {
  overflow: hidden;
  position: relative;
}

.tp-blog-2__thumb img {
  width: 100%;
  transition: all 500ms ease;
}

.tp-blog-2__thumb::after {
  background-color: rgba(56, 104, 146, 0.80);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  -webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition: 0.5s;
  transition-property: all;
  z-index: 1;
}

.tp-blog-2__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  z-index: 3;
  transition: all 600ms ease;
}

.tp-blog-2__icon a {
  color: var(--white-color);
  font-size: 25px;
}

.tp-blog-2__tag {
  padding-bottom: 15px;
}

.tp-blog-2__tag span {
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  font-size: 14px;
  display: flex;
}

.tp-blog-2__tag span i {
  font-size: 16px;
  transform: translateY(4px);
  margin-right: 10px;
  color: var(--tp-theme-1);
  display: inline-block;
}

.tp-blog-2__content {
  padding: 35px 30px;
  padding-top: 30px;
  box-shadow: 2px 3.464px 40px 0px rgba(14, 5, 1, 0.04);
}

.tp-blog-2__title-sm {
  font-size: 22px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 0px;
}

.tp-blog-2__title-sm:hover {
  color: var(--secondary-color);
  transition: all 500ms ease;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-blog-2__title-sm {
    font-size: 20px;
  }

  .tp-blog-2__title-sm br {
    display: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-blog-2__title-sm {
    font-size: 23px;
  }

  .tp-blog-2__title-sm br {
    display: none;
  }
}

.tp-blog-2__meta {
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  padding-bottom: 20px;
}

.tp-blog-2__meta::before {
  content: "";
  display: inline-block;
  height: 2px;
  width: 10px;
  background-color: var(--secondary-color);
  margin-right: 10px;
  transform: translateY(-5px);
}


.tp-blog-2__link {
  height: 38px;
  line-height: 38px;
  background-color: #f2f7f7;
  transition: 0.3s;
}

.tp-blog-2__link span {
  color: #000;
  font-weight: 700;
  font-size: 14px;
  transition: 0.5s;
}

.tp-blog-2__link span i {
  margin-left: 10px;
  font-size: 14px;
  display: inline-block;
  transform: translateY(2px);
}

.tp-blog-2__overly-2 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(30, 55, 55, 0.6);
  transform: scale(0.5);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.tp-blog-2__item:hover .tp-blog-2__overly-2 {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.mb-30 {
  margin-bottom: 30px;
}
.mb-60 {
  margin-bottom: 60px;
}

.our-work {
  padding-top:60px;
  padding-bottom: 60px;
}

@media (max-width: 991px) {
  .our-work {
    padding-bottom: 100px;
  }
}

@media (max-width: 80px) {
  .our-work {
    padding-bottom: 80px;
  }
}

.our-work__item {
  position: relative;
  max-width: 400px;
  z-index: 1;
}

.our-work__item::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  right: -34%;
  top: 13%;
  border-top: 2px dashed #DBDBDB;
  z-index: -1;
}

@media (max-width: 991px) {
  .our-work__item::after {
    display: none;
  }
}

.our-work__item--two::after {
  display: none;
}

.our-work__item__step {
  transition: all 0.4s ease-in-out;
  /*-webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 57 66"><path d="M28.1458 0.97168L56.2917 17.2217V49.7217L28.1458 65.9717L0 49.7217V17.2217L28.1458 0.97168Z"/></svg>');*/
  /*mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 57 66"><path d="M28.1458 0.97168L56.2917 17.2217V49.7217L28.1458 65.9717L0 49.7217V17.2217L28.1458 0.97168Z"/></svg>');*/
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
  width: 57px;
  height: 57px;
  margin-left: 60px;
  margin-bottom: 24px;
  /*height: 66px;*/
  background-color: #F3F3F3;
  counter-increment: courseNumber;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  border-radius: 50%;
}

.our-work__item__step::before {
  content: counters(courseNumber, ".", decimal-leading-zero);
}

@media (max-width: 575px) {
  .our-work__item__step {
    margin-bottom: 15px;
  }
}

.our-work__item__content {
  padding-left: 50px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) and (min-width: 991px) {
  .our-work__item__content {
    padding-left: 30px;
  }
}

.our-work__item__content::after {
  content: "";
  width: 19px;
  height: 141px;
  background: linear-gradient(90deg, #021936 -100.25%, rgba(255, 255, 255, 0) 30.29%);
  position: absolute;
  top: 10%;
  left: 0;
}

.our-work__item__title {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.4px;
  margin-bottom: 17px;
}

.our-work__item__title a {
  color: inherit;
}

.our-work__item__title a:hover {
  color: var(--theme-color);
}

.our-work__item__text {
  color: #6A6A6A;
  font-size: 16px;
  font-weight: 500;
  line-height: 150.5%;
  padding-bottom: 0;
  margin-bottom: 0;
}

.our-work__item__shape {
  position: absolute;
  left: 0;
  top: 37%;
}

.our-work__item:hover .our-work__item__step {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.our-work__item:hover .our-work__item__shape {
  animation: topAni 2s ease-in infinite;
}

@keyframes topAni {
  0% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(-15px);
  }
}
.header-area .main-menu ul>li>a.active>svg {
  display: block;
}
.header-style-2 .main-menu ul>li>a>svg {
  display: none;
}

.space, .space-bottom {
    padding-bottom: 100px;
}
/*.space, .space-top {*/
/*    padding-top: 120px;*/
/*}*/
.shape-mockup-wrap {
    z-index: 2;
    position: relative;
}
.service-card2 {
    background: var(--theme-color);
    padding: 0px 30px 30px;
    border-radius: 30px;
    position: relative;
    margin-top: 40px;
    z-index: 1;
}
.service-card2 .box-shape {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.service-card2 .box-shape svg {
    color: #5d729f;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.service-card2 .service-card-icon {
    width: 80px;
    height: 80px;
    line-height: 70px;
    background: var(--theme-color);
    border-radius: 50%;
    border: 5px solid var(--secondary-color);
    text-align: center;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    margin-bottom: -40px;
}
.service-card2 .service-card-icon i {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    font-size: 40px;
    line-height: 70px;
    color: var(--secondary-color);
}
.service-card2 .box-title {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 13px;
    margin-top: 23px;
    line-height: 1.417;
}
.service-card2 .box-title a {
    color: var(--white-color);
}
.service-card2 .box-title a:hover {
    color: var(--white-color);
}
.service-card2 .box-text {
    color: #AFB1C3;
    margin-bottom: 13px;
    max-width: 225px;
    text-align: left;
    font-size: 13px;
}
.service-card2:hover .box-shape svg {
    color: var(--secondary-color);
}
.service-card2:hover .service-card-icon {
    background: var(--theme-color);
}
.service-card2:hover .service-card-icon i {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.founders{
    background-color: #ededed;
}
.founders .row{
    margin-bottom: 50px;
}
.pagination{gap:10px}
.page-item.disabled .page-link,.page-item.active .page-link,.page-link{    border-top-right-radius:  none !important;
    border-bottom-right-radius:  none !important; border-top-left-radius: none !important;
    border-bottom-left-radius: none !important;   border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
}
.page-item.active .page-link
{
    background-color: #485b86 !important;
    border-color: #485b86 !important;
}

/* ADD */
.features-two__card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 200px 200px 0px 0px;
    background-color: #F4F4F4;
}
.features-two__card__content {
    position: relative;
    padding: 50px 20px 29px;
    text-align: center;
    z-index: 1;
    min-height: 352px;
}
.features-two__card__icon-box {
    width: 100px;
    height: 100px;
    margin: 0px auto 24px;
    position: relative;
    z-index: 1;
    border-radius: 50%;
}
.features-two__card__icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 47px;
    color: var(--secondary-color);
    border-radius: inherit;
    background-color:  #FFFFFF;
    transition: all 500ms ease;
}
.features-two__card__icon-box::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    bottom: -5px;
    z-index: -1;
    border-radius: inherit;
    background-color: var(--theme-color);
    transition: all 500ms ease;
}
.features-two__card__title {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: normal;
    line-height: 1.318;
    color: var(--theme-color);
    text-transform: uppercase;
}
.features-two__card__text a{
    margin: 0px;
    transition: all 500ms ease;
    text-align: center;
    color: #000;
}
.features-two__card__text a:hover{
    color: var(--theme-color);
}
.features-two__card__text{
       text-align: center;
}
.features-two__card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    padding: 9.5px 20px;
    text-align: center;
    font-size: 16px;
    color: #000;
    text-transform: capitalize;
    /* text-transform: uppercase; */
    overflow: hidden;
    background-color: #e3e3e3;
    transition: all 500ms ease;
}
.features-two__card__btn::before {
    content: "";
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: -1;
    border-radius: 0px;
    background-color: var(--secondary-color);
    transition: all 500ms ease;
}
.features-two__card__btn__icon {
    width: 23.22px;
    height: 23.22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: rotate(-45deg);
    font-size: 9px;
    color: #000;
    background-color: #cacaca;
    transition: all 500ms ease;
}
.features-two__card__btn:hover::before {
    width: 100%;
    left: 0px;
}
.features-two__card__btn:hover .features-two__card__btn__icon {
    color: #444444;
    background-color: #ffffff;
    transform: rotate(0deg);
}
.features-two__card__btn:hover span {
    color: #ffffff;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.features-two__card:hover .features-two__card__icon {
    color: #FFFFFF;
    background-color: var(--theme-color);
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
.features-two__info {
    max-width: 805px;
    margin: 50px auto 0px;
    padding: 15px 38px 15px 32px;
    display: flex;
    align-items: center;
    gap: 20px 30px;
    border-radius: 10px;
    border: 1px solid #DDDDDD;
}
.features-two__info__icon {
    width: 74px;
    height: 74px;
    flex-shrink: 0;
}
.features-two__info__text {
    position: relative;
    margin: 0px;
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    line-height: 1.363;
}
.features-two__info__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    text-transform: uppercase;
}
.features-two__info__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 16px;
    text-decoration: underline;
}
.features-two__info__link__icon {
    position: relative;
    top: -1px;
    display: inline-flex;
    font-size: 16px;
    color: inherit;
}
.features-two__info__link:hover {
    color: var(--theme-color);
}
.social-links-two {
    margin-top: 30px;
}

.social-links-two {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10.99px;
    justify-content: center;
}
.social-links-two a {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #92918F;
    border-radius: 50%;
    overflow: hidden;
    transition: all 500ms ease;
}
.social-links-two__icon {
    display: inline-flex;
    font-size: 15px;
    color:  var(--theme-color);
    transition: all 500ms ease;
}
.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
@keyframes slideTop {
  49% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
.social-links-two a:hover .social-links-two__icon {
    color: #FFFFFF;
    animation: slideTop 400ms;
}
.social-links-two a:hover {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
}
.feature-one__content .social-links-two {
    justify-content: flex-start;
}
/* ADD */
/* ADD NEW */
.blog-page {
    /*background-color: #FFFFFF;*/
    padding-top: 0;
}
.blog-page--two .blog-card {
    background-color: #F4F4F4;
}
.blog-card {
    position: relative;
    padding: 10px;
    background-color: #FFFFFF;
    transition: all 500ms ease;
}
.blog-card__content {
    position: relative;
    padding: 40px 20px 20px;
}
.blog-card__category {
    position: relative;
    position: absolute;
    top: -10px;
    left: 20px;
    padding: 8.15px 18.5px;
    display: inline-block;
    flex-shrink: 0;
    background-color: var(--theme-color);
    font-size: 15px;
    color: #FFFFFF;
    font-weight: 400;
    line-height: 1.4;
    text-transform: uppercase;
    transition: all 500ms ease;
}
.blog-card__category::after {
    content: "";
    width: 30px;
    height: 100%;
    position: absolute;
    top: 0px;
    left: -30px;
    background-color: var(--secondary-color);
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    transition: all 500ms ease;
}
.blog-card__title {
    /* margin: 17px 0px 0px; */
    /* padding-top: 14px; */
    font-size: 22px;
    font-weight: normal;
    line-height: 1.272;
    /* border-top: 1px solid #DDDDDD; */
    text-transform: uppercase;
}
.blog-card__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
    transition: all 500ms ease;
    font-size: 22px;
}
.blog-card__content .blog-text p{
    margin-bottom: 0;
    font-size: 14px;
}
.blog-card__image {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.blog-card__image img{
    width: 80%;
    display: block;
    transition: all 500ms ease;
    margin: auto;
}
.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.blog-card__image__overlay {
    width: 88%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--tidytouch-black2-rgb, 21, 22, 27), 0.7);
    position: relative;
    position: absolute;
    top: 0;
    left: 28px;
    opacity: 0;
    transform: translateY(-20%);
    transition: opacity 500ms ease, transform 500ms ease;
    margin: auto;
}
.blog-card__image__overlay__btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    color: var(--theme-color);
    background-color: #FFFFFF;
    transform: rotate(-45deg);
    transition: all 500ms ease;
}
.blog-card:hover {
    filter: drop-shadow(0px 2px 10.1px rgba(0, 0, 0, 0.18));
}
.blog-card:hover .blog-card__category {
    background-color: var(--secondary-color);
    color: #fff;
}
.blog-card:hover .blog-card__category::after {
    background-color: var(--theme-color);
}
.blog-card__title a:hover {
    color: var(--theme-color);
}
.blog-card:hover .blog-card__image img {
    transform: scale(1.1);
}
.blog-card:hover .blog-card__image__overlay {
    opacity: 1;
    transform: translateY(0);
}
.blog-card__image__overlay__btn:hover {
    color:  #FFFFFF;
    background-color: var(--theme-color);
    transform: rotate(0deg);
}
/* ADD NEW */

/* BLOG */
.cs_post.cs_style_1.cs_type_1 {
    padding: 25px 30px 0 0;
}
.cs_post.cs_style_1 {
    position: relative;
    z-index: 1;
}
.cs_post.cs_style_1.cs_type_1::before {
    content: "";
    width: calc(100% - 20px);
    height: calc(100% - 17px);
    border: 1px solid #ecf1f5;
    position: absolute;
    top: 0;
    right: 0;
}
.cs_post.cs_style_1.cs_type_1 .cs_post_thumbnail {
    z-index: 1;
}
.cs_post.cs_style_1 .cs_post_thumbnail {
    display: inline-block;
    width: 100%;
    overflow: hidden;
}
.cs_post.cs_style_1 .cs_post_thumbnail img {
    width: 100%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.cs_post.cs_style_1 .cs_post_date {
    width: 58px;
    height: 58px;
    padding: 13px 14px;
    top: 0;
    left: 0;
    line-height: 1.2em;
}
.cs_accent_bg {
    background-color: var(--theme-color);
}
.cs_white_color {
    color: white;
}
.cs_post.cs_style_1:hover .cs_post_thumbnail img {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
}
.cs_post.cs_style_1 .cs_post_content_wrapper {
    position: relative;
    z-index: 1;
}
.cs_post.cs_style_1.cs_type_1 .cs_post_content_wrapper {
    padding: 0 0 0 50px;
    margin-top: 0;
}
.cs_post.cs_style_1.cs_type_1 .cs_post_content {
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.cs_post.cs_style_1 .cs_post_content {
    padding: 40px 30px;
    -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.08);
}
.cs_post.cs_style_1 h3, .cs_post.cs_style_1 p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.cs_semibold a{
    font-weight: normal;
    color: black;
    font-size: 14px;
    text-transform: uppercase;
}

.cs_fs_20 {
    font-size: 18px;
    line-height: 1.5em;
}
.cs_mb_5 {
    margin-bottom: 5px;
}
.cs_post.cs_style_1.cs_type_1 .cs_text_btn.cs_style_1 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
;
    padding: 8px 9px;
    border: 1px solid #ecf1f5;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
/* .cs_semibold:hover a{
    color: #ef0f3a;
} */
.cs_post.cs_style_1.cs_type_1 .cs_text_btn.cs_style_1:hover {
    border-color: var(--theme-color);
}
.cs_accent_color {
    color: var(--theme-color);
}
/* BLOG */

/* BLOG  DETAIL*/
.cs_post_details img {
    width: 100%;
    margin-bottom: 27px;
}
.cs_post_meta_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.cs_mb_20 {
    margin-bottom: 20px;
}
.cs_post_meta_wrapper .cs_post_meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.cs_accent_color {
    color: var(--theme-color);
}
.cs_heading_color {
    color: #01133c;
}
.cs_post_details h2 {
    font-size: 30px;
    line-height: 1em;
    margin-bottom: 17px;
}

.cs_post_details p {
    margin-bottom: 17px;
}
.cs_post_share_wrapper {
padding: 24px 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex
;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
gap: 30px;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
border: 1px solid #ecf1f5;
border-right: 0;
border-left: 0;
/* margin: 35px 0 48px; */
}

.cs_post_share_wrapper .cs_post_socials, .cs_post_share_wrapper .cs_post_tags.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.cs_post_share_wrapper h3 {
    margin-bottom: 0;
}
.cs_semibold {
    font-weight: 600;
}
.cs_fs_24 {
    font-size: 20px;
    line-height: 1.417em;
    font-weight: 500;
}
.cs_post_share_wrapper .cs_tags_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.cs_tags_links .cs_tag_link {
    padding: 5px 18px;
}

.cs_accent_bg_light {
    background: rgba(239, 15, 58, 0.06);
}
.cs_tags_links .cs_tag_link:hover {
    background-color: var(--theme-color);
    color: #fff;
}
.cs_social_btns.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 13px;
}
.cs_social_btns.cs_style_1 a {
    width: 30px;
    height: 30px;
    font-size: 16px;
    border: 1px solid;
    border-color: #666666;
    color: var(--theme-color);
    border-radius: 5px;
    position: relative;
}
.cs_social_btns.cs_style_1 a i {
    position: absolute;
    top: 6px;
    left: 9px;
}
.cs_social_btns.cs_style_1 a:hover {
    background-color: var(--theme-color);
    color: white;
    border-color: var(--theme-color);
}
.cs_sidebar.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
}
.cs_sidebar_widget {
    padding: 40px;
}
.cs_accent_bg_light {
    background: rgb(70 90 132 / 6%);
}
.cs_sidebar_widget .cs_separator {
    width: 100%;
    height: 1px;
    position: absolute;
    top: 90px;
    left: 0;
}
.cs_sidebar_widget .cs_separator::before {
    width: 100%;
    background-color:#01133c;
    opacity: 0.2;
}
.cs_sidebar_widget .cs_separator::after, .cs_sidebar_widget .cs_separator::before {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.cs_sidebar_widget .cs_separator::after {
    width: 40px;
    background-color: var(--theme-color);
    left: 40px;
}
.cs_categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0px;
    
    margin-top: 25px;
}
.cs_categories li:first-child a {
    padding-top: 0;
}
.cs_categories a {
    padding: 20px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cs_categories a::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color:#01133c;
    opacity: 0.2;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cs_categories a:hover {
    color: var(--theme-color);
}
.cs_sidebar_widget {
    padding: 40px;
}
.cs_sidebar_widget .cs_separator {
    width: 100%;
    height: 1px;
    position: absolute;
    top: 90px;
    left: 0;
}
.cs_fs_30 {
    font-size: 30px;
    line-height: 1.333em;
}
.cs_sidebar_widget .cs_recent_post_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
    margin-top: 25px;
}
.cs_recent_post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.cs_recent_post .cs_recent_post_thumb {
    height: 80px;
    width: 80px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    overflow: hidden;
}

.cs_recent_post .cs_recent_post_thumb img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.cs_recent_post .cs_recent_posted_by {
    padding-left: 20px;
    position: relative;
    margin-bottom: 0;
}
.cs_recent_post .cs_recent_posted_by svg, .cs_recent_post .cs_recent_posted_by i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--theme-color);
}
.cs_semibold a{
    font-weight: 600;
}
.padding{
    padding-top: 50px;
    padding-bottom: 50px;
}
/* BLOG  DETAIL*/
/* SUB PRODUCT */
.services-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}
.services-one__img {
    position: relative;
    overflow: hidden; /* Ensure :before stays within image bounds */
    border-radius: 35px;
    z-index: 1;
}
.services-one__img-box {
    position: relative;
    display: block;
}
.services-one__img {
    position: relative;
    display: block;
    /* overflow: hidden; */
    border-radius: 5px;
    /* overflow: hidden; */
    z-index: 1;
}
.services-one__img a{
    position: relative;
    display: block;
    width: 100%;
}
.services-one__img:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(19 25 34 / 15%);
    visibility: hidden;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scaleY(0) translateZ(100px);
    transform: scaleY(0) translateZ(100px);
    -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
    border-radius: 35px;
}
.services-one__img img {
    width: 100%;
    border-radius: 35px;
    transition: all 500ms ease;
    transform: scale(1);
    /*height: 250px;*/
    /*object-fit: contain;*/
    border: 1px solid #ebebeb;
}
.services-one__content {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--theme-color);
    margin-left: 30px;
    margin-right: 30px;
    margin-top: -35px;
    z-index: 2;
    border-radius: 17px;
}
.services-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background-color: var(--secondary-color);
    border-radius: 17px;
}
.services-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 25px;
    color: #fff;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}
.services-one__title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 33px;
    color: #E42032;
    margin: auto;
}
.services-one__title a {
    color: #ffffff;
}
.services-one__single:hover .services-one__icon span {
    transform: scale(0.9);
}
.services-one__single:hover .services-one__img:before {
    visibility: visible;
    -webkit-transform: scaleY(1) translateZ(0px);
    transform: scaleY(1) translateZ(0px);
    z-index: 1;
}
.services-one__single:hover a{
    z-index: 9;
}
/* SUB PRODUCT */
/* PRODUCT DETAIL */
.shop-item-single .flexslider-thumbnails img {
    width: 100%;
    border-radius: 10px;
    background: #FEF6EF;
}
.slides:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
.shop-item-single .flex-control-thumbs {
    margin-top: 10px;
}
.shop-item-single .flex-control-thumbs img {
    padding: 0;
    border: none;
}
.shop-item-single .flexslider-thumbnails img {
    width: 100%;
    border-radius: 35px;
    background: #FEF6EF;
    border: 1px solid #e9e9e9;
}
.shop-item-single .flexslider-thumbnails .flex-control-thumbs li img {
    width: 100%;
    border-radius: 20px;
    background: #FEF6EF;
    border: 1px solid #e9e9e9;
}
.single-item-title {
    font-size: 28px;
    font-weight: normal;
}
.single-item-price {
    margin-top: 15px;
    margin-bottom: 15px;
}
.single-item-price span {
    color: var(--theme-color);
    font-family: "Inter", sans-serif;
    font-weight: normal;
}
.shop-item-single{
    padding: 50px 0;
}
.single-item-info p{
    text-align: justify;
}
.table th{
    background: var(--secondary-color);
    color: #ffff;
}
/* PRODUCT DETAIL */