/*** 

====================================================================
  Reset
====================================================================

 ***/

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}

/*** 

====================================================================
  Global Settings
====================================================================

 ***/

body {
  font-size: 17px;
  color: #848484;
  line-height: 32px;
  font-weight: 400;
  background: #ffffff;
  font-family: "Roboto", sans-serif;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
    padding: 0px 15px;
  }
}

.large-container {
  max-width: 1570px;
  padding: 0px 15px;
  margin: 0 auto;
}

.container-fluid {
  padding: 0px;
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

.small-container {
  max-width: 680px;
  margin: 0 auto;
}

.boxed_wrapper {
  position: relative;
  overflow-x: hidden;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
}

a {
  text-decoration: none;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

a:hover {
  text-decoration: none;
  outline: none;
}

input,
button,
select,
textarea {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

input {
  transition: all 500ms ease;
}

button:focus,
input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
  transition: all 500ms ease;
}

p {
  position: relative;
  font-size: 17px;
  line-height: 32px;
  font-family: "Roboto", sans-serif;
  color: #848484;
  margin: 0px;
  transition: all 500ms ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #0e1221;
  margin: 0px;
  transition: all 500ms ease;
}

h3 {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 30px;
  color: #3b3b3b;
  font-weight: 600;
  margin-bottom: 23px;
  z-index: 1;
}

h3 a {
  display: inline-block;
  color: #3b3b3b;
}

h3 a:hover {
}

.bg-color-1 {
  background: #f7faff !important;
}

.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  z-index: 999999;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
}

.centred {
  text-align: center;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

img.lazy-image.loaded {
  background-image: none;
}

img.lazy-image {
  background-position: center center;
  background-repeat: no-repeat;
}

figure {
  margin: 0px;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.5);
  }
}

/** button **/

.theme-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-size: 17px;
  line-height: 30px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #fff !important;
  padding: 15px 58px;
  text-align: center;
  cursor: pointer;
  border-radius: 30px;
  z-index: 1;
  transition: all 500ms ease;
}

.theme-btn.style-one {
  box-shadow: 0 10px 30px 3px rgba(99, 119, 238, 0.3);
}

.theme-btn.style-two {
  background: transparent;
}

.theme-btn.style-three {
}

.theme-btn.style-two:hover {
  color: #fff !important;
}

.theme-btn:before {
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: -70px;
  z-index: -1;
  border-bottom: 60px solid #222;
  border-right: 60px solid transparent;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.theme-btn:after {
  position: absolute;
  content: "";
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: -70px;
  z-index: -1;
  border-bottom: 60px solid #222;
  border-left: 60px solid transparent;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.theme-btn:hover::before {
  -webkit-transform: translateX(-40%);
  transform: translateX(-40%);
}

.theme-btn:hover::after {
  -webkit-transform: translateX(40%);
  transform: translateX(40%);
}

.theme-btn.style-one:before {
}

.theme-btn.style-one:after {
}

.theme-btn.style-two:before {
}

.theme-btn.style-two:after {
}

.theme-btn.style-three:before {
  background: #222;
}

.theme-btn.style-three:after {
  background: #222;
}

.pagination {
  position: relative;
  display: block;
}

.pagination li {
  display: inline-block;
  margin: 0px 6px;
}

.pagination li a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  border: 1px solid #dddddd;
  border-radius: 50%;
  text-align: center;
  color: #222;
  background: transparent;
  transition: all 500ms ease;
}

.pagination li a:hover,
.pagination li a.active {
  color: #fff;
}

.sec-pad {
  padding: 160px 0px !important;
}

.sec-pad-2 {
  padding: 100px 0px !important;
}

.scroll-top {
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  bottom: 105%;
  right: 50px;
  font-size: 24px;
  z-index: 99;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  transition: 1s ease;
  border-radius: 50%;
}

.scroll-top:hover {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}

.scroll-top.open {
  bottom: 30px;
}

.scroll-top span {
  color: #fff;
}

.sec-title {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.sec-title.text-center {
  text-align: center;
}

.sec-title p {
  position: relative;
  font-size: 18px;
  line-height: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: 3px;
}

.sec-title.text-right {
  text-align: right;
}

.sec-title h2 {
  position: relative;
  font-size: 40px;
  line-height: 60px;
  color: #3b3b3b;
  font-weight: 700;
  padding-bottom: 0px;
}

.mr-30 {
  margin: 30px 0px !important;
}

/*=============================================
=              05. Header Css            =
=============================================*/

.header-area {
  position: relative;
  z-index: 9;
}

.header-area .is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-animation: 0.95s ease-in-out 0s normal none 1 running fadeInDown;
  animation: 0.95s ease-in-out 0s normal none 1 running fadeInDown;
  z-index: 999;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.header-area .is-sticky .navigation-menu--text_white > ul > li > a {
  color: #444;
}

.header-area
  .is-sticky
  .navigation-menu--text_white
  > ul
  > li
  > a
  > span:after {
  background-color: #444;
}

.header-area .is-sticky .navigation-menu--text_white > ul > li.active > a {
  color: #000000;
}

.header-area .is-sticky .navigation-menu--text_white > ul > li:hover > a:after,
.header-area
  .is-sticky
  .navigation-menu--text_white
  > ul
  > li.active
  > a:after {
  color: #000000;
}

.header-area .is-sticky .navigation-menu--text_white > ul > li:hover > a > span,
.header-area
  .is-sticky
  .navigation-menu--text_white
  > ul
  > li.active
  > a
  > span {
  color: #000000;
}

.header-area .is-sticky .header-search-form .search-form-top .style-02 {
  background-color: transparent;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.header-area .is-sticky .header-search-form .search-form-top.style-03 {
  background-color: transparent;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.header-area
  .is-sticky
  .header-search-form
  .search-form-top.style-03
  input::-webkit-input-placeholder,
.header-area
  .is-sticky
  .header-search-form
  .search-form-top.style-03
  textarea::-webkit-input-placeholder {
  color: #333;
}

.header-area
  .is-sticky
  .header-search-form
  .search-form-top.style-03
  input::-moz-placeholder,
.header-area
  .is-sticky
  .header-search-form
  .search-form-top.style-03
  textarea::-moz-placeholder {
  color: #333;
}

.header-area
  .is-sticky
  .header-search-form
  .search-form-top.style-03
  input:-ms-input-placeholder,
.header-area
  .is-sticky
  .header-search-form
  .search-form-top.style-03
  textarea:-ms-input-placeholder {
  color: #333;
}

.header-area
  .is-sticky
  .header-search-form
  .search-form-top.style-03
  input::-ms-input-placeholder,
.header-area
  .is-sticky
  .header-search-form
  .search-form-top.style-03
  textarea::-ms-input-placeholder {
  color: #333;
}

.header-area
  .is-sticky
  .header-search-form
  .search-form-top.style-03
  input::placeholder,
.header-area
  .is-sticky
  .header-search-form
  .search-form-top.style-03
  textarea::placeholder {
  color: #333;
}

.header-area .is-sticky .header-search-form .search-form-top .search-field {
  color: #000;
}

.header-area .is-sticky .header-search-form .search-form-top .search-submit {
  color: #333;
}

.header-area .is-sticky .header__logo .dark-logo {
  display: inherit;
}

.header-area .is-sticky .header__logo .light-logo {
  display: none;
}

.header-area .is-sticky .menu-style-four .navigation-menu > ul > li > a {
  color: #333;
}

.header-area
  .is-sticky
  .menu-style-four
  .navigation-menu
  > ul
  > li:hover
  > a:after,
.header-area
  .is-sticky
  .menu-style-four
  .navigation-menu
  > ul
  > li.active
  > a:after {
  color: #333;
}

.header-area
  .is-sticky
  .menu-style-four
  .navigation-menu
  > ul
  > li:hover
  > a
  > span,
.header-area
  .is-sticky
  .menu-style-four
  .navigation-menu
  > ul
  > li.active
  > a
  > span {
  color: #333;
}

.header-area
  .is-sticky
  .menu-style-four
  .navigation-menu
  > ul
  > li:hover
  > a:before,
.header-area
  .is-sticky
  .menu-style-four
  .navigation-menu
  > ul
  > li.active
  > a:before {
  width: 100%;
  left: 0;
}

.header-area .is-sticky .header-search-form-two.white-icon a {
  color: #333;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .header-area.is-sticky.only-mobile-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-animation: 0.95s ease-in-out 0s normal none 1 running fadeInDown;
    animation: 0.95s ease-in-out 0s normal none 1 running fadeInDown;
    z-index: 999;
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .header-area.is-sticky.only-mobile-sticky .header-bottom-wrap.is-sticky {
    display: none !important;
  }
}

.header-area--absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .header-area--absolute {
    position: static;
  }
}

.header-area--absolute__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}

.header-area--default {
  border-color: #e4e8f6;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  /* logo */
}

.header__logo {
  -webkit-flex-basis: 20%;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  padding: 14px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header__logo.top-logo {
  padding: 25px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .header__logo {
    -webkit-flex-basis: 20%;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
  }
}

@media only screen and (max-width: 767px) {
  .header__logo {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
  .header__logo.top-logo {
    padding: 15px 0;
  }
}

.header__logo > a img {
  width: 160px;
}

.header__logo .dark-logo {
  display: none;
}

.header__logo .light-logo {
  display: inherit;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .header__logo .dark-logo {
    display: inherit;
  }
  .header__logo .light-logo {
    display: none;
  }
}

.header.default-menu-style .header__logo {
  -webkit-flex-basis: 23.5%;
  -ms-flex-preferred-size: 23.5%;
  flex-basis: 23.5%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 14px 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .header.default-menu-style .header__logo {
    -webkit-flex-basis: 13%;
    -ms-flex-preferred-size: 13%;
    flex-basis: 13%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .header.default-menu-style .header__logo {
    -webkit-flex-basis: 40%;
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media only screen and (max-width: 767px) {
  .header.default-menu-style .header__logo {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.header.default-menu-style .header-midle-box {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header.default-menu-style .header-right-box {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-flex-basis: 23.5%;
  -ms-flex-preferred-size: 23.5%;
  flex-basis: 23.5%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .header.default-menu-style .header-right-box {
    -webkit-flex-basis: 23%;
    -ms-flex-preferred-size: 23%;
    flex-basis: 23%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header.default-menu-style .header-right-box {
    -webkit-flex-basis: 60%;
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header.default-menu-style .header-right-box {
    -webkit-flex-basis: 60%;
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
  }
}

@media only screen and (max-width: 767px) {
  .header.default-menu-style .header-right-box {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}

.header.default-menu-style .header-right-box .header-right-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -12px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media only screen and (max-width: 767px) {
  .header.default-menu-style .header-right-box .header-right-inner {
    margin: auto;
  }
}

/*======================
    - language 
=======================*/

.language-menu {
  padding-right: 25px;
}

.language-menu > ul > li {
  position: relative;
  display: inline-block;
  line-height: 1;
  padding: 0 10px;
}

.language-menu > ul > li > a {
  padding: 0 10px;
  font-weight: 500;
  color: #333;
  text-transform: uppercase;
}

.language-menu > ul > li > a span {
  margin-left: 10px;
}

.language-menu > ul > li > a::after {
  content: "\f078";
  font-size: 8px;
  border: 0;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}

.language-menu > ul > li ul {
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  padding: 0;
  margin: 0;
  list-style-type: none;
  z-index: 102;
  -webkit-box-shadow: 0 0 37px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 37px rgba(0, 0, 0, 0.07);
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.language-menu > ul > li ul li a {
  font-weight: 500;
  color: #333;
  text-transform: uppercase;
  display: block;
  text-decoration: none;
  padding: 10px;
  border: 0;
  background: #fff;
  color: #222;
  line-height: 1;
  text-transform: uppercase;
}

.language-menu > ul > li ul li a span {
  margin-left: 10px;
}

.language-menu > ul > li ul li a img {
  width: 24px;
  height: auto;
}

.language-menu > ul > li ul li a:hover {
  background: #eeeeee;
}

.language-menu > ul > li:hover ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
}

.header-right {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header-right-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -12px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0 12px;
}

@media only screen and (max-width: 767px) {
  .header-right-inner {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px;
    -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    background-color: #ffffff;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media only screen and (max-width: 767px) {
  .header-right-inner.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    z-index: 999;
  }
}

@media only screen and (max-width: 767px) {
  .header-right-box .header-right-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media only screen and (max-width: 575px) {
  .header-right-box .header-right-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.header-top-info-slider-werap {
  overflow: hidden;
  max-width: 770px;
  width: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-top-info-slider-werap {
    max-width: 540px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-top-info-slider-werap {
    max-width: 280px;
  }
}

@media only screen and (max-width: 767px) {
  .header-top-info-slider-werap {
    max-width: 100%;
  }
}

.header-top-info-slider-werap {
  padding: 0 12px;
}

@media only screen and (max-width: 767px) {
  .header-top-info-slider-werap {
    padding: 0 0px;
  }
}

.header-top-info-inner .info-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-left: 1px solid #ddd;
  padding-left: 19px;
}

.header-top-info-inner .info-item .info-icon {
  width: 41px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 30px;
  line-height: 1;
  color: #d2a98e;
}

.header-top-info-inner .info-item .info-content {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.header-top-info-inner .info-item .info-content .info-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 6px;
}

.header-top-info-inner .info-item .info-content .info-sub-title {
  font-size: 14px;
}

@media only screen and (max-width: 767px) {
  .header-top-info-inner .info-item {
    padding-left: 0px;
    margin-top: 20px;
  }
}

.header-top-info-inner.default-color .info-item .info-icon {
  color: #086ad8;
}

.top-info-slider__container {
  cursor: w-resize;
}

.top-info-slider__container .swiper-slide-active .info-item {
  border-left: none;
}

.header-social-networks.style-icons a {
  display: inline-block;
  padding: 0 10px;
  font-size: 18px;
  margin-top: 10px;
}

.header-bottom-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-bottom-left-wrap {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.header-search-form {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.header-search-form .search-form-top {
  position: relative;
  background-color: rgba(0, 47, 166, 0.3);
}

.header-search-form .search-form-top .search-field {
  width: 270px;
  border-radius: 0;
  border: 0 !important;
  background: 0 0 !important;
  min-height: 60px;
  padding-right: 50px;
  padding-left: 10px;
  color: #fff;
}

.header-search-form .search-form-top input::-webkit-input-placeholder,
.header-search-form .search-form-top textarea::-webkit-input-placeholder {
  color: #333;
}

.header-search-form .search-form-top input::-moz-placeholder,
.header-search-form .search-form-top textarea::-moz-placeholder {
  color: #333;
}

.header-search-form .search-form-top input:-ms-input-placeholder,
.header-search-form .search-form-top textarea:-ms-input-placeholder {
  color: #333;
}

.header-search-form .search-form-top input::-ms-input-placeholder,
.header-search-form .search-form-top textarea::-ms-input-placeholder {
  color: #333;
}

.header-search-form .search-form-top input::placeholder,
.header-search-form .search-form-top textarea::placeholder {
  color: #333;
}

.header-search-form .search-form-top .search-submit {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  font-size: 18px;
  background: 0 0;
  width: 48px;
  height: 48px;
  line-height: 50px;
  padding: 0;
  border: 0;
  color: #ffffff;
}

.header-search-form .search-form-top.style-02 {
  border-left: 1px solid #ededed;
  border-right: 1px solid #ededed;
}

.header-search-form .search-form-top.style-02 .search-field {
  width: 232px;
  border-radius: 0;
  background: #fff !important;
  border: 0 !important;
  min-height: 60px;
  color: #333;
}

.header-search-form .search-form-top.style-02 .search-submit {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  font-size: 18px;
  background: 0 0;
  width: 48px;
  height: 48px;
  line-height: 50px;
  padding: 0;
  border: 0;
  color: #000000;
}

.header-search-form .search-form-top.style-03 input::-webkit-input-placeholder {
  color: #ddd;
}

.header-search-form .search-form-top.style-03 input::-moz-placeholder {
  color: #ddd;
}

.header-search-form .search-form-top.style-03 input:-ms-input-placeholder {
  color: #ddd;
}

.header-search-form .search-form-top.style-03 input::-ms-input-placeholder {
  color: #ddd;
}

.header-search-form .search-form-top.style-03 input::placeholder {
  color: #ddd;
}

.header-search-form.default-search {
  height: 100%;
}

.header-search-form.default-search .search-form-top {
  background: transparent;
  border-left: 1px solid #eee;
  margin-right: -15px;
}

@media only screen and (max-width: 575px) {
  .header-search-form.default-search .search-form-top {
    margin-top: 15px;
    background: #eee;
  }
}

.header-search-form.default-search .search-form-top .search-field {
  max-width: 225px;
  color: #333;
  min-height: 80px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .header-search-form.default-search .search-form-top .search-field {
    max-width: 160px;
  }
}

@media only screen and (max-width: 767px) {
  .header-search-form.default-search .search-form-top .search-field {
    min-height: 40px;
  }
}

.header-search-form.default-search .search-form-top .search-submit {
  color: #000000;
}

.header-search-form-two {
  padding-left: 24px;
  display: block;
}

.header-search-form-two a {
  line-height: 0;
  font-size: 18px;
}

.header-search-form-two a:hover {
  -webkit-transform: scale(1.15, 1.15);
  -ms-transform: scale(1.15, 1.15);
  transform: scale(1.15, 1.15);
}

.header-search-form-two.white-icon a {
  color: #ffffff;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .header-search-form-two.white-icon a {
    color: #333;
  }
}

.top-bar-left {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.top-bar-left .top-bar-text {
  font-size: 14px;
  line-height: 1.78;
}

.top-bar-left .top-bar-text .font-medium {
  font-weight: 500;
}

.top-bar-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
}

.top-bar-wrap .top-bar-right .top-bar-info .info-item {
  display: inline-block;
  margin-left: 15px;
  font-size: 14px;
}

.top-bar-wrap .top-bar-right .top-bar-info .info-item:first-child {
  margin-left: 0;
}

.top-bar-wrap .top-bar-right .top-bar-info .info-item .info-icon {
  margin-right: 5px;
  font-size: 14px;
}

.top-message {
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.78;
}

.top-message a {
  color: #002fa6;
  font-weight: 500;
}

.top-message a:hover {
  color: #d2a98e;
}

/*============================== 
    - Navigation Menu Css
===============================*/

.navigation-menu > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.navigation-menu > ul > li {
  margin: 0 24px;
}

@media only screen and (min-width: 1500px) and (max-width: 1599px) {
  .navigation-menu > ul > li {
    margin: 0 22px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .navigation-menu > ul > li {
    margin: 0 15px;
  }
}

.navigation-menu > ul > li > a {
  display: block;
  color: #000000;
  padding: 21px 2px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.18;
  -webkit-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
}

.navigation-menu > ul > li > a:before {
  content: "";
  width: 0;
  height: 3px;
  bottom: 0;
  position: absolute;
  left: 0;
  background-color: #086ad8;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navigation-menu > ul > li > a span {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navigation-menu > ul > li.has-children > a {
  position: relative;
}

.navigation-menu > ul > li.has-children > a:after {
  position: static;
  margin-left: 5px;
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  font-size: 14px;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navigation-menu > ul > li.has-children--multilevel-submenu {
  position: relative;
}

.navigation-menu > ul > li.has-children:hover .megamenu {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.navigation-menu > ul > li.has-children:hover .megamenu--home-variation__item {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.navigation-menu > ul > li.has-children:hover > .submenu {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.navigation-menu > ul > li:hover > a:after,
.navigation-menu > ul > li.active > a:after {
  color: #086ad8;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navigation-menu > ul > li:hover > a span,
.navigation-menu > ul > li.active > a span {
  color: #086ad8;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navigation-menu > ul > li:hover > a:before,
.navigation-menu > ul > li.active > a:before {
  width: 100%;
  left: 0;
}

.navigation-menu.primary--menu > ul > li > a {
  padding: 31px 2px;
}

.navigation-menu--text_white > ul > li > a {
  color: rgba(255, 255, 255, 0.7);
}

.navigation-menu--text_white > ul > li > a:before {
  background-color: #ffffff;
}

.navigation-menu--text_white > ul > li.active > a {
  color: #ffffff;
}

.navigation-menu--text_white > ul > li:hover > a:after,
.navigation-menu--text_white > ul > li.active > a:after {
  color: #ffffff;
}

.navigation-menu--text_white > ul > li:hover > a > span,
.navigation-menu--text_white > ul > li.active > a > span {
  color: #ffffff;
}

.header-bottom-left-wrap .navigation-menu > ul > li:first-child {
  margin: 0 24px 0 0;
}

/*===================================
    - Multilevel Submenu Css
====================================*/

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-box-shadow: 0 2px 29px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 29px rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid #086ad8;
  background-color: #ffffff;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
  visibility: hidden;
  opacity: 0;
  min-width: 240px;
  padding: 20px 0;
  z-index: 9;
  list-style: none;
}

.submenu > li {
  position: relative;
}

.submenu > li > a {
  display: block;
  padding: 5px 30px;
  color: #ababab;
  font-weight: 400;
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}

.submenu > li > a > span {
  position: relative;
}

.submenu > li > a > span:after {
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  background-color: #086ad8;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.submenu > li > a:hover {
  color: #086ad8;
}

.submenu > li > a:hover > span:after {
  width: 100%;
  left: 0;
  right: auto;
}

.submenu > li:hover > .submenu {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  z-index: 9;
}

.submenu > li.active > a {
  color: #086ad8;
}

.submenu > li.has-children > a {
  position: relative;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.submenu > li.has-children > a:after {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Pro";
  content: "\f105";
  font-size: 14px;
  vertical-align: middle;
  color: #ababab;
}

.submenu > li.has-children > a:hover:after {
  color: #086ad8;
}

.submenu > li.has-children.active > a {
  color: #086ad8;
}

.submenu .submenu {
  top: 0px;
  left: 100%;
  right: auto;
}

.submenu .submenu.left {
  right: 100%;
  left: auto;
}

.submenu .submenu .submenu {
  top: 0;
  left: 100%;
  right: auto;
}

.submenu .submenu .submenu.left {
  right: 100%;
  left: auto;
}

.submenu .submenu .submenu .submenu {
  top: 0;
  left: 100%;
  right: auto;
}

.submenu .submenu .submenu .submenu.left {
  right: 100%;
  left: auto;
}

.submenu .submenu .submenu .submenu .submenu {
  top: 0;
  left: 100%;
  right: auto;
}

.submenu .submenu .submenu .submenu .submenu.left {
  right: 100%;
  left: auto;
}

.menu-style-three .navigation-menu > ul > li,
.menu-style-four .navigation-menu > ul > li {
  padding-left: 24px;
  padding-right: 24px;
  margin: 0;
  list-style: none;
}

@media only screen and (min-width: 1500px) and (max-width: 1599px) {
  .menu-style-three .navigation-menu > ul > li,
  .menu-style-four .navigation-menu > ul > li {
    padding-left: 22px;
    padding-right: 22px;
  }
}

.menu-style-three .navigation-menu > ul > li:hover > a:before,
.menu-style-three .navigation-menu > ul > li.active > a:before,
.menu-style-four .navigation-menu > ul > li:hover > a:before,
.menu-style-four .navigation-menu > ul > li.active > a:before {
  width: 0%;
  left: 0;
}

.menu-style-three .submenu.left,
.menu-style-four .submenu.left {
  left: -100px;
}

.menu-style-three .submenu.left .submenu.left,
.menu-style-four .submenu.left .submenu.left {
  right: 100%;
  left: auto;
}

.menu-style-four .navigation-menu > ul > li > a {
  color: #ffffff;
}

.menu-style-four .navigation-menu > ul > li > a:before {
  content: "";
  width: 0;
  height: 3px;
  bottom: 0;
  position: absolute;
  left: 0;
  background-color: #d2a98e;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.menu-style-four .navigation-menu > ul > li:hover > a:after,
.menu-style-four .navigation-menu > ul > li.active > a:after {
  color: #ffffff;
}

.menu-style-four .navigation-menu > ul > li:hover > a > span,
.menu-style-four .navigation-menu > ul > li.active > a > span {
  color: #ffffff;
}

.menu-style-four .navigation-menu > ul > li:hover > a:before,
.menu-style-four .navigation-menu > ul > li.active > a:before {
  width: 100%;
  left: 0;
}

/* Mobile Mavigation icon */

.mobile-navigation-icon {
  width: 24px;
  height: 25px;
  position: relative;
  cursor: pointer;
  display: inline-block;
  margin-left: 30px;
}

.mobile-navigation-icon:hover i {
  background-color: #086ad8;
}

.mobile-navigation-icon:hover i:before {
  width: 80%;
  background-color: #086ad8;
}

.mobile-navigation-icon:hover i:after {
  background-color: #086ad8;
  width: 60%;
}

.mobile-navigation-icon i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: #333;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-navigation-icon i:before {
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  content: "";
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-navigation-icon i:after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  content: "";
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mobile-navigation-icon.white-md-icon i {
    background-color: #fff;
  }
  .mobile-navigation-icon.white-md-icon i:before {
    background-color: #fff;
  }
  .mobile-navigation-icon.white-md-icon i:after {
    background-color: #fff;
  }
  .mobile-navigation-icon.white-md-icon:hover i {
    background-color: #086ad8;
  }
  .mobile-navigation-icon.white-md-icon:hover i:before {
    width: 80%;
    background-color: #086ad8;
  }
  .mobile-navigation-icon.white-md-icon:hover i:after {
    background-color: #086ad8;
    width: 60%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .is-sticky .white-md-icon i {
    background-color: #333;
  }
  .is-sticky .white-md-icon i:before {
    background-color: #333;
  }
  .is-sticky .white-md-icon i:after {
    background-color: #333;
  }
}

.page-open-off-sidebar:hover i {
  width: 100%;
}

.page-open-off-sidebar:hover i:before {
  width: 100%;
}

.page-open-off-sidebar:hover i:after {
  width: 100%;
}

.page-open-off-sidebar i {
  width: 100%;
  background-color: #333;
}

.page-open-off-sidebar i:before {
  width: 70%;
  background-color: #333;
}

.page-open-off-sidebar i:after {
  width: 70%;
  background-color: #333;
}

.hidden-icons-menu {
  margin-left: 15px;
}

.hidden-icons-menu a {
  color: #6d70a6;
  font-size: 20px;
}

.hidden-icons-menu a:hover {
  color: #086ad8;
}

/*================================ 
    - Mobile Menu Overlay Css
==================================*/

.mobile-menu-overlay,
.page-oppen-off-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #333333;
  overflow: auto;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  cursor: url(../images/icons/light-close.png) 16 16, pointer;
  visibility: hidden;
  opacity: 0;
}

.mobile-menu-overlay__inner,
.page-oppen-off-sidebar__inner {
  -webkit-transform: translateX(120%);
  -ms-transform: translateX(120%);
  transform: translateX(120%);
  width: 400px;
  height: 100%;
  float: right;
  cursor: default;
  background: #086ad8;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow-y: auto;
}

@media only screen and (max-width: 479px) {
  .mobile-menu-overlay__inner,
  .page-oppen-off-sidebar__inner {
    width: 300px;
  }
}

.mobile-menu-overlay.active,
.page-oppen-off-sidebar.active {
  visibility: visible;
  opacity: 1;
}

.mobile-menu-overlay.active .mobile-menu-overlay__inner,
.page-oppen-off-sidebar.active .mobile-menu-overlay__inner {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu-overlay__header,
.page-oppen-off-sidebar__header {
  background-color: #ffffff;
  padding: 15px 0;
}

.mobile-menu-overlay__header .mobile-navigation-close-icon,
.page-oppen-off-sidebar__header .mobile-navigation-close-icon {
  position: relative;
  cursor: pointer;
  height: 40px;
  width: 40px;
  line-height: 40px;
  display: inline-block;
}

.mobile-menu-overlay__header .mobile-navigation-close-icon:before,
.page-oppen-off-sidebar__header .mobile-navigation-close-icon:before {
  position: absolute;
  top: 23px;
  left: 8px;
  content: "";
  width: 24px;
  height: 3px;
  background: #333333;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-menu-overlay__header .mobile-navigation-close-icon:after,
.page-oppen-off-sidebar__header .mobile-navigation-close-icon:after {
  position: absolute;
  top: 23px;
  left: 8px;
  content: "";
  width: 24px;
  height: 3px;
  background: #333333;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-menu-overlay__header .mobile-navigation-close-icon:hover,
.page-oppen-off-sidebar__header .mobile-navigation-close-icon:hover {
  color: #086ad8;
}

.mobile-menu-overlay__header .mobile-navigation-close-icon:hover:before,
.mobile-menu-overlay__header .mobile-navigation-close-icon:hover:after,
.page-oppen-off-sidebar__header .mobile-navigation-close-icon:hover:before,
.page-oppen-off-sidebar__header .mobile-navigation-close-icon:hover:after {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.mobile-menu-overlay__body,
.page-oppen-off-sidebar__body {
  padding: 20px 40px 100px;
}

.mobile-menu-overlay__body .offcanvas-navigation,
.page-oppen-off-sidebar__body .offcanvas-navigation {
  /* onepage style */
}

.mobile-menu-overlay__body .offcanvas-navigation > ul > li,
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu-overlay__body .offcanvas-navigation > ul > li > a,
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li > a {
  display: block;
  color: #ffffff;
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-menu-overlay__body .offcanvas-navigation > ul > li > a:hover,
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li > a:hover {
  color: #ffffff;
}

.mobile-menu-overlay__body .offcanvas-navigation > ul > li:last-child,
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li:last-child {
  border-bottom: 0;
}

.mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children,
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children {
  position: relative;
}

.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children.active
  .menu-expand:before,
.page-oppen-off-sidebar__body
  .offcanvas-navigation
  > ul
  > li.has-children.active
  .menu-expand:before {
  content: "\f106";
}

.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .menu-expand,
.page-oppen-off-sidebar__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .menu-expand {
  position: absolute;
  right: 0;
  top: 12px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .menu-expand:hover,
.page-oppen-off-sidebar__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .menu-expand:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .menu-expand:before,
.page-oppen-off-sidebar__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .menu-expand:before {
  content: "\f107";
  font-size: 18px;
  font-family: "Font Awesome 5 Pro";
}

.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu,
.page-oppen-off-sidebar__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu {
  padding: 12px 0 14px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  li,
.page-oppen-off-sidebar__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  li
  a,
.page-oppen-off-sidebar__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  li
  a {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  line-height: 1.5;
  padding: 10px 0;
}

.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  li
  a:hover,
.page-oppen-off-sidebar__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  li
  a:hover {
  color: #ffffff;
}

.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  li:last-child,
.page-oppen-off-sidebar__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  li:last-child {
  border-bottom: 0;
}

.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  li.has-children,
.page-oppen-off-sidebar__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  li.has-children {
  position: relative;
}

.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  li.has-children.active
  .menu-expand:before,
.page-oppen-off-sidebar__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  li.has-children.active
  .menu-expand:before {
  content: "\f106";
}

.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  li.has-children
  .menu-expand,
.page-oppen-off-sidebar__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  li.has-children
  .menu-expand {
  position: absolute;
  right: 0;
  top: 6px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  li.has-children
  .menu-expand:hover,
.page-oppen-off-sidebar__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  li.has-children
  .menu-expand:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  li.has-children
  .menu-expand:before,
.page-oppen-off-sidebar__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  li.has-children
  .menu-expand:before {
  content: "\f107";
  font-size: 16px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
}

.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  .sub-menu
  li.has-children,
.page-oppen-off-sidebar__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  .sub-menu
  li.has-children {
  position: relative;
}

.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  .sub-menu
  li.has-children.active
  .menu-expand:before,
.page-oppen-off-sidebar__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  .sub-menu
  li.has-children.active
  .menu-expand:before {
  content: "\f106";
}

.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  .sub-menu
  li.has-children
  .menu-expand:before,
.page-oppen-off-sidebar__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  .sub-menu
  li.has-children
  .menu-expand:before {
  content: "\f107";
  font-size: 16px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
}

.mobile-menu-overlay__body .offcanvas-navigation--onepage > ul > li.active > a,
.page-oppen-off-sidebar__body
  .offcanvas-navigation--onepage
  > ul
  > li.active
  > a {
  font-weight: 700;
}

/*======================================
    - offset search
======================================*/

.page-oppen-off-sidebar {
  right: 0;
}

.page-oppen-off-sidebar__inner {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  width: 400px;
  float: right;
  background: #ffffff;
}

@media only screen and (max-width: 479px) {
  .page-oppen-off-sidebar__inner {
    width: 300px;
  }
}

.page-oppen-off-sidebar.active .page-oppen-off-sidebar__inner {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.page-oppen-off-sidebar__header {
  background: #ffffff;
  padding: 15px 35px;
}

.page-oppen-off-sidebar .off-sidebar-contact-info--list .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
}

.page-oppen-off-sidebar .off-sidebar-contact-info--list .item .icon {
  color: #6d70a6;
  min-width: calc(1em + 18px);
  font-size: 16px;
}

.page-oppen-off-sidebar .off-sidebar-contact-info--list .item a:hover {
  color: #38cb89;
}

.page-oppen-off-sidebar .off-sidebar-contact-info .off-sidebar-widget__list {
  overflow: hidden;
}

.page-oppen-off-sidebar .off-sidebar-contact-info .off-sidebar-widget__list li {
  width: 50%;
  float: left;
  margin-bottom: 8px;
}

.page-oppen-off-sidebar
  .off-sidebar-contact-info
  .off-sidebar-widget__list
  li
  a {
  line-height: 17px;
}

/*===============================
    - search overlay
===============================*/

.search-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #333333;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.search-overlay__inner {
  width: 100%;
  height: 100%;
  cursor: default;
  background: #ffffff;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow-y: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.search-overlay.active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.search-overlay__header {
  background-color: #ffffff;
  padding: 15px 0;
}

.search-overlay__header .mobile-navigation-close-icon {
  position: relative;
  cursor: pointer;
  height: 48px;
  width: 48px;
  line-height: 48px;
  display: inline-block;
}

.search-overlay__header .mobile-navigation-close-icon:before {
  position: absolute;
  top: 28px;
  left: 0px;
  content: "";
  width: 42px;
  height: 3px;
  background: #333333;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.search-overlay__header .mobile-navigation-close-icon:after {
  position: absolute;
  top: 28px;
  left: 0px;
  content: "";
  width: 42px;
  height: 3px;
  background: #333333;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.search-overlay__header .mobile-navigation-close-icon:hover {
  color: #086ad8;
}

.search-overlay__header .mobile-navigation-close-icon:hover:before,
.search-overlay__header .mobile-navigation-close-icon:hover:after {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.search-overlay__body {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 75px;
}

.search-overlay__form {
  position: relative;
  max-width: 1200px;
  padding: 0 15px;
  width: 100%;
  margin: auto;
}

.search-overlay__form input {
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid #086ad8;
  border-radius: 0;
  padding: 15px 50px 15px 0;
  width: 100%;
  color: #ffffff;
  font-size: 72px;
  height: 100px;
}

@media only screen and (max-width: 767px) {
  .search-overlay__form input {
    font-size: 30px;
    height: 60px;
  }
}

.search-overlay__form input::-webkit-input-placeholder {
  color: #086ad8;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.search-overlay__form input::-moz-placeholder {
  color: #086ad8;
  -moz-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.search-overlay__form input:-ms-input-placeholder {
  color: #086ad8;
  -ms-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.search-overlay__form input::-ms-input-placeholder {
  color: #086ad8;
  -ms-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.search-overlay__form input::placeholder {
  color: #086ad8;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.search-overlay__form input[type="text"]:focus {
  color: #086ad8;
  border-color: #086ad8;
}

.header__navigation.preview-menu {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.header__navigation.preview-menu .navigation-menu-right {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.preview-header-inner {
  padding: 20px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .preview-header-inner {
    padding: 0;
  }
}

.preview-header-inner.is-sticky {
  padding: 0px 0;
}

.preview-header-inner.is-sticky .header__navigation.preview-menu ul > li > a {
  color: #333;
}

.preview-header-inner.is-sticky .header__actions--preview .ht-btn {
  background: transparent;
  border: 1px solid #086ad8;
  color: #086ad8;
  line-height: 42px;
  height: 43px;
}

.preview-header-inner .header__actions--preview .ht-btn {
  background: #086ad8;
  border: 1px solid #086ad8;
  color: #ffffff;
}

.preview-header-inner .header__actions--preview .ht-btn:hover {
  background: #ffffff;
  color: #086ad8;
}

/*=====  End of Header  ======*/
/** banner-section **/

.banner-section {
  position: relative;
  background: #fff;
  padding: 210px 0px 100px 0px;
}

.banner-section .content-box .btn-box .video-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-size: 17px;
  line-height: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #3b3b3b;
  padding: 15px 0px 15px 75px;
  z-index: 1;
}

.banner-section .content-box .btn-box .video-btn:hover {
}

.banner-section .content-box .btn-box .video-btn i {
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 17px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  transition: all 500ms ease;
}

.banner-section .content-box .btn-box .video-btn:hover i {
  color: #fff;
}

.banner-section .content-box .btn-box .theme-btn {
  margin-right: 25px;
}

.banner-section .content-box h1 {
  position: relative;
  font-size: 55px;
  line-height: 72px;
  color: #3b3b3b;
  font-weight: 700;
  margin-bottom: 31px;
}

.banner-section .content-box h1 span {
}

.banner-section .content-box p {
  position: relative;
  margin-bottom: 40px;
}

.banner-section .content-box {
  position: relative;
  margin-right: 60px;
  padding-top: 85px;
}

.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-y;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-y;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-y;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.float-bob-x {
  animation-name: float-bob-x;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-x;
  -webkit-animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-x;
  -moz-animation-duration: 15s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-x;
  -ms-animation-duration: 15s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-x;
  -o-animation-duration: 15s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.rotate-me {
  animation-name: rotateme;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: rotateme;
  -webkit-animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: rotateme;
  -moz-animation-duration: 30s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: rotateme;
  -ms-animation-duration: 30s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: rotateme;
  -o-animation-duration: 30s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.banner-section .image-box {
  position: relative;
  display: block;
  margin-right: -130px;
}

.banner-section .image-box .image-1 img {
  width: 100%;
}

.banner-section .image-box .image-2 {
  position: absolute;
  left: 170px;
  bottom: 130px;
}

.banner-section .image-box .image-3 {
  position: absolute;
  right: 200px;
  bottom: 150px;
}

.banner-section .image-box .image-4 {
  position: absolute;
  left: 260px;
  bottom: 35px;
  -webkit-animation: zoom-fade 5s infinite linear;
  animation: zoom-fade 5s infinite linear;
}

.banner-section .image-box .image-5 {
  position: absolute;
  left: 85px;
  top: 175px;
}

.banner-section .pattern-box .pattern-1 {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 1085px;
  height: 760px;
  background-repeat: no-repeat;
}

.banner-section .pattern-box .pattern-2 {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 270px;
  height: 290px;
  background-repeat: no-repeat;
  -webkit-animation: zoom-fade 5s infinite linear;
  animation: zoom-fade 5s infinite linear;
}

/** feature-section **/

.feature-section {
  position: relative;
  background: #fff;
  padding: 50px 0px 100px 0px;
}

.feature-block-one .inner-box {
  position: relative;
  display: block;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 50px 5px #e9eef7;
  padding: 30px 30px 30px 30px;
  transition: all 500ms ease;
}

.feature-block-one .box-hover {
  margin-bottom: 20px;
}

.feature-block-one .box-1 {
  padding: 70px 50px 50px 50px;
}

.feature-block-one:hover .inner-box {
  box-shadow: 0 10px 30px 3px rgba(99, 119, 238, 0.4);
}

.feature-block-one .icon-box {
  position: relative;
  display: inline-block;
  font-size: 60px;
  width: 130px;
  height: 130px;
  line-height: 130px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 43px;
  z-index: 1;
  transition: all 500ms ease;
}

.feature-block-one:hover .icon-box {
  color: #fff;
}

.feature-block-one .icon-box:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0px;
  bottom: 0px;
  border-radius: 50%;
  z-index: -1;
  transition: all 500ms ease;
}

.feature-block-one:hover .icon-box:after {
  top: 0px;
}

.feature-block-one .icon-box:before {
  position: absolute;
  content: "";
  background: #fff;
  width: 100%;
  height: 100%;
  left: -8px;
  top: -5px;
  z-index: -1;
  border-radius: 50%;
  box-shadow: -10px 10px 20px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.feature-block-one .inner-box p {
  margin-bottom: 28px;
}

.feature-block-one .inner-box .btn-box .theme-btn.style-two {
  padding: 10.5px 35px;
}

.feature-block-one .icon-box .anim-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  -webkit-animation: service_hexagon 3s infinite linear;
  -moz-animation: service_hexagon 3s infinite linear;
  -o-animation: service_hexagon 3s infinite linear;
  animation: service_hexagon 3s infinite linear;
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}

.feature-block-one:hover .icon-box .anim-icon {
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}

.feature-block-one .icon-box .anim-icon .icon-1 {
  position: absolute;
  left: -25px;
  top: 60px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-animation: zoom-fade-two 5s infinite linear;
  animation: zoom-fade-two 5s infinite linear;
}

.feature-block-one .icon-box .anim-icon .icon-2 {
  position: absolute;
  left: 10px;
  top: -20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-animation: zoom-fade-two 4s infinite linear;
  animation: zoom-fade-two 4s infinite linear;
}

.feature-block-one .icon-box .anim-icon .icon-3 {
  position: absolute;
  top: 15px;
  right: 0px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  -webkit-animation: zoom-fade-two 3s infinite linear;
  animation: zoom-fade-two 3s infinite linear;
}

/** about-section **/

.about-section {
  position: relative;
  background: #fff;
  padding: 50px 0px 150px 0px;
}

#content_block_01 .content-box .text {
  position: relative;
  margin-bottom: 37px;
}

#content_block_01 .content-box .list-item li {
  position: relative;
  display: block;
  padding-left: 45px;
  margin-bottom: 20px;
}

#content_block_01 .content-box .list-item li:last-child {
  margin-bottom: 0px;
}

#content_block_01 .content-box .list-item li:before {
  position: absolute;
  content: "\f105";
  font-family: "Flaticon";
  font-size: 25px;
  line-height: 30px;
  font-weight: 500;
  left: 0px;
  top: 0px;
}

#content_block_01 .content-box .list-item {
  position: relative;
  margin-bottom: 45px;
}

#content_block_01 .content-box .sec-title {
  margin-bottom: 25px;
}

#content_block_01 .content-box .btn-box .theme-btn {
  padding: 12.5px 50px;
}

.about-section #content_block_01 .content-box {
  position: relative;
  margin-left: 30px;
}

.about-section #image_block_01 .image-box {
  margin-left: -200px;
}

#image_block_01 .image-box img {
  width: 100%;
}

#image_block_01 .image-box {
  margin-top: 32px;
}

/** process-section **/

.process-section {
  position: relative;
  overflow: hidden;
  padding: 150px 0px 130px 0px;
}

#content_block_02 .content-box .sec-title {
  margin-bottom: 25px;
}

#content_block_02 .content-box .text {
  position: relative;
  margin-bottom: 35px;
}

#content_block_02 .content-box .inner-box .single-item {
  position: relative;
  margin-bottom: 31px;
  padding-left: 100px;
}

#content_block_02 .content-box .inner-box .single-item:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  left: 32px;
  top: 60px;
}

#content_block_02 .content-box .inner-box .single-item:after {
  position: absolute;
  content: "\f107";
  font-size: 17px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  left: 28px;
  top: 100px;
}

#content_block_02 .content-box .inner-box .single-item:last-child::after {
  display: none;
}

#content_block_02 .content-box .inner-box .single-item:last-child::before {
  display: none;
}

#content_block_02 .content-box .inner-box .single-item:last-child {
  margin-bottom: 0px;
}

#content_block_02 .content-box .inner-box .single-item .count-box {
  position: absolute;
  left: 0px;
  top: 12px;
  font-size: 30px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  background: #fff;
  width: 66px;
  height: 66px;
  line-height: 66px;
  text-align: center;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 7px #edf1fe;
  transition: all 500ms ease;
}

#content_block_02 .content-box .inner-box .single-item:hover .count-box {
  color: #fff;
}

#content_block_02 .content-box .inner-box .single-item .count-box:before {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  left: -7px;
  top: -7px;
  border-radius: 50%;
  z-index: -1;
  box-shadow: 0 30px 50px 0px rgba(99, 119, 238, 0.2);
}

#content_block_02 .content-box .inner-box .single-item h3 {
  margin-bottom: 12px;
}

.process-section #content_block_02 .content-box {
  margin-right: 20px;
}

.process-section #image_block_02 .image-box {
  margin-right: -160px;
  margin-left: 15px;
}

#image_block_02 .image-box {
  position: relative;
  display: block;
  margin-top: 7px;
}

#image_block_02 .image-box img {
  width: 100%;
}

.process-section .pattern-box .pattern-1 {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 920px;
  height: 755px;
  background-repeat: no-repeat;
}

/** service-section **/

.service-section {
  position: relative;
  background: #fff;
  padding: 150px 0px 55px 0px;
}

.service-section .sec-title {
  margin-bottom: 60px;
}

.service-block-one .inner-box {
  position: relative;
  padding-left: 105px;
  margin-bottom: 55px;
}

.service-block-one .inner-box .icon-box {
  position: absolute;
  left: 0px;
  top: 12px;
  font-size: 36px;
  background: #fff;
  width: 66px;
  height: 66px;
  line-height: 66px;
  text-align: center;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 7px #edf1fe;
  transition: all 500ms ease;
}

.service-block-one:hover .inner-box .icon-box {
  color: #fff;
}

.service-block-one .inner-box .icon-box:after {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  left: -7px;
  top: -7px;
  border-radius: 50%;
  z-index: -1;
  box-shadow: 0 30px 50px 0px rgba(99, 119, 238, 0.2);
  transition: all 500ms ease;
}

.service-block-one .inner-box h3 {
  margin-bottom: 18px;
}

/** testimonial-section **/

.testimonial-section {
  position: relative;
  background: #fff;
  padding: 50px 0px 40px 0px;
}

.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav {
  display: none !important;
}

.testimonial-section .testimonial-inner {
  margin-bottom: 60px;
}

.testimonial-section .testimonial-inner .image-box {
  position: relative;
  display: block;
  margin-right: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 50px 0px rgba(99, 119, 238, 0.2);
}

.testimonial-section .testimonial-inner .image-box img {
  width: 100%;
  border-radius: 20px;
}

.testimonial-section .content-box .sec-title {
  margin-bottom: 42px;
}

.testimonial-section .content-box .icon-box {
  position: relative;
  display: inline-block;
  font-size: 36px;
  background: #fff;
  width: 66px;
  height: 66px;
  line-height: 66px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 46px;
  transition: all 500ms ease;
}

.testimonial-section .content-box .icon-box:after {
  position: absolute;
  content: "";
  background: #edf1fe;
  width: 80px;
  height: 80px;
  left: -7px;
  top: -7px;
  border-radius: 50%;
  z-index: -1;
  box-shadow: 0 30px 50px 0px rgba(99, 119, 238, 0.2);
}

.testimonial-section .content-box .text {
  position: relative;
  margin-bottom: 27px;
}

.testimonial-section .content-box .text h5 {
  font-size: 18px;
  line-height: 36px;
  color: #3b3b3b;
}

.testimonial-section .content-box .author-info h3 {
  margin-bottom: 0px;
}

.testimonial-section .content-box .author-info .designation {
  position: relative;
  display: block;
  line-height: 24px;
}

.testimonial-section .pattern-box .pattern-1 {
  position: absolute;
  left: 0px;
  top: 70px;
  width: 720px;
  height: 810px;
  background-repeat: no-repeat;
}

.testimonial-section .pattern-box .pattern-2 {
  position: absolute;
  right: 30px;
  bottom: -200px;
  width: 270px;
  height: 290px;
  background-repeat: no-repeat;
  -webkit-animation: zoom-fade 5s infinite linear;
  animation: zoom-fade 5s infinite linear;
}

/** project-section **/

.project-section {
  position: relative;
  padding: 100px 0px 100px 0px;
}

.project-block-one .inner-box {
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 50px 15px #eae8ef;
}

.project-block-one .inner-box .image-box {
  position: relative;
  display: block;
  transition-property: box-shadow, -webkit-transform;
  transition-property: box-shadow, transform;
  transition-property: box-shadow, transform, -webkit-transform;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.project-block-one .inner-box:hover .image-box {
  -webkit-transform: rotate3d(0, 1, 0, 180deg);
  transform: rotate3d(0, 1, 0, 180deg);
  -webkit-transform: rotate3d(-1, 0, 0, 180deg);
  transform: rotate3d(-1, 0, 0, 180deg);
}

.project-block-one .inner-box .image-box img {
  width: 100%;
  transition: all 500ms ease;
}

.project-block-one:hover .inner-box .image-box img {
  opacity: 0;
}

.project-block-one .inner-box .image-holder {
  position: relative;
  display: block;
  overflow: hidden;
}

.project-block-one .inner-box .image-holder .view-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  z-index: 1;
  opacity: 0;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transition-property: all;
  transition-property: all;
}

.project-block-one:hover .inner-box .image-holder .view-btn {
  opacity: 1;
}

.project-block-one .inner-box .lower-content {
  position: relative;
  padding: 24px 30px 23px 40px;
}

.project-block-one .inner-box .lower-content h3 {
  margin-bottom: 0px;
}

.project-block-one .inner-box .lower-content span {
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 28px;
}

/** pricing-section **/

.pricing-section {
  position: relative;
  padding: 150px 0px 100px 0px;
  background: #fff;
}

.pricing-section .pattern-layer {
  position: absolute;
  bottom: -300px;
  right: 0px;
  width: 635px;
  height: 735px;
  background-repeat: no-repeat;
}

.tabs-box .tab {
  position: relative;
  display: none;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.tabs-box .tab.active-tab {
  display: block;
}

.tabs-box .tab {
  transform: scale(0.9, 0.9) translateY(0px);
}

.tabs-box .tab.active-tab {
  transform: scale(1) translateY(0px);
}

.pricing-section .upper-box {
  position: relative;
  margin-bottom: 50px;
}

.pricing-section .upper-box .text {
  position: relative;
  max-width: 50%;
}

.pricing-section .tab-btn-box {
  position: relative;
  margin-top: 5px;
}

.pricing-section .tab-btn-box .tab-btns {
  position: relative;
  background: #f7faff;
  max-width: 285px;
  overflow: hidden;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 10px 20px 0px rgba(99, 119, 238, 0.2);
}

.pricing-section .tab-btn-box .tab-btns li {
  position: relative;
  float: left;
  width: 50%;
  background: transparent;
  padding: 14.5px 40px;
  border-radius: 30px;
  font-size: 17px;
  line-height: 26px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #3b3b3b;
  cursor: pointer;
  transition: all 500ms ease;
}

.pricing-section .tab-btn-box .tab-btns li.active-btn,
.pricing-section .tab-btn-box .tab-btns li:hover {
  color: #fff;
}

.pricing-block-one .pricing-table {
  position: relative;
  display: block;
  background: #fff;
  overflow: hidden;
  padding: 60px 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px 0px rgba(99, 119, 238, 0.2);
  z-index: 1;
}

.pricing-block-one .pricing-table .table-header h5 {
  position: relative;
  font-size: 17px;
  line-height: 25px;
  margin-bottom: 12px;
}

.pricing-block-one .pricing-table .table-header h2 {
  position: relative;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  color: #3b3b3b;
  margin-bottom: 5px;
}

.pricing-block-one .pricing-table .table-header a {
  position: relative;
  display: inline-block;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  line-height: 26px;
  color: #848484;
}

.pricing-block-one .pricing-table .table-header {
  padding-bottom: 40px;
  border-bottom: 1px dashed #e5e5e5;
}

.pricing-block-one .pricing-table .table-content {
  position: relative;
  padding: 45px 0px;
}

.pricing-block-one .pricing-table .table-content ul li {
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 26px;
  color: #3b3b3b;
  margin-bottom: 20px;
  padding-left: 30px;
}

.pricing-block-one .pricing-table .table-content ul li:last-child {
  margin-bottom: 0px;
}

.pricing-block-one .pricing-table .table-content ul li i {
  position: absolute;
  font-size: 20px;
  left: 0px;
  top: 0px;
  font-weight: 600;
}

.pricing-block-one .pricing-table .table-content ul li:nth-child(4),
.pricing-block-one .pricing-table .table-content ul li:last-child {
  opacity: 0.5;
}

.pricing-block-one .pricing-table .table-content ul li:nth-child(4) i,
.pricing-block-one .pricing-table .table-content ul li:last-child i {
  color: #b3b3b3;
}

.pricing-block-one .pricing-table .table-footer .theme-btn {
  padding: 10.5px 30px;
  display: block;
}

.pricing-block-one.active_block .pricing-table .table-footer .theme-btn {
  color: #fff !important;
}

.pricing-block-one .pricing-table .pattern-box {
  position: absolute;
  top: 35px;
  right: 0px;
  width: 123px;
  height: 160px;
  background-repeat: no-repeat;
}

/** news-section **/

.news-section {
  position: relative;
  padding: 50px 0px 150px 0px;
}

.news-section .sec-title {
  margin-bottom: 70px;
}

.news-section .pattern-layer {
  position: absolute;
  left: 0px;
  top: 100px;
  width: 270px;
  height: 290px;
  background-repeat: no-repeat;
  -webkit-animation: zoom-fade 5s infinite linear;
  animation: zoom-fade 5s infinite linear;
}

.news-block-one .inner-box {
  position: relative;
  display: block;
  background: #fff;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px 0px rgba(99, 119, 238, 0.2);
}

.news-block-one .inner-box .image-holder {
  position: relative;
  display: block;
  overflow: hidden;
}

.news-block-one .inner-box:hover .image-holder:before {
  opacity: 0.9;
  transform: scale(5);
  transition-delay: 0.15s;
}

.news-block-one .inner-box .image-holder:before {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  bottom: -20px;
  right: -10px;
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.news-block-one .inner-box:hover .image-holder .link a {
  transform: scale(1);
  transition-delay: 0.15s;
}

.news-block-one .inner-box .image-holder .link {
  position: absolute;
  right: 35px;
  bottom: 20px;
}

.news-block-one .inner-box .image-holder .link a {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #fff;
  z-index: 2;
  transform: scale(0);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.news-block-one .inner-box .image-holder img {
  width: 100%;
  transition: all 500ms ease;
}

.news-block-one .inner-box:hover .image-holder img {
  transform: scale(1.05);
}

.news-block-one .inner-box .image-holder .post-date {
  position: absolute;
  left: 30px;
  top: 30px;
  background: #fff;
  border-radius: 30px;
  padding: 4px 25px;
}

.news-block-one .inner-box .image-holder .post-date i {
  position: relative;
  display: inline-block;
  font-size: 16px;
  margin-right: 8px;
}

.news-block-one .inner-box .image-holder .post-date p {
  display: inline-block;
  color: #3b3b3b;
}

.news-block-one .inner-box .lower-content {
  position: relative;
  padding: 30px;
}

.news-block-one .inner-box .lower-content .post-info li {
  position: relative;
  display: inline-block;
  font-size: 17px;
  margin-right: 20px;
}

.news-block-one .inner-box .lower-content .post-info li:last-child {
  margin-right: 0px;
}

.news-block-one .inner-box .lower-content .post-info li a {
  color: #848484;
}

.news-block-one .inner-box .lower-content .post-info li a:hover {
}

.news-block-one .inner-box .lower-content .post-info li:before {
  position: absolute;
  content: "";
  background: #848484;
  width: 1px;
  height: 12px;
  top: 10px;
  right: -12px;
}

.news-block-one .inner-box .lower-content .post-info {
  position: relative;
  margin-bottom: 6px;
}

.news-block-one .inner-box .lower-content .post-info li:last-child::before {
  display: none;
}

.news-block-one .inner-box .lower-content h3 {
  margin-bottom: 12px;
  line-height: 32px;
}

/** cta-section **/

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0px;
}

.cta-section .content-box {
  position: relative;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}

.cta-section .content-box h2 {
  position: relative;
  font-size: 40px;
  line-height: 60px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 48px;
}

.cta-section .pattern-1 {
  position: absolute;
  left: -30px;
  top: -30px;
  width: 435px;
  height: 405px;
  background-repeat: no-repeat;
  -webkit-animation: zoom-fade 5s infinite linear;
  animation: zoom-fade 5s infinite linear;
}

.cta-section .pattern-2 {
  position: absolute;
  right: 30px;
  bottom: -30px;
  width: 365px;
  height: 195px;
  background-repeat: no-repeat;
  -webkit-animation: zoom-fade 5s infinite linear;
  animation: zoom-fade 5s infinite linear;
}

/** main-footer **/

.main-footer {
  background-image: url(../images/footerimg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 400px;
}

/** banner-style-two **/

.banner-style-two {
  position: relative;
  background: #fff;
  padding: 130px 0px 235px 0px;
}

.banner-style-two .content-box {
  position: relative;
  display: block;
  text-align: center;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.banner-style-two .content-box h1 {
  position: relative;
  display: block;
  font-size: 45px;
  line-height: 60px;
  font-weight: 700;
  color: #3b3b3b;
  margin-bottom: 90px;
  z-index: 1;
}

.banner-style-two .image-box {
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  min-height: 450px;
}

.banner-style-two .image-box .pattern-layer {
  position: absolute;
  left: 0px;
  top: -270px;
  right: 0px;
  width: 970px;
  height: 970px;
  background-repeat: no-repeat;
  background-position: center center;
}

.banner-style-two .image-box .image-1 img {
  position: relative;
  width: 100%;
}

.banner-style-two .image-box .image-2 {
  position: absolute;
  left: 110px;
  top: -5px;
}

.banner-style-two .image-box .image-3 {
  position: absolute;
  left: -36px;
  bottom: 107px;
}

.banner-style-two .image-box .image-4 {
  position: absolute;
  left: 252px;
  top: 134px;
}

.banner-style-two .image-box .image-5 {
  position: absolute;
  left: 45px;
  bottom: 0px;
}

.banner-style-two .image-box .image-6 {
  position: absolute;
  left: 315px;
  bottom: -150px;
}

.banner-style-two .image-box .image-7 {
  position: absolute;
  right: -65px;
  bottom: 55px;
}

.banner-style-two .image-box .image-8 {
  position: absolute;
  left: 43%;
  bottom: -85px;
}

.banner-style-two .image-box .image-9 {
  position: absolute;
  left: 295px;
  bottom: 50px;
}

.banner-style-two .image-box .image-10 {
  position: absolute;
  right: 260px;
  bottom: 135px;
}

.banner-style-two .image-box .image-11 {
  position: absolute;
  top: 20px;
  right: 220px;
}

.banner-style-two .pattern-layer {
  position: absolute;
  right: 30px;
  bottom: 60px;
  width: 270px;
  height: 290px;
  background-repeat: no-repeat;
  -webkit-animation: zoom-fade 5s infinite linear;
  animation: zoom-fade 5s infinite linear;
}

.feature-section.home-2 {
  padding-top: 0px;
  background: transparent;
}

.clients-section .pattern-layer {
  position: absolute;
  left: 0px;
  top: -200px;
  width: 720px;
  height: 810px;
  background-repeat: no-repeat;
}

/** about-style-two **/

.about-section.style-two {
  padding: 90px 0px 100px 0px;
}

#image_block_03 .image-box {
  position: relative;
  margin: 74px 70px 70px -160px;
}

#image_block_03 .image-box img {
  width: 100%;
  border-radius: 20px;
}

#image_block_03 .image-box .image-1 {
  position: absolute;
  left: -70px;
  top: -62px;
  border-radius: 50px;
  z-index: 1;
  box-shadow: -15px 20px 40px 0px rgba(99, 119, 238, 0.2);
}

#image_block_03 .image-box .image-1 img {
  border-radius: 50px;
}

#image_block_03 .image-box .image-2 {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 20px 40px 0px rgba(99, 119, 238, 0.2);
}

#image_block_03 .image-box .pattern-1 {
  position: absolute;
  top: -105px;
  right: -45px;
  width: 245px;
  height: 255px;
  background-repeat: no-repeat;
}

#image_block_03 .image-box .pattern-2 {
  position: absolute;
  left: -163px;
  bottom: -142px;
  width: 402px;
  height: 384px;
  background-repeat: no-repeat;
  -webkit-animation: zoom-fade 5s infinite linear;
  animation: zoom-fade 5s infinite linear;
}

/** service-style-two **/

.service-style-two {
  position: relative;
  padding: 60px 0px 110px 0px;
}

.service-style-two .sec-title {
  margin-bottom: 55px;
}

.service-style-two .pattern-layer {
  position: absolute;
  top: -290px;
  right: 0px;
  width: 589px;
  height: 667px;
  background-repeat: no-repeat;
}

.tabs-box .tab {
  position: relative;
  display: none;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.tabs-box .tab.active-tab {
  display: block;
}

.tabs-box .tab {
  transform: scale(0.9, 0.9) translateY(0px);
}

.tabs-box .tab.active-tab {
  transform: scale(1) translateY(0px);
}

.service-style-two .tab-btns {
  position: relative;
  display: block;
  margin-bottom: 88px;
  background: #fff;
  box-shadow: 0 30px 40px 0px rgba(99, 119, 238, 0.15);
}

.service-style-two .tab-btns li {
  position: relative;
  width: 25%;
  float: left;
  padding: 32px 25px 32px 45px;
  cursor: pointer;
  min-height: 130px;
}

.service-style-two .tab-btns li:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  left: -45px;
  bottom: 0px;
  transform: scale(0, 0);
  transition: all 500ms ease;
}

.service-style-two .tab-btns li:first-child:before {
  left: 0px;
  width: 85%;
}

.service-style-two .tab-btns li:last-child:before {
  width: calc(100% + 45px);
}

.service-style-two .tab-btns li:after {
  position: absolute;
  content: "";
  background: #e8f3fd;
  height: 100%;
  width: 1px;
  top: 8px;
  right: 12px;
  transform: rotate(30deg);
}

.service-style-two .tab-btns li:last-child:after {
  display: none;
}

.service-style-two .tab-btns li:hover:before,
.service-style-two .tab-btns li.active-btn:before {
  transform: scale(1, 1);
}

.service-style-two .tab-btns li .btn-inner {
  position: relative;
  padding: 6px 0px 8px 92px;
}

.service-style-two .tab-btns li .btn-inner .icon-box {
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 35px;
  background: #fff;
  height: 66px;
  width: 66px;
  line-height: 66px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0px 0px 7px #f4f5fe;
  transition: all 500ms ease;
  z-index: 1;
}

.service-style-two .tab-btns li .btn-inner .icon-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  left: 0px;
  top: 0px;
  right: 0px;
  transform: scale(0, 0);
  z-index: -1;
  transition: all 500ms ease;
}

.service-style-two .tab-btns li .btn-inner .icon-box:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  z-index: -1;
  border-radius: 50%;
  box-shadow: 0 30px 50px 0px rgba(99, 119, 238, 0.3);
}

.service-style-two .tab-btns li:hover .btn-inner .icon-box,
.service-style-two .tab-btns li.active-btn .btn-inner .icon-box {
  color: #fff;
}

.service-style-two .tab-btns li:hover .btn-inner .icon-box:before,
.service-style-two .tab-btns li.active-btn .btn-inner .icon-box:before {
  transform: scale(1, 1);
}

.service-style-two .tab-btns li .btn-inner h4 {
  position: relative;
  font-size: 18px;
  line-height: 26px;
  color: #3b3b3b;
  margin: 0px;
  font-weight: 600;
  transition: all 500ms ease;
}

.service-style-two .tab-btns li:hover .btn-inner h4,
.service-style-two .tab-btns li.active-btn .btn-inner h4 {
}

.service-style-two .content-box {
  position: relative;
  margin-right: 30px;
}

.service-style-two .content-box h3 {
  position: relative;
  font-size: 28px;
  line-height: 40px;
  color: #3b3b3b;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-style-two .content-box p {
  margin-bottom: 27px;
}

.service-style-two .content-box .list-item li {
  position: relative;
  display: block;
  padding-left: 45px;
  margin-bottom: 20px;
}

.service-style-two .content-box .list-item li:last-child {
  margin-bottom: 0px;
}

.service-style-two .content-box .list-item li:before {
  position: absolute;
  content: "\f105";
  font-family: "Flaticon";
  font-size: 25px;
  line-height: 30px;
  font-weight: 500;
  left: 0px;
  top: 0px;
}

.service-style-two .image-box {
  position: relative;
  margin-left: 20px;
}

.service-style-two .image-box img {
  width: 100%;
}

/** process-style-two **/

.process-style-two {
  position: relative;
  padding: 150px 0px;
}

.process-style-two .single-item {
  position: relative;
}

.process-style-two .single-item .shape-layer {
  position: absolute;
  top: 50px;
  right: -112px;
  width: 200px;
  height: 42px;
  background-repeat: no-repeat;
}

.process-style-two .single-column:nth-child(2) .single-item .shape-layer {
  top: 75px;
}

.process-style-two .single-item .icon-box {
  position: relative;
  display: inline-block;
  font-size: 50px;
  width: 170px;
  height: 170px;
  line-height: 170px;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  margin-bottom: 30px;
  z-index: 1;
  box-shadow: 0 20px 50px 0px rgba(99, 119, 238, 0.2);
  transition: all 500ms ease;
}

.process-style-two .single-item:hover .icon-box {
  color: #fff;
}

.process-style-two .single-item .icon-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  transform: scale(0, 0);
  border-radius: 50%;
  z-index: -1;
  transition: all 500ms ease;
}

.process-style-two .single-item:hover .icon-box:before {
  transform: scale(1, 1);
}

.process-style-two .single-item .icon-box .count-box {
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  transition: all 500ms ease;
}

.process-style-two .single-item:hover .icon-box .count-box {
  background: #fff;
  box-shadow: 0 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.process-style-two .single-item h3 {
  margin: 0px;
}

.process-style-two .sec-title {
  margin-bottom: 55px;
}

/** fun-fact **/

.fun-fact {
  position: relative;
  padding: 85px 0px;
}

.fun-fact .counter-block .count-outer {
  position: relative;
  display: block;
  font-size: 50px;
  line-height: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 13px;
}

.fun-fact .counter-block h5 {
  position: relative;
  font-size: 17px;
  line-height: 26px;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-section.home-2 {
  padding-top: 160px;
}

/** pricing-style-two **/

.pricing-section.style-two {
  position: relative;
  background: transparent;
  padding: 60px 0px 200px 0px;
}

.pricing-section.style-two .upper-box .text {
  max-width: 100%;
  margin-bottom: 40px;
}

.pricing-section.style-two .tab-btn-box .tab-btns {
  margin: 0 auto;
}

.pricing-section.style-two .sec-title {
  margin-bottom: 25px;
}

.pricing-block-two .pricing-table {
  position: relative;
  display: block;
  text-align: center;
  background: #fff;
  padding: 50px 50px;
  border-radius: 20px;
  box-shadow: 0 10px 50px 0px rgba(99, 119, 238, 0.1);
}

.pricing-block-two .pricing-table .table-header {
  position: relative;
  padding-bottom: 39px;
  border-bottom: 1px dashed #e5e5e5;
}

.pricing-block-two .pricing-table .table-header .icon-box {
  position: relative;
  font-size: 80px;
  line-height: 80px;
  margin-bottom: 22px;
}

.pricing-block-two .pricing-table .table-header h5 {
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 26px;
  color: #3b3b3b;
  margin-bottom: 6px;
}

.pricing-block-two .pricing-table .table-header h2 {
  position: relative;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  color: #3b3b3b;
}

.pricing-block-two .pricing-table .table-content {
  position: relative;
  padding: 40px 0px;
}

.pricing-block-two .pricing-table .table-content ul li {
  position: relative;
  display: block;
  font-size: 17px;
  color: #3b3b3b;
  margin-bottom: 15px;
}

.pricing-block-two .pricing-table .table-content ul li:last-child {
  margin-bottom: 0px;
}

.pricing-block-two .pricing-table .table-content ul li:nth-child(4),
.pricing-block-two .pricing-table .table-content ul li:last-child {
  opacity: 0.5;
}

.pricing-block-two .pricing-table .table-footer .theme-btn {
  padding: 10.5px 30px;
  display: block;
}

.pricing-section.style-two .pricing-block {
  padding: 0px 0px;
}

.pricing-section.style-two .tabs-content {
  position: relative;
  margin: 0px 15px;
}

.pricing-block-two.active_block .pricing-table {
  z-index: 1;
  padding: 90px 50px;
  margin: -40px 0px;
  box-shadow: 0 10px 50px 0px rgba(99, 119, 238, 0.2);
}

.pricing-block-two.active_block .pricing-table .table-footer .theme-btn {
  color: #fff !important;
}

.pricing-block-two .pricing-table .pattern-box {
  position: absolute;
  top: 35px;
  right: 0px;
  width: 123px;
  height: 160px;
  background-repeat: no-repeat;
}

.pricing-section.style-two .tab-btn-box {
  margin-top: 0px;
}

.pricing-section.style-two .upper-box {
  margin-bottom: 117px;
}

.pricing-section.style-two .pattern-layer {
  position: absolute;
  bottom: 220px;
  right: 0px;
  width: 549px;
  height: 683px;
  background-repeat: no-repeat;
}

/*** 

====================================================================
                        Home-Page-Three
====================================================================

***/

/** banner-style-three **/

.banner-section.style-three {
  position: relative;
  padding: 245px 0px 125px 0px;
}

.banner-section.style-three .image-box {
  position: relative;
  margin-right: -380px;
  padding-left: 200px;
}

.banner-section.style-three .image-box .image-1 {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 20px 40px 0px rgba(99, 119, 238, 0.2);
}

.banner-section.style-three .image-box .image-1 img {
  border-radius: 20px;
}

.banner-section.style-three .image-box .image-2 {
  position: absolute;
  left: 70px;
  bottom: 180px;
}

.banner-section.style-three .image-box .image-3 {
  right: inherit;
  left: -10px;
  bottom: -65px;
}

.banner-section.style-three .content-box {
  padding-top: 12px;
}

.banner-section.style-three .pattern-box .pattern-1 {
  width: 968px;
  height: 961px;
}

.banner-section.style-three .pattern-box .pattern-2 {
  bottom: -80px;
}

/** about-style-three **/

.about-section.style-three {
  padding: 10px 0px 100px 0px;
}

.about-section.style-three .pattern-layer {
  position: absolute;
  left: 0px;
  top: -180px;
  width: 776px;
  height: 924px;
  background-repeat: no-repeat;
}

#image_block_05 .image-box {
  position: relative;
  margin-right: 40px;
  margin-top: 8px;
}

#image_block_05 .image-box .image-1 {
  border-radius: 20px;
  box-shadow: 0 20px 60px 0px rgba(99, 119, 238, 0.3);
}

#image_block_05 .image-box .image-1 img {
  width: 100%;
  border-radius: 20px;
}

#image_block_05 .image-box .image-2 {
  position: absolute;
  left: -200px;
  bottom: -190px;
}

#image_block_05 .image-box .image-3 {
  position: absolute;
  right: 42px;
  bottom: -184px;
}

/** about-style-four **/

.about-style-four {
  position: relative;
  padding: 120px 0px;
}

#content_block_05 .content-box {
  position: relative;
  margin-right: 35px;
  margin-top: 53px;
}

#content_block_05 .content-box .text p {
  margin-bottom: 32px;
}

#content_block_05 .content-box .text p:last-child {
  margin-bottom: 0px;
}

#content_block_05 .content-box .text {
  position: relative;
  margin-bottom: 40px;
}

#content_block_05 .content-box .sec-title {
  margin-bottom: 25px;
}

#content_block_05 .content-box .btn-box .theme-btn {
  padding: 12.5px 50px;
}

#image_block_06 .image-box {
  position: relative;
  margin: 0px 75px 0px 40px;
}

#image_block_06 .image-box .pattern-layer {
  position: absolute;
  width: 727px;
  height: 677px;
  bottom: 20px;
  left: 95px;
  background-repeat: no-repeat;
}

#image_block_06 .image-box .image {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 20px 60px 0px rgba(99, 119, 238, 0.3);
}

#image_block_06 .image-box .image img {
  width: 100%;
  border-radius: 20px;
}

#image_block_06 .image-box .image-2 {
  position: absolute;
  right: -220px;
  bottom: -110px;
}

/** testimonial-style-two **/

.testimonial-style-two {
  position: relative;
  padding: 160px 0px;
}

.testimonial-style-two .testimonial-content {
  position: relative;
  margin: 60px 100px;
}

.testimonial-style-two .testimonial-content .inner-box {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 0px 50px 53px 50px;
  box-shadow: 0 10px 50px 0px rgba(99, 119, 238, 0.2);
}

.testimonial-style-two .testimonial-content .inner-box .image-box {
  position: relative;
  display: inline-block;
  border-radius: 50%;
  box-shadow: 0 10px 30px 0px rgba(99, 119, 238, 0.3);
  margin-bottom: 25px;
  margin-top: -60px;
}

.testimonial-style-two .testimonial-content .inner-box .image-box img {
  width: 100%;
  border-radius: 50%;
}

.testimonial-style-two .testimonial-content .inner-box p {
  margin-bottom: 23px;
  line-height: 34px;
}

.testimonial-style-two .testimonial-content .inner-box .author-info h4 {
  position: relative;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #3b3b3b;
  margin: 5px;
}

.testimonial-style-two
  .testimonial-content
  .inner-box
  .author-info
  .designation {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
}

.testimonial-style-two .owl-theme .owl-dots .owl-dot span {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0px 10px;
  transition: all 500ms ease;
}

.testimonial-style-two .owl-theme .owl-dots .owl-dot span:before {
  position: absolute;
  content: "";
  border-radius: 50%;
  left: -9px;
  top: -9px;
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: all 500ms ease;
}

.testimonial-style-two .owl-theme .owl-dots .owl-dot.active span:before,
.testimonial-style-two .owl-theme .owl-dots .owl-dot span:hover:before {
  opacity: 1;
}

.testimonial-style-two .owl-dots {
  position: relative;
  display: block;
  margin-top: 33px;
}

.testimonial-style-two .pattern-layer {
  position: absolute;
  left: 0px;
  top: 175px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.testimonial-style-two .thumb-box {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.testimonial-style-two .thumb-box .thumb {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  box-shadow: 0 10px 30px 0px rgba(99, 119, 238, 0.3);
}

.testimonial-style-two .thumb-box .thumb img {
  border-radius: 50%;
  width: 100%;
}

.testimonial-style-two .thumb-box .thumb-1 {
  left: 160px;
  top: 40%;
  -webkit-animation: zoom-fade 3s infinite linear;
  animation: zoom-fade 3s infinite linear;
}

.testimonial-style-two .thumb-box .thumb-2 {
  left: 375px;
  top: 52%;
  -webkit-animation: zoom-fade 2s infinite linear;
  animation: zoom-fade 2s infinite linear;
}

.testimonial-style-two .thumb-box .thumb-3 {
  right: 400px;
  top: 30%;
  -webkit-animation: zoom-fade 5s infinite linear;
  animation: zoom-fade 5s infinite linear;
}

.testimonial-style-two .thumb-box .thumb-4 {
  right: 170px;
  top: 55%;
  -webkit-animation: zoom-fade 3s infinite linear;
  animation: zoom-fade 3s infinite linear;
}

.testimonial-style-two .sec-title {
  margin-bottom: 16px;
}

.testimonial-style-two .upper-box {
  position: relative;
  margin-bottom: 85px;
}

/** faq-section **/

.faq-section {
  position: relative;
  padding: 160px 0px;
}

.accordion-box .block .acc-content {
  position: relative;
  display: none;
}

.accordion-box .block .acc-content.current {
  display: block;
}

#content_block_06 .content-box {
  position: relative;
  margin-right: 15px;
}

#content_block_06 .content-box .sec-title {
  margin-bottom: 44px;
}

#content_block_07 .accordion-box {
  position: relative;
  margin-left: 40px;
  margin-top: 10px;
}

.accordion-box .block {
  position: relative;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.accordion-box .block:last-child {
  margin-bottom: 0px;
}

.accordion-box .block.active-block {
  box-shadow: 0 20px 30px 0px rgba(99, 119, 238, 0.1);
}

.accordion-box .block .acc-btn h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #3b3b3b;
  padding: 35px 30px 37px 30px;
  cursor: pointer;
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn h4 span {
  margin-right: 10px;
}

.accordion-box .block .acc-content .content {
  position: relative;
  padding: 0px 30px 35px 60px;
}

.accordion-box .block .acc-btn.active h4 {
  padding-bottom: 16px;
}

.news-section.home-3 {
  padding: 160px 0px;
}

.project-section.home-boxed {
  background: #fff;
}

.news-section.home-boxed {
  background: #fff;
}

/*** 

====================================================================
                        Service-Page
====================================================================

***/

/** page-title **/

.page-title {
  position: relative;
  padding: 225px 0px 140px 0px;
}

.page-title .pattern-layer {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 668px;
  height: 368px;
  background-repeat: no-repeat;
}

.page-title .content-box h1 {
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 45px;
  font-weight: 600;
  color: #3b3b3b;
  margin-bottom: 9px;
}

.page-title .content-box .bread-crumb li {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 26px;
  font-family: "Poppins", sans-serif;
  padding-right: 15px;
  margin-right: 5px;
}

.page-title .content-box .bread-crumb li:before {
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-size: 15px;
  font-weight: 700;
  top: 1px;
  right: 0px;
}

.page-title .content-box .bread-crumb li:last-child:before {
  display: none;
}

.page-title .content-box .bread-crumb li:last-child {
  padding: 0px;
  margin: 0px;
}

.page-title .content-box .bread-crumb li a {
}

.page-title .content-box .bread-crumb li a:hover {
  text-decoration: underline;
}

.service-section.service-page .service-block-one .inner-box .icon-box {
  position: relative;
  top: 0px;
  width: 76px;
  height: 76px;
  line-height: 76px;
  margin-bottom: 31px;
}

.service-section.service-page .service-block-one .inner-box .icon-box:after {
  width: 90px;
  height: 90px;
}

.service-section.service-page .service-block-one .inner-box {
  padding-left: 0px;
}

.service-section.service-page .service-block-one .inner-box h3 {
  margin-bottom: 13px;
}

.service-section.service-page .service-block-one .inner-box {
  margin-bottom: 100px;
}

.mb_0 {
  margin-bottom: 0px !important;
}

/** chooseus-section **/

.chooseus-section {
  position: relative;
  padding: 160px 0px;
}

.chooseus-section .content-box .top-box {
  position: relative;
  margin-bottom: 35px;
}

.chooseus-section .content-box .top-box .sec-title {
  margin-bottom: 25px;
}

#content_block_08 .content-box .inner-box .single-item {
  position: relative;
  padding: 0px 0px 0px 100px;
  margin-bottom: 36px;
}

#content_block_08 .content-box .inner-box .single-item:last-child {
  margin-bottom: 0px;
}

#content_block_08 .content-box .inner-box .single-item .icon-box {
  position: absolute;
  left: 0px;
  top: 12px;
  font-size: 35px;
  background: #fff;
  height: 66px;
  width: 66px;
  line-height: 66px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0px 0px 7px #f4f5fe;
  transition: all 500ms ease;
  z-index: 1;
}

#content_block_08 .content-box .inner-box .single-item:hover .icon-box {
  color: #fff;
}

#content_block_08 .content-box .inner-box .single-item .icon-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  left: 0px;
  top: 0px;
  right: 0px;
  transform: scale(0, 0);
  z-index: -1;
  transition: all 500ms ease;
}

#content_block_08 .content-box .inner-box .single-item:hover .icon-box:before {
  transform: scale(1, 1);
}

#content_block_08 .content-box .inner-box .single-item .icon-box:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  z-index: -1;
  border-radius: 50%;
  box-shadow: 0 20px 40px 0px rgba(99, 119, 238, 0.3);
}

#content_block_08 .content-box .inner-box .single-item h3 {
  margin-bottom: 12px;
}

#image_block_07 .image-box {
  position: relative;
  margin: 25px -120px 0px 100px;
}

#image_block_07 .image-box img {
  width: 100%;
}

.service-block-two .inner-box {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 90px;
}

.service-block-two .inner-box .icon-box {
  position: relative;
  display: inline-block;
  font-size: 36px;
  width: 99px;
  height: 93px;
  line-height: 93px;
  text-align: center;
  color: #fff;
  margin-bottom: 24px;
  z-index: 1;
}

.service-block-two .inner-box .icon-box .shape-box {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 99px;
  height: 93px;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover .icon-box .shape-box {
  transform: rotateY(180deg);
}

.service-block-two .inner-box h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #3b3b3b;
  margin-bottom: 14px;
}

.service-block-two .inner-box h4 a {
  display: inline-block;
  color: #3b3b3b;
}

.service-block-two .inner-box h4 a:hover {
}

/*** 

====================================================================
                        About-Page
====================================================================

***/

/** feature-style-two **/

.feature-style-two {
  position: relative;
  padding-bottom: 160px;
}

.feature-style-two .inner-box {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 20px;
  min-height: 336px;
  box-shadow: 0 20px 50px 3px rgba(99, 119, 238, 0.2);
  padding: 45px 30px 45px 40px;
}

.feature-style-two .inner-box h3 {
  font-size: 24px;
  color: #09092b;
  margin-bottom: 24px;
}

.feature-style-two .inner-box p {
  margin-bottom: 17px;
}

.feature-style-two .inner-box .list-item li {
  position: relative;
  display: block;
  padding-left: 45px;
  margin-bottom: 15px;
}

.feature-style-two .inner-box .list-item li:last-child {
  margin-bottom: 0px;
}

.feature-style-two .inner-box .list-item li:before {
  position: absolute;
  content: "\f105";
  font-family: "Flaticon";
  font-size: 25px;
  line-height: 30px;
  font-weight: 500;
  left: 0px;
  top: 0px;
}

.feature-style-two .inner-box .text p:last-child {
  margin-bottom: 0px;
}

/** team-section **/

.team-section {
  position: relative;
}

.team-block-one .inner-box {
  position: relative;
  display: block;
  text-align: center;
}

.team-block-one .inner-box .image-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
}

.team-block-one .inner-box .image-box img {
  width: 100%;
  border-radius: 20px;
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box img {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
}

.team-block-one .inner-box .image-box .social-links {
  position: absolute;
  display: block;
  width: 100%;
  left: 0px;
  bottom: -121px;
  right: 0px;
  border-radius: 20px;
  padding: 38px 15px;
  opacity: 0;
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box .social-links {
  bottom: 0px;
  opacity: 1;
}

.team-block-one .inner-box .image-box .social-links li {
  position: relative;
  display: inline-block;
  margin: 0px 5px;
}

.team-block-one .inner-box .image-box .social-links li a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
}

.team-block-one .inner-box .image-box .social-links li a:hover {
  background: #fff;
}

.team-block-one .inner-box .lower-content {
  position: relative;
  padding-top: 25px;
}

.team-block-one .inner-box .lower-content h3 {
  margin-bottom: 4px;
}

.team-block-one .inner-box .lower-content .designation {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
}

.team-section .team-block {
  padding: 0px 20px;
}

.team-section .inner-content {
  position: relative;
  margin: 0px -5px;
}

.team-section .sec-title {
  margin-bottom: 55px;
}

/*** 

====================================================================
                        Portfolio-Page
====================================================================

***/

.portfolio-page-section {
  padding: 160px 0px;
}

.portfolio-page-section .filter-tabs {
  position: relative;
  display: block;
  margin-bottom: 60px;
}

.portfolio-page-section .filter-tabs li {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #3b3b3b;
  text-transform: uppercase;
  margin: 0px 15px;
  cursor: pointer;
  transition: all 500ms ease;
}

.portfolio-page-section .filter-tabs li:hover,
.portfolio-page-section .filter-tabs li.active {
}

.portfolio-page-section .pagination-weapper {
  position: relative;
  display: block;
  margin-top: 40px;
}

.portfolio-details {
  position: relative;
}

.portfolio-details .inner-container {
  position: relative;
  max-width: 970px;
  width: 100%;
  margin: 0 auto;
}

.portfolio-details .inner-container .image-box {
  position: relative;
  display: block;
  border-radius: 10px;
  margin-bottom: 120px;
  box-shadow: 0 10px 50px 0px rgba(99, 119, 238, 0.2);
}

.portfolio-details .inner-container .image-box img {
  width: 100%;
  border-radius: 10px;
  transition: all 500ms ease;
}

.portfolio-details .inner-container .image-box:hover img {
  opacity: 0.5;
}

.portfolio-details .inner-container .content-box .left-content h3 {
  font-size: 24px;
  margin-bottom: 23px;
}

.portfolio-details .inner-container .content-box .right-content {
  position: relative;
  margin-left: 60px;
}

.portfolio-details .inner-container .content-box .right-content .list li {
  position: relative;
  float: left;
  width: 50%;
  margin-bottom: 35px;
}

.portfolio-details .inner-container .content-box .right-content .list li h5 {
  position: relative;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #3b3b3b;
  margin-bottom: 14px;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.faq-page-section .content-box .text {
  margin-bottom: 70px;
}

.faq-page-section .accordion-box .block {
  box-shadow: 0 20px 30px 0px rgba(99, 119, 238, 0.1);
}

/*** 

====================================================================
                        Error-Page
====================================================================

***/

.error-section {
  position: relative;
  padding: 150px 0px;
}

.error-section .content-box h1 {
  position: relative;
  display: block;
  font-size: 200px;
  line-height: 150px;
  font-weight: 700;
  margin-bottom: 15px;
}

.error-section .content-box h2 {
  position: relative;
  display: block;
  font-size: 44px;
  line-height: 52px;
  color: #3b3b3b;
  font-weight: 600;
  margin-bottom: 21px;
}

.error-section .text a {
  color: #3b3b3b;
}

.error-section .text a:hover {
  text-decoration: underline;
}

.box-hover {
  padding: 0;
}
.box-hover:hover {
  background-color: #002fa6;
  color: #fff;
}
.box-hover h4 {
  font-size: 18px;
  font-weight: bold;
}
.box-hover:hover h4 {
  color: #fff;
}

.service-block-two .box-2 {
  box-shadow: 1px 14px 7px #dfdfdf;
  padding: 5%;
  border-radius: 20px;
  transition: all 500ms ease;
}

.service-block-two .box-2:hover {
  box-shadow: 1px 14px 7px #ffffff;
  background-color: #086ad8;
}

.service-block-two .box-2:hover h4 {
  color: #fff;
}

.service-block-two .box-2:hover p {
  color: #fff;
}

/** service-section **/

.service-section {
  position: relative;
  padding: 40px 0px 70px 0px;
}

.service-block-ten .inner-box {
  position: relative;
  display: block;
  overflow: hidden;
  text-align: center;
  padding: 46px 20px 54px 20px;
  border-radius: 5px;
  transition: all 900ms ease;
}

.service-block-ten .inner-box:hover {
  box-shadow: 0px 20px 30px rgba(251, 81, 85, 0.23);
}

.service-block-ten .inner-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0%;
  left: 0px;
  bottom: 0px;
  right: 0px;
  border-radius: 5px;
  transition: all 500ms ease;
}

.service-block-ten .inner-box:hover:before {
  height: 100%;
  top: 0px;
}

.service-block-ten .inner-box h4 {
  margin-bottom: 30px;
}

.service-block-ten .inner-box .icon-box {
  position: relative;
  display: inline-block;
  margin-bottom: 33px;
}

.service-block-ten .inner-box .icon-box img {
  position: relative;
  display: inline-block;
  font-size: 50px;
  background: #fff;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  transition: all 500ms ease;
}

.service-block-ten .inner-box:hover .icon-box img {
  box-shadow: none;
}

.service-block-ten .inner-box .icon-box .border-layer {
  position: absolute;
  width: 120px;
  height: 120px;
  left: -10px;
  top: -10px;
  border: 2px solid #fff;
  border-radius: 50%;
  clip-path: polygon(0% 0%, 50% 0%, 50% 100%, 0% 100%, 0 0);
  transition: all 500ms ease;
  -webkit-animation: service_hexagon 2s infinite linear;
  -moz-animation: service_hexagon 2s infinite linear;
  -o-animation: service_hexagon 2s infinite linear;
  animation: service_hexagon 2s infinite linear;
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}

.service-block-ten .inner-box:hover .icon-box .border-layer {
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}

.service-block-ten .inner-box:hover .border-layer {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0 0);
}

.service-block-ten .inner-box .icon-box .border-layer:before {
  position: absolute;
  content: "";
  background: #fff;
  width: 8px;
  height: 8px;
  left: 15px;
  bottom: 9px;
  border-radius: 50%;
}

.service-block-ten .inner-box p {
  color: #666;
}

.service-block-ten .inner-box:hover h4,
.service-block-ten .inner-box:hover h4 a,
.service-block-ten .inner-box:hover p {
  color: #fff;
}

.service-section .sec-title {
  margin-bottom: 10px;
}

.service-section .pattern-layer {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 1525px;
  background-repeat: no-repeat;
  background-position: center;
}

.service-block-ten .inner-box:hover:before {
  height: 100%;
  top: 0px;
}

.service-block-ten .inner-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0%;
  left: 0px;
  bottom: 0px;
  right: 0px;
  border-radius: 5px;
  transition: all 500ms ease;
}
.service-block-ten .inner-box:before {
  background: -webkit-linear-gradient(-30deg, #fb5155, #f92a75 100%);
}

/** chooseus-style-two **/

.chooseus-style-two {
  position: relative;
  padding: 125px 0px 130px 0px;
}

.chooseus-style-two .bg-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.chooseus-style-two .title-inner .sec-title {
  position: relative;
  width: 50%;
  padding-right: 30px;
}

.chooseus-style-two .title-inner .text {
  position: relative;
  width: 50%;
  margin-top: 42px;
  padding-left: 30px;
}

.chooseus-style-two .title-inner .text p {
  color: #fff;
}

.chooseus-style-two .single-item .inner-box h4 {
  color: #fff;
  padding-bottom: 12px;
  margin-bottom: 28px;
}

.chooseus-style-two .single-item .inner-box h4:before {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.2);
  width: 55px;
  height: 2px;
  left: 0px;
  bottom: 0px;
  transition: all 500ms ease;
}

.chooseus-style-two .single-item .inner-box:hover h4:before {
  background: #fff;
}

.chooseus-style-two .single-item .inner-box .box {
  position: relative;
  padding-left: 73px;
  min-height: 52px;
}

.chooseus-style-two .single-item .inner-box .box .icon-box {
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 55px;
  line-height: 55px;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 500ms ease;
}

.chooseus-style-two .single-item .inner-box:hover .box .icon-box {
  transform: rotateY(360deg);
}

.chooseus-style-two .single-item .inner-box .box p {
  color: #fff;
}

/** technology-style-two **/

.technology-style-two {
  position: relative;
}

.technology-style-two .upper-box .image-box {
  position: relative;
  display: block;
  text-align: center;
  padding: 0px 200px;
}

.technology-style-two .upper-box .image-box img {
  width: 100%;
}

.technology-style-two .upper-box .image-box .image {
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.technology-style-two .upper-box .image-box .image-2 {
  position: absolute;
  left: 0px;
  bottom: -80px;
  border-radius: 50px;
}

.technology-style-two .upper-box .image-box .image-3 {
  position: absolute;
  right: 0px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  background: #fff;
  padding: 15px;
  border-radius: 50%;
}

.technology-style-two .upper-box .image-box .image-3 img {
  border-radius: 50%;
}

.technology-style-two .upper-box {
  position: relative;
}

.technology-style-two .upper-box .upper-inner {
  position: relative;
  z-index: 1;
  margin-bottom: -180px;
}

.technology-style-two .lower-box {
  position: relative;
  padding: 360px 0px 100px 0px;
}

.technology-block-two .inner-box {
  position: relative;
  display: block;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 45px 25px 40px 40px;
  border-radius: 3px;
  box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
}

.technology-block-two .inner-box .border-box {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  animation: slide 60s linear infinite;
  -webkit-animation: slide 60s linear infinite;
}

.technology-block-two .inner-box .border-box .border {
  position: absolute;
  width: 30px;
  height: 1px;
  border: none !important;
  background: #fff;
  transition: all 1500ms ease;
}

.technology-block-two .inner-box .border-box .border-1 {
  top: 0px;
  left: 40px;
}

.technology-block-two .inner-box:hover .border-box .border-1 {
  left: 88% !important;
}

.technology-block-two .inner-box .border-box .border-2 {
  bottom: 0px;
  right: 40px;
}

.technology-block-two .inner-box:hover .border-box .border-2 {
  right: 88% !important;
}

.technology-block-two .inner-box .image-box {
  position: absolute;
  top: 12px;
  right: 0px;
}

.technology-block-two .inner-box .inner {
  position: relative;
}

.technology-block-two .inner-box .inner h3 {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.technology-block-two .inner-box .inner p {
  color: #fff;
  margin-bottom: 16px;
}

.technology-block-two .inner-box .inner a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-family: "Josefin Sans", sans-serif;
  color: #fff;
  font-weight: 600;
}

.technology-block-two .inner-box .inner a:hover {
  padding-left: 17px;
}

.technology-block-two .inner-box .inner a:before {
  position: absolute;
  content: "\f104";
  font-size: 16px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  color: #fff;
  left: 0px;
  top: 0px;
  transition: all 500ms ease;
  opacity: 0;
}

.technology-block-two .inner-box .inner a:hover:before {
  opacity: 1;
}

.technology-block-two .inner-box .inner a i {
  position: relative;
  top: 1px;
  margin-left: 8px;
}

.technology-style-two .lower-box {
  position: relative;
  padding: 360px 0px 100px 0px;
}

.technology-style-two .lower-box {
  background: -webkit-linear-gradient(0deg, #3530d4, #66278d 100%);
}

/** industries-section **/

.industries-section {
  position: relative;
  padding: 125px 0px 90px 0px;
}

.industries-section .pattern-layer .pattern-1 {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.industries-section .pattern-layer .pattern-2 {
  position: absolute;
  left: 0px;
  bottom: 0px;
  right: 0px;
  width: 100%;
  height: 463px;
  background-size: cover;
  background-repeat: repeat-x;
  animation: slide 100s linear infinite;
  -webkit-animation: slide 100s linear infinite;
}

.industries-section .inner-box {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 35px 30px 30px 30px;
  margin-bottom: 30px;
  border-radius: 5px;
  transition: all 500ms ease;
}

.industries-section .inner-box:hover {
  box-shadow: 0 20px 30px rgba(250, 59, 103, 0.4);
}

.industries-section .inner-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0%;
  left: 0px;
  bottom: 0px;
  border-radius: 5px;
  transition: all 500ms ease;
}

.industries-section .inner-box:hover:before {
  height: 100%;
  top: 0px;
}

.industries-section .inner-box .pattern-layer {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 137px;
  background-repeat: no-repeat;
  opacity: 0.05;
  transition: all 500ms ease;
}

.industries-section .inner-box:hover .pattern-layer {
  opacity: 1;
}

.industries-section .inner-box span {
  position: relative;
  display: block;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.industries-section .inner-box h4 {
  line-height: 32px;
  margin-bottom: 70px;
  font-size: 18px;
}

.industries-section .inner-box h4,
.industries-section .inner-box h4 a {
  color: #fff;
}

.industries-section .inner-box .btn-box {
  position: absolute;
  right: 30px;
  bottom: 60px;
}

.industries-section .inner-box .btn-box a {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  font-size: 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.industries-section .inner-box:hover .btn-box a {
  background: #fff;
}

.industries-section .inner-box .icon-box {
  position: relative;
  display: inline-block;
  font-size: 60px;
  line-height: 60px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0px;
  transition: all 500ms ease;
}

.industries-section .inner-box:hover .icon-box {
}

.industries-section .content-box .btn-box a {
  color: #fff;
  font-weight: 600;
}

.industries-section .content-box {
  position: relative;
  margin-bottom: 30px;
}

.industries-section .sec-title {
  margin-bottom: 42px;
}
.industries-section {
  background: #18003a;
}
.industries-section .inner-box:hover:before {
  height: 100%;
  top: 0px;
}

.industries-section .inner-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0%;
  left: 0px;
  bottom: 0px;
  border-radius: 5px;
  transition: all 500ms ease;
}
.industries-section .inner-box:before {
  background: -webkit-linear-gradient(0deg, #fb5155, #f92a75 100%);
}

label,
input,
textarea {
  display: block;
  width: 100%;
}
.contact-detiles ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-detiles li {
  padding: 0.3em;
}
.contact-detiles span {
  font-weight: 700;
  color: #102a43;
  line-height: 35px;
  line-height: 2.5rem;
  font-size: 12px;
  font-size: 0.8rem;
  text-transform: uppercase;
}
input[type="submit"] {
  background: #fc4366;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 5px;
  margin-top: 1.3em;
}

.contact-form {
  width: 460px;
  margin: 5em auto;
}
.contact-detiles {
  background-color: #ffffff;
  padding-top: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
  padding-left: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.required-star {
  color: #fc4366;
}

input,
textarea {
  width: 100%;
  padding: 9px 20px;
  border: 1px solid #e1e2eb;
  background-color: #fff;
  color: #102a43;
  caret-color: #829ab1;
  box-sizing: border-box;
  font-size: 14px;
  font-size: 1rem;
  line-height: 29px;
  line-height: 2rem;
  box-shadow: inset 0 2px 4px 0 rgba(206, 209, 224, 0.2);
  border-radius: 3px;
  line-height: 29px;
  line-height: 2rem;
}
