/*------------------------------------------------------------------
------------------------------------------------------------------*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
#0.1  Theme Reset Style
#0.2  Global Elements
#0.3  header
#0.4  hero-slider
#0.5  footer
#0.6  features-section
#0.7  about-section
#0.8  services-section
#0.9  track-contact
#1.0  faq-achievement-section
#1.1  testimonials-section
#1.2  fun-fact-section
#1.3  portfolio-section
#1.4  partners-section
#1.5  blog-section
#1.5  cta-section-s2

--------------------------------------------------------------
  #home style 2
--------------------------------------------------------------
#2.1  features-section-s2
#2.2  about-section-s2
#2.3  services-section-s2
#2.4  track-contact-s2
#2.5  testimonials-section-s2

--------------------------------------------------------------
  #home style 3
--------------------------------------------------------------
#3.1  features-section-s3

--------------------------------------------------------------
  #about page
--------------------------------------------------------------
#4.1  mission-vision-section

--------------------------------------------------------------
  #contact page
--------------------------------------------------------------
#5.1  contact-pg-section

--------------------------------------------------------------
  #project single page
--------------------------------------------------------------
#6.1  project-sigle-section

--------------------------------------------------------------
  #service single page
--------------------------------------------------------------
#7.1  service-single-section

--------------------------------------------------------------
  #blog page
--------------------------------------------------------------
#8.1  blog-pg-section

--------------------------------------------------------------
  #blog single page
--------------------------------------------------------------
#9.1  blog-single-section

--------------------------------------------------------------
  #404 page
--------------------------------------------------------------
#10.1  error-404-section

----------------------------------------------------------------*/

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

@import url("https://fonts.googleapis.com/css?family=Muli:400,400i,600,700,800&amp;display=swap");

/*--------------------------------------------------------------
#0.1    Theme Reset Style
--------------------------------------------------------------*/

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Muli", sans-serif;
  background-color: #fff;
  font-size: 16px;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
    .nav__logo{
        width: 30%;
        margin-top: 15px;
        margin-left: 5px;
    }
    .nav__burger{

    }
}

p {
  color: #333;
  line-height: 1.65em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  color: #d43f3a;
}

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

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

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

/*--------------------------------------------------------------
#0.2    Global Elements
--------------------------------------------------------------*/

.page-wrapper {
  position: relative;
  overflow: hidden;
}

.wow {
  visibility: hidden;
}

.fi:before {
  margin: 0;
}

.section-padding {
  padding: 100px 0;
}

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

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

.bg-1 {
  background: #ecf5f7;
}

@media (max-width: 1199px) {
  .dis-non-1199 {
    display: none;
  }
}

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

@media (max-width: 676px) {
  .dis-non-676 {
    display: none;
  }
}

@media (max-width: 650px) {
  .dis-non-650 {
    display: none;
  }
}

/*** contact form error handling ***/

.contact-validation-active .error-handling-messages {
  width: 100% !important;
  margin-top: 15px !important;
}

.contact-validation-active label.error {
  color: red;
  font-size: 0.875rem;
  font-weight: normal;
  margin: 5px 0 0 0;
  text-align: left;
  display: block;
}

.contact-validation-active #loader {
  display: none;
  margin-top: 10px;
}

.contact-validation-active #loader i {
  font-size: 30px;
  font-size: 1.875rem;
  color: #f5a32a;
  display: inline-block;
  -webkit-animation: rotating linear 2s infinite;
  animation: rotating linear 2s infinite;
}

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

@media (max-width: 767px) {
  .contact-validation-active #success,
  .contact-validation-active #error {
    font-size: 15px;
  }
}

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

.contact-validation-active #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-to-top {
  background-color: #085165;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: absolute;
  z-index: 999;
  left: calc(95% - 22.5px);
  bottom: 43px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  border: 3px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

@media (max-width: 991px) {
  .back-to-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    bottom: 109px;
    border-radius: 0;
  }
}

.back-to-top:hover {
  background-color: #f5a32a;
}

.back-to-top i {
  font-size: 14px;
  font-size: 0.93333rem;
  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%);
}

@media (max-width: 991px) {
  .back-to-top i {
    font-size: 15px;
    font-size: 1rem;
  }
}

/** for popup image ***/

.mfp-wrap {
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99999;
}

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

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

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

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

/*** for fancybox video ***/

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

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

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

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

.section-title > span,
.section-title-s2 > span,
.section-title-s3 > span {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  color: #f5a32a;
  text-transform: uppercase;
  display: block;
  margin-top: -0.2em;
}

@media (max-width: 767px) {
  .section-title > span,
  .section-title-s2 > span,
  .section-title-s3 > span {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.section-title h2,
.section-title-s2 h2,
.section-title-s3 h2 {
  font-size: 36px;
  font-size: 2.25rem;
  margin: 0em 0 0.4em;
}

@media (max-width: 991px) {
  .section-title h2,
  .section-title-s2 h2,
  .section-title-s3 h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

@media (max-width: 767px) {
  .section-title h2,
  .section-title-s2 h2,
  .section-title-s3 h2 {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

.section-title-s2,
.section-title-s3 {
  margin-bottom: 45px;
}

@media (max-width: 991px) {
  .section-title-s2,
  .section-title-s3 {
    margin-bottom: 30px;
  }
}

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

.theme-btn,
.theme-btn-s2,
.theme-btn-s3 {
  background-color: #f5a32a;
  color: #fff;
  font-weight: 600;
  padding: 11px 25px;
  border-radius: 50px;
  display: inline-block;
  position: relative;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .theme-btn,
  .theme-btn-s2,
  .theme-btn-s3 {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (max-width: 767px) {
  .theme-btn,
  .theme-btn-s2,
  .theme-btn-s3 {
    padding: 12px 17px;
  }
}

.theme-btn:hover,
.theme-btn-s2:hover,
.theme-btn-s3:hover,
.theme-btn:focus,
.theme-btn-s2:focus,
.theme-btn-s3:focus,
.theme-btn:active,
.theme-btn-s2:active,
.theme-btn-s3:active {
  background-color: #085165;
  color: #fff;
  text-decoration: none;
}

.theme-btn-s2,
.theme-btn-s3 {
  padding: 11px 25px;
}

@media (max-width: 991px) {
  .theme-btn-s2,
  .theme-btn-s3 {
    font-size: 14px;
    padding: 13px 22px;
  }
}

@media (max-width: 767px) {
  .theme-btn-s2,
  .theme-btn-s3 {
    font-size: 13px;
    padding: 12px 17px;
  }
}

.theme-btn-s3 {
  background-color: #d43f3a;
}

.theme-btn-s3:hover,
.theme-btn-s3:focus,
.theme-btn-s3:active {
  background-color: #f5a32a;
  color: #fff;
  text-decoration: none;
}

.theme-btn-s4 {
  background-color: #fff;
  color: #d43f3a;
  font-weight: 600;
  padding: 11px 25px;
  border-radius: 50px;
  display: inline-block;
  position: relative;
  text-transform: capitalize;
}

.theme-btn-s4:hover,
.theme-btn-s4:focus,
.theme-btn-s4:active {
  background-color: #f5a32a;
  color: #fff;
  text-decoration: none;
}

.theme-btn-s5 {
  background-color: #085165;
  color: #fff;
  font-weight: 600;
  padding: 11px 25px;
  border-radius: 50px;
  display: inline-block;
  position: relative;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .theme-btn-s5 {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (max-width: 767px) {
  .theme-btn-s5 {
    padding: 12px 17px;
  }
}

.theme-btn-s5:hover,
.theme-btn-s5:focus,
.theme-btn-s5:active {
  background-color: #f5a32a;
  color: #fff;
  text-decoration: none;
}

.hero-video-btn {
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
}

.hero-video-btn i {
  display: inline-block;
  position: relative;
  top: 5px;
  background: #fff;
  width: 55px;
  height: 55px;
  line-height: 45px;
  text-align: center;
  border: 5px solid rgba(230, 230, 230, 0.88);
  border-radius: 85px;
  display: inline-block;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .hero-video-btn i {
    top: 5px;
  }
}

.hero-video-btn .fi:before {
  font-size: 21px;
  color: #d43f3a;
  padding-left: 4px;
}

@media (max-width: 767px) {
  .hero-video-btn .fi:before {
    font-size: 25px;
  }
}

@media (max-width: 991px) {
  .hero-video-btn {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.hero-video-btn:hover {
  color: #fff;
}

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

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

.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: italic;
  background: url(../images/select-icon.html) 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;
}

.social-links {
  overflow: hidden;
}

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

.social-links li a {
  background-color: transparent;
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  color: #fff;
  text-align: center;
  font-size: 20px;
  border-radius: 50%;
}

.social-links li a:hover {
  background-color: #085165;
}

/******************************
  #page title
******************************/

.page-title {
  background: url("../images/page-title.jpg") center center/cover no-repeat
    local;
  width: 100%;
  height: 430px;
  position: relative;
  /* text-align: center; */
  text-align: left;
  height: 450px;
  display: table;
}

.page-title:before {
  content: "";
  background: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.3;
}

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

.page-title .container {
  height: 100%;
  display: table;
}

@media screen and (min-width: 992px) {
  .page-title .container {
    padding-top: 100px;
  }
}

.page-title .container > .row {
  vertical-align: middle;
  display: table-cell;
}

.page-title h2 {
  font-size: 55px;
  font-size: 3.4375rem;
  font-weight: 900;
  color: #fff;
  margin: 0.1em 0 0.3em;
}

@media (max-width: 991px) {
  .page-title h2 {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}

@media (max-width: 767px) {
  .page-title h2 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

.page-title .breadcrumb {
  background-color: rgba(255, 255, 255, 0.68);
  padding: 10px 22px;
  margin: 0;
  border-radius: 0;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .page-title .breadcrumb {
    width: 125%;
    padding: 8px 15px;
  }
}

.page-title .breadcrumb li {
  color: #f5a32a;
}

@media (max-width: 767px) {
  .page-title .breadcrumb li {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.page-title .breadcrumb a {
  color: #00708f;
}

.page-title .breadcrumb > li + li:before {
  font-family: "FontAwesome";
  content: "\f105";
  color: #c5c5c5;
  margin: 0 5px;
}

.preloader {
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1000;
}

.preloader .sk-folding-cube {
  margin: 20px auto;
  width: 60px;
  height: 60px;
  position: absolute;
  left: calc(50% - 30px);
  top: calc(50% - 50px);
  -webkit-transform: rotateZ(45deg);
  -ms-transform: rotate(45deg);
  transform: rotateZ(45deg);
}

.preloader .sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.preloader .sk-folding-cube .sk-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d43f3a;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.preloader .sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  -ms-transform: scale(1.1) rotate(90deg);
  transform: scale(1.1) rotateZ(90deg);
}

.preloader .sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  -ms-transform: scale(1.1) rotate(180deg);
  transform: scale(1.1) rotateZ(180deg);
}

.preloader .sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  -ms-transform: scale(1.1) rotate(270deg);
  transform: scale(1.1) rotateZ(270deg);
}

.preloader .sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.preloader .sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.preloader .sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes sk-foldCubeAngle {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

.theme-accordion-s1 {
  margin-bottom: 0;
}

.theme-accordion-s1 .panel-default {
  background: transparent;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.theme-accordion-s1 .panel-heading {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}

.theme-accordion-s1 .panel + .panel {
  margin-top: 15px;
}

.theme-accordion-s1 .panel-heading a {
  background: #d43f3a;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  display: block;
  padding: 18px 25px;
  position: relative;
}

@media (max-width: 991px) {
  .faq-container {
    margin-bottom: 70px;
  }
}

@media (max-width: 991px) {
  .theme-accordion-s1 .panel-heading a {
    font-size: 15px;
    padding: 15px 25px;
  }
}

@media (max-width: 767px) {
  .theme-accordion-s1 .panel-heading a {
    padding: 12px 15px;
  }
}

.theme-accordion-s1 .panel-heading a:before {
  font-family: "themify";
  content: "\e62a";
  font-size: 14px;
  position: absolute;
  right: 25px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 991px) {
  .theme-accordion-s1 .panel-heading a:before {
    font-size: 12px;
    right: 20px;
  }
}

.theme-accordion-s1 .panel-heading a:focus {
  text-decoration: none;
}

.theme-accordion-s1 .panel-heading .collapsed {
  background-color: #d43f3a;
  color: #ffffff;
  border: 1px solid #ececec;
}

.theme-accordion-s1 .panel-heading .collapsed:before {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

.theme-accordion-s1 .panel-heading + .panel-collapse > .panel-body {
  background-color: #fff;
  border: 0;
  padding: 35px 25px 15px;
  border: 1px solid #ececec;
}

@media (max-width: 991px) {
  .theme-accordion-s1 .panel-heading + .panel-collapse > .panel-body {
    padding: 20px 25px 10px;
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .theme-accordion-s1 .panel-heading + .panel-collapse > .panel-body {
    padding: 15px 15px 8px;
  }
}

.theme-accordion-s1 .panel-heading + .panel-collapse > .panel-body p {
  margin-bottom: 1.3em;
}

/*--------------------------------------
  service single sidebar
----------------------------------------*/

.service-sidebar {
  /*** service-list-widget ***/
  /*** download-widget ***/
  /*** contact-widget ***/
  /*** service-features-widget ***/
}

@media (max-width: 991px) {
  .service-sidebar {
    max-width: 300px;
    margin-top: 80px;
  }
}

.service-sidebar .experience-text h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.service-sidebar .experience-text h2 span {
  display: inline-block;
  border: 5px solid #f5a32a;
  padding: 10px 15px 10px;
}

.service-sidebar > .widget + .widget {
  margin-top: 30px;
}

.service-sidebar .service-list-widget ul {
  list-style: none;
  border-bottom: 0;
  border: 2px solid #f2f7fd;
}

.service-sidebar .service-list-widget ul li {
  border-bottom: 1px solid #ebf3fd;
}

.service-sidebar .service-list-widget ul > li:last-child {
  border-bottom: 0;
}

.service-sidebar .service-list-widget a {
  font-size: 14px;
  font-size: 0.875rem;
  background: #fff;
  font-weight: bold;
  display: block;
  color: #0a172b;
  padding: 15px 24px;
}

.service-sidebar .service-list-widget a:hover,
.service-sidebar .service-list-widget .current a {
  background-color: #f5a32a;
  color: #fff;
}

.service-sidebar .download-widget ul {
  list-style: none;
}

.service-sidebar .download-widget ul > li + li {
  margin-top: 5px;
}

.service-sidebar .download-widget ul a {
  background: #085165;
  color: #fff;
  padding: 18px 25px;
  font-weight: 600;
  display: block;
}

.service-sidebar .download-widget ul i {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
}

.service-sidebar .download-widget ul a:hover {
  background: #f5a32a;
}

.service-sidebar .contact-widget {
  padding: 40px 35px;
  position: relative;
  text-align: center;
}

.contact-bg {
  position: relative;
  background: url(../images/add/contact-bg.jpg) center center/cover no-repeat
    local;
}

.service-sidebar .contact-widget:before {
  content: "";
  background: #f5a32a;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.9;
}

.service-sidebar .contact-widget > div {
  position: relative;
  z-index: 1;
}

.service-sidebar .contact-widget h5 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4em;
  color: #fff;
  margin: 1em 0;
  text-transform: capitalize;
}

.service-sidebar .contact-widget a {
  background-color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #57667e;
  padding: 10px 15px;
  display: inline-block;
  margin-top: 25px;
  border-radius: 50px;
}

.service-sidebar .contact-widget a:hover {
  color: #f5a32a;
}

.service-sidebar .service-features-widget {
  padding: 45px 30px;
  position: relative;
  border: 2px solid #f7f7f7;
}

.service-sidebar .service-features-widget:before {
  font-family: "Themify";
  content: "\e61f";
  font-size: 25px;
  font-size: 1.5625rem;
  color: #f5a32a;
  position: absolute;
  right: 30px;
  top: 40px;
  opacity: 0.5;
}

.service-sidebar .service-features-widget h3 {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0 0 0.8em;
  text-transform: capitalize;
}

.service-sidebar .service-features-widget ol {
  list-style-position: inside;
  padding-left: 0;
  margin: 0;
}

.service-sidebar .service-features-widget ol > li + li {
  margin-top: 8px;
}

/*------------------------------------
  blog sidebar
------------------------------------*/

.blog-sidebar {
  /*** search-widget ***/
  /*** about-widget ***/
  /*** category-widget ***/
  /*** recent-post-widget ***/
  /*** tag-widget ***/
}

@media screen and (min-width: 992px) {
  .blog-sidebar {
    padding-left: 45px;
  }
}

@media (max-width: 991px) {
  .blog-sidebar {
    margin-top: 80px;
    max-width: 400px;
  }
}

@media (max-width: 767px) {
  .blog-sidebar {
    margin-top: 60px;
    max-width: 400px;
  }
}

.blog-sidebar .widget {
  padding: 35px 28px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 4px 21px 0px rgba(33, 49, 182, 0.09);
  box-shadow: 0px 4px 21px 0px rgba(33, 49, 182, 0.09);
}

.blog-sidebar .widget h3 {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0 0 1.3em;
  position: relative;
  text-align: left;
  text-transform: capitalize;
}

.blog-sidebar .widget h3:before {
  content: "";
  background-color: #f5a32a;
  width: 70px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -7px;
}

.blog-sidebar > .widget + .widget {
  margin-top: 65px;
}

.blog-sidebar .search-widget form div {
  position: relative;
}

.blog-sidebar .search-widget input {
  background-color: rgba(255, 133, 0, 0.08);
  height: 50px;
  font-size: 16px;
  font-size: 1rem;
  padding: 6px 50px 6px 20px;
  border: 0;
  border-radius: 5px;
  -webkit-box-shadow: none;
  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: rgba(253, 94, 22, 0.1);
}

.blog-sidebar .search-widget form button {
  background: transparent;
  font-size: 20px;
  font-size: 1.25rem;
  color: #f5a32a;
  border: 0;
  outline: 0;
  position: absolute;
  right: 10px;
  top: 55%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.blog-sidebar .about-widget .img-holder {
  margin-bottom: 25px;
}

.blog-sidebar .about-widget .img-holder img {
  border-radius: 50%;
}

.blog-sidebar .about-widget p {
  font-size: 15px;
  font-size: 0.9375rem;
  margin-bottom: 1.2em;
}

.blog-sidebar .about-widget a {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  color: #f5a32a;
}

.blog-sidebar .about-widget a:hover {
  color: #f5a32a;
}

.blog-sidebar .category-widget ul {
  list-style: none;
}

.blog-sidebar .category-widget ul li {
  font-size: 15px;
  font-size: 0.9375rem;
  position: relative;
}

@media (max-width: 767px) {
  .blog-sidebar .category-widget ul li {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.blog-sidebar .category-widget ul li span {
  position: absolute;
  right: 0;
}

.blog-sidebar .category-widget ul > li + li {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #e4e4e4;
}

.blog-sidebar .category-widget ul a {
  display: block;
  color: #57667e;
  padding: 5px 15px 5px 25px;
}

.blog-sidebar .category-widget ul li a:before {
  font-family: "FontAwesome";
  content: "\f105";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.blog-sidebar .category-widget ul a:hover,
.blog-sidebar .category-widget ul li:hover:before {
  color: #f5a32a;
}

.blog-sidebar .recent-post-widget .post {
  overflow: hidden;
}

.blog-sidebar .recent-post-widget .posts > .post + .post {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #e4e4e4;
}

.blog-sidebar .recent-post-widget .post .img-holder {
  width: 68px;
  float: left;
}

.blog-sidebar .recent-post-widget .post .img-holder img {
  border-radius: 50%;
}

.blog-sidebar .recent-post-widget .post .details {
  width: calc(100% - 68px);
  float: left;
  padding-left: 20px;
}

.blog-sidebar .recent-post-widget .post h4 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3em;
  margin: 0 0 0.3em;
}

@media (max-width: 1199px) {
  .blog-sidebar .recent-post-widget .post h4 {
    margin: 0;
  }
}

.blog-sidebar .recent-post-widget .post h4 a {
  display: inline-block;
  color: #d43f3a;
}

.blog-sidebar .recent-post-widget .post h4 a:hover {
  color: #f5a32a;
}

.blog-sidebar .recent-post-widget .post .details .date {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #57667e;
}

.blog-sidebar .recent-post-widget .post .details .date i {
  display: inline-block;
  padding-right: 7px;
}

.blog-sidebar .instagram-widget > ul {
  overflow: hidden;
}

.blog-sidebar .instagram-widget > ul > li img {
  max-width: 100%;
}

.blog-sidebar .instagram-widget > ul > li {
  width: 33.33%;
  float: left;
  border: 1px solid transparent;
  margin: -1px 0 0 -1px;
}

.blog-sidebar .tag-widget ul {
  overflow: hidden;
  list-style: none;
}

.blog-sidebar .tag-widget ul li {
  float: left;
  margin: 0 8px 8px 0;
}

.blog-sidebar .tag-widget ul li a {
  font-size: 13px;
  font-size: 0.8125rem;
  display: inline-block;
  padding: 5px 14px;
  color: #57667e;
  border: 2px solid rgba(0, 114, 145, 0.15);
  border-radius: 50px;
}

.blog-sidebar .tag-widget ul li a:hover {
  background: #f5a32a;
  color: #fff;
}

/**** 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: 47px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  color: #a9b8c4;
  border: 2px solid #c9cfd4;
  display: block;
  border-radius: 50%;
}

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

.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
  background: #f5a32a;
  border-color: #f5a32a;
  color: #fff;
}

.pagination-wrapper .pg-pagination .fi:before {
  font-size: 15px;
  font-size: 0.9375rem;
}

.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;
  }
}
/*--------------------------------------------------------------
#0.4  Navbar area
--------------------------------------------------------------*/
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 20px 30px 20px;
    display: flex;
    align-items: center;
    transition: 0.3s ease-out;
    backdrop-filter: blur(8px) brightness(1.2);
    -webkit-backdrop-filter: blur(8px) brightness(1.2);
    color: white;
    font-size: 16px;
    z-index: 999;
}
nav.mask {
    top: 150px;
    mask-image: linear-gradient(black 70%, transparent);
    -webkit-mask-image: linear-gradient(#eaeaea 70%, transparent);
}
@media (min-width: 640px) {
    nav {
        padding: 16px 50px 30px 50px;
    }
}

nav.is-hidden {
    transform: translateY(-100%);
}

a {
    color: inherit;
    text-decoration: none;
}
a:hover, a:focus {
    text-decoration: underline;
}

.list {
    list-style-type: none;
    margin-left: auto;
    display: none;
}
@media (min-width: 640px) {
    .list {
        display: flex;
    }
}
.list li {
    margin-left: 20px;
}

.search {
    display: inline-block;
    padding: 0;
    font-size: 0;
    background: none;
    border: none;
    margin-left: auto;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}
@media (min-width: 640px) {
    .search {
        margin-left: 20px;
    }
}
.search::before {
    content: "";
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background: center/1.3rem 1.3rem no-repeat url("data:image/svg+xml, %3Csvg%20xmlns=%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox=%270%200%2015.17%2014.81%27%20width=%2715.17%27%20height=%2714.81%27%3E%3Cpath%20d=%27M6,.67A5.34,5.34,0,1,1,.67,6,5.33,5.33,0,0,1,6,.67ZM9.86,9.58l4.85,4.75Z%27%20fill=%27none%27%20stroke=%27%23fff%27%20stroke-width=%271.33%27%2F%3E%3C%2Fsvg%3E");
}

.menu {
    display: inline-block;
    padding: 0;
    font-size: 0;
    background: none;
    border: none;
    margin-left: 20px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}
.menu::before {
    content: url("data:image/svg+xml, %3Csvg%20xmlns=%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox=%270%200%2024.8%2018.92%27%20width=%2724.8%27%20height=%2718.92%27%3E%3Cpath%20d=%27M23.8,9.46H1m22.8,8.46H1M23.8,1H1%27%20fill=%27none%27%20stroke=%27%23fff%27%20stroke-linecap=%27round%27%20stroke-width=%272%27%2F%3E%3C%2Fsvg%3E");
}
@media (min-width: 640px) {
    .menu {
        display: none;
    }
}

/*--------------------------------------------------------------
#0.4  hero slider
--------------------------------------------------------------*/

.hero-slider {
  width: 100%;
  height: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
}

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

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

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

.hero-slider .swiper-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: 1;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  background: rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  line-height: 60px;
  margin-top: -30px;
  text-align: center;
  border-radius: 60px;
}

@media (max-width: 767px) {
  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }
}

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

@media (max-width: 991px) {
  .hero-slider .swiper-button-prev {
    display: none;
  }
}

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

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

@media (max-width: 991px) {
  .hero-slider .swiper-button-next {
    display: none;
  }
}

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

.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);
}

.hero-slider .swiper-pagination-bullet-active {
  color: #fff;
  background: #f5a32a;
}

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

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

/*--------------------------------------------------------------
  #hero-style-1
--------------------------------------------------------------*/

.hero-style-1,
.hero-style-2,
.hero-style-3 {
  height: 800px;
}

.hero-slider .slide-inner:before {
  content: "";
  background: #000;
  /*
    background: -webkit-linear-gradient(top, #f5a32a 50%, #000);
    background: -moz-linear-gradient(top, #f5a32a 50%, #000);
    background: -o-linear-gradient(top, #f5a32a 50%, #000);
    background: -ms-linear-gradient(top, #f5a32a 50%, #000);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #f5a32a ), to(#000));
    background: linear-gradient(top, #f5a32a 50%, #000);*/
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.2;
}

@media (max-width: 991px) {
  .hero-style-1,
  .hero-style-2,
  .hero-style-3 {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .hero-style-1,
  .hero-style-2,
  .hero-style-3 {
    height: 500px;
  }
}

@media screen and (min-width: 992px) {
  .hero-style-1 .container,
  .hero-style-2 .container,
  .hero-style-3 .container {
    padding-top: 15px;
  }
}

.hero-style-1 .slide-title,
.hero-style-2 .slide-title,
.hero-style-3 .slide-title {
  max-width: 550px;
}

.hero-style-1 .slide-title h2,
.hero-style-2 .slide-title h2,
.hero-style-3 .slide-title h2 {
  font-size: 55px;
  font-size: 3.4375rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.45em;
}

@media (max-width: 991px) {
  .hero-style-1 .slide-title h2,
  .hero-style-2 .slide-title h2,
  .hero-style-3 .slide-title h2 {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}

@media (max-width: 767px) {
  .hero-style-1 .slide-title h2,
  .hero-style-2 .slide-title h2,
  .hero-style-3 .slide-title h2 {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}

.hero-style-1 .slide-text,
.hero-style-2 .slide-text,
.hero-style-3 .slide-text {
  max-width: 600px;
}

.hero-style-1 .slide-text p,
.hero-style-2 .slide-text p,
.hero-style-3 .slide-text p {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.75em;
}

@media (max-width: 991px) {
  .hero-style-1 .slide-text p,
  .hero-style-2 .slide-text p,
  .hero-style-3 .slide-text p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media (max-width: 767px) {
  .hero-style-1 .slide-text p,
  .hero-style-2 .slide-text p,
  .hero-style-3 .slide-text p {
    font-size: 16px;
    font-size: 1rem;
  }
}

.hero-style-1 .slide-btns > a:first-child,
.hero-style-2 .slide-btns > a:first-child,
.hero-style-3 .slide-btns > a:first-child {
  margin-right: 15px;
}

/*--------------------------------------------------------------
  #hero-style-2
--------------------------------------------------------------*/

.hero-style-2,
.hero-style-3 {
  height: 650px;
}

@media (max-width: 991px) {
  .hero-style-2,
  .hero-style-3 {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .hero-style-2,
  .hero-style-3 {
    height: 500px;
  }
}

@media screen and (min-width: 992px) {
  .hero-style-2 .container,
  .hero-style-3 .container {
    padding-top: 0;
  }
}

/*--------------------------------------------------------------
  #hero-style-3
--------------------------------------------------------------*/

.hero-style-3 .slide-title,
.hero-style-3 .slide-text,
.hero-style-3 .slide-btns {
  margin: 0 auto;
  text-align: center;
}

/*--------------------------------------------------------------
#0.5  footer
--------------------------------------------------------------*/

.site-footer {
  background-color: #085165;
  position: relative;
  font-size: 15px;
  overflow: hidden;
  /*** about-widget ***/
  /*** link-widget ***/
  /*** contact-widget ***/
  /*** newsletter-widget ***/
  /*** lower-footer ***/
}

.site-footer ul {
  list-style: none;
}

.site-footer p,
.site-footer li {
  color: #ecf5f7;
}

.site-footer .upper-footer {
  padding: 90px 0;
}

@media (max-width: 991px) {
  .site-footer .upper-footer {
    padding: 90px 0 20px;
  }
}

@media (max-width: 767px) {
  .site-footer .upper-footer {
    padding: 80px 0 10px;
  }
}

@media (max-width: 991px) {
  .site-footer .upper-footer .col {
    min-height: 235px;
    margin-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .site-footer .upper-footer .col {
    min-height: auto;
    margin-bottom: 60px;
  }
}

.site-footer .widget-title {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .site-footer .widget-title {
    margin-bottom: 20px;
  }
}

.site-footer .widget-title h3 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #ecf5f7;
  margin: 0;
  padding-bottom: 0.4em;
  text-transform: capitalize;
  position: relative;
}

@media (max-width: 991px) {
  .site-footer .widget-title h3 {
    /* padding-bottom: 0; */
  }
}

.site-footer .widget-title h3:after {
  content: "";
  background-color: #c21111;
  width: 45px;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 991px) {
  .site-footer .widget-title h3:after {
    width: 100px;
  }
}

.site-footer .about-widget .logo {
  max-width: 180px;
}

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

.site-footer .about-widget p:last-child {
  margin-bottom: 0;
}

.site-footer .link-widget {
  overflow: hidden;
}

@media screen and (min-width: 1200px) {
  .site-footer .link-widget {
    padding-left: 1px;
  }
}

@media (max-width: 1199px) {
  .site-footer .link-widget {
    padding-left: 20px;
  }
}

@media (max-width: 991px) {
  .site-footer .link-widget {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .site-footer .link-widget {
    max-width: 350px;
  }
}

.site-footer .link-widget ul {
  width: 50%;
  float: left;
}

.site-footer .link-widget ul li {
  position: relative;
}

.site-footer .link-widget ul a {
  color: #eaeaea;
}

.site-footer .link-widget ul a:hover,
.site-footer .link-widget ul li:hover:before {
  text-decoration: underline;
}

.site-footer .link-widget ul > li + li {
  margin-top: 15px;
}

@media screen and (min-width: 1200px) {
  .site-footer .contact-widget {
    padding-left: 25px;
  }
}

.site-footer .recent-news-widget .post img {
  position: absolute;
}

.site-footer .recent-news-widget .post {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed #ecf5f7;
}

.site-footer .recent-news-widget .post:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

.site-footer .recent-news-widget h4 {
  line-height: 1.3em;
  font-weight: 500;
  margin: 0 0 0.5em;
  padding-left: 95px;
  font-size: 15px;
}

.site-footer .recent-news-widget h4 a {
  color: #fff;
  font-weight: normal;
}

.site-footer .recent-news-widget .date {
  font-size: 13px;
  font-style: italic;
  padding-left: 95px;
  margin-bottom: 0;
  color: #f5a32a;
}

.site-footer .contact-widget ul {
  margin-top: 25px;
}

.site-footer .contact-widget ul li {
  position: relative;
}

.site-footer .contact-widget ul > li + li {
  margin-top: 15px;
}

.site-footer .contact-widget li span {
  font-weight: 600;
}

.site-footer .newsletter-widget form {
  margin-top: 25px;
  position: relative;
}

.site-footer .newsletter-widget form input {
  background-color: #fff;
  height: 50px;
  color: #57667e;
  padding: 6px 20px;
  border-radius: 5px;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.site-footer .newsletter-widget form .submit {
  position: absolute;
  right: 20px;
  top: 55%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.site-footer .newsletter-widget form .submit button {
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 20px;
  color: #f5a32a;
  margin-top: -2px;
  position: relative;
  right: -5px;
}

.site-footer .lower-footer {
  text-align: center;
  position: relative;
}
.bg-footer {
  background: #034b5f;
}
.site-footer .lower-footer .row {
  padding: 20px 0;
  position: relative;
}

.site-footer .lower-footer .row .separator {
  background: rgba(255, 255, 255, 0.05);
  width: calc(100% - 30px);
  height: 1px;
  position: absolute;
  left: 15px;
  top: 0;
}

.site-footer .lower-footer .copyright {
  display: inline-block;
  float: left;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0;
}

@media (max-width: 991px) {
  .site-footer .lower-footer .copyright {
    float: none;
    display: block;
    margin: 0 0 20px;
  }
}

.site-footer .lower-footer .copyright a {
  color: #fff;
  text-decoration: underline;
}

.site-footer .lower-footer .extra-link {
  display: inline-block;
  float: right;
  overflow: hidden;
}

@media (max-width: 991px) {
  .site-footer .lower-footer .extra-link {
    float: none;
    display: block;
    text-align: center;
  }
}

.site-footer .lower-footer .extra-link ul {
  overflow: hidden;
  list-style: none;
}

@media (max-width: 991px) {
  .site-footer .lower-footer .extra-link ul {
    display: inline-block;
  }
}

.site-footer .lower-footer .extra-link ul li {
  float: left;
}

.site-footer .lower-footer .extra-link ul > li + li {
  margin-left: 35px;
  position: relative;
}

@media (max-width: 767px) {
  .site-footer .lower-footer .extra-link ul > li + li {
    margin-left: 15px;
  }
}

.site-footer .lower-footer .extra-link ul > li + li:before {
  content: "";
  background: #f5a32a;
  width: 15px;
  height: 1px;
  position: absolute;
  left: -25px;
  top: 11px;
}

@media (max-width: 767px) {
  .site-footer .lower-footer .extra-link ul > li + li:before {
    display: none;
  }
}

.site-footer .lower-footer .extra-link ul a {
  font-size: 14px;
  font-size: 0.875rem;
  color: #ecf5f7;
}

.site-footer .lower-footer .extra-link ul a:hover {
  text-decoration: underline;
}

.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;
}

.header-style-1 .sticky-header,
.header-style-2 .sticky-header,
.header-style-3 .sticky-header {
  background-color: #d43f3a;
}

.header-style-2 .sticky-header,
.header-style-3 .sticky-header {
  background-color: #fff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
#0.6  features-section
--------------------------------------------------------------*/

@media screen and (min-width: 992px) {
  .features-section {
    margin-top: -86px;
  }
}

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

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

.mar-top-100 {
  margin-top: 100px;
}

.features-section .feature-grids {
  margin: 0 -15px;
}

@media (max-width: 991px) {
  .features-section .feature-grids {
    margin: 0 -7.5px;
  }
}

.features-section .feature-grids .grid {
  width: calc(33.33% - 30px);
  margin: 0 15px 30px;
  float: left;
  position: relative;
}

@media (max-width: 991px) {
  .features-section .feature-grids .grid {
    width: calc(50% - 15px);
    margin: 0 7.5px 30px;
  }
}

@media (max-width: 600px) {
  .features-section .feature-grids .grid {
    width: calc(100% - 15px);
    float: none;
  }
}

.features-section .header {
  background-color: #d43f3a;
  padding: 20px 35px 22px 70px;
  text-align: center;
}

.features-section .header img {
  position: absolute;
  left: 30px;
  top: 10px;
}

@media (max-width: 1199px) {
  .features-section .header img {
    position: absolute;
    left: 15px;
  }
}

.features-section .header h4 {
  font-size: 20px;
  color: #f1f1f1;
  margin-top: 0;
  padding-top: 12px;
}

@media (max-width: 1199px) {
  .features-section .header h4 {
    font-size: 18px;
    padding-left: 10px;
  }
}

@media (max-width: 767px) {
  .features-section .header {
    padding: 15px 30px;
  }
}

.features-section .header .fi:before {
  font-size: 50px;
  font-size: 3.125rem;
  color: #fff;
}

.features-section .details {
  background-color: #fff;
  padding: 25px 40px 35px;
  -webkit-box-shadow: 0px 0px 36.8px 9.2px rgba(16, 37, 65, 0.1);
  box-shadow: 0px 0px 36.8px 9.2px rgba(16, 37, 65, 0.1);
}

@media (max-width: 767px) {
  .features-section .details {
    padding: 20px 25px 35px;
  }
}

.features-section .details h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0 0 0.7em;
}

@media (max-width: 767px) {
  .features-section .details h3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.features-section .details p {
  margin: 0 0 1em;
}

.features-section .details .read-more {
  font-weight: bold;
  color: #f5a32a;
}

.features-section .details .read-more:hover {
  text-decoration: none;
}

/*--------------------------------------------------------------
#0.7  about-section
--------------------------------------------------------------*/

.about-section {
  padding-top: 75px;
  padding-bottom: 90px;
  background: #fff;
}

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

.about-section .img-holder {
  position: relative;
}

@media (max-width: 991px) {
  .about-section .img-holder {
    margin-bottom: 60px;
  }
}

.about-section .img-holder img {
  -webkit-box-shadow: 0px 0px 36.8px 9.2px rgba(16, 37, 65, 0.1);
  box-shadow: 0px 0px 36.8px 9.2px rgba(16, 37, 65, 0.1);
}

.about-section .video-holder {
  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%);
}

.about-section .video-holder a {
  background: rgba(253, 94, 22, 0.9);
  width: 85px;
  height: 85px;
  line-height: 85px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 85px;
  display: inline-block;
}

.about-section .video-holder .fi:before {
  font-size: 30px;
  font-size: 1.875rem;
  color: #fff;
}

.about-pad {
  padding-left: 40px;
}

@media (max-width: 1199px) {
  .about-section .details {
    padding-left: 0;
  }
}

.about-section .contact-info {
  border: 1px solid #e6e8eb;
  overflow: hidden;
  margin: 50px 0;
}

.about-section .contact-info > div {
  width: 50%;
  float: left;
  padding: 32px 35px 32px 94px;
  position: relative;
}

@media (max-width: 600px) {
  .about-section .contact-info > div {
    width: 100%;
    float: none;
  }
}

.about-section .contact-info img {
  position: absolute;
  left: 20px;
  top: 40px;
}

.about-section .contact-info p {
  font-size: 14px;
  font-size: 0.875rem;
}

.about-section .contact-info > div:nth-child(1),
.about-section .contact-info > div:nth-child(2),
.about-section .contact-info > div:nth-child(3),
.about-section .contact-info > div:nth-child(4) {
  border-left: 1px solid #e6e8eb;
  border-top: 1px solid #e6e8eb;
}

.about-section .contact-info > div:nth-child(1) {
  border-left: 0;
  border-top: 0;
}

.about-section .contact-info > div:nth-child(2) {
  border-top: 0;
}

.about-section .contact-info > div:nth-child(3) {
  border-left: 0;
}

@media (max-width: 600px) {
  .about-section .contact-info > div:nth-child(2) {
    border-left: 0;
    border-top: 1px solid #e6e8eb;
  }
}

.about-section .btns > a:first-child {
  margin-right: 15px;
}

@media (max-width: 600px) {
  .about-section .btns > a:first-child {
    margin-bottom: 15px;
  }
}

.about-pg-about-section {
  padding-top: 55px;
  padding-bottom: 0;
}

@media (max-width: 991px) {
  .about-pg-about-section {
    padding-top: 0;
  }
}

/*--------------------------------------------------------------
#uuu 0.7  about-section
--------------------------------------------------------------*/

.about-section .about-title {
  background-color: #fff;
  padding: 95px 40px;
  -webkit-box-shadow: 0px 0px 36.8px 9.2px rgba(16, 37, 65, 0.1);
  box-shadow: 0px 0px 36.8px 9.2px rgba(16, 37, 65, 0.1);
}

@media (max-width: 1199px) {
  .about-section .about-title {
    padding: 53px 40px;
  }
}

@media (max-width: 991px) {
  .about-section .about-title {
    margin-bottom: 30px;
    padding: 40px;
  }
}

.about-section .about-title h3 {
  font-size: 24px;
  text-transform: none;
  margin: 0 0 0.7em;
}

@media (max-width: 767px) {
  .about-section .about-title h3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.about-section .about-title p {
  margin: 0 0 1em;
  text-align: justify;
}

.about-section .about-title .read-more {
  font-weight: bold;
  color: #f5a32a;
  float: right;
  padding-top: 20px;
  padding-right: 10px;
}

@media (max-width: 1199px) {
  .about-section .about-title .read-more {
    padding-top: 0px;
  }
}

.about-section .about-title .read-more:hover {
  text-decoration: none;
}

.about-section .about-title .fi:before {
  font-size: 76px;
  color: #eee;
  position: absolute;
  bottom: 24px;
  left: 32px;
  -webkit-transform: rotate(35deg);
  -moz-transform: rotate(35deg);
  transform: rotate(35deg);
  z-index: 1;
}

@media (max-width: 991px) {
  .about-section .about-title .fi:before {
    font-size: 60px;
    bottom: 70px;
  }
}

.about-section .about-grids .grid {
  position: relative;
  overflow: hidden;
}

.about-section .about-grids .grid:hover {
  cursor: -webkit-grab;
  cursor: grab;
}

.about-section .about-grids .grid .details {
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 40%;
  position: absolute;
  left: 0;
  top: 78%;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

/*@media (max-width: 991px) {
 .about-section .about-grids .grid .details {
    top: 76%;
}
}*/

.about-section .about-grids .grid .details:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.85;
}

.about-section .about-grids .grid:hover .details {
  opacity: 1;
  top: 60%;
  visibility: visible;
}

.about-section .about-grids .grid .inner {
  width: 100%;
  padding: 25px;
  position: relative;
  left: 0;
  bottom: 0px;
}

.about-section .about-grids .grid h3 {
  font-size: 24px;
  margin: 0 0 0.3em;
  text-transform: none;
}

@media (max-width: 991px) {
  .about-section .about-grids .grid h3 {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.about-section .about-grids .grid h3 a {
  color: #d43f3a;
  text-shadow: 2px 6px 5px rgba(169, 166, 166, 0.8);
}

.about-section .about-grids .grid p {
  font-size: 14px;
  font-weight: 600;
  color: #3b3e44;
  margin: 0;
  visibility: hidden;
  padding-bottom: 10px;
}

@media (max-width: 991px) {
  .about-section .about-grids .grid p {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.about-section .about-grids .grid:hover p {
  visibility: visible;
}

.about-section .about-grids .grid .read-more {
  font-weight: bold;
  color: #d43f3a;
  visibility: hidden;
}

.about-section .about-grids .grid:hover .read-more {
  visibility: visible;
}

.about-section .about-grids .grid .fi:before {
  font-size: 48px;
  color: rgba(0, 112, 143, 0.88);
  position: absolute;
  bottom: 10px;
  right: 32px;
  z-index: 1;
  visibility: hidden;
}

.about-section .about-grids .grid:hover .fi:before {
  visibility: visible;
}

.about-section .owl-controls {
  margin-top: 20px;
}

.about-section .owl-theme .owl-dots {
  text-align: right;
}

.about-section .owl-theme .owl-dots .owl-dot span {
  background: #d43f3a;
  width: 30px;
  height: 6px;
  border-radius: 0px;
  -webkit-box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.18);
}

.about-section .owl-theme .owl-dots .owl-dot.active span {
  background-color: #f5a32a;
}

/*--------------------------------------------------------------
#0.8  story-section
--------------------------------------------------------------*/

.story-section {
}

.story-section .img-holder {
  position: relative;
}

@media (max-width: 991px) {
  .story-section .img-holder {
    margin-bottom: 60px;
  }
}

.story-section .img-holder img {
  border: 10px solid #fff;
  -webkit-box-shadow: 0px 0px 36.8px 9.2px rgba(16, 37, 65, 0.1);
  box-shadow: 0px 0px 36.8px 9.2px rgba(16, 37, 65, 0.1);
}

.story-section .video-holder {
  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%);
}

.story-section .video-holder a {
  background: #fff;
  width: 70px;
  height: 70px;
  line-height: 65px;
  text-align: center;
  border: 7px solid rgba(230, 230, 230, 0.88);
  border-radius: 100px;
  display: inline-block;
  padding-left: 5px;
}

.story-section .video-holder .fi:before {
  font-size: 25px;
  color: #d43f3a;
}

.story-section .details {
  padding-left: 40px;
}

.story-section .details h4 {
  font-size: 20px;
  font-weight: normal;
  color: #777777;
  line-height: 1.3em;
  margin: 0 0 1em;
}

.story-section .details p {
  padding-bottom: 25px;
}

@media (max-width: 1199px) {
  .story-section .details {
    padding-left: 0;
  }
}

.story-section .btns > a:first-child {
  margin-right: 15px;
}

@media (max-width: 600px) {
  .story-section .btns > a:first-child {
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
#4.0  story-section-s2
--------------------------------------------------------------*/

.mar-top-20 {
  margin-top: 20px;
}

.color-w {
  color: #fff;
}

.story-section-s2 {
  position: relative;
  padding: 100px 0;
  background: #ecf5f7;
  z-index: 9;
  /*** contact-info-area ***/
}

@media screen and (min-width: 1200px) {
  .story-section-s2:before,
  .story-section-s2:after {
    content: "";
    background: url("../images/add/story-bg.jpg") 50% center/cover no-repeat
      local;
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
  .story-section-s2:after {
    background: rgba(236, 245, 247, 0.45);
    opacity: 0.8;
    z-index: 10;
  }
}

@media (max-width: 991px) {
  .story-section-s2 {
    padding-bottom: 85px;
  }
}

@media (max-width: 767px) {
  .story-section-s2 {
    padding-bottom: 75px;
  }
}

.story-section-s2 .right-col {
  padding-left: 50px;
}

.story-section-s2 .video-holder {
  position: absolute;
  left: 10%;
  top: 140px;
  z-index: 20;
}

.story-section-s2 .video-holder a {
  background: #fff;
  width: 70px;
  height: 70px;
  line-height: 65px;
  text-align: center;
  border: 7px solid rgba(0, 114, 145, 0.41);
  border-radius: 100px;
  display: inline-block;
  padding-left: 5px;
}

.story-section-s2 .video-holder .fi:before {
  font-size: 30px;
  font-size: 1.875rem;
  color: #d43f3a;
}

@media (max-width: 991px) {
  .story-section-s2 .img-video-holder {
    margin-top: 80px;
  }
}

.story-section-s2 .video-holder a {
  background-color: #fff;
  width: 75px;
  height: 75px;
  border-radius: 75px;
  display: inline-block;
  position: absolute;
  left: 25%;
  top: 33%;
  -webkit-animation: spineer 2s infinite;
  animation: spineer 2s infinite;
}

@media (max-width: 767px) {
  .story-section-s2 .video-holder a {
    width: 55px;
    height: 55px;
    border-radius: 55px;
  }
}

.story-section-s2 .video-holder a:before {
  content: "";
  width: 0px;
  height: 0px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid #d43f3a;
  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%);
}

.story-section-s2 .video-holder a:after {
  content: "";
  width: 75px;
  height: 75px;
  border-radius: 75px;
  display: inline-block;
  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%);
  -webkit-animation: spineer 2s 1.5s infinite;
  animation: spineer 2s 1.5s infinite;
}

@media (max-width: 767px) {
  .story-section-s2 .video-holder a:after {
    width: 55px;
    height: 55px;
    border-radius: 55px;
  }
}

@-webkit-keyframes spineer {
  from {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 114, 145, 0.4);
    box-shadow: 0 0 0 0 rgba(0, 114, 145, 0.4);
  }
  to {
    -webkit-box-shadow: 0 0 0 25px rgba(0, 114, 145, 0.4);
    box-shadow: 0 0 0 25px rgba(0, 114, 145, 0.4);
  }
}

@keyframes spineer {
  from {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 114, 145, 0.4);
    box-shadow: 0 0 0 0 rgba(0, 114, 145, 0.4);
  }
  to {
    -webkit-box-shadow: 0 0 0 25px rgba(0, 114, 145, 0.4);
    box-shadow: 0 0 0 25px rgba(0, 114, 145, 0.4);
  }
}
.story-section-s2 .story-list {
  padding-left: 20px;
  margin-bottom: 30px;
}

.story-section-s2 .story-list div > ul {
  width: 50%;
  float: left;
  list-style: none;
}

.story-section-s2 .story-list div > ul:last-child {
  padding-left: 15px;
}

.story-section-s2 .story-list ul > li + li {
  margin-top: 15px;
}

.story-section-s2 .story-list ul li {
  position: relative;
  padding-left: 20px;
  line-height: 1.7em;
}

.story-section-s2 .story-list ul li i {
  position: absolute;
  left: -20px;
  top: 0;
}

.story-section-s2 .story-list ul li a {
  font-size: 16px;
  font-size: 1.06667rem;
  font-weight: 500;
  color: #d43f3a;
}

.story-section-s2 .story-list ul li i {
  color: #f5a32a;
  top: 4px;
}

.story-section-s2 .story-list ul li a:hover {
  color: #f5a32a;
}

.story-section-s2 .story-list p {
  margin: 3em 0 0;
  font-style: italic;
}

.story-section-s2 .story-list span {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #d43f3a;
  margin: 0;
  padding-top: 10px;
}

.story-section-s2 .story-list span a {
  text-decoration: underline;
  color: #f5a32a;
}

/*--------------------------------------------------------------
#0.8  services-section
--------------------------------------------------------------*/

.services-section {
  padding-bottom: 105px;
}

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

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

.services-section .section-title-text p {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0;
  text-align: right;
  padding-top: 20px;
}

@media (max-width: 991px) {
  .services-section .section-title-text p {
    text-align: left;
    padding-top: 0;
    margin-bottom: 50px;
  }
}

.services-section .service-grids {
  margin: 0 -15px;
}

@media (max-width: 991px) {
  .services-section .service-grids {
    margin: 0 -7.5px;
  }
}

.services-section .service-grids .grid {
  background-color: #fff;
  width: calc(33.33% - 30px);
  margin: 0 15px 30px;
  float: left;
  padding: 35px 35px 40px;
  -webkit-box-shadow: 0px 0px 32px 0px rgba(16, 37, 65, 0.1);
  box-shadow: 0px 0px 32px 0px rgba(16, 37, 65, 0.1);
}

@media (max-width: 991px) {
  .services-section .service-grids .grid {
    width: calc(50% - 15px);
    margin: 0 7.5px 30px;
  }
}

@media (max-width: 600px) {
  .services-section .service-grids .grid {
    width: calc(100% - 15px);
    float: none;
  }
}

.services-section .icon .fi:before {
  font-size: 45px;
  font-size: 2.8125rem;
  color: #00242d;
}

.services-section .grid h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0.4em 0 0.7em;
  text-transform: uppercase;
  font-weight: 700;
}

@media (max-width: 767px) {
  .services-section .grid h3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.services-section .grid h3 a {
  color: #d43f3a;
  font-weight: 800;
}

.services-section .grid h3 a:hover {
  color: #f5a32a;
}

.services-section .grid p {
  margin: 0;
  font-size: 15px;
  padding-bottom: 10px;
}

.services-section .grid .read-more {
  font-weight: bold;
  color: #d43f3a;
}

.services-section .all-services {
  text-align: center;
}

.services-section .all-services p {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #d43f3a;
  margin: 0;
  padding-top: 10px;
}

.services-section .all-services p a {
  text-decoration: underline;
  color: #f5a32a;
}

.services-pg-section {
  padding-bottom: 80px;
}

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

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

/*--------------------------------------------------------------
#0.9  project-section
--------------------------------------------------------------*/

.project-section {
  position: relative;
}

.project-section .projects-grids .grid {
  width: calc(33.33% - 30px);
  float: left;
  margin: 0 15px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .project-section .projects-grids .grid {
    width: calc(50% - 15px);
    margin: 0 7.5px 30px;
  }
}

@media (max-width: 600px) {
  .project-section .projects-grids .grid {
    width: 100%;
  }
}

.project-section .projects-grids .grid:hover {
  cursor: -webkit-grab;
  cursor: grab;
}

@media (max-width: 600px) {
  .project-section .projects-grids .grid .img-holder img {
    width: 100%;
  }
}

.project-section .grids-filters {
  margin-left: 285px;
  margin-bottom: 40px;
}

@media (max-width: 1199px) {
  .project-section .grids-filters {
    margin-left: 0;
  }
}

.project-section .grids-filters:before {
  content: "";
  background-color: #f5a32a;
  width: 535px;
  height: 3px;
  position: absolute;
  left: 25.6%;
  top: 41px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .project-section .grids-filters:before {
    display: none;
  }
}

@media (max-width: 991px) {
  .project-section .grids-filters {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .project-section .grids-filters {
    text-align: center;
  }
}

.project-section .grids-filters ul {
  overflow: hidden;
}

@media (max-width: 767px) {
  .project-section .grids-filters ul {
    display: inline-block;
  }
}

.project-section .grids-filters ul li {
  float: left;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .project-section .grids-filters ul li {
    float: none;
  }
}

.project-section .grids-filters ul > li + li {
  margin-left: 20px;
}

@media (max-width: 991px) {
  .project-section .grids-filters ul > li + li {
    margin-left: 20px;
  }
}

@media (max-width: 767px) {
  .project-section .grids-filters ul > li + li {
    margin: 10px 0 0;
  }
}

.project-section .grids-filters ul a {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #57667e;
  display: inline-block;
  padding-left: 20px;
  text-transform: capitalize;
  position: relative;
}

@media (max-width: 991px) {
  .project-section .grids-filters ul a {
    font-size: 16px;
    font-size: 1.06667rem;
  }
}

.project-section .grids-filters ul a:before {
  content: "";
  background-color: #d43f3a;
  width: 90px;
  height: 3px;
  position: absolute;
  left: 0;
  top: 40px;
  opacity: 0;
  z-index: 9;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.project-section .grids-filters ul a.current {
  color: #d43f3a;
}

.project-section .grids-filters ul a.current:before {
  opacity: 1;
}

.project-section .projects-grids .grid .details {
  background-color: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 30%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.project-section .projects-grids .grid .details:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.85;
}

.project-section .projects-grids .grid .inner {
  width: 100%;
  padding: 25px;
  position: absolute;
  left: 0;
  bottom: 0px;
  background: #d43f3a;
}

.project-section .projects-grids .grid h3 {
  font-size: 17px;
  font-size: 1.0625rem;
  margin: 0 0 0.3em;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .project-section .projects-grids .grid h3 {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.project-section .projects-grids .grid h3 a {
  color: #ecf5f7;
}

.project-section .projects-grids .grid p {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #f5a32a;
  margin: 0;
  text-shadow: 2px 6px 5px rgba(64, 63, 63, 0.8);
}

@media (max-width: 991px) {
  .project-section .projects-grids .grid p {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.project-section .projects-grids .grid:hover .details {
  opacity: 1;
  top: 0;
  visibility: visible;
}

.project-section .grid .fancybox {
  background-color: #f5a32a;
  width: 55px;
  height: 55px;
  line-height: 55px;
  font-size: 18px;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -100%);
  -moz-transform: translate(-50%, -100%);
  -o-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  z-index: 10;
  margin-top: -20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.project-section .grid:hover .fancybox {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

/*--------------------------------------------------------------
#uuu 1.0  faq-achievement-section
--------------------------------------------------------------*/

.faq-achievement-section {
  /*** skills progress bar ***/
}

@media screen and (min-width: 1200px) {
  .faq-achievement-section .achievement-container {
    padding-left: 50px;
  }
}

@media (max-width: 991px) {
  .faq-achievement-section .achievement-container {
    margin-top: 70px;
  }
  .faq-achievement-section .achievement-container p {
    margin-top: -15px;
  }
}

.faq-achievement-section .skills {
  padding-top: 30px;
}

.faq-achievement-section .skills .skill {
  margin-bottom: 35px;
}

.faq-achievement-section .skills .skill:last-child {
  margin-bottom: 0;
}

.faq-achievement-section .skills .skill:last-child .progress {
  margin-bottom: 0;
}

.faq-achievement-section .skills h6 {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0 0 0.6em;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .faq-achievement-section .skills h6 {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.faq-achievement-section .skills .progress {
  background-color: #e6e6e6;
  height: 5px;
  -webkit-box-shadow: none;
  box-shadow: none;
  overflow: visible;
  box-shadow: none;
  position: relative;
  border-radius: 3px;
}

.faq-achievement-section .skills .progress > span {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  color: #57667e;
  padding: 2px 6px;
  text-align: center;
  position: absolute;
  right: 20px;
  top: -32px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

@media (max-width: 991px) {
  .faq-achievement-section .skills .progress > span {
    padding: 0 6px;
  }
}

.faq-achievement-section .skills .progress-bar {
  background: #f5a32a;
  position: relative;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 3px;
}

.faq-achievement-section .skills .progress-bar:after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #f5a32a;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: -3px;
  -webkit-box-shadow: 0 0 5px #969696;
  box-shadow: 0 0 5px #969696;
}

.faq-achievement-section .skill-area {
  max-width: 500px;
  margin: 0 100px 0 auto;
  padding: 100px 0;
  position: relative;
}

@media (max-width: 1199px) {
  .faq-achievement-section .skill-area {
    max-width: 470px;
    margin: 0 50px;
    padding: 100px 0;
    position: relative;
  }
}

@media (max-width: 991px) {
  .faq-achievement-section .skill-area {
    max-width: 700px;
    margin: 0 50px;
    padding: 0 0 80px;
    position: relative;
  }
}

@media (max-width: 767px) {
  .faq-achievement-section .skill-area {
    max-width: 470px;
    margin: 0 50px;
    padding: 0 0 80px;
    position: relative;
  }
}

@media (max-width: 550px) {
  .faq-achievement-section .skill-area {
    max-width: 400px;
    margin: 0 50px;
    padding: 0 0 80px;
    position: relative;
  }
}

.faq-achievement-section .content-area {
  overflow: hidden;
  position: relative;
}

.faq-achievement-section .left-col {
  width: calc(50% + 0px);
  float: left;
}

@media (max-width: 991px) {
  .faq-achievement-section .left-col {
    width: 100%;
    float: none;
  }
}

.faq-achievement-section .right-col {
  background: url(../images/add/faq-bg.jpg) center center/cover no-repeat local;
  width: calc(50% - 0px);
  height: 100%;
  float: left;
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 991px) {
  .faq-achievement-section .right-col {
    width: 100%;
    float: none;
    position: relative;
    padding: 45px;
  }
}

@media (max-width: 991px) {
  .faq-achievement-section .right-col {
    padding: 100px 0;
  }
}

/*--------------------------------------------------------------
#0.9  contact-form
--------------------------------------------------------------*/

.contact-form {
}

.contact-form form {
  overflow: hidden;
  margin: 0 -15px;
}

.contact-form .contact-content h2 {
  font-size: 36px;
  font-size: 2.25rem;
  color: #fff;
  line-height: 1.2em;
  margin: 0 0 0.7em;
  text-transform: capitalize;
  margin: 0 0 1em;
}

@media (max-width: 1199px) {
  .contact-form .contact-content h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

@media (max-width: 767px) {
  .contact-form .contact-content h2 {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

.contact-form form {
  overflow: hidden;
  margin: 0 -15px;
}

@media (max-width: 767px) {
  .contact-form form {
    margin: 0 0 0 -15px;
  }
}

.contact-form form .half-col {
  width: 50%;
  float: left;
}

@media (max-width: 600px) {
  .contact-form form .half-col {
    width: 100%;
    float: left;
  }
}

.contact-form form div {
  padding: 0 15px 30px;
}

@media (max-width: 767px) {
  .contact-form form div {
    padding: 0 0 15px 15px;
  }
}

.contact-form form .submit-btn-wrapper {
  padding-bottom: 0;
}

.contact-form form input,
.contact-form form textarea {
  background-color: #fff;
  height: 50px;
  padding: 6px 15px;
  color: #9a9a9a;
  border: 1px solid #d2d0d0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media (max-width: 767px) {
  .contact-form form input,
  .contact-form form textarea {
    height: 45px;
  }
}

.contact-form form input:focus,
.contact-form form textarea:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #f5a32a;
}

.contact-form form textarea {
  height: 150px;
  padding: 15px;
}

/*--------------------------------------------------------------
#1.1  team-section
--------------------------------------------------------------*/

.team-section .grid .inner {
  position: relative;
}

.team-section .grid .details {
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  padding: 35px;
  position: absolute;
  left: 0;
  bottom: -25px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.team-section .grid:hover .details {
  bottom: 0px;
  opacity: 1;
  visibility: visible;
}

.team-section .social ul {
  overflow: hidden;
}

.team-section .social ul li {
  float: left;
}

.team-section .social ul > li + li {
  margin-left: 10px;
}

.team-section .social ul a {
  font-size: 14px;
  font-size: 0.875rem;
  color: #d43f3a;
}

.team-section .social ul a:hover {
  color: #f5a32a;
}

.team-section .details h4 {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0.5em 0;
}

.team-section .details h4 + span {
  font-size: 14px;
  font-size: 0.875rem;
}

.team-section .social,
.team-section .details h4,
.team-section .details h4 + span {
  position: relative;
}

.team-section .social {
  top: 10px;
}

.team-section .owl-controls {
  margin-top: 50px;
}

@media (max-width: 991px) {
  .team-section .owl-controls {
    margin-top: 45px;
  }
}

.team-section .owl-theme .owl-controls .owl-nav [class*="owl-"] {
  width: 50px;
  height: 50px;
  line-height: 47px;
  padding: 0;
  border-radius: 0;
  color: #ecf5f7;
  margin: 5px;
  background: #d43f3a;
  border: 2px solid #e2e2e2;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.team-section .owl-theme .owl-controls .owl-nav [class*="owl-"]:hover {
  background: #f5a32a;
  border-color: #f5a32a;
  color: #fff;
}

@media (max-width: 991px) {
  .team-section .owl-theme .owl-controls .owl-nav [class*="owl-"] {
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 0;
  }
}

@media screen and (min-width: 992px) {
  .team-section .owl-theme .owl-controls .owl-nav .owl-prev {
    left: 15px;
  }
}

@media screen and (min-width: 992px) {
  .team-section .owl-theme .owl-controls .owl-nav .owl-next {
    right: 15px;
  }
}

/*--------------------------------------------------------------
#1.1  team-section-s2
--------------------------------------------------------------*/

.team-section-s2 {
  padding-bottom: 70px;
}

.team-section-s2 .team-grids .grid {
  width: calc(25% - 30px);
  float: left;
  margin: 0 15px 30px;
  position: relative;
}

@media (max-width: 991px) {
  .team-section-s2 .team-grids .grid {
    width: calc(50% - 30px);
  }
}

@media (max-width: 767px) {
  .team-section .team-grids .grid {
    margin-top: 40px;
  }
}

@media (max-width: 550px) {
  .team-section-s2 .team-grids .grid {
    width: calc(100% - 15px);
    float: none;
    margin: 0 7.5px 45px;
  }
}

.team-section-s2 .grid .inner {
  position: relative;
}

.team-section-s2 .grid .details {
  background: rgba(0, 114, 145, 0.8);
  width: 100%;
  padding: 15px;
  position: absolute;
  left: 0;
  bottom: 60px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.team-section-s2 .grid:hover .details {
  bottom: 83px;
  opacity: 1;
  visibility: visible;
}

.team-section-s2 .social ul {
  overflow: hidden;
}

.team-section-s2 .social ul li {
  display: inline-block;
}

.team-section-s2 .social ul > li + li {
  margin-left: 10px;
}

.team-section-s2 .social ul a {
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
}

.team-section-s2 .social ul a:hover {
  color: #f5a32a;
}

.team-section-s2 .details h4 {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0.5em 0;
}

.team-section-s2 .details h4 + span {
  font-size: 14px;
  font-size: 0.875rem;
}

.team-section-s2 .social,
.team-section-s2 .details h4,
.team-section-s2 .details h4 + span {
  position: relative;
}

.team-section-s2 .grid .title {
  border-bottom: 2px solid #f5a32a;
  padding: 15px 20px;
  -webkit-box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.1);
}

.team-section-s2 .grid .title h4 {
  margin-bottom: 10px;
  margin-top: 0px;
}

/*--------------------------------------------------------------
#1.1  testimonials-section
--------------------------------------------------------------*/

.testimonials-section {
  background-color: #ecf5f7;
  padding-bottom: 40px;
  position: relative;
}

.testimonials-section:before {
  background: url("../images/testimonials-bg.html") left bottom/cover no-repeat
    local;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

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

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

.testimonials-section .testimonial-grids {
  margin: 0 -15px;
}

.testimonials-section .testimonial-grids .grid {
  width: calc(50% - 30px);
  float: left;
  margin: 0 15px 70px;
}

@media (max-width: 991px) {
  .testimonials-section .testimonial-grids .grid {
    width: calc(50% - 30px);
  }
}

@media (max-width: 600px) {
  .testimonials-section .testimonial-grids .grid {
    width: calc(100% - 30px);
    float: none;
  }
}

.testimonials-section .quote {
  background: #fff;
  padding: 45px;
  position: relative;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .testimonials-section .quote {
    padding: 30px 25px;
  }
}

.testimonials-section .quote p {
  font-style: italic;
  overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 5; /* number of lines to show */
   -webkit-box-orient: vertical;
}

.testimonials-section .client-info {
  margin-bottom: 45px;
  position: relative;
  padding-left: 90px;
}

.testimonials-section .client-info .img-holder {
  position: absolute;
  left: 0;
  top: 0;
}

.testimonials-section .client-info .img-holder img {
  border-radius: 50%;
  border: 1px solid #fff;
  -webkit-box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.18);
}

.testimonials-section .client-info h5 {
  font-size: 16px;
  font-size: 1rem;
  margin: 0 0 0.3em;
  padding: 0.8em 0 0;
}

@media (max-width: 767px) {
  .testimonials-section .client-info h5 {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.testimonials-section .client-info p {
  font-size: 12px;
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.7em;
}

/*--------------------------------------------------------------
#1.2  fun-fact-section
--------------------------------------------------------------*/

.fun-fact-bg {
  background: url(../images/add/funfact.jpg) center center/cover no-repeat local;
}

.layer-black {
  position: relative;
}

.layer-black:before {
  content: " ";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  background: #d43f3a;
  opacity: 0.8;
}

.fun-fact-section {
  text-align: center;
  background: #fff;
}

@media (max-width: 767px) {
  .fun-fact-section {
    padding-bottom: 30px;
  }
}

.fun-fact-section h2 {
  font-size: 36px;
  font-size: 2.25rem;
  margin: 0 0 1.8em;
}

@media (max-width: 991px) {
  .fun-fact-section h2 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

@media (max-width: 767px) {
  .fun-fact-section h2 {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

.fun-fact-section .fun-fact-grids .grid {
  width: 25%;
  float: left;
}

@media (max-width: 767px) {
  .fun-fact-section .fun-fact-grids .grid {
    width: 50%;
    margin-bottom: 50px;
  }
}

.fun-fact-section .grid h3 {
  font-size: 48px;
  font-size: 3rem;
  font-weight: 300;
  margin: 0 0 0.2em;
}
.fun-fact-section .grid h3 .odometer {
  font-size: 48px;
  font-size: 3rem;
  font-weight: 300;
  margin: 0 0 0.2em;
}

@media (max-width: 991px) {
  .fun-fact-section .grid h3 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .fun-fact-section .grid h3 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.fun-fact-section .grid h3 + p {
  font-size: 16px;
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 991px) {
  .fun-fact-section .grid h3 + p {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

/*--------------------------------------------------------------
#1.3  portfolio-section
--------------------------------------------------------------*/

.portfolio-section {
  position: relative;
  padding-top: 0;
}

.portfolio-pad-top-100 {
  padding-top: 100px;
}

.portfolio-layer {
  position: relative;
}

.portfolio-layer:before {
  content: "";
  width: 100%;
  height: 50%;
  background: #ecf5f7;
  position: absolute;
  left: 0;
  bottom: 0;
}

.portfolio-section .portfolio-grids .grid {
  position: relative;
  overflow: hidden;
}

.portfolio-section .portfolio-grids .grid:hover {
  cursor: -webkit-grab;
  cursor: grab;
}

.portfolio-section .portfolio-grids .grid .details {
  background-color: rgba(0, 114, 145, 0.36);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 30%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.portfolio-section .portfolio-grids .grid .details:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.85;
}

.portfolio-section .portfolio-grids .grid .inner {
  width: 100%;
  padding: 25px;
  position: absolute;
  left: 0;
  bottom: 0px;
  background: #d43f3a;
}

.portfolio-section .portfolio-grids .grid h3 {
  font-size: 17px;
  font-size: 1.0625rem;
  margin: 0 0 0.3em;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .portfolio-section .portfolio-grids .grid h3 {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.portfolio-section .portfolio-grids .grid h3 a {
  color: #ecf5f7;
}

.portfolio-section .portfolio-grids .grid p {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #f5a32a;
  margin: 0;
  text-shadow: 2px 6px 5px rgba(64, 63, 63, 0.8);
}

@media (max-width: 991px) {
  .portfolio-section .portfolio-grids .grid p {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.portfolio-section .portfolio-grids .grid:hover .details {
  opacity: 1;
  top: 0;
  visibility: visible;
}

.portfolio-section .all-portfolio {
  text-align: center;
  margin-top: 55px;
}

.portfolio-pg-section {
  padding: 110px 0 100px;
}

@media (max-width: 991px) {
  .portfolio-pg-section {
    padding: 90px 0 80px;
  }
}

@media (max-width: 767px) {
  .portfolio-pg-section {
    padding: 80px 0 70px;
  }
}

.portfolio-section .grid .fancybox {
  background-color: #f5a32a;
  width: 55px;
  height: 55px;
  line-height: 55px;
  font-size: 18px;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -100%);
  -moz-transform: translate(-50%, -100%);
  -o-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  z-index: 10;
  margin-top: -20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.portfolio-section .grid:hover .fancybox {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

/*--------------------------------------------------------------
#1.4  partners-section
--------------------------------------------------------------*/

.partners-section .container {
  position: relative;
  padding: 25px 15px;
}
.partners-pad {
  padding: 60px 0;
}
.partners-section .separator {
  background: #f4f4f4;
  width: calc(100% - 30px);
  height: 1px;
  position: absolute;
  left: 15px;
  bottom: 0;
}

.partners-section .grid {
  text-align: center;
}

.partners-section .grid img {
  width: auto;
  margin: 0 auto;
  display: inline-block;
}

/*--------------------------------------------------------------
#1.5  blog-section
--------------------------------------------------------------*/

.blog-section {
  padding-bottom: 70px;
}

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

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

.blog-section .blog-grids {
  margin: 0 -15px;
}

.blog-section .blog-grids .grid {
  width: calc(33.33% - 30px);
  float: left;
  margin: 0 15px 30px;
}

@media (max-width: 991px) {
  .blog-section .blog-grids .grid {
    width: calc(50% - 30px);
  }
}

@media (max-width: 600px) {
  .blog-section .blog-grids .grid {
    width: calc(100% - 30px);
    float: left;
  }
}

.blog-section .img-cat {
  position: relative;
}

.blog-section .grid .details {
  padding: 30px;
  border: 1px solid #f0f0f0;
  -webkit-box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1199px) {
  .blog-section .grid .details {
    padding: 35px 20px;
  }
}

.blog-section .details h3 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.3em;
  margin: 0 0 1.2em;
}

@media (max-width: 1199px) {
  .blog-section .details h3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media (max-width: 767px) {
  .blog-section .details h3 {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}

.blog-section .details h3 a {
  color: #333;
}

.blog-section .details h3 a:hover {
  color: #f5a32a;
}

.blog-section .meta {
  overflow: hidden;
  margin: 0 0 1.2em;
}

.blog-section .meta .author {
  float: left;
}

.blog-section .meta .comment {
  float: right;
}

.blog-section .author a,
.blog-section .comment a {
  color: #797979;
}

@media (max-width: 991px) {
  .blog-section .author a,
  .blog-section .comment a {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.blog-section .author a:hover,
.blog-section .comment a:hover {
  color: #f5a32a;
}

.blog-section .author img {
  border-radius: 50%;
  display: inline-block;
  padding-right: 5px;
}

.blog-section .comment {
  padding-top: 5px;
}

.blog-section .comment i {
  display: inline-block;
  padding-right: 3px;
  position: relative;
  top: 2px;
}

/*--------------------------------------------------------------
#1.4  social-newsletter-section
--------------------------------------------------------------*/

.social-newsletter-section {
  background: url(../images/add/newsletter.jpg) center center/cover no-repeat
    local;
  padding: 90px 0;
  position: relative;
  /*** social ***/
  /*** newsletter ***/
}

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

.social-newsletter-section:before {
  content: "";
  background: #00708f;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.2;
}

.social-newsletter-section .newsletter {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 991px) {
  .social-newsletter-section .newsletter {
    max-width: 400px;
  }
}

.social-newsletter-section .newsletter h3 {
  font-size: 24px;
  font-size: 1.5rem;
  color: #fff;
}

.social-newsletter-section .newsletter form {
  position: relative;
}

.social-newsletter-section .newsletter input {
  background-color: transparent;
  height: 60px;
  font-size: 17px;
  color: #fff;
  padding: 6px 0px 6px 2px;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: 1px solid #ecf5f7;
}

@media (max-width: 991px) {
  .social-newsletter-section .newsletter input {
    height: 55px;
    font-size: 16px;
    font-size: 1rem;
  }
}

.social-newsletter-section .newsletter button {
  background: transparent;
  border: 0;
  outline: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.social-newsletter-section .newsletter button i {
  color: #ecf5f7;
}

/*--------------------------------------------------------------
  #home style 2
--------------------------------------------------------------*/

/*--------------------------------------------------------------
#2.1  features-section-s2
--------------------------------------------------------------*/

.features-section-s2,
.features-section-s3 {
  background-color: #ecf5f7;
}

.features-section-s2 .feature-grids,
.features-section-s3 .feature-grids {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .features-section-s2 .feature-grids,
  .features-section-s3 .feature-grids {
    margin: 0 -7.5px;
  }
}

.features-section-s2 .feature-grids .grid,
.features-section-s3 .feature-grids .grid {
  flex-basis: 23%;
  margin: 0 0 30px 0;
  padding: 7px;
  text-align: left;
  border-radius: 0px;
  position: relative;
  -webkit-box-shadow: 0px 0px 36.8px 9.2px rgba(16, 37, 65, 0.1);
  box-shadow: 0px 0px 36.8px 9.2px rgba(16, 37, 65, 0.1);
}
.features-section-s2 .feature-grids .grid,
.features-section-s3 .feature-grids .grid:nth-child(1) {
  margin: 0 0 30px -30px;
}
.features-section-s2 .feature-grids .grid,
.features-section-s3 .feature-grids .grid:nth-child(8) {
  margin: 0 -30px 30px 0;
}

@media (max-width: 991px) {
  .features-section-s2 .feature-grids .grid,
  .features-section-s3 .feature-grids .grid {
    flex-basis: 48%;
    margin: 0 0 30px 0;
  }
}

@media (max-width: 600px) {
  .features-section-s2 .feature-grids .grid,
  .features-section-s3 .feature-grids .grid {
    flex-basis: 100%;
    margin: 0 20px 20px 20px;
  }
  .features-section-s2 .feature-grids .grid,
  .features-section-s3 .feature-grids .grid:nth-child(1) {
    margin: 0 20px 20px 20px;
  }
  .features-section-s2 .feature-grids .grid,
  .features-section-s3 .feature-grids .grid:nth-child(8) {
    margin: 0 20px 20px 20px;
  }
}

.features-section-s2 .fi:before,
.features-section-s3 .fi:before {
  font-size: 45px;
  color: #00242d;
}

.features-section-s2 .details,
.features-section-s3 .details {
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 7px;
  background-color: #d43f3ab2;
  display: flex;
  align-items: center;
  height: 40px;
}
.features-section-s2 .details h3,
.features-section-s3 .details h3 {
  font-size: 18px;
  margin: 0 0.4em 0 0.4em;
  color: #fff;
}

@media (max-width: 767px) {
  .features-section-s2 .details h3,
  .features-section-s3 .details h3 {
    font-size: 18px;
  }
}

.features-section-s2 .details p,
.features-section-s3 .details p {
  margin: 0 0 1em;
  font-size: 15px;
}

.features-section-s2 .details .read-more,
.features-section-s3 .details .read-more {
  font-weight: bold;
  color: #d43f3a;
}

.features-section-s2 .details .read-more:hover,
.features-section-s3 .details .read-more:hover {
  text-decoration: none;
}

/*--------------------------------------------------------------
#2.2  about-section-s2
--------------------------------------------------------------*/

.about-section-s2 h4 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #57667e;
  line-height: 1.4em;
  margin: 1em 0;
}

@media (max-width: 767px) {
  .about-section-s2 h4 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.about-section-s2 .quoter p {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #d43f3a;
  margin: 1.5em 0 2em;
}

.about-section-s2 .quoter p span {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: normal;
  color: #57667e;
}

/*--------------------------------------------------------------
#2.5  testimonials-section-s2
--------------------------------------------------------------*/

.testimonials-section-s2 {
  background-color: #ecf5f7;
  position: relative;
  padding-top: 110px;
}

@media (max-width: 991px) {
  .testimonials-section-s2 {
    padding: 90px 0 80px;
  }
}

@media (max-width: 767px) {
  .testimonials-section-s2 {
    padding: 80px 0 70px;
  }
}

.testimonials-section-s2 .testimonial-grids img {
  width: auto;
}

.testimonials-section-s2 .testimonial-grids {
  padding-left: 60px;
}

@media (max-width: 991px) {
  .testimonials-section-s2 .testimonial-grids {
    padding-left: 0;
  }
}

.testimonials-section-s2 .grid .fi:before {
  font-size: 36px;
  color: #d43f3a;
  display: block;
  padding-left: 3px;
  margin: 0.3em 0 0.3em;
}

@media (max-width: 991px) {
  .testimonials-section-s2 .grid .fi:before {
    font-size: 50px;
    font-size: 3.125rem;
    margin: 0 0 0.3em;
  }
}

@media (max-width: 767px) {
  .testimonials-section-s2 .grid .fi:before {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

.testimonials-section-s2 .quote p {
  font-size: 15px;
  color: #021f27;
  font-style: italic;
}

@media (max-width: 767px) {
  .testimonials-section-s2 .quote p {
    font-size: 16px;
    font-size: 1rem;
  }
}

.testimonials-section-s2 .client-info {
  margin-top: 30px;
  position: relative;
  padding-left: 90px;
  height: 80px;
}

.testimonials-section-s2 .client-info .img-holder {
  position: absolute;
  left: 0;
  top: 0;
}

.testimonials-section-s2 .client-info .img-holder img {
  border-radius: 50%;
  border: 1px solid #fff;
  -webkit-box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.18);
}

.testimonials-section-s2 .client-info h5 {
  font-size: 16px;
  font-size: 1rem;
  margin: 0 0 0.3em;
  padding: 0.8em 0 0;
}

@media (max-width: 767px) {
  .testimonials-section-s2 .client-info h5 {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.testimonials-section-s2 .client-info p {
  font-size: 12px;
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.7em;
}

.testimonials-section-s2 .owl-theme .owl-controls {
  margin-top: 25px;
  text-align: left;
}

.testimonials-section-s2 .owl-theme .owl-dots {
  text-align: center;
}

.testimonials-section-s2 .owl-theme .owl-dots .owl-dot span {
  background: #d43f3a;
  width: 30px;
  height: 6px;
  border-radius: 0px;
  -webkit-box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.18);
}

.testimonials-section-s2 .owl-theme .owl-dots .owl-dot.active span {
  background: #f5a32a;
}

@media (max-width: 991px) {
  .testimonials-section-s2 .testimonial-left-img-holder {
    display: none;
  }
}

/*--------------------------------------------------------------
  #home style 3
--------------------------------------------------------------*/

/*--------------------------------------------------------------
#3.1  features-section-s3
--------------------------------------------------------------*/

.features-section-s3 .feature-grids .grid {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #c0c1c3;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 1s;
}

.features-section-s3 .feature-grids .grid:hover {
  -webkit-box-shadow: 0px 0px 36.8px 9.2px rgba(16, 37, 65, 0.1);
  box-shadow: 0px 0px 36.8px 9.2px rgba(16, 37, 65, 0.1);
}

/*--------------------------------------------------------------
  #about page
--------------------------------------------------------------*/

/*--------------------------------------------------------------
#4.1  mission-vision-section
--------------------------------------------------------------*/

.mission-vision-section {
  padding-bottom: 0;
}

@media (max-width: 991px) {
  .mission-vision-section {
    padding-bottom: 35px;
  }
}

@media (max-width: 767px) {
  .mission-vision-section {
    padding-bottom: 25px;
  }
}

.mission-vision-section .mission-vision-grids {
  margin: 0 -15px;
}

@media (max-width: 767px) {
  .mission-vision-section .mission-vision-grids {
    margin: 0 -7.5px;
  }
}

.mission-vision-section .mission-vision-grids .grid {
  width: calc(33.33% - 30px);
  float: left;
  margin: 0 15px 50px;
  padding: 30px;
  border: 1px solid #f0f0f0;
  -webkit-box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .mission-vision-section .mission-vision-grids .grid {
    width: calc(50% - 30px);
  }
}

@media (max-width: 767px) {
  .mission-vision-section .mission-vision-grids .grid {
    width: calc(50% - 15px);
    margin: 0 7.5px 50px;
  }
}

@media (max-width: 600px) {
  .mission-vision-section .mission-vision-grids .grid {
    width: calc(100% - 15px);
    float: none;
  }
}

.mission-vision-section .title-area {
  text-align: center;
  margin-bottom: 50px;
}

.mission-vision-section .title-area h2 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4em;
  margin: -0.38em 0 0;
}

@media (max-width: 991px) {
  .mission-vision-section .title-area h2 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.mission-vision-section .grid .img-holder {
  margin-bottom: 30px;
}

.mission-vision-section .grid h3 {
  font-size: 22px;
  font-size: 1.375rem;
  margin: 0 0 0.6em;
}

@media (max-width: 991px) {
  .mission-vision-section .grid h3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.mission-vision-section .grid p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
  #contact page
--------------------------------------------------------------*/

/*--------------------------------------------------------------
#5.1  contact-pg-section
--------------------------------------------------------------*/

.contact-pg-section .section-title-s3 p {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0.8em 0 0;
}

.contact-pg-section .submit-btn-wrapper {
  text-align: center;
}

.contact-pg-section .submit-btn-wrapper button {
  border: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.contact-pg-section form {
  overflow: hidden;
  margin: 0 -15px;
}

@media (max-width: 767px) {
  .contact-pg-section form {
    margin: 0 0 0 -15px;
  }
}

.contact-pg-section form .one-third-col {
  width: 33.33%;
  float: left;
}

@media (max-width: 600px) {
  .contact-pg-section form .one-third-col {
    width: 100%;
    float: left;
  }
}

.contact-pg-section form div {
  padding: 0 15px 30px;
}

@media (max-width: 767px) {
  .contact-pg-section form div {
    padding: 0 0 15px 15px;
  }
}

.contact-pg-section form .submit-btn-wrapper {
  padding-bottom: 0;
}

.contact-pg-section form input,
.contact-pg-section form textarea {
  background: #fff;
  font-size: 16px;
  font-size: 1rem;
  height: 55px;
  padding: 6px 15px;
  border: 2px solid #ebeff3;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media (max-width: 767px) {
  .contact-pg-section form input,
  .contact-pg-section form textarea {
    height: 45px;
    border: 1px solid #ebeff3;
  }
}

.contact-pg-section form input:focus,
.contact-pg-section form textarea:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #f5a32a;
}

.contact-pg-section form textarea {
  height: 200px;
  padding: 15px;
}

.contact-pg-section .contact-info {
  margin-top: 20px;
  margin-bottom: 75px;
  border: 1px solid #ececec;
}

@media (max-width: 991px) {
  .contact-pg-section .contact-info {
    margin-top: 60px;
  }
}

@media (max-width: 767px) {
  .contact-pg-section .contact-info {
    margin-top: 50px;
  }
}

.contact-pg-section .contact-info > div {
  width: 33.33%;
  float: left;
  padding: 20px 35px 22px 110px;
  position: relative;
  border-left: 1px solid #efefef;
}

.contact-pg-section .contact-info > div:before {
  content: "";
  position: absolute;
  left: 88px;
  width: 1px;
  height: 50px;
  top: 44%;
  margin-top: -15px;
  background: #ccc;
}

@media (max-width: 991px) {
  .contact-pg-section .contact-info > div {
    padding: 60px 35px 40px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .contact-pg-section .contact-info > div {
    width: 100%;
    padding: 40px 25px 20px;
    border-left: 0;
    border-top: 1px solid #efefef;
    float: none;
  }
}

.contact-pg-section .contact-info .icon i {
  font-size: 40px;
  color: #f5a32a;
  position: absolute;
  left: 30px;
  top: 45px;
}

@media (max-width: 991px) {
  .contact-pg-section .contact-info .icon i {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .contact-pg-section .contact-info .icon i {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}

.contact-pg-section .contact-info h5 {
  font-family: "Muli", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 1em 0 0.5em;
}

.contact-pg-section .contact-map {
  height: 450px;
  margin-top: 0px;
}

@media (max-width: 991px) {
  .contact-pg-section .contact-map {
    margin-top: 80px;
  }
}

@media (max-width: 767px) {
  .contact-pg-section .contact-map {
    height: 350px;
    margin-top: 70px;
  }
}

.contact-pg-section .contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
}

/*--------------------------------------------------------------
  #project single page
--------------------------------------------------------------*/

/*--------------------------------------------------------------
#6.1  project-sigle-section
--------------------------------------------------------------*/

.project-sigle-section .project-info {
  background-color: #fff;
  max-width: 485px;
  height: 428px;
  padding: 45px;
  z-index: 1;
  -webkit-box-shadow: 0px 9px 57px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 9px 57px 0px rgba(0, 0, 0, 0.13);
}

@media (max-width: 1199px) {
  .project-sigle-section .project-info {
    height: 364px;
  }
}

@media (max-width: 991px) {
  .project-sigle-section .project-info {
    margin: 50px 0 0;
    padding: 25px;
    height: auto;
  }
}

.project-sigle-section .project-info h3 {
  font-size: 22px;
  font-size: 1.375rem;
  margin: 0 0 1em;
}

@media (max-width: 991px) {
  .project-sigle-section .project-info h3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.project-sigle-section .project-info ul {
  list-style: none;
}

@media (max-width: 991px) {
  .project-sigle-section .project-info ul {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.project-sigle-section .project-info ul > li + li {
  margin-top: 12px;
}

.project-sigle-section .project-info li span {
  font-weight: bold;
  display: inline-block;
  padding-right: 5px;
}

.project-sigle-section .content-area h2 {
  font-size: 32px;
  font-size: 2rem;
  margin: 0em 0 0.8em;
}

@media (max-width: 991px) {
  .project-sigle-section .content-area h2 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .project-sigle-section .content-area h2 {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

.project-sigle-section .content-area p {
  margin-bottom: 1.7em;
}

.project-sigle-section .content-area h4 {
  font-size: 24px;
  line-height: 1.3em;
  margin: 1.8em 0 1em;
}

.project-sigle-section .challange-solution-section {
  margin-top: 50px;
}

.project-sigle-section .challange-solution-section ul {
  list-style: none;
  padding-bottom: 25px;
}

.project-sigle-section .challange-solution-section ul > li + li {
  margin-top: 8px;
}

.project-sigle-section .challange-solution-section li i {
  color: #f5a32a;
  display: inline-block;
  padding-right: 7px;
  position: relative;
  top: 2px;
}

.project-sigle-section .prev-next-project {
  background: #fbfbfb;
  padding: 28px 22px;
  border: 2px solid #f7f7f7;
  margin-top: 80px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .project-sigle-section .prev-next-project {
    text-align: center;
    padding: 35px 22px;
  }
}

.project-sigle-section .prev-next-project > div {
  display: inline-block;
  position: relative;
  padding-left: 75px;
}

@media (max-width: 767px) {
  .project-sigle-section .prev-next-project > div {
    display: block;
    float: none;
    padding: 0;
  }
}

.project-sigle-section .prev-next-project > div:first-child {
  float: left;
}

@media (max-width: 767px) {
  .project-sigle-section .prev-next-project > div:first-child {
    display: block;
    float: none;
    margin-bottom: 25px;
  }
}

.project-sigle-section .prev-next-project > div:last-child {
  float: right;
  padding: 0 75px 0 0;
}

@media (max-width: 767px) {
  .project-sigle-section .prev-next-project > div:last-child {
    display: block;
    float: none;
    padding: 0;
  }
}

.project-sigle-section .prev-next-project .icon {
  position: absolute;
  left: 0;
  top: 5px;
  border-right: 1px solid #e8e8e8;
  padding-right: 18px;
}

@media (max-width: 767px) {
  .project-sigle-section .prev-next-project .icon {
    display: none;
  }
}

.project-sigle-section .prev-next-project .icon .fi:before {
  font-size: 30px;
  font-size: 1.875rem;
  color: #f5a32a;
}

.project-sigle-section .prev-next-project > div:last-child .icon {
  left: auto;
  right: 0;
  border-left: 1px solid #e8e8e8;
  padding-left: 18px;
  border-right: 0;
  padding-right: 0;
}

.project-sigle-section .prev-next-project a {
  display: block;
}

.project-sigle-section .prev-next-project a > span {
  color: #7b7b7b;
}

.project-sigle-section .prev-next-project a > h5 {
  font-size: 16px;
  font-size: 1rem;
  color: #d43f3a;
  margin: 0.3em 0 0;
  -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: 767px) {
  .project-sigle-section .prev-next-project a > h5 {
    font-size: 16px;
    font-size: 1rem;
    margin: 0.1em 0 0;
  }
}

.project-sigle-section .prev-next-project a:hover h5 {
  color: #f5a32a;
}

/*--------------------------------------------------------------
  #service single page
--------------------------------------------------------------*/

/*--------------------------------------------------------------
#7.1  service-single-section
--------------------------------------------------------------*/

.service-single-section {
  /*** service single tab ***/
}

@media screen and (min-width: 1200px) {
  .service-single-section .service-single-content {
    padding-left: 20px;
  }
}

.service-single-section .service-single-content .theme-btn,
.service-single-section .service-single-content .theme-btn-s2,
.service-single-section .service-single-content .theme-btn-s3 {
  margin-top: 10px;
}

.service-single-section .service-single-content h2 {
  font-size: 30px;
  font-size: 1.875rem;
  margin: 0 0 0.7em;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .service-single-section .service-single-content h2 {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

@media (max-width: 767px) {
  .service-single-section .service-single-content h2 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.service-single-section .service-single-content h3 {
  font-size: 22px;
  font-size: 1.375rem;
  text-transform: capitalize;
  margin: 0 0 1em;
}

@media (max-width: 991px) {
  .service-single-section .service-single-content h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  .service-single-section .service-single-content h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.service-single-section .service-single-content p {
  margin-bottom: 1.3em;
}

.service-single-section .service-single-content .service-single-slider {
  position: relative;
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .service-single-section .service-single-content .service-single-slider {
    margin-bottom: 50px;
  }
}

.service-single-section .service-single-content .owl-controls {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 15px;
}

.service-single-section
  .service-single-content
  .owl-theme
  .owl-dots
  .owl-dot
  span {
  width: 13px;
  height: 13px;
  margin: 5px 7px;
  background: #ffffff;
}

.service-single-section
  .service-single-content
  .owl-theme
  .owl-dots
  .owl-dot.active
  span {
  background: #f5a32a;
}

.service-single-section .service-single-content .benefit .details {
  width: calc(100% - 470px);
  float: left;
  padding-right: 25px;
}

@media (max-width: 767px) {
  .service-single-section .service-single-content .benefit .details {
    width: 100%;
    float: none;
  }
}

.service-single-section .service-single-content .benefit .img-holder {
  width: 420px;
  float: right;
}

@media (max-width: 767px) {
  .service-single-section .service-single-content .benefit .img-holder {
    width: 100%;
    float: none;
    margin: 45px 0;
  }
}

.service-single-section .service-single-content ul {
  margin-bottom: 30px;
}

.service-single-section .service-single-content ul li {
  position: relative;
  padding-left: 45px;
  font-weight: 600;
}

.service-single-section .service-single-content ul li span {
  background: #f5a32a;
  width: 28px;
  height: 28px;
  line-height: 28px;
  color: #fff;
  border-radius: 30px;
  position: absolute;
  left: 0;
  top: -3px;
  text-align: center;
}

.service-single-section .service-single-content ul li .fi:before {
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
}

.service-single-section .service-single-content ul > li + li {
  margin-top: 15px;
}

.service-single-section .service-single-tab {
  margin: 50px 0;
}

@media (max-width: 991px) {
  .service-single-section .service-single-tab {
    margin: 40px 0;
  }
}

.service-single-section .service-single-tab .nav {
  overflow: hidden;
  margin: 0;
}

.service-single-section .service-single-tab .nav li {
  float: left;
  padding-left: 0;
}

.service-single-section .service-single-tab .nav > li + li {
  margin-top: 0;
  margin-left: 3px;
}

@media (max-width: 767px) {
  .service-single-section .service-single-tab .nav > li + li {
    margin-left: 1px;
  }
}

.service-single-section .service-single-tab .nav a {
  background: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  color: #d43f3a;
  padding: 13px 25px;
  border: 1px solid #e6e8eb;
}

@media (max-width: 767px) {
  .service-single-section .service-single-tab .nav a {
    font-size: 13px;
    font-size: 0.8125rem;
    padding: 8px 12px;
    text-transform: none;
  }
}

@media (max-width: 350px) {
  .service-single-section .service-single-tab .nav a {
    padding: 8px;
  }
}

.service-single-section .service-single-tab .nav .active a,
.service-single-section .service-single-tab .nav a:hover {
  background: #f5a32a;
  color: #fff;
}

.service-single-section .tab-content {
  padding: 35px 40px;
  border: 1px solid #e6e8eb;
  margin-top: -1px;
}

@media (max-width: 767px) {
  .service-single-section .tab-content {
    padding: 25px 20px;
  }
}

.service-single-section .tab-content .tab-pane p {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .service-single-section .tab-content .tab-pane p {
    margin-bottom: 15px;
  }
}

.service-single-section .tab-content .tab-pane img {
  padding-bottom: 30px;
}

.service-single-section .tab-content .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
  #blog page
--------------------------------------------------------------*/

/*--------------------------------------------------------------
#8.1  blog-pg-section
--------------------------------------------------------------*/

.blog-pg-section {
  /*** format-standard ***/
  /*** format-gallery ***/
  /*** format-quote ***/
  /*** format-video ***/
}

.blog-pg-section .blog-content .post {
  margin-bottom: 100px;
}

@media (max-width: 991px) {
  .blog-pg-section .blog-content .post {
    margin-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .blog-pg-section .blog-content .post {
    margin-bottom: 60px;
  }
}

.blog-section .meta {
  overflow: hidden;
}

.blog-section .meta .author {
  float: left;
}

.blog-section .meta .comment {
  float: right;
}

.blog-section .author a,
.blog-section .comment a {
  color: #797979;
}

@media (max-width: 991px) {
  .blog-section .author a,
  .blog-section .comment a {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.blog-section .author a:hover,
.blog-section .comment a:hover {
  color: #f5a32a;
}

.blog-section .author img {
  border-radius: 50%;
  display: inline-block;
  padding-right: 5px;
}

.blog-pg-section .meta,
.blog-single-section .meta {
  overflow: hidden;
  margin: 35px 0;
}

.blog-pg-section .meta .author,
.blog-single-section .meta .author {
  float: left;
}

.blog-pg-section .meta .comment,
.blog-single-section .meta .comment {
  float: right;
  padding-top: 18px;
}

.blog-pg-section .author a,
.blog-pg-section .comment a,
.blog-single-section .author a,
.blog-single-section .comment a {
  color: #797979;
}

@media (max-width: 991px) {
  .blog-pg-section .author a,
  .blog-pg-section .comment a,
  .blog-single-section .author a,
  .blog-single-section .comment a {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.blog-pg-section .author a:hover,
.blog-pg-section .comment a:hover,
.blog-single-section .author a:hover,
.blog-single-section .comment a:hover {
  color: #f5a32a;
}

.blog-pg-section .author img,
.blog-single-section .author img {
  border-radius: 50%;
  display: inline-block;
  padding-right: 15px;
}

.blog-pg-section .post h3 {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.2em;
  margin: -0.27em 0 0.7em;
}

@media (max-width: 991px) {
  .blog-pg-section .post h3 {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

@media (max-width: 767px) {
  .blog-pg-section .post h3 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.blog-pg-section .post h3 a {
  color: #d43f3a;
}

.blog-pg-section .post h3 a:hover {
  color: #f5a32a;
}

.blog-pg-section .post p {
  margin-bottom: 1.8em;
}

@media (max-width: 991px) {
  .blog-pg-section .post p {
    font-size: 16px;
    font-size: 1rem;
  }
}

.blog-pg-section .format-quote {
  background-color: #ecf5f7;
  padding: 25px 35px 45px;
} /*
.blog-pg-section .format-standard,
.blog-pg-section .format-quote {
    background-color: #ecf5f7;
    padding: 25px 35px 45px;
}*/
@media (max-width: 767px) {
  .blog-pg-section .format-standard,
  .blog-pg-section .format-quote {
    padding: 25px 20px 45px;
  }
}

.blog-pg-section .format-gallery {
  position: relative;
}

.blog-pg-section .format-gallery .owl-controls {
  width: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.blog-pg-section .format-gallery .owl-controls .owl-nav [class*="owl-"]:hover {
  background: #f5a32a;
}

.blog-pg-section .format-gallery .owl-controls .owl-nav [class*="owl-"] {
  background: rgba(133, 133, 133, 0.5);
  width: 50px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  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;
}

.blog-pg-section .format-gallery .owl-controls .owl-nav .owl-prev,
.blog-pg-section .format-gallery .owl-controls .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.blog-pg-section .format-gallery .owl-controls .owl-nav .owl-prev {
  left: 15px;
}

.blog-pg-section .format-gallery .owl-controls .owl-nav .owl-next {
  right: 15px;
}

.blog-pg-section .format-quote {
  text-align: center;
  padding: 80px 60px;
  position: relative;
}

@media (max-width: 767px) {
  .blog-pg-section .format-quote {
    padding: 40px 20px;
  }
}

.blog-pg-section .format-quote p {
  margin-bottom: 0;
}

.blog-pg-section .format-quote:before {
  font-family: "Flaticon";
  content: "\f114";
  font-size: 100px;
  color: #ecf3fb;
  margin-left: 0;
  position: absolute;
  right: 0%;
  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%);
}

.blog-pg-section .format-quote h3,
.blog-pg-section .format-quote p {
  position: relative;
}

.blog-pg-section .format-video .video-holder {
  position: relative;
  text-align: center;
}

.blog-pg-section .format-video .video-holder:before {
  content: "";
  background-color: #d43f3a;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.5;
}

.blog-pg-section .format-video .video-holder:hover:before {
  opacity: 0.7;
}

.blog-pg-section .format-video .video-holder a {
  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%);
}

.blog-pg-section .format-video .video-holder .fi:before {
  font-size: 80px;
  font-size: 5rem;
  color: #fff;
}

@media (max-width: 767px) {
  .blog-pg-section .format-video .video-holder .fi:before {
    font-size: 60px;
    font-size: 3.75rem;
  }
}

@media screen and (min-width: 1200px) {
  .blog-pg-left-sidebar .blog-sidebar {
    padding-right: 45px;
    padding-left: 0;
  }
}

@media screen and (min-width: 1200px) {
  .blog-pg-fullwidth .blog-content {
    padding: 0;
  }
}

/*--------------------------------------------------------------
  #blog single page
--------------------------------------------------------------*/

/*--------------------------------------------------------------
#9.1  blog-single-section
--------------------------------------------------------------*/

.blog-single-section {
  /*** tag-share ***/
  /*** author-box ***/
  /*** more-posts ***/
  /*** comments area ***/
  /*** comment-respond ***/
}

.blog-single-section .entry-meta {
  list-style: none;
  overflow: hidden;
  margin: 35px 0;
}

@media (max-width: 767px) {
  .blog-single-section .entry-meta {
    margin: 25px 0;
  }
}

.blog-single-section .entry-meta li {
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  float: left;
}

@media (max-width: 767px) {
  .blog-single-section .entry-meta li {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

@media (max-width: 600px) {
  .blog-single-section .entry-meta li {
    float: none;
    display: block;
    margin-bottom: 5px;
  }
}

.blog-single-section .entry-meta li i {
  font-size: 16px;
  font-size: 1rem;
  display: inline-block;
  padding-right: 5px;
}

@media (max-width: 767px) {
  .blog-single-section .entry-meta li i {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.blog-single-section .entry-meta > li + li {
  margin-left: 20px;
  padding-left: 20px;
  position: relative;
}

@media (max-width: 600px) {
  .blog-single-section .entry-meta > li + li {
    margin-left: 0;
    padding-left: 0;
  }
}

.blog-single-section .entry-meta li a {
  color: #636893;
}

.blog-single-section .entry-meta li a:hover {
  color: #f5a32a;
}

.blog-single-section .entry-meta li:last-child i {
  position: relative;
  top: 3px;
}

.blog-single-section .post h2 {
  font-size: 30px;
  font-size: 1.875rem;
  margin: -0.22em 0 0.7em;
  line-height: 1.3em;
}

@media (max-width: 991px) {
  .blog-single-section .post h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

@media (max-width: 767px) {
  .blog-single-section .post h2 {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

.blog-single-section .post p {
  margin-bottom: 1.5em;
}

.blog-single-section .post h3 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.3em;
  margin: 1.8em 0 1em;
}

@media (max-width: 991px) {
  .blog-single-section .post h3 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

@media (max-width: 767px) {
  .blog-single-section .post h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.blog-single-section .post blockquote {
  font-size: 20px;
  font-style: italic;
  color: #838383;
  line-height: 1.9em;
  padding: 30px 25px;
  margin: 50px 0;
  border-left: 3px solid #f5a32a;
  background: #ecf5f7;
}

@media (max-width: 767px) {
  .blog-single-section .post blockquote {
    padding: 55px 25px;
  }
}

.blog-single-section .post blockquote .quoter {
  font-size: 14px;
  display: block;
  margin-top: 15px;
}

.blog-single-section .tag-share {
  color: #242632;
}

.blog-single-section .tag-share ul {
  list-style: none;
  display: inline-block;
  overflow: hidden;
}

.blog-single-section .tag-share ul li {
  float: left;
}

@media (max-width: 767px) {
  .blog-single-section .tag-share ul li {
    margin: 2px;
  }
}

.blog-single-section .tag-share ul > li + li {
  margin-left: 10px;
}

@media (max-width: 767px) {
  .blog-single-section .tag-share ul > li + li {
    margin: 2px;
  }
}

.blog-single-section .tag-share .tag {
  float: left;
}

.blog-single-section .tag-share .tag > span {
  color: #242632;
  font-weight: bold;
  display: inline-block;
  padding-right: 8px;
}

.blog-single-section .tag-share .tag ul {
  list-style: none;
  position: relative;
  top: 5px;
}

.blog-single-section .tag-share .tag li {
  position: relative;
}

.blog-single-section .tag-share .tag li:after {
  content: ",";
  position: absolute;
  right: -4px;
  bottom: 0;
}

.blog-single-section .tag-share .tag a {
  font-size: 14px;
  color: #242632;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .blog-single-section .tag-share .tag a {
    font-size: 13px;
  }
}

.blog-single-section .tag-share .tag a:hover {
  color: #f28d35;
}

.blog-single-section .tag-share .share {
  position: relative;
  top: -5px;
  left: 50px;
}

.blog-single-section .tag-share .share > span {
  color: #242632;
  font-weight: 600;
  display: inline-block;
  padding-right: 8px;
}

.blog-single-section .tag-share .share ul {
  position: relative;
  top: 15px;
}

.blog-single-section .tag-share .share ul > li + li {
  margin-left: 10px;
}

@media (max-width: 767px) {
  .blog-single-section .tag-share .share ul > li + li {
    margin-left: 8px;
  }
}

@media (max-width: 767px) {
  .blog-single-section .tag-share .share ul > li {
    margin: 5px;
  }
}

.blog-single-section .tag-share .share a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  font-size: 14px;
  color: #627381;
}

@media (max-width: 767px) {
  .blog-single-section .tag-share .share a {
    font-size: 13px;
  }
}

.blog-single-section .tag-share .share a:hover {
  background: #f28d35;
  border-color: #f28d35;
  color: #fff !important;
}

.blog-single-section .tag-share .share ul > li:first-child a {
  color: #3c5ba4;
}

.blog-single-section .tag-share .share ul > li:nth-child(2) a {
  color: #47a0d9;
}

.blog-single-section .tag-share .share ul > li:nth-child(3) a {
  color: #0073b1;
}

.blog-single-section .tag-share .share ul > li:nth-child(4) a {
  color: #933f94;
}

.blog-single-section .author-box {
  padding: 35px 40px 25px;
  margin: 70px 0;
  border: 1px solid #ececec;
}

@media (max-width: 991px) {
  .blog-single-section .author-box {
    padding: 35px 40px;
  }
}

@media (max-width: 767px) {
  .blog-single-section .author-box {
    padding: 25px;
  }
}

.blog-single-section .author-box .author-avatar {
  float: right;
}

@media (max-width: 767px) {
  .blog-single-section .author-box .author-avatar {
    float: none;
  }
}
.blog-single-section .author-box .author-avatar img {
  border-radius: 50%;
}
.blog-single-section .author-box .author-content {
  display: block;
  overflow: hidden;
  padding-right: 25px;
}

@media (max-width: 767px) {
  .blog-single-section .author-box .author-content {
    padding: 0;
    margin: 15px 0 0 0;
  }
}

.blog-single-section .author-box .author-content p {
  margin-bottom: 20px;
}

.blog-single-section .author-box .author-name {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
  color: #242632;
}

.blog-single-section .author-box .social-link {
  display: inline-block;
  list-style: none;
}

.blog-single-section .author-box .social-link li {
  float: left;
  margin-right: 12px;
}

.blog-single-section .author-box .social-link a {
  display: block;
  font-size: 13px;
  color: #242632;
}

.blog-single-section .author-box .social-link a:hover {
  color: #f28d35;
}

.blog-single-section .more-posts {
  overflow: hidden;
  background: #f9f9f9;
  padding: 0 25px;
}

.blog-single-section .more-posts > div {
  width: 50%;
  float: left;
}

@media (max-width: 767px) {
  .blog-single-section .more-posts > div {
    width: 100%;
    float: none;
  }
}

.blog-single-section .more-posts > div > a {
  display: inline-block;
}

.blog-single-section .more-posts .previous-post,
.blog-single-section .more-posts .next-post {
  padding: 40px 0;
}

@media (max-width: 767px) {
  .blog-single-section .more-posts .previous-post,
  .blog-single-section .more-posts .next-post {
    padding: 25px 15px !important;
  }
}

.blog-single-section .more-posts .next-post {
  text-align: right;
  border-left: 1px solid #ececec;
  padding-left: 15px;
  padding-right: 5px;
}

@media (max-width: 767px) {
  .blog-single-section .more-posts .next-post {
    border-left: 0;
    text-align: left;
    border-top: 1px solid #ececec;
  }
}

.blog-single-section .more-posts .next-post .post-control-link {
  padding-right: 25px;
  position: relative;
}

@media (max-width: 767px) {
  .blog-single-section .more-posts .next-post .post-control-link {
    padding-right: 0;
  }
}

.blog-single-section .more-posts .next-post .post-control-link:before {
  font-family: "Flaticon";
  content: "\f104";
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 767px) {
  .blog-single-section .more-posts .next-post .post-control-link:before {
    display: none;
  }
}

.blog-single-section .more-posts .previous-post {
  padding-right: 15px;
  padding-left: 5px;
}

.blog-single-section .more-posts .previous-post .post-control-link {
  padding-left: 25px;
  position: relative;
}

@media (max-width: 767px) {
  .blog-single-section .more-posts .previous-post .post-control-link {
    padding-left: 0;
  }
}

.blog-single-section .more-posts .previous-post .post-control-link:before {
  font-family: "Flaticon";
  content: "\f103";
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 767px) {
  .blog-single-section .more-posts .previous-post .post-control-link:before {
    display: none;
  }
}

.blog-single-section .more-posts .previous-post > a > span,
.blog-single-section .more-posts .next-post > a > span {
  display: block;
}

.blog-single-section .more-posts .post-control-link {
  font-size: 14px;
  color: #57667e;
}

.blog-single-section .more-posts .post-name {
  font-size: 17px;
  color: #242632;
  margin: 0.7em 0 0;
  font-weight: 600;
}

@media (max-width: 991px) {
  .blog-single-section .more-posts .post-name {
    font-size: 18px;
  }
}

.blog-single-section .more-posts a:hover .post-control-link {
  color: #f28d35;
}

.blog-single-section .comments-area {
  margin-top: 70px;
}

.blog-single-section .comments-area .comments {
  border: 1px solid #ececec;
}

.blog-single-section .comments-area li > div {
  border-bottom: 1px solid #ececec;
  padding: 35px;
}

@media (max-width: 991px) {
  .blog-single-section .comments-area li > div {
    padding: 35px 25px;
  }
}

.blog-single-section .comments-area ol {
  list-style-type: none;
  padding-left: 0;
}

.blog-single-section .comments-area ol ul {
  padding-left: 30px;
  list-style-type: none;
}

.blog-single-section .comments-area ol > li:last-child div {
  border-bottom: 0;
}

.blog-single-section .comments-area .comments-title {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 1.5em;
}

@media (max-width: 991px) {
  .blog-single-section .comments-area .comments-title {
    font-size: 20px;
  }
}

.blog-single-section .comments-area li > div {
  position: relative;
}

.blog-single-section .comments-area .comment-theme {
  position: absolute;
  left: 35px;
}

@media (max-width: 767px) {
  .blog-single-section .comments-area .comment-theme {
    position: static;
  }
}

.blog-single-section .comments-area .comment-theme img {
  border-radius: 50%;
}

.blog-single-section .comments-area .comment-main-area {
  padding-left: 100px;
}

@media (max-width: 767px) {
  .blog-single-section .comments-area .comment-main-area {
    padding-left: 0;
    margin-top: 25px;
  }
}

.blog-single-section .comments-area .comment-main-area p {
  margin-bottom: 20px;
}

.blog-single-section .comments-area .comments-meta h4 {
  font-size: 16px;
  color: #242632;
  font-weight: bold;
  margin: 0 0 1em;
}

.blog-single-section .comments-area .comments-meta h4 span {
  font-size: 13px;
  color: #57667e;
  font-weight: normal;
  font-style: italic;
  text-transform: none;
  display: inline-block;
  padding-left: 5px;
}

@media (max-width: 767px) {
  .blog-single-section .comments-area .comments-meta h4 span {
    padding-left: 0;
  }
}

.blog-single-section .comments-area .comment-reply-link {
  color: #f28d35;
  float: right;
  font-size: 20px;
  margin-left: 14px;
  position: relative;
  top: -8px;
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  padding: 10px;
  font-weight: bolder;
}

.blog-single-section .comments-area .comment-reply-link:hover {
  color: #242632;
}

.blog-single-section .comment-respond {
  margin-top: 70px;
}

.blog-single-section .comment-respond .comment-reply-title {
  font-size: 22px;
  margin: 0 0 1.5em;
}

@media (max-width: 991px) {
  .blog-single-section .comment-respond .comment-reply-title {
    font-size: 20px;
  }
}

.blog-single-section .comment-respond form input,
.blog-single-section .comment-respond form textarea {
  background-color: #fff;
  width: 100%;
  height: 50px;
  border: 1px solid #ececec;
  padding: 6px 15px;
  margin-bottom: 15px;
  outline: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.blog-single-section .comment-respond form input:focus,
.blog-single-section .comment-respond form textarea:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #f28d35;
}

@media (max-width: 991px) {
  .blog-single-section .comment-respond form input,
  .blog-single-section .comment-respond form textarea {
    height: 40px;
  }
}

.blog-single-section .comment-respond form textarea {
  height: 220px;
  padding: 15px;
}

@media (max-width: 991px) {
  .blog-single-section .comment-respond form textarea {
    height: 150px;
  }
}

.blog-single-section .comment-respond .form-inputs {
  overflow: hidden;
}

.blog-single-section .comment-respond .form-inputs > input:nth-child(2) {
  width: 49%;
  float: left;
}

@media (max-width: 767px) {
  .blog-single-section .comment-respond .form-inputs > input:nth-child(2) {
    width: 100%;
    float: none;
  }
}

.blog-single-section .comment-respond .form-inputs > input:nth-child(3) {
  width: 49%;
  float: right;
}

@media (max-width: 767px) {
  .blog-single-section .comment-respond .form-inputs > input:nth-child(3) {
    width: 100%;
    float: none;
  }
}

.blog-single-section .comment-respond .form-submit input {
  max-width: 180px;
  background-color: #f28d35;
  color: #fff;
  margin-bottom: 0;
  border: 0;
  outline: 0;
  text-transform: capitalize;
  font-weight: bold;
  border-radius: 50px;
}

.blog-single-section .comment-respond .form-submit input:hover {
  background-color: #242632;
}

@media screen and (min-width: 1200px) {
  .blog-single-left-sidebar-section .blog-sidebar {
    padding-right: 45px;
    padding-left: 0;
  }
}
.mar-60 {
  margin: 50px 0;
}

/*--------------------------------------------------------------
  #404 page
--------------------------------------------------------------*/

/*--------------------------------------------------------------
#10.1  error-404-section
--------------------------------------------------------------*/

.error-404-section {
  text-align: center;
}

.error-404-section .error h2 {
  font-size: 200px;
  margin: 0;
}

@media (max-width: 991px) {
  .error-404-section .error h2 {
    font-size: 150px;
  }
}

@media (max-width: 767px) {
  .error-404-section .error h2 {
    font-size: 100px;
  }
}

.error-404-section .error-message {
  margin-top: 40px;
}

.error-404-section .error-message h3 {
  font-size: 20px;
  margin: 0 0 0.8em;
}

.error-404-section .error-message p {
  margin-bottom: 1.8em;
}

/*# sourceMappingURL=style.css.map */

/* new menu css  */

/* Style the tab */
.tab {
  overflow: hidden;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ffffff;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ffffff;
}

/* Style the tab content */
.stanlytabcontent {
  display: none;
  padding: 0px 12px;
  border-top: none;
  position: fixed;
  z-index: 1000;
  top: 80px;
  left: 0;
  /* background: #ffffff; */
  width: 1000px;
  animation: rightToLeft 0.8s ease-in-out forwards;
}

/* Style the close button */
.topright {
  cursor: pointer;
  font-size: 28px;
  margin-right: 20px;
}

.topright:hover {
  color: red;
}

.discover_saml_div {
  /* background: #187ABA; */
  height: 400px;
}
.discover_saml_div li {
  padding: 10px 5px;
  line-height: 20px;
  padding-left: 20px;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.95px;
  line-height: 24px;
}

.discover_saml_right {
  background: #58585a;
  /* height: 360px; */
}
/* .discover_saml_right li {
  padding: 10px 5px;
  line-height: 20px;
  padding-left: 20px;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.95px;
  line-height: 24px;
} */
.discover_saml_right ul {
  display: flex;
  flex-direction: column;
}
.discover_saml_right ul li {
  display: flex;
  margin-bottom: 7px;
  align-items: center;
}
.discover_saml_right ul li .image {
  width: 70px;
}
.discover_saml_right ul li .text {
  flex: 1;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}
.discover_saml_right ul li .text p {
  margin: 0;
  color: #fff;
}
.stanlyMenuGrid {
  display: flex;
}
.stanlyMenuGrid .stanlyMenuGridLeft {
  flex-basis: 30%;
}
.stanlyMenuGrid .stanlyMenuGridMiddle {
  flex: 1;
  padding: 30px;
}
.stanlyMenuGrid .stanlyMenuGridRight {
  flex-basis: 30%;
  padding-top: 30px;
}

.discover_saml_submenu {
  padding-top: 25px;
}

.discover_saml_submenu > li {
  background-color: transparent;
  margin-top: 6px;
}
.discover_saml_submenu > li > a {
  background-color: transparent;
  margin-top: 6px;
}
.discover_saml_submenu > li:hover {
  background-color: #58585a;
  margin-top: 6px;
}
.discover_saml_submenu > li.active {
  background-color: #58585a;
  margin-top: 6px;
}
.discover_saml_social {
  display: inline-flex;
}
.discover_saml_social li a i {
  color: #fff;
  transition: all 0.4s;
}
.discover_saml_social li a:hover i {
  color: #58585a;
  transition: all 0.4s;
}

.coronavirus_news {
  color: #fff;
  padding-left: 75px;
  margin-bottom: -29px;
  margin-top: -50px;
  line-height: 16px;
  font-size: 13px;
}

.mutual_fund_div {
  /* background: #187ABA; */
  height: 400px;
}

.mutual_fund_div li {
  padding: 10px 5px;
  line-height: 20px;
  padding-left: 20px;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.95px;
  line-height: 24px;
}

.mutual_fund_right {
  background: #58585a;
  /* height: 360px; */
}

/* .mutual_fund_right li {
  padding: 10px 5px;
  line-height: 20px;
  padding-left: 20px;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.95px;
  line-height: 24px;
} */

.mutual_fund_right ul {
  display: flex;
  flex-direction: column;
}
.mutual_fund_right ul li {
  display: flex;
  margin-bottom: 7px;
  align-items: center;
}
.mutual_fund_right ul li .image {
  width: 70px;
}
.mutual_fund_right ul li .text {
  flex: 1;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}
.mutual_fund_right ul li .text p {
  margin: 0;
  color: #fff;
}

.mutual_fund_submenu {
  padding-top: 25px;
}

.mutual_fund_submenu > li {
  background-color: transparent;
  margin-top: 6px;
}
.mutual_fund_submenu > li:hover {
  background-color: #58585a;
  margin-top: 6px;
}
.mutual_fund_submenu > li.active {
  background-color: #58585a;
  margin-top: 6px;
}

.investor_insight_div {
  /* background: #187ABA; */
  height: 400px;
}

.investor_insight_div li {
  padding: 10px 5px;
  line-height: 20px;
  padding-left: 20px;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.95px;
  line-height: 24px;
}

.investor_insight_right {
  background: #58585a;
  /* height: 360px; */
}

.investor_insight_right ul {
  display: flex;
  flex-direction: column;
}
.investor_insight_right ul li {
  display: flex;
  margin-bottom: 7px;
  align-items: center;
}
.investor_insight_right ul li .image {
  width: 70px;
}
.investor_insight_right ul li .text {
  flex: 1;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}
.investor_insight_right ul li .text p {
  margin: 0;
  color: #fff;
}

.investor_insight_submenu {
  padding-top: 25px;
}

.investor_insight_submenu > li {
  background-color: transparent;
  margin-top: 6px;
}
.investor_insight_submenu > li:hover {
  background-color: #58585a;
  margin-top: 6px;
}
.investor_insight_submenu > li.active {
  background-color: #58585a;
  margin-top: 6px;
}

/* Investment Insight  */
.investment_insight_div {
  /* background: #187ABA; */
  height: 400px;
}

.investment_insight_div li {
  padding: 10px 5px;
  line-height: 20px;
  padding-left: 20px;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.95px;
  line-height: 24px;
}

.investment_insight_right {
  background: #58585a;
}

.investment_insight_right ul {
  display: flex;
  flex-direction: column;
}
.investment_insight_right ul li {
  display: flex;
  margin-bottom: 7px;
  align-items: center;
}
.investment_insight_right ul li .image {
  width: 70px;
}
.investment_insight_right ul li .text {
  flex: 1;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}
.investment_insight_right ul li .text p {
  margin: 0;
  color: #fff;
}

.investment_insight_submenu {
  padding-top: 25px;
}

.investment_insight_submenu > li {
  background-color: transparent;
  margin-top: 6px;
}
.investment_insight_submenu > li:hover {
  background-color: #58585a;
  margin-top: 6px;
}
.investment_insight_submenu > li.active {
  background-color: #58585a;
  margin-top: 6px;
}

/* curve css  */
.top_curve {
  background: url("../images/curveShapeNew.png") top center;
  top: 0rem;
  background-size: cover;
  height: 5rem;
  width: 100%;
  position: absolute;
  z-index: 100;
}

.bottom_curve {
  background: url("../images/curveShapeWhiteUp.png") top center;
  bottom: 0rem;
  background-size: cover;
  height: 5rem;
  width: 100%;
  position: absolute;
  z-index: 100;
}

.whyChose {
  background: url("../images/curvebackground.jpg");
}

.whyChoseBg {
  background-color: rgba(236, 75, 34, 0.7);
  padding: 100px 0;
}

.reason {
  flex-basis: 23%;
  background: rgba(255, 255, 255, 0.15);
  margin: 10px;
  color: #fff;
  padding: 15px;
  border-radius: 5px;
  transition: all 0.3s;
}
.reason:hover {
  background: rgba(255, 255, 255, 0.25);
}

.reason a h6 {
  color: #fff;
}
.reason a img {
  height: 80px;
}

.nextArrow a .arrow {
  height: 30px;
  width: 30px;
  margin: 10px auto;
  background-image: url("../img/catagories/Arrow-01.html");
  background-size: 100% 100%;
  transition: all 0.3s;
}
.reason a {
  text-decoration: none;
}

.reason:hover .nextArrow a .arrow {
  background-image: url("../img/catagories/Arrow-02.html");
  transform: translateX(5px);
}

.reason i {
  color: darkred;
  margin-top: 15px;
}

.whyChoseBg .body {
  display: flex;
}

.calculatorBox {
  padding: 20px;
  border: 1px solid rgba(51, 51, 51, 0.212);
  border-radius: 10px;
}
.dottedBorderBottom {
  border-bottom: 2px dotted #333;
  padding: 0 10px;
}

input[type="range"] {
  -webkit-appearance: none;
  margin: 18px 0 8px 0;
  width: 100%;
}
input[type="range"]:focus {
  outline: none;
}
input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: #999;
  border-radius: 5px;
  opacity: 0.9;
}
input[type="range"]::-webkit-slider-thumb {
  height: 16px;
  width: 16px;
  border-radius: 10px;
  background: #d43f3a;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
}
input[type="range"]:focus::-webkit-slider-runnable-track {
  background: #999;
  opacity: 1;
}
input[type="range"]::-moz-range-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: #999;
  border-radius: 5px;
}
input[type="range"]::-moz-range-thumb {
  height: 36px;
  width: 16px;
  border-radius: 10px;
  background: #d43f3a;
  cursor: pointer;
}
input[type="range"]::-ms-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}
input[type="range"]::-ms-fill-lower {
  background: #999;
  border-radius: 5px;
  opacity: 0.9;
}
input[type="range"]::-ms-fill-upper {
  background: #999;
  border-radius: 5px;
  opacity: 0.9;
}
input[type="range"]::-ms-thumb {
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #d43f3a;
  cursor: pointer;
}
input[type="range"]:focus::-ms-fill-lower {
  background: #999;
  opacity: 1;
}
input[type="range"]:focus::-ms-fill-upper {
  background: #999;
  opacity: 1;
}
/* For radio */
.radio {
  margin-bottom: 1.5rem;
  text-align: center;
}

.radio input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.radio input[type="radio"] + .radio-label:before {
  content: "";
  background: #f4f4f4;
  border-radius: 100%;
  border: 1px solid #b4b4b4;
  display: inline-block;
  width: 1em;
  height: 1em;
  position: relative;
  /* top: -0.2em; */
  margin-right: 0.5em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}

.radio input[type="radio"]:checked + .radio-label:before {
  background-color: #d43f3a;
  box-shadow: inset 0 0 0 4px #f4f4f4;
}

.radio input[type="radio"]:focus + .radio-label:before {
  outline: none;
  border-color: #d43f3a;
}

.radio input[type="radio"]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}

.radio input[type="radio"] + .radio-label:empty:before {
  margin-right: 0;
}

/* Radio End */
.i_row span {
  float: right;
}
.o_row:not(:last-child) {
  margin: 15px 0;
}
.o_row div {
  width: 50%;
  float: left;
}
.o_row .r_title {
  text-align: center;
  margin-bottom: 5px;
  font-size: 14px;
  color: #44475b;
  opacity: 0.75;
}
.o_row .r_value {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #44475b;
}
.f_title {
  text-align: center;
  color: #44475b;
  font-size: 14px;
}
.f_value {
  font-size: 20px;
  margin-left: 5px;
  font-weight: bold;
}
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta .cta_btn {
  border: none;
  font-size: 16px;
  letter-spacing: 0.2px;
  padding: 10px 25px;
  color: white;
  background-color: #d43f3a;
  border-radius: 5px;
  transition: all 0.3s;
  /* font-family: "Roboto", sans-serif; */
}

.cta .cta_btn:hover {
  cursor: pointer;
  transform: scale(1.02);
  outline: none;
  background-color: #333;
}

.cta .cta_btn:focus {
  outline: none;
}

#chart-area {
  margin: 0px auto 25px auto;
}
#h4-container {
  width: 400px;
  max-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
}
#h4-container #h4-subcontainer {
  width: 100%;
  position: relative;
}
#h4-container #h4-subcontainer h4 {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  width: 40px;
  height: 40px;
  color: #fff !important;
  font-size: 12px;
  -webkit-transform-origin: center -10px;
  transform-origin: center -10px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: margin-top 0.15s ease-in-out, opacity 0.15s ease-in-out;
  transition: margin-top 0.15s ease-in-out, opacity 0.15s ease-in-out;
}
#h4-container #h4-subcontainer h4 span {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #1597ff;
  border-radius: 0 50% 50% 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: -1;
}

input:not(:active) + #h4-container h4 {
  opacity: 0;
  margin-top: -50px;
  pointer-events: none;
}
.fun-fact-section {
  background: url(../images/curvebackground.jpg);
  background-attachment: fixed;
  position: relative;
  padding: 0;
}
.fun-fact-section-shade {
  background: rgba(88, 88, 90, 0.949);
  padding: 120px;
}
.odometer-digit {
  color: #fff !important;
}
.fun-fact-grids h3 {
  color: #fff !important;
}
.fun-fact-grids p {
  color: #fff !important;
}
@media screen and (max-width: 600px) {
  .fun-fact-section-shade {
    padding: 100px 0px;
  }
}
.letUsHelp {
  display: flex;
  border: 1px solid rgba(51, 51, 51, 0.356);
  border-radius: 10px;
  overflow: hidden;
  width: 70%;
  margin: 0 auto 50px auto;
}
.letUsHelp .leftPart {
  flex-basis: 50%;
  background: #d43f3a;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 20px;
}

.letUsHelp h4 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
}
.letUsHelp h3 {
  color: #fff;
}
.letUsHelp p {
  color: #fff;
}
.letUsHelp .formPart {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  padding: 20px;
}
.letUsHelp .formPart .inputDiv {
  width: 100%;
  background: #fff;
  margin-bottom: 20px;
  padding: 8px 12px 8px 60px;
  border-radius: 5px;
  position: relative;
  border: 1px solid rgba(51, 51, 51, 0.356);
}
.letUsHelp .formPart .inputDiv.name::before {
  content: "\f007";
}
.letUsHelp .formPart .inputDiv.email::before {
  content: "\f0e0";
}
.letUsHelp .formPart .inputDiv.phoneNumber::before {
  content: "\f10b";
}
.letUsHelp .formPart .inputDiv.phoneNumber::before {
  content: "\f10b";
}
.letUsHelp .formPart .inputDiv.descriptionText::before {
  content: "\f044";
}
.letUsHelp .formPart .inputDiv::before {
  font-family: "FontAwesome" !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 3.5rem;
  width: 3.5rem;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  color: #333;
  font-size: 2rem;
  padding-top: 0.5rem;
  position: absolute;
  left: 0.3rem;
  top: 50% !important;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  z-index: 3;
  transform: translateY(-50%);
}
.letUsHelp .formPart .inputDiv .label {
  display: block;
  color: #333;
  text-align: left;
}
.letUsHelp .formPart .inputDiv .input {
  width: 100%;
}
.letUsHelp .formPart .inputDiv .input input {
  width: 100%;
  border: none;
  color: #333;
  padding: 0 10px;
}
.letUsHelp .formPart .inputDiv .input input:focus {
  outline: 0;
}

@media screen and (max-width: 768px) {
  .letUsHelp {
    padding: 10px 10px;
    width: 100%;
    flex-direction: column;
  }

  .letUsHelp .formPart {
    flex-direction: column;
    margin-bottom: 20px;
    padding: 20px 0 0 0;
  }
  .letUsHelp .formPart .inputDiv {
    /* margin: 10px; */
  }
}

.theme-btn-s5 {
  background: #fff;
  border: 2px solid #333;
  color: #333;
}
.theme-btn-s5:hover {
  background: #d43f3a;
  border: 2px solid #fff;
  color: #fff;
  transform: scale(1);
}
.yellow-bar {
  background: #f5a32a;
  height: 4px;
  width: 100px;
  margin: 10px auto 0 0;
}

.whatWeOfferSection {
  padding: 50px 0;
}

.whatWeOfferSection .whatWeOffer .header {
  width: 70%;
  margin: 0 auto 15px auto;
  text-align: center;
}
.whatWeOfferSection .whatWeOffer .offers {
}
.whatWeOfferSection .whatWeOffer .offers .offer {
  padding: 20px 20px;
  position: relative;
  background: #fff;
  height: 355px;
  margin-bottom: 20px;
}
.whatWeOfferSection .whatWeOffer .offers .offer::after,
.whatWeOfferSection .whatWeOffer .offers .offer::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: #d43f3a;
  transition: all 0.5s;
  z-index: -1;
}

.whatWeOfferSection .whatWeOffer .offers .offer::before {
  top: -2px;
  right: -2px;
}
.whatWeOfferSection .whatWeOffer .offers .offer::after {
  bottom: -2px;
  left: -2px;
}
.whatWeOfferSection .whatWeOffer .offers .offer:hover::after,
.whatWeOfferSection .whatWeOffer .offers .offer:hover::before {
  width: 101%;
  height: 101%;
}
.whatWeOfferSection .whatWeOffer .offers .offer .image {
  margin-bottom: 15px;
  overflow: hidden;
  height: 190px;
}
.whatWeOfferSection .whatWeOffer .offers .offer .image img {
  transition: all 0.5s;
  width: 100%;
}
.whatWeOfferSection .whatWeOffer .offers .offer .text {
}
.whatWeOfferSection .whatWeOffer .offers .offer .text h3,
.whatWeOfferSection .whatWeOffer .offers .offer .text h6 {
  margin: 0;
  color: #58585a;
  transition: all 0.3s;
}
.whatWeOfferSection .whatWeOffer .quots {
  padding: 30px;
  border: 2px solid #d43f3a;
  position: relative;
  margin-top: 15px;
}
.whatWeOfferSection .whatWeOffer .quots::before {
  color: #d43f3a;
  height: 60px;
  width: 60px;
  content: "\201C";
  font-size: 240px;
  position: absolute;
  left: -55px;
  top: -55px;
  font-family: "karla-bold", sans-serif;
}
.whatWeOfferSection .whatWeOffer .quots h3 {
  font-weight: 300;
  margin-bottom: 20px;
  color: #58585a;
}
.whatWeOfferSection .whatWeOffer .quots .name {
  display: inline-block;
  padding-right: 20px;
  border-bottom: 3px solid #d43f3a;
  margin-top: 20px;
}
.whatWeOfferSection .whatWeOffer .offers .offer .text h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
}
.whatWeOfferSection .whatWeOffer .offers .offer .text h6 {
  margin: 0 0 10px 0;
  color: #d43f3a;
}
.whatWeOfferSection .whatWeOffer .offers .offer:hover .text h3 {
  color: #d43f3a;
}
.whatWeOfferSection .whatWeOffer .offers .offer:hover .image img {
  transform: scale(1.2);
}
@media (max-width: 991px) {
  .whatWeOfferSection .whatWeOffer .header {
    width: 100%;
  }
  .whatWeOfferSection .whatWeOffer .offers .offer {
    height: unset;
    padding: 10px 10px;
    margin-bottom: 10px;
  }
}

.navCard {
  width: 350px;
  margin: 30px 0;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  border: 1px solid #eee;
  background: rgba(255, 255, 255, 0.5);
}
.navCard .header::before {
  content: " ";
  width: 250%;
  height: 170px;
  background: #d43f3a;
  position: absolute;
  top: 0;
  left: -75%;
  opacity: 0;
  z-index: -1;
  transition: all 0.5s;
}
.navCard * {
  margin: 0;
}
.navCard .header {
  padding: 30px 30px 15px 30px;
  background: rgba(255, 255, 255, 0.7);
  z-index: 3;
  position: relative;
  transition: all 0.5s;
}
.navCard .header * {
  color: #58585a;
}
.navCard .header .navPercentage {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0 0 0;
}
.navCard .header h5,
.navCard .header h2,
.navCard .header .navPercentage {
  z-index: 11;
}
.navCard .header .navPercentage span {
  font-size: 20px;
}
.navCard .header .navPercentage .theme-btn {
  background: transparent;
  border: 2px solid #d43f3a;
  padding: 7px 15px;
  cursor: pointer;
}

.navCard .middle {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px;

  z-index: 1;
}
.navCard .middle .part {
  flex-basis: 47%;
}
.navCard .middle .part h3 {
  color: #58585a;
}
.navCard .middle .part:nth-child(1),
.navCard .middle .part:nth-child(1) {
  margin-bottom: 30px;
}
.navCard .footer {
  padding: 15px 30px;
  text-align: center;
  background: #d43f3a;
  transition: all 0.5s;
}
.navCard .footer:hover {
  background: #58585a;
}
.navCard .footer p {
  color: #fff;
}
.navCard:hover .header {
  background: transparent;
}
.navCard:hover .header * {
  color: #fff;
}
.navCard:hover .header .navPercentage .theme-btn {
  border: 2px solid #fff;
}
.navCard:hover .header .navPercentage .theme-btn:hover {
  border: 2px solid #58585a;
  background: #58585a;
  color: #fff;
}
.navCard:hover .header::before {
  opacity: 1;
  height: 195px;
  border-radius: 0 0 50% 50%;
}

/* Nav Search Bar  */
.nav-search {
  width: 245px;
  position: absolute;
  top: 0;
  margin: 23px 218px 0px;
}

.input-search {
  border-radius: 18px;
}

.grayCurveForCover {
  width: 100%;
  height: 300px;
  background: #58585a;
  position: absolute;
  top: 0;
  z-index: -1;
}
.grayCurveForCover .reverseCurveBottom {
  height: 45px;
  background-image: url("../images/reverseCurveBottom.png");
  background-size: 100% 100%;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.latestNAVBox {
  box-shadow: 0 0 16px 0 rgba(51, 51, 51, 0.1);
  padding: 15px 30px;
  border-radius: 10px;
  margin: 30px 0;
  background: #fff;
}
.latestNAVBox .header {
  border-bottom: solid 1px #ecf5f8;
}
.latestNAVBox .middle {
  border-bottom: solid 1px #c7d0d3;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  padding: 15px 0;
}
.latestNAVBox .middle .part {
  flex: 1;
  padding: 10px;
}
.latestNAVBox .middle .part p {
  margin-bottom: 0;
}
.latestNAVBox .middle .part:not(:last-child) {
  border-right: solid 1px #c7d0d3;
}
.latestNAVBox .middle .part:last-child {
  text-align: right;
  align-self: center;
}
.latestNAVBox .bottom {
  display: flex;
  padding: 15px 0;
}
.latestNAVBox .bottom .part_1,
.latestNAVBox .bottom .part_3 {
  flex-basis: 30%;
}
.latestNAVBox .bottom .part_2 {
  flex-basis: 60%;
}
.latestNAVBox .bottom .part {
  padding: 10px;
}
.latestNAVBox .bottom .part:not(:last-child) {
  border-right: solid 1px #c7d0d3;
}
.menu_detai_content {
  display: none;
  /* opacity: .4; */
  animation: bottomToUp 0.4s ease-in-out forwards;
}
.menu_detai_content1 {
  display: none;
  /* opacity: .4; */
  animation: bottomToUp 0.4s ease-in-out forwards;
}
.menu_detai_content2 {
  display: none;
  /* opacity: .4; */
  animation: bottomToUp 0.4s ease-in-out forwards;
}

.menu_detai_content3 {
  display: none;
  /* opacity: .4; */
  animation: bottomToUp 0.4s ease-in-out forwards;
}

@keyframes bottomToUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes rightToLeft {
  from {
    transform: translateX(-300px);
    opacity: 0.4;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.hero-slider .bannerNav {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  height: 50px;
  z-index: 100;
}
.hero-slider .bannerNav .date {
  background-color: #d43f3a;
  z-index: 100;
  color: #fff;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 15px;
}
.hero-slider .scroller {
  /* position: absolute; width: auto; right: 0; bottom: 0;  */
  background-color: #d43f3ab2;
  z-index: 100;
  color: #fff;
  padding-right: 100px;
  flex: 1;
}
.hero-slider .scroller > .item {
  float: left;
  margin: 15px;
}
.hero-slider .scroller:after {
  display: block;
  clear: both;
  content: "";
}
.hero-slider .MarqueeFull {
  /* width: 100%; */
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  .hero-slider .bannerNav {
    height: 100px;
    background-color: #d43f3ab2;
  }
  .hero-slider .bannerNav .date {
    flex-basis: 35%;
    height: 100%;
  }
  .hero-slider .scroller {
    padding-right: 0px;
    display: block;
    align-self: center;
    background: none;
  }
  .hero-slider .scroller > .item {
    display: inline-block;
    float: unset;
    margin: 10px;
  }
  .hero-slider .scroller:after {
    display: block;
    clear: both;
    content: "";
  }
  .hero-slider .MarqueeFull {
    /* width: 100%; */
    padding-right: 0;
  }
}

.aboutFundSection {
  margin-top: 50px;
}
.stakeHolderSection {
  margin-top: 30px;
  text-align: center;
}
.fundPerformanceTable {
  margin-top: 30px;
  text-align: center;
}
.first_income_unit_fund {
  margin-top: 20px;
  /*overflow-x: auto;*/
  /* margin-left: 2px; */
}
.fundPerformanceGraph {
  margin-top: 20px;
  text-align: center;
}
.fundPerformanceGraph_div {
  width: 70%;
  margin: 0 auto;
}
.nav-tabs {
  background-color: #d43f3a;
  display: flex;
  justify-content: space-between;
}
.nav-tabs li {
  flex: 1;
}
.nav-tabs > li > a {
  color: #fff;
  background: transparent;
  height: 100%;
  width: 100%;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
  color: #fff;
  cursor: default;
  background-color: transparent;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
  color: #fff;
  cursor: default;
  background-color: transparent;
  border: none;
  border-bottom-color: transparent;
}
.nav > li > a:focus,
.nav > li > a:hover {
  text-decoration: none;
  background-color: #666;
  cursor: pointer;
  border: none;
}
.nav-tabs li:not(:last-child) {
  border-right: 1px solid #fff;
}
.nav-tabs li.active {
  background: #333;
  color: #fff;
  border-radius: none;
}
@media screen and (max-width: 768px) {
    .first_income_unit_fund {
        overflow-x: auto;
    }
  .nav-tabs {
    flex-wrap: wrap;
  }
  .nav-tabs li {
    border-bottom: 1px solid #fff;
  }
}
.fundPageMultiTabCOntent {
  padding: 0 00px 30px 00px;
}

.tableWithoutBorder {
  /* padding: 20px; */
}
.tableWithoutBorder table tbody tr {
  border-top: 1px solid #999;
}
.tableWithoutBorder table thead tr th,
.tableWithoutBorder table tbody tr td {
  padding: 5px;
}
.tableWithoutBorder table thead tr th:first-child {
  width: 30%;
}

.width_380 {
  width: 380px;
  margin: 0 auto;
}
.aboutFundSection {
}
.aboutFundSection .aboutTheFund {
  /* background-color: #000; */

  background-position: left bottom;
  padding: 20px;
  height: 700px;
  background-size: cover;
}
.aboutFundSection .aboutTheFund .heading {
}
.aboutFundSection .aboutTheFund .heading h2 {
}
.aboutFundSection .aboutTheFund .description p {
  color: #fff;
}
.aboutFundSection .stakeholders {
  background-color: #333;
  padding: 20px;
  height: 700px;
}

.aboutFundSection .stakeholders .img {
}
.aboutFundSection .stakeholders .img img {
  width: 100%;
}
.aboutFundSection .stakeholders .heading {
}
.aboutFundSection .stakeholders .heading h2 {
  color: #fff;
}
.aboutFundSection .stakeholders .description {
  margin-bottom: 15px;
}
.aboutFundSection .stakeholders .description p {
  color: #fff;
  /* line-height: 1.2; */
}
.MarqueeFullDiv {
  display: flex;
  justify-content: center;
}

.theme-btn-2 {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 100px;
  color: #d43f3a;
  border: 2px solid #d43f3a;
  transition: all 0.4s;
}
.theme-btn-2:hover {
  background-color: #d43f3a;
  color: #fff;
}

@keyframes bottomToTopTabContent {
  from {
    transform: translateY(25px);
  }
  to {
    transform: translateY(0);
  }
}
.fade.in {
  animation: bottomToTopTabContent .3s ease-in-out forwards;
}

.MultiCarousel { float: left; overflow: hidden; padding: 15px; width: 100%; position:relative; }
    .MultiCarousel .MultiCarousel-inner { transition: 1s ease all; float: left; }
        .MultiCarousel .MultiCarousel-inner .item { float: left;}
        .MultiCarousel .MultiCarousel-inner .item > div { text-align: center; padding:10px; margin:10px; background:#f1f1f1; color:#666;}
    .MultiCarousel .leftLst, .MultiCarousel .rightLst { position:absolute; border-radius:50%;top:calc(50% - 20px); }
    .MultiCarousel .leftLst { left:0; }
    .MultiCarousel .rightLst { right:0; }

        .MultiCarousel .leftLst.over, .MultiCarousel .rightLst.over { pointer-events: none; background:#ccc; }

.faqCarousel {
  text-align: center;
  margin-top: -70px;
  padding-bottom: 0;
}
.faq-slider.nav-tabs {
  background: none;
  border: none;
}
.faq-slider.nav-tabs .item.active{
  background: none;
}
.faq-slider.nav-tabs .item{
  padding: 20px;
  border: none;
}
.faq-slider.nav-tabs .item a{
  border: #d43f3a solid 1px;
  border-radius: 5px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  background: #fff;
}
.faq-slider.nav-tabs .item.active a{
  background: #fff;
}
.faq-slider.nav-tabs .item a div img{
  display: inline-block;
  margin: 20px 0;
  width: 80px;
  filter: invert(30%) contrast(.7);
}
.faq-slider.nav-tabs .item a div h5{
  color: #555;
}
.faq-slider.nav-tabs .item.active a div img{
  filter: invert(100%) sepia(55%) saturate(7772%) contrast(0.3) brightness(0.9);
}
.faq-slider.nav-tabs .item.active a div h5{
  color: #d43f3a;
}
.faq-slider.nav-tabs {
  /* display: block; */
  justify-content: unset;
}
.faq-slider.nav-tabs li {
  float: left !important;
  flex: unset;
}

.faq_slider_btn.leftLst,
.faq_slider_btn.rightLst {
  padding: 5px;
  position: relative;
  width: 30px;
  height: 30px;
  margin: 10px;
  background: #d43f3a;
  border: none;
  outline: none;
}
.faq_slider_btn img {
  height: 100%;
  vertical-align: unset;
}

.onlyMobileMenu {
  display: none;
}
@media screen and (max-width: 768px) {
  .onlyMobileMenu {
    display: block;
    padding: 10px 15px 10px 35px;
  }
  .onlyMobileMenu .form {
    display: flex;
  }
  .onlyMobileMenu .form .btn{
    background: #d43f3a;
    color: #fff;
    border-radius: 0 3px 3px 0;
  }
  .aboutFundSection .mobile-gap {
    margin-bottom: 30px;
  }
  .aboutFundSection .stakeholders {
    height: auto;
  }
}

/* New CSS */
.fixedFundBenefits {
  /* margin: auto; */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.fixedFundBenefit {
  display: flex;
  justify-content: center;
  height: auto;
  margin-top: 10px;
}

.fixedFundBenefitCard {
  border: 1px solid #d43f3a;
  border-radius: 10px;
  max-width: 260px;
  margin: 0px;
  height: 100%;
}

.fixedFundBenefitCardBanner {
  border-radius: 10px;
  -moz-box-shadow: 0 5px 5px rgba(182, 182, 182, 0.75);
  -webkit-box-shadow: 0 5px 5px rgba(182, 182, 182, 0.75);
  box-shadow: 0 5px 5px rgba(182, 182, 182, 0.75);
  height: 150px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 2;
}

.fixedFundBenefitCardHeader {
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  padding: 10px;
  min-height: 150px;
}

.fixedFundBenefitCardContent {
  padding-right: 20px;
  padding-bottom: 10px;
}

.fixedFundBenefitCardContent > ul {
  list-style-type: disc;
  padding-left: 30px;
}

.fixedFundBenefitCardContent > ul > li {
  list-style-position: outside;
}

.fundPageMultiTabHeader {
  text-align: center;
  background-color: #DFDFDE;
  font-weight: 700;
}

.fundPageMultiTabHeader > li > a {
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fundPageMultiTabHeaderItem > a:hover {
  background-color: #d43f3a !important;
  color: white;
  font-weight: 700;
}

.fundPageMultiTabHeader li.active {
  background-color: #d43f3a;
  color: white;
  font-weight: 700;
}

.fixedFundTransparencies {
  margin-top: 30px;
  font-size: 23px;
  font-weight: 600;
  text-align: justify;
}

.fixedFundTransparencies > ul {
  list-style-type: disc;
  padding-left: 20px;
}

.fixedFundTransparencies > ul > li {
  list-style-position: outside;
  margin-top: 10px;
}

.fixedFundRiskMeter {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.fixedFundRiskMeterRiskType {
  display: flex;
  justify-content: space-around;
  padding-left: 10%;
  padding-right: 10%;
  width: 100%;
}

.fixedFundRiskMeterRiskType > div {
  border: solid 2px #d43f3a;
  width: 200px;
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  margin-top: 50px;
  /* margin-bottom: 50px; */
}

.fixedFundRiskMeterMeter {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

.fixedFundPageDescription {
  color: white;
  font-size: 40px;
  max-width:400px;
  text-align: center;
}

.fixedFundPageTitle {
  color: white!important;
  font-size: 50px;
  max-width: 400px;
}

.aboutFixedIncomeFundDescription {
  color: black;
  font-size: 18px;
  font-weight: 600;
  text-align: justify;
  padding-left: 10%;
  padding-right: 10%;
  margin-top: 50px;
  margin-bottom: 50px;
}

.fixedFundPageIntro {
  display: flex;
  justify-content: space-between;
  color: white;
  margin-top: 55px;
}

.fixedFundLinks {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 60px;
}

.fixedFundLinks > a {
  font-size: 20px;
  text-align: center;
  border-radius: 5px;
  min-width: 170px;
  margin: 10px;
}

#sfif-page-title::before {
  background: none;
}

@media screen and (max-width: 992px) {
  .fixedFundPageDescription {
    color: white;
    font-size: 20px;
  }

  .fixedFundPageTitle {
    color: white;
    font-size: 40px;
    font-weight: 900;
    max-width: 250px;
  }

  .fixedFundLinks {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .fixedFundLinks > a {
    font-size: 14px;
    min-width: 120px;
  }

  .fixedFundBenefitCardHeader {
    font-weight: 600;
    font-size: 24px;
    text-align: center;
    padding: 10px;
    min-height: unset;
  }

  .aboutFixedIncomeFundDescription {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 30px;
  }


  .fixedFundBenefitCardContent > ul > li {
    font-size: 14px;
  }

  .fixedFundBenefit {
    margin-top: 20px;
  }

  .fixedFundBenefitCard {
    max-width: 390px;
    /* min-width: 390px; */
  }

  .fixedFundBenefitCardBanner {
    height: 185px;
  }

  .fixedFundPageIntro {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .fixedFundTransparencies {
    font-size: 17px;
  }

  #sfif-page-title .container {
    float: left;
    margin-left: 10px;
  }

  .fixedFundRiskMeterRiskType > div {
    border: solid 2px #d43f3a;
    width: 200px;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    margin: 5px;
    margin-top: 50px;
    /* margin-bottom: 50px; */
  }

  .fixedFundBenefitCardBanner {
    height: 195px;
  }
}
