/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700);
/* =========================================================
        General
============================================================ */
body {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  color: #6a6a6a;
  background-color: #ffffff;
  overflow-x: hidden; }
  body.dark-layout {
    color: #696969;
    background-color: #1f1f1f; }
    body.dark-layout .section-title h2 {
      color: #484848; }
    body.dark-layout .footer-section {
      background: #252525; }
      body.dark-layout .footer-section .second-footer {
        background-color: #101010; }
        body.dark-layout .footer-section .second-footer .contact-wrapper ul li {
          color: #545454; }
        body.dark-layout .footer-section .second-footer .copy-right p {
          color: #4a4a4a; }

html {
  font-family: "Poppins", sans-serif; }

html,
body {
  width: 100%;
  height: 100%; }

/* ================= Link style ==================== */
a {
  color: #0101F8; }

a,
a > * {
  outline: none;
  cursor: pointer;
  text-decoration: none; }

a:focus,
a:hover {
  color: #313131;
  outline: none;
  text-decoration: none; }

/* ================= Transition elements ==================== */
a,
.navbar a,
.form-control {
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s; }

/* =========================================================
        Typography 
============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin: 0 0 20px; }

h1 {
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -1px; }
  @media (min-width: 480px) and (max-width: 767px) {
    h1 {
      font-size: 40px; } }
  @media only screen and (max-width: 479px) {
    h1 {
      font-size: 34px; } }

h2 {
  font-size: 36px;
  line-height: 42px;
  font-weight: 600;
  color: #092a48; }
  @media (min-width: 480px) and (max-width: 767px) {
    h2 {
      font-size: 30px;
      line-height: 35px; } }
  @media only screen and (max-width: 479px) {
    h2 {
      font-size: 25px;
      line-height: 30px; } }

h3 {
  font-size: 26px;
  line-height: 30px;
  color: #092a48; }
  @media only screen and (max-width: 479px) {
    h3 {
      font-size: 20px; } }

h4 {
  font-size: 25px; }

h5 {
  font-size: 14px; }

h6 {
  font-size: 12px; }

p img {
  margin: 0; }

p {
  margin: 0 0 15px;
  line-height: 27px; }

hr {
  margin: 0; }

ul {
  margin: 0;
  padding: 0; }

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

/* =========================================================
        Button STYLE 
============================================================ */
.btn {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px; }

.btn.active,
.btn:active {
  box-shadow: none; }

button,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: none; }

.btn-default {
  position: relative;
  font-size: 16px;
  color: #0101F8;
  background-color: #FFFFFF;
  border: 2px solid #0101F8;
  border-radius: 0;
  padding: 8px 22px;
  border-radius: 25px;
  overflow: hidden;
  z-index: 5;
  -webkit-transition: 0.3s;
  -khtml-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }
  .btn-default::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0101F8;
    border-radius: 25px;
    transform: translateX(-102%);
    z-index: -1;
    -webkit-transition: 0.3s;
    -khtml-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
  .btn-default:hover {
    color: #FFFFFF; }
    .btn-default:hover::before {
      transform: translateX(0); }
  @media only screen and (max-width: 767px) {
    .btn-default {
      padding: 6px 18px;
      font-size: 16px; } }
  @media only screen and (max-width: 479px) {
    .btn-default {
      font-size: 14px;
      padding: 2px 16px; } }

.btn-default:hover,
.btn-default.focus,
.btn-default:focus,
.btn-default.active,
.btn-default:active,
.open > .dropdown-toggle.btn-default,
.btn-default.active.focus,
.btn-default.active:focus,
.btn-default.active:hover,
.btn-default:active.focus,
.btn-default:active:focus,
.btn-default:active:hover,
.open > .dropdown-toggle.btn-default.focus,
.open > .dropdown-toggle.btn-default:focus,
.open > .dropdown-toggle.btn-default:hover,
.open > .dropdown-toggle.btn-primary {
  color: #FFFFFF;
  border-color: #0101F8; }

.btn-primary {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  border: 0;
  border-radius: 5px;
  padding: 8px 25px;
  z-index: 5;
  overflow: hidden;
  background-color: #0101F8;
  color: #FFFFFF;
  -webkit-transition: 0.3s;
  -khtml-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }
  .btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 25px;
    transform: translateX(-102%);
    /*background-color: #3aaed0;*/
    background-color: #092a48;
    opacity: 0;
    transform: scale(0.5, 1);
    transition: all 0.4s ease 0s;
    border-radius: 5px;
    z-index: -1;
    -webkit-transition: 0.3s;
    -khtml-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
  .btn-primary:hover::before {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1); }
  @media only screen and (max-width: 767px) {
    .btn-primary {
      font-size: 16px;
      padding: 6px 18px; } }
  @media only screen and (max-width: 479px) {
    .btn-primary {
      font-size: 14px;
      padding: 2px 16px; } }

.btn-primary:hover,
.btn-primary.focus,
.btn-primary:focus,
.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open > .dropdown-toggle.btn-primary.focus,
.open > .dropdown-toggle.btn-primary:focus,
.open > .dropdown-toggle.btn-primary:hover {
  background-color: #0101F8;
  color: #FFFFFF; }

/* =========================================================
        Color Presets For Class
============================================================ */
.facebook-bg {
  background-color: #106ed2; }

.twitter-bg {
  background-color: #3ad0fb; }

.linkedin-bg {
  background-color: #1379bb; }

/* =========================================================
        Global Classes 
============================================================ */
.no-margin {
  margin: 0; }

.no-padding {
  padding: 0; }

.section-padding {
  padding: 100px 0; }
  @media only screen and (max-width: 991px) {
    .section-padding {
      padding: 80px 0; } }
  @media only screen and (max-width: 767px) {
    .section-padding {
      padding: 60px 0; } }

.inline-block {
  display: inline-block; }

.ml-30 {
  margin-left: 30px; }

.mr-30 {
  margin-right: 30px; }

/* =========================================================
        FORM STYLE 
============================================================ */
.form-control:focus {
  box-shadow: none; }

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
  background-color: transparent;
  background-image: none;
  color: #ffffff; }

input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="search"],
textarea, select {
  outline: none;
  margin: 0;
  max-width: 100%;
  -webkit-border-radius: 0px 0px 0px 0px;
  -moz-border-radius: 0px 0px 0px 0px;
  -o-border-radius: 0px 0px 0px 0px;
  -ms-border-radius: 0px 0px 0px 0px;
  -khtml-border-radius: 0px 0px 0px 0px;
  border-radius: 0px 0px 0px 0px; }

/* =========================================================
        Light-Box STYLE 
============================================================ */
.poptrox-popup {
  background: transparent !important; }
  .poptrox-popup .caption,
  .poptrox-popup .closer,
  .poptrox-popup .nav-next,
  .poptrox-popup .nav-previous {
    display: none !important; }

/* =========================================================
        Border Style
============================================================ */
.border-break .border {
  border-bottom: 1px solid #dfdfdf; }

/* =========================================================
        Pagination STYLE 
============================================================ */
.pagination-wrapper {
  margin-top: 80px; }
  @media only screen and (max-width: 991px) {
    .pagination-wrapper {
      margin-top: 0; } }
  @media only screen and (max-width: 767px) {
    .pagination-wrapper {
      margin-top: 20px; } }
  @media only screen and (max-width: 479px) {
    .pagination-wrapper {
      margin-top: 0; } }
  .pagination-wrapper .pagination li.active > a {
    color: #FFFFFF;
    border-color: #0101F8;
    background-color: #0101F8; }
    .pagination-wrapper .pagination li.active > a:hover, .pagination-wrapper .pagination li.active > a:focus, .pagination-wrapper .pagination li.active > a:active {
      background-color: #0101F8; }
  .pagination-wrapper .pagination li a {
    width: 40px;
    height: 40px;
    line-height: 25px;
    font-weight: 700;
    color: #000000;
    border-radius: 0;
    background-color: transparent;
    margin: 0 4px; }
    @media only screen and (max-width: 479px) {
      .pagination-wrapper .pagination li a {
        width: 30px;
        height: 30px;
        line-height: 15px;
        font-size: 12px;
        margin: 0 2px 5px; } }
  .pagination-wrapper .pagination > li > a:focus,
  .pagination-wrapper .pagination > li > a:hover,
  .pagination-wrapper .pagination > li > span:focus,
  .pagination-wrapper .pagination > li > span:hover {
    background-color: transparent; }

/* =========================================================
        Box Layout STYLE 
============================================================ */
.boxLayout, .box-layout {
  margin: 0 auto;
  background: url(../images/pattern.html) no-repeat center top;
  background-size: cover;
  background-attachment: fixed; }
  @media only screen and (min-width: 1200px) {
    .boxLayout, .box-layout {
      width: 1200px; } }
  .boxLayout section, .boxLayout header, .box-layout section, .box-layout header {
    background-color: #FFFFFF; }
  .boxLayout .box-nav, .box-layout .box-nav {
    position: relative; }
    .boxLayout .box-nav .navbar, .box-layout .box-nav .navbar {
      left: 0;
      background-color: #FFFFFF; }
      .boxLayout .box-nav .navbar::before, .box-layout .box-nav .navbar::before {
        width: 350px; }
      .boxLayout .box-nav .navbar .navbar-header .navbar-brand img, .box-layout .box-nav .navbar .navbar-header .navbar-brand img {
        padding: 22px 25px; }
      .boxLayout .box-nav .navbar .navbar-collapse .navbar-nav, .box-layout .box-nav .navbar .navbar-collapse .navbar-nav {
        margin-right: 45px; }
  .boxLayout .navbar.sticky, .box-layout .navbar.sticky {
    width: 1200px;
    margin: 0 auto; }
  .boxLayout .slider-section .tp-banner-container, .box-layout .slider-section .tp-banner-container {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin: 0 auto; }
  .boxLayout .slider-section .tparrows.tp-leftarrow, .box-layout .slider-section .tparrows.tp-leftarrow {
    left: 0 !important; }
  .boxLayout .slider-section .tparrows.tp-rightarrow, .box-layout .slider-section .tparrows.tp-rightarrow {
    right: 0 !important; }
  .boxLayout .searching-section, .box-layout .searching-section {
    overflow: hidden; }
    .boxLayout .searching-section .caption .caption-two, .box-layout .searching-section .caption .caption-two {
      right: -10%; }
      .boxLayout .searching-section .caption .caption-two img, .box-layout .searching-section .caption .caption-two img {
        width: 75%; }
  .boxLayout .subscribe-section, .box-layout .subscribe-section {
    overflow: hidden; }
  .boxLayout .optimized-section .content-wrapper, .box-layout .optimized-section .content-wrapper {
    padding: 80px 80px 0 30px; }
    @media only screen and (max-width: 991px) {
      .boxLayout .optimized-section .content-wrapper, .box-layout .optimized-section .content-wrapper {
        padding: 80px 15px 60px; } }

/* =========================================================
        Section-Title STYLE 
============================================================ */
.section-title {
  position: relative; }
  .section-title h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
    color: #f3b502;
    margin-bottom: 39px; }
    @media only screen and (max-width: 767px) {
      .section-title h2 {
        font-size: 25px;
        line-height: 35px; } }
    @media only screen and (max-width: 479px) {
      .section-title h2 {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 10px; } }
  .section-title .border {
    position: absolute;
    top: 53px;
    left: 0;
    right: 0;
    width: 100px;
    height: 2px;
    background-color: #0101F8;
    margin: 0 auto; }
    @media only screen and (max-width: 479px) {
      .section-title .border {
        display: none; } }
  .section-title .border-2 {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    width: 100px;
    height: 4px;
    background-color: #0101F8;
    margin: 0 auto; }
    @media only screen and (max-width: 767px) {
      .section-title .border-2 {
        top: 50px; } }
    @media only screen and (max-width: 479px) {
      .section-title .border-2 {
        display: none; } }
  .section-title .border-3 {
    max-width: 100%;
    height: 2px;
    background: url(../images/title-border-1.png) no-repeat center;
    margin: -20px auto 25px; }
    @media only screen and (max-width: 767px) {
      .section-title .border-3 {
        width: 100%; } }
    @media only screen and (max-width: 479px) {
      .section-title .border-3 {
        display: none; } }
  .section-title .border-4 {
    max-width: 100%;
    height: 2px;
    background: url(../images/title-border-2.png) no-repeat center;
    margin: -20px auto 25px; }
    @media only screen and (max-width: 767px) {
      .section-title .border-4 {
        width: 100%; } }
    @media only screen and (max-width: 479px) {
      .section-title .border-4 {
        display: none; } }
  .section-title p {
    font-size: 16px;
    color: #6a6a6a; }
    @media only screen and (max-width: 767px) {
      .section-title p {
        font-size: 15px;
        line-height: 25px; } }

/* =========================================================
        Header-Title STYLE 
============================================================ */
.header-title {
  padding: 215px 0 80px; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .header-title {
      padding: 260px 0 80px; } }
  @media only screen and (max-width: 767px) {
    .header-title {
      padding: 100px 0 80px; } }
  @media only screen and (max-width: 479px) {
    .header-title {
      padding: 60px 0; } }
  .header-title .title {
    font-size: 48px;
    font-weight: 700;
    line-height: 50px;
    color: #092a48;
    margin-bottom: 2px;
    letter-spacing: -0.5px; }
    @media only screen and (max-width: 991px) {
      .header-title .title {
        font-size: 35px;
        line-height: 35px; } }
    @media (min-width: 480px) and (max-width: 767px) {
      .header-title .title {
        font-size: 30px;
        line-height: 30px; } }
    @media only screen and (max-width: 479px) {
      .header-title .title {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 0; } }
  .header-title .sub-title {
    font-size: 18px;
    font-weight: 500;
    color: #092a48; }
    .header-title .sub-title .text-color {
      color: #0101F8; }

/* =========================================================
        Header STYLE 
============================================================ */
.header-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99; }
  @media only screen and (max-width: 767px) {
    .header-section {
      position: relative; } }
  .header-section .top-bar {
    min-height: 60px;
    line-height: 60px;
    background-color: #092a48; }
    @media only screen and (max-width: 991px) {
      .header-section .top-bar {
        min-height: 50px;
        line-height: 50px; } }
    @media only screen and (max-width: 767px) {
      .header-section .top-bar {
        text-align: center;
        min-height: auto;
        line-height: 35px;
        padding: 5px 0; } }
    @media only screen and (max-width: 767px) {
      .header-section .top-bar {
        padding: 10px 0; } }
    .header-section .top-bar .header-left-bar .contact-wrapper {
      display: inline-block; }
      .header-section .top-bar .header-left-bar .contact-wrapper li {
        font-size: 14px;
        display: inline-block;
        color: #9daab8;
        margin-right: 30px; }
        @media only screen and (max-width: 1199px) {
          .header-section .top-bar .header-left-bar .contact-wrapper li {
            font-size: 15px; } }
        @media only screen and (max-width: 479px) {
          .header-section .top-bar .header-left-bar .contact-wrapper li {
            display: block;
            margin: 0;
            line-height: 30px; } }
        .header-section .top-bar .header-left-bar .contact-wrapper li:last-child {
          margin-right: 0; }
        .header-section .top-bar .header-left-bar .contact-wrapper li i {
          font-size: 20px;
          color: #0101F8;
          vertical-align: middle;
          margin-right: 5px; }
    @media only screen and (max-width: 767px) {
      .header-section .top-bar .header-right-bar {
        text-align: center; } }
    .header-section .top-bar .header-right-bar .language {
      position: relative;
      display: inline-block;
      margin-right: 15px;
      z-index: 9; }
      .header-section .top-bar .header-right-bar .language .dropbar {
        color: #0101F8;
        text-transform: uppercase;
        text-align: center; }
        .header-section .top-bar .header-right-bar .language .dropbar i {
          font-size: 20px;
          margin-right: 10px;
          vertical-align: middle; }
        .header-section .top-bar .header-right-bar .language .dropbar.closed .title::after {
          -webkit-transform: rotate(0deg);
          -moz-transform: rotate(0deg);
          -ms-transform: rotate(0deg);
          -o-transform: rotate(0deg);
          transform: rotate(0deg); }
        .header-section .top-bar .header-right-bar .language .dropbar.closed .dropbar-menu {
          margin-top: 0px; }
          .header-section .top-bar .header-right-bar .language .dropbar.closed .dropbar-menu li {
            height: 0px; }
        .header-section .top-bar .header-right-bar .language .dropbar .title {
          cursor: pointer;
          display: inline-block; }
          .header-section .top-bar .header-right-bar .language .dropbar .title::after {
            content: "\f107";
            font-family: "FontAwesome";
            position: absolute;
            right: 0;
            -webkit-transform: rotate(180deg);
            -moz-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
            -o-transform: rotate(180deg);
            transform: rotate(180deg); }
          .header-section .top-bar .header-right-bar .language .dropbar .title img {
            margin-right: 8px; }
        .header-section .top-bar .header-right-bar .language .dropbar .dropbar-menu {
          position: relative;
          overflow: hidden;
          max-height: 200px;
          width: 130px;
          text-align: center;
          -webkit-transition: all 0.2s;
          -moz-transition: all 0.2s;
          transition: all 0.2s;
          -webkit-box-sizing: "border-box";
          -moz-box-sizing: "border-box";
          box-sizing: "border-box"; }
          .header-section .top-bar .header-right-bar .language .dropbar .dropbar-menu ul {
            position: absolute;
            top: 0;
            width: 100%;
            border: 1px solid #085370; }
            .header-section .top-bar .header-right-bar .language .dropbar .dropbar-menu ul li {
              width: 100%;
              height: 40px;
              line-height: 40px;
              border-bottom: 1px solid #085370;
              padding: 0 12px;
              vertical-align: top;
              overflow: hidden;
              cursor: pointer;
              -webkit-transition: margin-top 0.5s, height 0.5s;
              -moz-transition: margin-top 0.5s, height 0.5s;
              transition: margin-top 0.5s, height 0.5s; }
              .header-section .top-bar .header-right-bar .language .dropbar .dropbar-menu ul li:hover {
                background-color: #D9E1E4;
                color: #343C3F; }
              .header-section .top-bar .header-right-bar .language .dropbar .dropbar-menu ul li:last-child {
                border: 0; }
              .header-section .top-bar .header-right-bar .language .dropbar .dropbar-menu ul li img {
                margin-right: 8px; }
    .header-section .top-bar .header-right-bar .social-icon li {
      display: inline-block;
      margin-right: 15px; }
      .header-section .top-bar .header-right-bar .social-icon li:last-child {
        margin-right: 0; }
      .header-section .top-bar .header-right-bar .social-icon li i {
        font-size: 16px;
        color: #9daab8;
        -webkit-transition: 0.5s;
        -khtml-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s; }
        .header-section .top-bar .header-right-bar .social-icon li i:hover {
          color: #0101F8; }
    .header-section .top-bar .contact-bar {
      display: flex; }
      @media only screen and (max-width: 991px) {
        .header-section .top-bar .contact-bar {
          display: block; } }
      .header-section .top-bar .contact-bar li {
        flex: 1; }
        @media only screen and (max-width: 991px) {
          .header-section .top-bar .contact-bar li {
            float: left;
            width: 50%;
            margin: 12px 0; } }
        @media only screen and (max-width: 510px) {
          .header-section .top-bar .contact-bar li {
            width: 100%;
            margin: 5px 0; } }
        .header-section .top-bar .contact-bar li .caption {
          width: 50px;
          height: 50px;
          line-height: 50px;
          background: #0101F8;
          border-radius: 50%;
          float: left;
          text-align: center;
          margin-right: 12px; }
          @media only screen and (max-width: 1199px) {
            .header-section .top-bar .contact-bar li .caption {
              width: 40px;
              height: 40px;
              line-height: 40px; }
              .header-section .top-bar .contact-bar li .caption img {
                width: 15px; } }
          @media only screen and (max-width: 510px) {
            .header-section .top-bar .contact-bar li .caption {
              width: 30px;
              height: 30px;
              line-height: 30px; }
              .header-section .top-bar .contact-bar li .caption img {
                width: 10px; } }
        .header-section .top-bar .contact-bar li h4 {
          font-size: 20px;
          font-weight: 500;
          color: #fcfeff;
          margin: 0; }
          @media only screen and (max-width: 510px) {
            .header-section .top-bar .contact-bar li h4 {
              font-size: 18px; } }
        .header-section .top-bar .contact-bar li .time {
          font-size: 14px;
          color: #9a9a9a; }
          @media only screen and (max-width: 510px) {
            .header-section .top-bar .contact-bar li .time {
              font-size: 12px; } }
  .header-section .middle-wrapper {
    background: #FFFFFF;
    padding: 25px 0; }
    @media only screen and (max-width: 991px) {
      .header-section .middle-wrapper {
        padding: 15px 0 7px; } }
    @media only screen and (max-width: 767px) {
      .header-section .middle-wrapper {
        margin: 0 -15px;
        padding: 15px 15px; } }
    .header-section .middle-wrapper .header-left-bar .navbar-brand {
      margin: 0 0 0 30px;
      padding: 0; }
      @media only screen and (max-width: 991px) {
        .header-section .middle-wrapper .header-left-bar .navbar-brand {
          margin: 4px 0 0 15px;
          height: auto; } }
      @media only screen and (max-width: 767px) {
        .header-section .middle-wrapper .header-left-bar .navbar-brand {
          float: none !important;
          display: block;
          margin: 0 0 20px; } }
      .header-section .middle-wrapper .header-left-bar .navbar-brand img {
        max-width: 100%; }
        @media only screen and (max-width: 767px) {
          .header-section .middle-wrapper .header-left-bar .navbar-brand img {
            margin: 0 auto;
            width: 200px; } }
    .header-section .middle-wrapper .header-right-bar .finding-section {
      display: flex; }
      @media only screen and (max-width: 479px) {
        .header-section .middle-wrapper .header-right-bar .finding-section {
          display: block; } }
      .header-section .middle-wrapper .header-right-bar .finding-section li {
        flex: 1; }
        @media only screen and (max-width: 479px) {
          .header-section .middle-wrapper .header-right-bar .finding-section li {
            margin-bottom: 20px; } }
        .header-section .middle-wrapper .header-right-bar .finding-section li:last-child {
          margin-bottom: 0; }
        .header-section .middle-wrapper .header-right-bar .finding-section li i {
          font-size: 20px;
          width: 42px;
          height: 42px;
          line-height: 42px;
          color: #FFFFFF;
          background: #0101F8;
          border-radius: 50%;
          text-align: center;
          float: left;
          box-shadow: 0 0 10px 0 #0101F8;
          margin: 3px 15px 0 0; }
          @media (min-width: 768px) and (max-width: 991px) {
            .header-section .middle-wrapper .header-right-bar .finding-section li i {
              width: 30px;
              height: 30px;
              line-height: 30px;
              margin: 3px 10px 0 0; } }
          @media only screen and (max-width: 767px) {
            .header-section .middle-wrapper .header-right-bar .finding-section li i {
              font-size: 16px;
              width: 30px;
              height: 30px;
              line-height: 30px;
              margin: 3px 10px 0 0; } }
        .header-section .middle-wrapper .header-right-bar .finding-section li h5 {
          font-size: 18px;
          font-weight: 500;
          color: #031633;
          margin-bottom: 3px; }
          @media only screen and (max-width: 991px) {
            .header-section .middle-wrapper .header-right-bar .finding-section li h5 {
              font-size: 16px;
              margin-bottom: 0; } }
          @media only screen and (max-width: 767px) {
            .header-section .middle-wrapper .header-right-bar .finding-section li h5 {
              font-size: 15px;
              margin-bottom: 0; } }
        .header-section .middle-wrapper .header-right-bar .finding-section li .location {
          font-size: 14px;
          color: #666666; }
          @media (min-width: 768px) and (max-width: 991px) {
            .header-section .middle-wrapper .header-right-bar .finding-section li .location {
              word-break: break-all; } }
          @media only screen and (max-width: 767px) {
            .header-section .middle-wrapper .header-right-bar .finding-section li .location {
              font-size: 12px; } }
  .header-section .navbar {
    border: 0;
    border-radius: 0;
    margin: 0;
    min-height: auto;
    background-color: #0101F8;
    z-index: 998; }
    .header-section .navbar .navbar-header {
      position: relative;
      z-index: 5; }
      .header-section .navbar .navbar-header .navbar-brand {
        padding: 0;
        margin: 0; }
        .header-section .navbar .navbar-header .navbar-brand img {
          padding: 35px 0;
          -webkit-transition: 0.5s;
          -khtml-transition: 0.5s;
          -moz-transition: 0.5s;
          -ms-transition: 0.5s;
          -o-transition: 0.5s;
          transition: 0.5s; }
    .header-section .navbar.sticky {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      box-shadow: 0 0 20px 0px rgba(64, 64, 64, 0.16);
      padding: 0;
      z-index: 998; }
      @media (min-width: 768px) and (max-width: 991px) {
        .header-section .navbar.sticky {
          margin-top: -88px; } }
      .header-section .navbar.sticky .navbar-header .navbar-brand img {
        padding: 20px 0; }
      .header-section .navbar.sticky .navbar-collapse {
        width: 1140px;
        margin: 0 auto; }
        @media (min-width: 992px) and (max-width: 1199px) {
          .header-section .navbar.sticky .navbar-collapse {
            width: auto; } }
        .header-section .navbar.sticky .navbar-collapse .navbar-nav li:hover .dropdown {
          z-index: 9; }
        .header-section .navbar.sticky .navbar-collapse .navbar-nav li .dropdown {
          z-index: -1; }
        .header-section .navbar.sticky .navbar-collapse .navbar-nav li .cart::before {
          top: 12px;
          font-size: 10px; }
        .header-section .navbar.sticky .navbar-collapse .navbar-nav li .text {
          top: 10px; }
    .header-section .navbar .navbar-collapse {
      padding: 0; }
      .header-section .navbar .navbar-collapse .navbar-nav {
        margin: 0 30px; }
        .header-section .navbar .navbar-collapse .navbar-nav li {
          position: relative;
          font-size: 14px;
          font-weight: 500;
          text-transform: uppercase;
          margin-right: 28px; }
          @media (min-width: 992px) and (max-width: 1199px) {
            .header-section .navbar .navbar-collapse .navbar-nav li {
              margin-right: 25px; } }
          .header-section .navbar .navbar-collapse .navbar-nav li:last-child {
            margin-right: 0; }
          .header-section .navbar .navbar-collapse .navbar-nav li img {
            margin-right: 8px; }
          .header-section .navbar .navbar-collapse .navbar-nav li a, .header-section .navbar .navbar-collapse .navbar-nav li .search-view, .header-section .navbar .navbar-collapse .navbar-nav li .cart-icon {
            color: #FFFFFF;
            padding: 0;
            line-height: 55px;
            -webkit-transition: 0.5s;
            -khtml-transition: 0.5s;
            -moz-transition: 0.5s;
            -ms-transition: 0.5s;
            -o-transition: 0.5s;
            transition: 0.5s; }
            .header-section .navbar .navbar-collapse .navbar-nav li a:hover, .header-section .navbar .navbar-collapse .navbar-nav li .search-view:hover, .header-section .navbar .navbar-collapse .navbar-nav li .cart-icon:hover {
              color: #313131;
              background-color: transparent; }
          .header-section .navbar .navbar-collapse .navbar-nav li .cart-icon i {
            color: #222222; }
            .header-section .navbar .navbar-collapse .navbar-nav li .cart-icon i:hover {
              color: #0101F8; }
          .header-section .navbar .navbar-collapse .navbar-nav li .search-view {
            cursor: pointer; }
          .header-section .navbar .navbar-collapse .navbar-nav li.active a {
            color: #313131;
            background-color: transparent; }
          .header-section .navbar .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu {
            top: 55px;
            visibility: visible;
            opacity: 1;
            z-index: 1;
            transform: translateY(0%);
            transition-delay: 0s, 0s, 0.3s; }
          .header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu {
            top: 55px;
            left: -25px;
            min-width: 200px;
            background-color: #FFFFFF;
            padding: 10px 0;
            display: block;
            visibility: hidden;
            opacity: 0;
            border: 0;
            transform: translateY(-2em);
            z-index: -1;
            transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s; }
            .header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li {
              position: relative;
              font-size: 14px;
              font-weight: 500;
              border-bottom: 1px solid rgba(97, 109, 126, 0.12);
              margin: 0 25px;
              padding: 0 5px;
              -webkit-transition: 0.5s;
              -khtml-transition: 0.5s;
              -moz-transition: 0.5s;
              -ms-transition: 0.5s;
              -o-transition: 0.5s;
              transition: 0.5s; }
              .header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li.active a {
                color: #0101F8 !important; }
              .header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li:hover {
                border-bottom: 1px solid transparent; }
                .header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li:hover::before {
                  width: 100%; }
              .header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li::before {
                content: "";
                position: absolute;
                width: 0;
                height: 1px;
                left: 0;
                bottom: 0;
                background: #0101F8;
                -webkit-transition: 0.5s;
                -khtml-transition: 0.5s;
                -moz-transition: 0.5s;
                -ms-transition: 0.5s;
                -o-transition: 0.5s;
                transition: 0.5s; }
              .header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li:last-child {
                border-bottom: 0; }
                .header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li:last-child::before {
                  display: none; }
              .header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li a {
                color: #616d7e !important;
                line-height: 45px;
                font-weight: 500; }
                .header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li a:hover {
                  color: #0101F8 !important; }
              .header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li:hover .sub-dropdown {
                opacity: 1;
                right: -136%; }
            .header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu .sub-dropdown {
              position: absolute;
              top: 0;
              right: -120%;
              width: 180px;
              background-color: #FFFFFF;
              opacity: 0;
              padding: 10px 0;
              -webkit-transition: 0.5s;
              -khtml-transition: 0.5s;
              -moz-transition: 0.5s;
              -ms-transition: 0.5s;
              -o-transition: 0.5s;
              transition: 0.5s; }
          .header-section .navbar .navbar-collapse .navbar-nav li #search-bar {
            background: rgba(9, 42, 72, 0.98);
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            right: 0;
            visibility: hidden;
            opacity: 0;
            z-index: 99;
            -webkit-transition: 0.5s;
            -khtml-transition: 0.5s;
            -moz-transition: 0.5s;
            -ms-transition: 0.5s;
            -o-transition: 0.5s;
            transition: 0.5s; }
            .header-section .navbar .navbar-collapse .navbar-nav li #search-bar.active {
              visibility: visible;
              opacity: 1; }
              .header-section .navbar .navbar-collapse .navbar-nav li #search-bar.active .form-bar .form-group {
                -webkit-transform: scale(1);
                -moz-transform: scale(1);
                -ms-transform: scale(1);
                -o-transform: scale(1);
                transform: scale(1); }
            .header-section .navbar .navbar-collapse .navbar-nav li #search-bar .close-bar {
              width: 100%;
              height: 100%;
              text-align: right;
              padding-right: 60px;
              padding-top: 20px; }
              .header-section .navbar .navbar-collapse .navbar-nav li #search-bar .close-bar i {
                color: #FFFFFF;
                font-size: 22px; }
            .header-section .navbar .navbar-collapse .navbar-nav li #search-bar .form-bar {
              position: relative;
              width: 50%;
              top: 50%;
              margin: -50px auto; }
              .header-section .navbar .navbar-collapse .navbar-nav li #search-bar .form-bar .form-group {
                margin: 0;
                -webkit-transition: 0.5s;
                -khtml-transition: 0.5s;
                -moz-transition: 0.5s;
                -ms-transition: 0.5s;
                -o-transition: 0.5s;
                transition: 0.5s;
                -webkit-transform: scale(0.5);
                -moz-transform: scale(0.5);
                -ms-transform: scale(0.5);
                -o-transform: scale(0.5);
                transform: scale(0.5); }
                .header-section .navbar .navbar-collapse .navbar-nav li #search-bar .form-bar .form-group .form-control {
                  font-size: 32px;
                  color: #FFFFFF;
                  background-color: transparent;
                  border: 0;
                  border-bottom: 3px solid #FFFFFF;
                  box-shadow: none;
                  height: 50px;
                  padding: 0; }
                  .header-section .navbar .navbar-collapse .navbar-nav li #search-bar .form-bar .form-group .form-control::placeholder {
                    color: #FFFFFF; }
              .header-section .navbar .navbar-collapse .navbar-nav li #search-bar .form-bar input[placeholder], .header-section .navbar .navbar-collapse .navbar-nav li #search-bar .form-bar [placeholder], .header-section .navbar .navbar-collapse .navbar-nav li #search-bar .form-bar *[placeholder] {
                color: #FFFFFF !important; }
          .header-section .navbar .navbar-collapse .navbar-nav li .cart-wrapper {
            cursor: pointer; }
            .header-section .navbar .navbar-collapse .navbar-nav li .cart-wrapper.open .cart-item {
              display: block;
              visibility: visible;
              opacity: 1;
              transform: translateY(0);
              z-index: 5; }
          .header-section .navbar .navbar-collapse .navbar-nav li .text {
            width: 20px;
            height: 20px;
            color: #FFFFFF;
            background-color: #313131;
            border-radius: 50%;
            padding: 4px 6px;
            position: absolute;
            top: 25px;
            right: -11px;
            line-height: 11px;
            text-align: center;
            font-size: 10px; }
          .header-section .navbar .navbar-collapse .navbar-nav li .cart-item {
            position: absolute;
            top: 55px;
            right: 0;
            background-color: #FFFFFF;
            border: 2px solid #0101F8;
            padding: 15px 15px 0;
            transform: translateY(50px);
            visibility: hidden;
            opacity: 0;
            z-index: -9999;
            -webkit-transition: 0.5s;
            -khtml-transition: 0.5s;
            -moz-transition: 0.5s;
            -ms-transition: 0.5s;
            -o-transition: 0.5s;
            transition: 0.5s; }
            @media (min-width: 992px) and (max-width: 1250px) {
              .header-section .navbar .navbar-collapse .navbar-nav li .cart-item {
                right: 0; } }
            .header-section .navbar .navbar-collapse .navbar-nav li .cart-item ul {
              width: 300px; }
              .header-section .navbar .navbar-collapse .navbar-nav li .cart-item ul li {
                line-height: 30px;
                padding: 10px 0;
                border-bottom: 1px solid #0101F8; }
                .header-section .navbar .navbar-collapse .navbar-nav li .cart-item ul li img {
                  width: 75px;
                  float: left; }
                .header-section .navbar .navbar-collapse .navbar-nav li .cart-item ul li .content {
                  color: #313131;
                  padding-left: 15px; }
                  .header-section .navbar .navbar-collapse .navbar-nav li .cart-item ul li .content h5 {
                    font-weight: 600;
                    color: #313131;
                    margin-bottom: 5px; }
                  .header-section .navbar .navbar-collapse .navbar-nav li .cart-item ul li .content .rate {
                    color: #0101F8;
                    display: block; }
                  .header-section .navbar .navbar-collapse .navbar-nav li .cart-item ul li .content .option i {
                    margin: 0; }
            .header-section .navbar .navbar-collapse .navbar-nav li .cart-item .amount {
              color: #333;
              line-height: 30px;
              padding: 10px 0 30px; }
            .header-section .navbar .navbar-collapse .navbar-nav li .cart-item .btn {
              border-radius: 8px;
              width: 100%;
              font-size: 16px;
              padding: 7px 44px;
              margin-bottom: 25px; }
              .header-section .navbar .navbar-collapse .navbar-nav li .cart-item .btn::before {
                display: none; }
              .header-section .navbar .navbar-collapse .navbar-nav li .cart-item .btn:hover {
                color: #313131; }

/* =========================================================
        Slider-Section STYLE 
============================================================ */
.slider-section {
  overflow: hidden; }
  .slider-section #rev_slider_1 .font-extra-bold {
    font-size: 55px !important;
    font-weight: 600 !important;
    line-height: 68px !important;
    color: #FFFFFF;
    margin: 14px 0 15px !important; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .slider-section #rev_slider_1 .font-extra-bold {
        font-size: 40px !important;
        line-height: 60px !important; } }
    @media only screen and (max-width: 991px) {
      .slider-section #rev_slider_1 .font-extra-bold {
        font-size: 30px !important;
        line-height: 50px !important; } }
    @media only screen and (max-width: 767px) {
      .slider-section #rev_slider_1 .font-extra-bold {
        font-size: 25px !important;
        line-height: 40px !important;
        margin: 0 0 9px !important; } }
  .slider-section #rev_slider_1 .font-medium {
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 30px !important;
    color: #FFFFFF !important; }
    .slider-section #rev_slider_1 .font-medium.text-center {
      text-align: center !important; }
    @media only screen and (max-width: 767px) {
      .slider-section #rev_slider_1 .font-medium {
        font-size: 16px !important;
        line-height: 25px !important;
        margin: 0 0 9px !important; } }
    @media only screen and (max-width: 479px) {
      .slider-section #rev_slider_1 .font-medium {
        font-size: 14px !important;
        line-height: 18px !important;
        margin: 30px 0 9px !important; } }
  .slider-section #rev_slider_1 .btn {
    font-size: 18px !important;
    border-radius: 0;
    padding: 11px 55px !important;
    margin: 0 2px !important; }
    @media only screen and (max-width: 991px) {
      .slider-section #rev_slider_1 .btn {
        padding: 10px 40px !important; } }
    @media only screen and (max-width: 767px) {
      .slider-section #rev_slider_1 .btn {
        padding: 10px 25px !important; } }
    .slider-section #rev_slider_1 .btn::before {
      border-radius: 0; }
    .slider-section #rev_slider_1 .btn.color-bg {
      background: #FFFFFF !important;
      color: #0101F8 !important; }
      .slider-section #rev_slider_1 .btn.color-bg::before {
        background-color: #092a48; }
    @media only screen and (max-width: 479px) {
      .slider-section #rev_slider_1 .btn {
        display: none; } }
  .slider-section #rev_slider_1 .tparrows.tp-leftarrow, .slider-section #rev_slider_1 .tparrows.tp-rightarrow {
    top: auto !important;
    bottom: 35px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    width: 50px !important;
    height: 50px !important;
    line-height: 50px !important;
    background: #FFFFFF !important;
    border-radius: 0 !important;
    text-align: center !important;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    @media only screen and (max-width: 991px) {
      .slider-section #rev_slider_1 .tparrows.tp-leftarrow, .slider-section #rev_slider_1 .tparrows.tp-rightarrow {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        line-height: 40px !important; } }
    @media only screen and (max-width: 767px) {
      .slider-section #rev_slider_1 .tparrows.tp-leftarrow, .slider-section #rev_slider_1 .tparrows.tp-rightarrow {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        min-height: 30px !important;
        line-height: 30px !important; } }
    .slider-section #rev_slider_1 .tparrows.tp-leftarrow:hover, .slider-section #rev_slider_1 .tparrows.tp-rightarrow:hover {
      background: #0101F8 !important; }
      .slider-section #rev_slider_1 .tparrows.tp-leftarrow:hover::before, .slider-section #rev_slider_1 .tparrows.tp-rightarrow:hover::before {
        color: #FFFFFF !important; }
    .slider-section #rev_slider_1 .tparrows.tp-leftarrow::before, .slider-section #rev_slider_1 .tparrows.tp-rightarrow::before {
      font-size: 20px !important;
      line-height: 50px !important;
      color: #0101F8 !important;
      -webkit-transition: 0.5s;
      -khtml-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
      @media only screen and (max-width: 991px) {
        .slider-section #rev_slider_1 .tparrows.tp-leftarrow::before, .slider-section #rev_slider_1 .tparrows.tp-rightarrow::before {
          line-height: 40px !important; } }
      @media only screen and (max-width: 767px) {
        .slider-section #rev_slider_1 .tparrows.tp-leftarrow::before, .slider-section #rev_slider_1 .tparrows.tp-rightarrow::before {
          line-height: 30px !important;
          font-size: 16px !important; } }
    .slider-section #rev_slider_1 .tparrows.tp-leftarrow.tp-leftarrow, .slider-section #rev_slider_1 .tparrows.tp-rightarrow.tp-leftarrow {
      left: auto !important;
      right: 157px !important; }
      @media only screen and (min-width: 1500px) {
        .slider-section #rev_slider_1 .tparrows.tp-leftarrow.tp-leftarrow, .slider-section #rev_slider_1 .tparrows.tp-rightarrow.tp-leftarrow {
          right: 167px !important; } }
      @media only screen and (max-width: 991px) {
        .slider-section #rev_slider_1 .tparrows.tp-leftarrow.tp-leftarrow, .slider-section #rev_slider_1 .tparrows.tp-rightarrow.tp-leftarrow {
          right: 134px !important; } }
      @media only screen and (max-width: 767px) {
        .slider-section #rev_slider_1 .tparrows.tp-leftarrow.tp-leftarrow, .slider-section #rev_slider_1 .tparrows.tp-rightarrow.tp-leftarrow {
          right: 110px !important; } }
    .slider-section #rev_slider_1 .tparrows.tp-leftarrow.tp-rightarrow, .slider-section #rev_slider_1 .tparrows.tp-rightarrow.tp-rightarrow {
      right: 1% !important;
      left: auto !important; }
  .slider-section #rev_slider_2 .font-extra-bold {
    font-size: 48px !important;
    font-weight: 600 !important;
    line-height: 62px !important;
    color: #FFFFFF;
    margin: 14px 0 15px !important; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .slider-section #rev_slider_2 .font-extra-bold {
        font-size: 40px !important;
        line-height: 60px !important; } }
    @media only screen and (max-width: 991px) {
      .slider-section #rev_slider_2 .font-extra-bold {
        font-size: 30px !important;
        line-height: 50px !important; } }
    @media only screen and (max-width: 767px) {
      .slider-section #rev_slider_2 .font-extra-bold {
        font-size: 25px !important;
        line-height: 40px !important;
        margin: 0 0 9px !important; } }
  .slider-section #rev_slider_2 .font-medium {
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 30px !important;
    color: #FFFFFF !important; }
    .slider-section #rev_slider_2 .font-medium.text-center {
      text-align: center !important; }
    @media only screen and (max-width: 767px) {
      .slider-section #rev_slider_2 .font-medium {
        font-size: 16px !important;
        line-height: 25px !important;
        margin: 0 0 9px !important; } }
    @media only screen and (max-width: 479px) {
      .slider-section #rev_slider_2 .font-medium {
        font-size: 14px !important;
        line-height: 18px !important;
        margin: 30px 0 9px !important; } }
  .slider-section #rev_slider_2 .btn {
    font-size: 18px !important;
    border-radius: 0;
    padding: 11px 55px !important;
    margin: 0 2px !important; }
    @media only screen and (max-width: 991px) {
      .slider-section #rev_slider_2 .btn {
        padding: 10px 40px !important; } }
    @media only screen and (max-width: 767px) {
      .slider-section #rev_slider_2 .btn {
        padding: 10px 25px !important; } }
    .slider-section #rev_slider_2 .btn::before {
      border-radius: 0; }
    .slider-section #rev_slider_2 .btn.color-bg {
      background: #FFFFFF !important;
      color: #0101F8 !important; }
      .slider-section #rev_slider_2 .btn.color-bg::before {
        background-color: #092a48; }
    @media only screen and (max-width: 479px) {
      .slider-section #rev_slider_2 .btn {
        display: none; } }
  .slider-section #rev_slider_2:hover .tparrows.tp-leftarrow, .slider-section #rev_slider_2:hover .tparrows.tp-rightarrow {
    opacity: 1; }
  .slider-section #rev_slider_2 .tparrows.tp-leftarrow, .slider-section #rev_slider_2 .tparrows.tp-rightarrow {
    top: 55% !important;
    min-width: 50px !important;
    min-height: 50px !important;
    width: 50px !important;
    height: 50px !important;
    line-height: 50px !important;
    background: #FFFFFF !important;
    border-radius: 0 !important;
    text-align: center !important;
    opacity: 0;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    @media only screen and (max-width: 991px) {
      .slider-section #rev_slider_2 .tparrows.tp-leftarrow, .slider-section #rev_slider_2 .tparrows.tp-rightarrow {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        line-height: 40px !important; } }
    @media only screen and (max-width: 767px) {
      .slider-section #rev_slider_2 .tparrows.tp-leftarrow, .slider-section #rev_slider_2 .tparrows.tp-rightarrow {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        min-height: 30px !important;
        line-height: 30px !important; } }
    .slider-section #rev_slider_2 .tparrows.tp-leftarrow:hover, .slider-section #rev_slider_2 .tparrows.tp-rightarrow:hover {
      background: #0101F8 !important; }
      .slider-section #rev_slider_2 .tparrows.tp-leftarrow:hover::before, .slider-section #rev_slider_2 .tparrows.tp-rightarrow:hover::before {
        color: #FFFFFF !important; }
    .slider-section #rev_slider_2 .tparrows.tp-leftarrow::before, .slider-section #rev_slider_2 .tparrows.tp-rightarrow::before {
      font-size: 20px !important;
      line-height: 50px !important;
      color: #0101F8 !important;
      -webkit-transition: 0.5s;
      -khtml-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
      @media only screen and (max-width: 991px) {
        .slider-section #rev_slider_2 .tparrows.tp-leftarrow::before, .slider-section #rev_slider_2 .tparrows.tp-rightarrow::before {
          line-height: 40px !important; } }
      @media only screen and (max-width: 767px) {
        .slider-section #rev_slider_2 .tparrows.tp-leftarrow::before, .slider-section #rev_slider_2 .tparrows.tp-rightarrow::before {
          line-height: 30px !important;
          font-size: 16px !important; } }
  .slider-section #rev_slider_3 .font-extra-bold {
    font-size: 48px !important;
    font-weight: 700 !important;
    line-height: 62px !important;
    color: #092a48;
    margin: 14px 0 15px !important; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .slider-section #rev_slider_3 .font-extra-bold {
        font-size: 40px !important;
        line-height: 60px !important; } }
    @media only screen and (max-width: 991px) {
      .slider-section #rev_slider_3 .font-extra-bold {
        font-size: 30px !important;
        line-height: 50px !important; } }
    @media only screen and (max-width: 767px) {
      .slider-section #rev_slider_3 .font-extra-bold {
        font-size: 25px !important;
        line-height: 40px !important;
        margin: 0 0 9px !important; } }
  .slider-section #rev_slider_3 .font-medium {
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 30px !important;
    color: #222222 !important; }
    .slider-section #rev_slider_3 .font-medium.text-center {
      text-align: center !important; }
    @media only screen and (max-width: 767px) {
      .slider-section #rev_slider_3 .font-medium {
        font-size: 16px !important;
        line-height: 25px !important;
        margin: 0 0 9px !important; } }
    @media only screen and (max-width: 479px) {
      .slider-section #rev_slider_3 .font-medium {
        font-size: 14px !important;
        line-height: 18px !important;
        margin: 30px 0 9px !important; } }
  .slider-section #rev_slider_3 .slider-btn {
    padding: 0 !important; }
    .slider-section #rev_slider_3 .slider-btn .btn {
      font-size: 18px !important;
      border-radius: 0;
      padding: 11px 55px !important;
      margin: 0 2px !important; }
      @media only screen and (max-width: 991px) {
        .slider-section #rev_slider_3 .slider-btn .btn {
          padding: 10px 40px !important; } }
      @media only screen and (max-width: 767px) {
        .slider-section #rev_slider_3 .slider-btn .btn {
          padding: 10px 25px !important; } }
      .slider-section #rev_slider_3 .slider-btn .btn::before {
        border-radius: 0; }
      .slider-section #rev_slider_3 .slider-btn .btn.color-bg {
        background: #FFFFFF !important;
        color: #0101F8 !important;
        margin-left: 15px !important; }
        .slider-section #rev_slider_3 .slider-btn .btn.color-bg::before {
          background-color: #092a48; }
      @media only screen and (max-width: 479px) {
        .slider-section #rev_slider_3 .slider-btn .btn {
          display: none; } }
  .slider-section #rev_slider_3:hover .tparrows.tp-leftarrow, .slider-section #rev_slider_3:hover .tparrows.tp-rightarrow {
    opacity: 1; }
  .slider-section #rev_slider_3 .tparrows.tp-leftarrow, .slider-section #rev_slider_3 .tparrows.tp-rightarrow {
    top: 55% !important;
    min-width: 50px !important;
    min-height: 50px !important;
    width: 50px !important;
    height: 50px !important;
    line-height: 50px !important;
    background: #FFFFFF !important;
    border-radius: 0 !important;
    text-align: center !important;
    opacity: 0;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    @media only screen and (max-width: 991px) {
      .slider-section #rev_slider_3 .tparrows.tp-leftarrow, .slider-section #rev_slider_3 .tparrows.tp-rightarrow {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        line-height: 40px !important; } }
    @media only screen and (max-width: 767px) {
      .slider-section #rev_slider_3 .tparrows.tp-leftarrow, .slider-section #rev_slider_3 .tparrows.tp-rightarrow {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        min-height: 30px !important;
        line-height: 30px !important; } }
    .slider-section #rev_slider_3 .tparrows.tp-leftarrow:hover, .slider-section #rev_slider_3 .tparrows.tp-rightarrow:hover {
      background: #0101F8 !important; }
      .slider-section #rev_slider_3 .tparrows.tp-leftarrow:hover::before, .slider-section #rev_slider_3 .tparrows.tp-rightarrow:hover::before {
        color: #FFFFFF !important; }
    .slider-section #rev_slider_3 .tparrows.tp-leftarrow::before, .slider-section #rev_slider_3 .tparrows.tp-rightarrow::before {
      font-size: 20px !important;
      line-height: 50px !important;
      color: #0101F8 !important;
      -webkit-transition: 0.5s;
      -khtml-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
      @media only screen and (max-width: 991px) {
        .slider-section #rev_slider_3 .tparrows.tp-leftarrow::before, .slider-section #rev_slider_3 .tparrows.tp-rightarrow::before {
          line-height: 40px !important; } }
      @media only screen and (max-width: 767px) {
        .slider-section #rev_slider_3 .tparrows.tp-leftarrow::before, .slider-section #rev_slider_3 .tparrows.tp-rightarrow::before {
          line-height: 30px !important;
          font-size: 16px !important; } }
  .slider-section #rev_slider_4 .font-extra-bold {
    font-size: 48px !important;
    font-weight: 700 !important;
    line-height: 90px !important;
    color: #FFFFFF;
    margin: 14px 0 15px !important; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .slider-section #rev_slider_4 .font-extra-bold {
        font-size: 40px !important;
        line-height: 60px !important; } }
    @media only screen and (max-width: 991px) {
      .slider-section #rev_slider_4 .font-extra-bold {
        font-size: 30px !important;
        line-height: 50px !important; } }
    @media only screen and (max-width: 767px) {
      .slider-section #rev_slider_4 .font-extra-bold {
        font-size: 25px !important;
        line-height: 40px !important;
        margin: 0 0 9px !important; } }
  .slider-section #rev_slider_4 .font-medium {
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 30px !important;
    color: #FFFFFF !important; }
    .slider-section #rev_slider_4 .font-medium.text-center {
      text-align: center !important; }
    @media only screen and (max-width: 767px) {
      .slider-section #rev_slider_4 .font-medium {
        font-size: 16px !important;
        line-height: 25px !important;
        margin: 0 0 9px !important; } }
    @media only screen and (max-width: 479px) {
      .slider-section #rev_slider_4 .font-medium {
        font-size: 14px !important;
        line-height: 18px !important;
        margin: 30px 0 9px !important; } }
  .slider-section #rev_slider_4 .btn {
    font-size: 18px !important;
    line-height: 34px !important;
    border-radius: 0;
    padding: 11px 55px !important;
    margin: 0 2px !important; }
    @media only screen and (max-width: 991px) {
      .slider-section #rev_slider_4 .btn {
        padding: 10px 40px !important; } }
    @media only screen and (max-width: 767px) {
      .slider-section #rev_slider_4 .btn {
        padding: 10px 25px !important; } }
    .slider-section #rev_slider_4 .btn::before {
      border-radius: 0; }
    .slider-section #rev_slider_4 .btn.color-bg {
      background: #FFFFFF !important;
      color: #0101F8 !important; }
      .slider-section #rev_slider_4 .btn.color-bg::before {
        background-color: #092a48; }
    @media only screen and (max-width: 479px) {
      .slider-section #rev_slider_4 .btn {
        display: none; } }
  .slider-section #rev_slider_4:hover .tparrows.tp-leftarrow, .slider-section #rev_slider_4:hover .tparrows.tp-rightarrow {
    opacity: 1; }
  .slider-section #rev_slider_4 .tparrows.tp-leftarrow, .slider-section #rev_slider_4 .tparrows.tp-rightarrow {
    top: 55% !important;
    min-width: 50px !important;
    min-height: 50px !important;
    width: 50px !important;
    height: 50px !important;
    line-height: 50px !important;
    background: #FFFFFF !important;
    border-radius: 0 !important;
    text-align: center !important;
    opacity: 0;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    @media only screen and (max-width: 991px) {
      .slider-section #rev_slider_4 .tparrows.tp-leftarrow, .slider-section #rev_slider_4 .tparrows.tp-rightarrow {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        line-height: 40px !important; } }
    @media only screen and (max-width: 767px) {
      .slider-section #rev_slider_4 .tparrows.tp-leftarrow, .slider-section #rev_slider_4 .tparrows.tp-rightarrow {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        min-height: 30px !important;
        line-height: 30px !important; } }
    .slider-section #rev_slider_4 .tparrows.tp-leftarrow:hover, .slider-section #rev_slider_4 .tparrows.tp-rightarrow:hover {
      background: #0101F8 !important; }
      .slider-section #rev_slider_4 .tparrows.tp-leftarrow:hover::before, .slider-section #rev_slider_4 .tparrows.tp-rightarrow:hover::before {
        color: #FFFFFF !important; }
    .slider-section #rev_slider_4 .tparrows.tp-leftarrow::before, .slider-section #rev_slider_4 .tparrows.tp-rightarrow::before {
      font-size: 20px !important;
      line-height: 50px !important;
      color: #0101F8 !important;
      -webkit-transition: 0.5s;
      -khtml-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
      @media only screen and (max-width: 991px) {
        .slider-section #rev_slider_4 .tparrows.tp-leftarrow::before, .slider-section #rev_slider_4 .tparrows.tp-rightarrow::before {
          line-height: 40px !important; } }
      @media only screen and (max-width: 767px) {
        .slider-section #rev_slider_4 .tparrows.tp-leftarrow::before, .slider-section #rev_slider_4 .tparrows.tp-rightarrow::before {
          line-height: 30px !important;
          font-size: 16px !important; } }
  .slider-section #rev_slider_5 .font-extra-bold {
    font-size: 60px !important;
    font-weight: 700 !important;
    line-height: 90px !important;
    color: #FFFFFF;
    margin: 14px 0 15px !important; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .slider-section #rev_slider_5 .font-extra-bold {
        font-size: 40px !important;
        line-height: 60px !important; } }
    @media only screen and (max-width: 991px) {
      .slider-section #rev_slider_5 .font-extra-bold {
        font-size: 30px !important;
        line-height: 50px !important; } }
    @media only screen and (max-width: 767px) {
      .slider-section #rev_slider_5 .font-extra-bold {
        font-size: 25px !important;
        line-height: 40px !important;
        margin: 0 0 9px !important; } }
  .slider-section #rev_slider_5 .font-medium {
    font-size: 24px !important;
    font-weight: 400 !important;
    line-height: 35px !important;
    color: #FFFFFF !important; }
    .slider-section #rev_slider_5 .font-medium.text-center {
      text-align: center !important; }
    @media only screen and (max-width: 767px) {
      .slider-section #rev_slider_5 .font-medium {
        font-size: 16px !important;
        line-height: 25px !important;
        margin: 0 0 9px !important; } }
    @media only screen and (max-width: 479px) {
      .slider-section #rev_slider_5 .font-medium {
        font-size: 14px !important;
        line-height: 18px !important;
        margin: 30px 0 9px !important; } }
  .slider-section #rev_slider_5 .btn {
    font-size: 16px !important;
    font-weight: 500;
    line-height: 34px !important;
    border-radius: 25px;
    padding: 7px 40px !important;
    margin: 0 2px !important; }
    @media only screen and (max-width: 991px) {
      .slider-section #rev_slider_5 .btn {
        padding: 10px 40px !important; } }
    @media only screen and (max-width: 767px) {
      .slider-section #rev_slider_5 .btn {
        padding: 10px 25px !important; } }
    .slider-section #rev_slider_5 .btn::before {
      border-radius: 25px; }
    .slider-section #rev_slider_5 .btn.color-bg {
      background: #FFFFFF !important;
      color: #0101F8 !important; }
      .slider-section #rev_slider_5 .btn.color-bg::before {
        background-color: #092a48; }
    @media only screen and (max-width: 479px) {
      .slider-section #rev_slider_5 .btn {
        display: none; } }
  .slider-section #rev_slider_5:hover .tparrows.tp-leftarrow, .slider-section #rev_slider_5:hover .tparrows.tp-rightarrow {
    opacity: 1; }
  .slider-section #rev_slider_5 .tparrows.tp-leftarrow, .slider-section #rev_slider_5 .tparrows.tp-rightarrow {
    top: 63% !important;
    min-width: 50px !important;
    min-height: 50px !important;
    width: 50px !important;
    height: 50px !important;
    line-height: 50px !important;
    background: #FFFFFF !important;
    border-radius: 50% !important;
    text-align: center !important;
    opacity: 0;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    @media only screen and (max-width: 991px) {
      .slider-section #rev_slider_5 .tparrows.tp-leftarrow, .slider-section #rev_slider_5 .tparrows.tp-rightarrow {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        line-height: 40px !important; } }
    @media only screen and (max-width: 767px) {
      .slider-section #rev_slider_5 .tparrows.tp-leftarrow, .slider-section #rev_slider_5 .tparrows.tp-rightarrow {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        min-height: 30px !important;
        line-height: 30px !important; } }
    .slider-section #rev_slider_5 .tparrows.tp-leftarrow:hover, .slider-section #rev_slider_5 .tparrows.tp-rightarrow:hover {
      background: #0101F8 !important; }
      .slider-section #rev_slider_5 .tparrows.tp-leftarrow:hover::before, .slider-section #rev_slider_5 .tparrows.tp-rightarrow:hover::before {
        color: #FFFFFF !important; }
    .slider-section #rev_slider_5 .tparrows.tp-leftarrow::before, .slider-section #rev_slider_5 .tparrows.tp-rightarrow::before {
      font-size: 20px !important;
      line-height: 50px !important;
      color: #0101F8 !important;
      -webkit-transition: 0.5s;
      -khtml-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
      @media only screen and (max-width: 991px) {
        .slider-section #rev_slider_5 .tparrows.tp-leftarrow::before, .slider-section #rev_slider_5 .tparrows.tp-rightarrow::before {
          line-height: 40px !important; } }
      @media only screen and (max-width: 767px) {
        .slider-section #rev_slider_5 .tparrows.tp-leftarrow::before, .slider-section #rev_slider_5 .tparrows.tp-rightarrow::before {
          line-height: 30px !important;
          font-size: 16px !important; } }
  .slider-section #rev_slider_6 .font-extra-bold {
    font-size: 48px !important;
    font-weight: 700 !important;
    line-height: 90px !important;
    color: #092a48;
    margin: 14px 0 15px !important; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .slider-section #rev_slider_6 .font-extra-bold {
        font-size: 40px !important;
        line-height: 60px !important; } }
    @media only screen and (max-width: 991px) {
      .slider-section #rev_slider_6 .font-extra-bold {
        font-size: 30px !important;
        line-height: 50px !important; } }
    @media only screen and (max-width: 767px) {
      .slider-section #rev_slider_6 .font-extra-bold {
        font-size: 25px !important;
        line-height: 40px !important;
        margin: 0 0 9px !important; } }
  .slider-section #rev_slider_6 .font-medium {
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 30px !important;
    color: #092a48 !important; }
    .slider-section #rev_slider_6 .font-medium.text-center {
      text-align: center !important; }
    @media only screen and (max-width: 767px) {
      .slider-section #rev_slider_6 .font-medium {
        font-size: 16px !important;
        line-height: 25px !important;
        margin: 0 0 9px !important; } }
    @media only screen and (max-width: 479px) {
      .slider-section #rev_slider_6 .font-medium {
        font-size: 14px !important;
        line-height: 18px !important;
        margin: 30px 0 9px !important; } }
  .slider-section #rev_slider_6 .btn {
    font-size: 16px !important;
    font-weight: 500;
    line-height: 34px !important;
    border-radius: 5px;
    padding: 7px 63px !important;
    margin: 0 2px !important; }
    @media only screen and (max-width: 991px) {
      .slider-section #rev_slider_6 .btn {
        padding: 10px 40px !important; } }
    @media only screen and (max-width: 767px) {
      .slider-section #rev_slider_6 .btn {
        padding: 10px 25px !important; } }
    .slider-section #rev_slider_6 .btn::before {
      border-radius: 5px; }
    .slider-section #rev_slider_6 .btn.color-bg {
      background: #FFFFFF !important;
      color: #0101F8 !important; }
      .slider-section #rev_slider_6 .btn.color-bg::before {
        background-color: #092a48; }
    @media only screen and (max-width: 479px) {
      .slider-section #rev_slider_6 .btn {
        display: none; } }
  .slider-section #rev_slider_6:hover .tparrows.tp-leftarrow, .slider-section #rev_slider_6:hover .tparrows.tp-rightarrow {
    opacity: 1; }
  .slider-section #rev_slider_6 .tparrows.tp-leftarrow, .slider-section #rev_slider_6 .tparrows.tp-rightarrow {
    top: 55% !important;
    min-width: 50px !important;
    min-height: 50px !important;
    width: 50px !important;
    height: 50px !important;
    line-height: 50px !important;
    background: #FFFFFF !important;
    border-radius: 50% !important;
    text-align: center !important;
    opacity: 0;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    @media only screen and (max-width: 991px) {
      .slider-section #rev_slider_6 .tparrows.tp-leftarrow, .slider-section #rev_slider_6 .tparrows.tp-rightarrow {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        line-height: 40px !important; } }
    @media only screen and (max-width: 767px) {
      .slider-section #rev_slider_6 .tparrows.tp-leftarrow, .slider-section #rev_slider_6 .tparrows.tp-rightarrow {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        min-height: 30px !important;
        line-height: 30px !important; } }
    .slider-section #rev_slider_6 .tparrows.tp-leftarrow:hover, .slider-section #rev_slider_6 .tparrows.tp-rightarrow:hover {
      background: #0101F8 !important; }
      .slider-section #rev_slider_6 .tparrows.tp-leftarrow:hover::before, .slider-section #rev_slider_6 .tparrows.tp-rightarrow:hover::before {
        color: #FFFFFF !important; }
    .slider-section #rev_slider_6 .tparrows.tp-leftarrow::before, .slider-section #rev_slider_6 .tparrows.tp-rightarrow::before {
      font-size: 20px !important;
      line-height: 50px !important;
      color: #0101F8 !important;
      -webkit-transition: 0.5s;
      -khtml-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
      @media only screen and (max-width: 991px) {
        .slider-section #rev_slider_6 .tparrows.tp-leftarrow::before, .slider-section #rev_slider_6 .tparrows.tp-rightarrow::before {
          line-height: 40px !important; } }
      @media only screen and (max-width: 767px) {
        .slider-section #rev_slider_6 .tparrows.tp-leftarrow::before, .slider-section #rev_slider_6 .tparrows.tp-rightarrow::before {
          line-height: 30px !important;
          font-size: 16px !important; } }

/* =========================================================
        Counting-Section STYLE 
============================================================ */
.counting-section {
  background: url(../images/counter-bg.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed; }
  @media only screen and (max-width: 991px) {
    .counting-section {
      padding-bottom: 50px; } }
  @media only screen and (max-width: 599px) {
    .counting-section {
      padding-bottom: 30px; } }
  @media only screen and (max-width: 479px) {
    .counting-section {
      background-attachment: inherit; } }
  .counting-section .counting-pusher {
    display: flex; }
    @media only screen and (max-width: 991px) {
      .counting-section .counting-pusher {
        display: block; } }
    .counting-section .counting-pusher .counting-wrapper {
      flex: 1; }
      @media only screen and (max-width: 991px) {
        .counting-section .counting-pusher .counting-wrapper {
          width: 50%;
          float: left;
          margin-bottom: 20px; } }
      @media only screen and (max-width: 499px) {
        .counting-section .counting-pusher .counting-wrapper {
          width: 100%;
          float: none;
          margin-bottom: 30px; } }
      .counting-section .counting-pusher .counting-wrapper .icon {
        width: 73px;
        height: 73px;
        text-align: center;
        border: 4px solid #0101F8; }
        @media only screen and (max-width: 599px) {
          .counting-section .counting-pusher .counting-wrapper .icon {
            width: 50px;
            height: 50px;
            border: 2px solid #0101F8; }
            .counting-section .counting-pusher .counting-wrapper .icon img {
              width: 40px; } }
        .counting-section .counting-pusher .counting-wrapper .icon img {
          padding: 10px; }
      .counting-section .counting-pusher .counting-wrapper .content {
        margin: 10px 0 0 90px; }
        @media only screen and (max-width: 599px) {
          .counting-section .counting-pusher .counting-wrapper .content {
            margin: 5px 0 0 65px; } }
        .counting-section .counting-pusher .counting-wrapper .content .count-description .timer {
          font-size: 48px;
          font-weight: 600;
          line-height: 24px;
          color: #f3b502;
          margin-bottom: 20px; }
          @media only screen and (max-width: 599px) {
            .counting-section .counting-pusher .counting-wrapper .content .count-description .timer {
              font-size: 35px;
              line-height: 15px; } }
          @media only screen and (max-width: 479px) {
            .counting-section .counting-pusher .counting-wrapper .content .count-description .timer {
              font-size: 30px; } }
        .counting-section .counting-pusher .counting-wrapper .content p {
          font-size: 18px;
          line-height: 24px;
          color: #FFFFFF;
          margin-bottom: 0; }
          @media only screen and (max-width: 599px) {
            .counting-section .counting-pusher .counting-wrapper .content p {
              font-size: 16px; } }

/* =========================================================
        Project-Section STYLE 
============================================================ */
.project-section .section-title {
  margin-bottom: 60px; }
  @media only screen and (max-width: 767px) {
    .project-section .section-title {
      margin-bottom: 40px; } }
.project-section .portfolio-sorting {
  margin: -7px 0 33px; }
  .project-section .portfolio-sorting li {
    position: relative;
    padding: 0 18px; }
    .project-section .portfolio-sorting li::before {
      content: "";
      position: absolute;
      right: 0;
      top: 9px;
      width: 2px;
      height: 18px;
      background: #222222;
      transform: rotate(18deg); }
    .project-section .portfolio-sorting li:last-child::before {
      display: none; }
    .project-section .portfolio-sorting li a {
      font-size: 18px;
      font-weight: 400;
      line-height: 36px;
      color: #222222; }
      .project-section .portfolio-sorting li a.active {
        color: #0101F8; }
.project-section .project-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  -webkit-perspective: 50em;
  -moz-perspective: 50em;
  perspective: 50em; }
  @media only screen and (max-width: 479px) {
    .project-section .project-wrapper {
      margin-bottom: 15px; } }
  .project-section .project-wrapper:hover .hover-view:before {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0); }
  .project-section .project-wrapper:hover .hover-view i {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  .project-section .project-wrapper:hover .hover-view h4, .project-section .project-wrapper:hover .hover-view p {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0); }
  .project-section .project-wrapper img {
    width: 100%; }
  .project-section .project-wrapper .hover-view {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: left;
    padding: 0 20px; }
    .project-section .project-wrapper .hover-view:before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 75px;
      background-color: rgba(201, 159, 91, 0.85);
      padding: 30px;
      z-index: 1;
      -webkit-transition: all 0.35s ease;
      -o-transition: all 0.35s ease;
      -moz-transition: all 0.35s ease;
      transition: all 0.35s ease;
      -webkit-transform: rotateX(105deg);
      -moz-transform: rotateX(105deg);
      transform: rotateX(105deg);
      -webkit-transform-origin: 50% 100%;
      -moz-transform-origin: 50% 100%;
      -ms-transform-origin: 50% 100%;
      -o-transform-origin: 50% 100%;
      transform-origin: 50% 100%; }
    .project-section .project-wrapper .hover-view i {
      position: relative;
      width: 40px;
      height: 40px;
      line-height: 40px;
      font-size: 21px;
      color: #FFFFFF;
      border-radius: 50%;
      border: 2px solid #FFFFFF;
      text-align: center;
      opacity: 0;
      z-index: 6;
      -webkit-transition: 0.5s;
      -khtml-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s;
      transition-delay: .1s;
      -webkit-transform: scale(0.5);
      -moz-transform: scale(0.5);
      -ms-transform: scale(0.5);
      -o-transform: scale(0.5);
      transform: scale(0.5); }
    .project-section .project-wrapper .hover-view h4 {
      position: relative;
      font-size: 18px;
      font-weight: 500;
      line-height: 18px;
      color: #FFFFFF;
      margin-bottom: 0;
      opacity: 0;
      z-index: 5;
      -webkit-transition: 0.5s;
      -khtml-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s;
      transition-delay: .1s;
      -webkit-transform: translateX(-100px);
      -moz-transform: translateX(-100px);
      -ms-transform: translateX(-100px);
      -o-transform: translateX(-100px);
      transform: translateX(-100px); }
    .project-section .project-wrapper .hover-view p {
      position: relative;
      font-size: 14px;
      color: #FFFFFF;
      opacity: 0;
      z-index: 5;
      -webkit-transition: 0.5s;
      -khtml-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s;
      transition-delay: .1s;
      -webkit-transform: translateX(100px);
      -moz-transform: translateX(100px);
      -ms-transform: translateX(100px);
      -o-transform: translateX(100px);
      transform: translateX(100px); }
.project-section .link .btn {
  padding: 7px 25px;
  margin-top: 33px; }
.project-section .project-content {
  border: 2px solid #0101F8;
  border-radius: 5px;
  padding: 45px; }
  .project-section .project-content h3 {
    font-size: 26px;
    font-weight: 500;
    line-height: 30px;
    color: #051829; }
  .project-section .project-content p {
    font-size: 15px;
    color: #6a6a6a; }
  .project-section .project-content .category {
    margin-top: 30px; }
    .project-section .project-content .category li {
      margin-bottom: 8px; }
      .project-section .project-content .category li:last-child {
        margin: 0; }
      .project-section .project-content .category li i {
        color: #0101F8;
        margin-right: 5px; }
      .project-section .project-content .category li .bold {
        font-weight: 600;
        color: #051829; }

/* =========================================================
        Testimonial-Section STYLE 
============================================================ */
.testimonial-section {
  background: url(../images/testimonial-bg.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed; }
  @media only screen and (max-width: 479px) {
    .testimonial-section {
      background-attachment: inherit; } }
  .testimonial-section #testimonial-carousel {
    position: relative; }
    .testimonial-section #testimonial-carousel .carousel-inner .carousel-wrapper {
      padding: 0 55px; }
      @media only screen and (max-width: 1199px) {
        .testimonial-section #testimonial-carousel .carousel-inner .carousel-wrapper {
          padding: 0; } }
      .testimonial-section #testimonial-carousel .carousel-inner .carousel-wrapper p {
        font-size: 24px;
        line-height: 36px;
        color: #FFFFFF;
        margin-bottom: 43px;
        word-break: break-all; }
        @media only screen and (max-width: 991px) {
          .testimonial-section #testimonial-carousel .carousel-inner .carousel-wrapper p {
            font-size: 25px;
            line-height: 35px; } }
        @media only screen and (max-width: 767px) {
          .testimonial-section #testimonial-carousel .carousel-inner .carousel-wrapper p {
            font-size: 20px;
            line-height: 30px;
            margin-bottom: 30px; } }
      .testimonial-section #testimonial-carousel .carousel-inner .carousel-wrapper .reviewer {
        position: relative;
        padding-top: 25px; }
        .testimonial-section #testimonial-carousel .carousel-inner .carousel-wrapper .reviewer::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          width: 60px;
          height: 4px;
          background-color: #0101F8;
          margin: 0 auto; }
        .testimonial-section #testimonial-carousel .carousel-inner .carousel-wrapper .reviewer h5 {
          font-size: 26px;
          line-height: 36px;
          color: #FFFFFF;
          margin-bottom: 0; }
          @media only screen and (max-width: 991px) {
            .testimonial-section #testimonial-carousel .carousel-inner .carousel-wrapper .reviewer h5 {
              font-size: 25px;
              line-height: 35px; } }
          @media only screen and (max-width: 767px) {
            .testimonial-section #testimonial-carousel .carousel-inner .carousel-wrapper .reviewer h5 {
              font-size: 20px;
              line-height: 30px;
              margin-bottom: -5px; } }
        .testimonial-section #testimonial-carousel .carousel-inner .carousel-wrapper .reviewer .position {
          font-size: 18px;
          color: #999; }
          @media only screen and (max-width: 767px) {
            .testimonial-section #testimonial-carousel .carousel-inner .carousel-wrapper .reviewer .position {
              font-size: 15px; } }
    .testimonial-section #testimonial-carousel .carousel-control.left, .testimonial-section #testimonial-carousel .carousel-control.right {
      position: absolute;
      top: auto;
      bottom: 0;
      width: 47px;
      height: 47px;
      line-height: 47px;
      background-color: transparent;
      border: 2px solid #0101F8;
      text-align: center;
      background-image: none;
      opacity: 1;
      text-shadow: none;
      -webkit-transition: 0.5s;
      -khtml-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
      @media only screen and (max-width: 767px) {
        .testimonial-section #testimonial-carousel .carousel-control.left, .testimonial-section #testimonial-carousel .carousel-control.right {
          width: 30px;
          height: 30px;
          line-height: 30px; } }
      .testimonial-section #testimonial-carousel .carousel-control.left:hover, .testimonial-section #testimonial-carousel .carousel-control.right:hover {
        background-color: #0101F8; }
    .testimonial-section #testimonial-carousel .carousel-control.left {
      left: auto;
      right: 52px; }
      @media only screen and (max-width: 767px) {
        .testimonial-section #testimonial-carousel .carousel-control.left {
          right: 35px; } }

/* =========================================================
        Testimonial-Section STYLE 
============================================================ */
.testimonial-two-section #testimonial-carousel {
  position: relative; }
  .testimonial-two-section #testimonial-carousel .carousel-inner .carousel-wrapper {
    padding: 0 55px;
    margin-bottom: 95px; }
    @media only screen and (max-width: 1199px) {
      .testimonial-two-section #testimonial-carousel .carousel-inner .carousel-wrapper {
        padding: 0; } }
    @media only screen and (max-width: 767px) {
      .testimonial-two-section #testimonial-carousel .carousel-inner .carousel-wrapper {
        margin-bottom: 50px; } }
    .testimonial-two-section #testimonial-carousel .carousel-inner .carousel-wrapper p {
      font-size: 24px;
      font-weight: 400;
      line-height: 36px;
      color: #222222;
      margin-bottom: 43px;
      word-break: break-all; }
      @media only screen and (max-width: 991px) {
        .testimonial-two-section #testimonial-carousel .carousel-inner .carousel-wrapper p {
          font-size: 25px;
          line-height: 35px; } }
      @media only screen and (max-width: 767px) {
        .testimonial-two-section #testimonial-carousel .carousel-inner .carousel-wrapper p {
          font-size: 20px;
          line-height: 30px;
          margin-bottom: 30px; } }
    .testimonial-two-section #testimonial-carousel .carousel-inner .carousel-wrapper .reviewer {
      position: relative;
      padding-top: 25px; }
      .testimonial-two-section #testimonial-carousel .carousel-inner .carousel-wrapper .reviewer::before {
        content: "";
        position: absolute;
        top: -8px;
        left: 0;
        right: 0;
        width: 60px;
        height: 4px;
        background-color: #0101F8;
        margin: 0 auto; }
      .testimonial-two-section #testimonial-carousel .carousel-inner .carousel-wrapper .reviewer h5 {
        font-size: 26px;
        line-height: 36px;
        color: #222222;
        margin-bottom: 0; }
        @media only screen and (max-width: 991px) {
          .testimonial-two-section #testimonial-carousel .carousel-inner .carousel-wrapper .reviewer h5 {
            font-size: 25px;
            line-height: 35px; } }
        @media only screen and (max-width: 767px) {
          .testimonial-two-section #testimonial-carousel .carousel-inner .carousel-wrapper .reviewer h5 {
            font-size: 20px;
            line-height: 30px;
            margin-bottom: -5px; } }
      .testimonial-two-section #testimonial-carousel .carousel-inner .carousel-wrapper .reviewer .position {
        font-size: 18px;
        color: #999; }
        @media only screen and (max-width: 767px) {
          .testimonial-two-section #testimonial-carousel .carousel-inner .carousel-wrapper .reviewer .position {
            font-size: 15px; } }
  .testimonial-two-section #testimonial-carousel .carousel-control.left, .testimonial-two-section #testimonial-carousel .carousel-control.right {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 47px;
    height: 47px;
    line-height: 47px;
    background-color: #0101F8;
    text-align: center;
    background-image: none;
    opacity: 1;
    text-shadow: none;
    margin: 0 auto;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .testimonial-two-section #testimonial-carousel .carousel-control.left:hover, .testimonial-two-section #testimonial-carousel .carousel-control.right:hover {
      background-color: #092a48; }
    @media only screen and (max-width: 767px) {
      .testimonial-two-section #testimonial-carousel .carousel-control.left, .testimonial-two-section #testimonial-carousel .carousel-control.right {
        width: 30px;
        height: 30px;
        line-height: 30px; } }
  .testimonial-two-section #testimonial-carousel .carousel-control.left {
    left: -52px; }
    @media only screen and (max-width: 767px) {
      .testimonial-two-section #testimonial-carousel .carousel-control.left {
        left: -32px; } }
  .testimonial-two-section #testimonial-carousel .carousel-control.right {
    right: -52px; }
    @media only screen and (max-width: 767px) {
      .testimonial-two-section #testimonial-carousel .carousel-control.right {
        right: -32px; } }

/* =========================================================
        Boost-Section STYLE 
============================================================ */
.boost-section {
  position: relative;
  z-index: 5; }
  @media only screen and (max-width: 991px) {
    .boost-section {
      margin-top: 0;
      padding: 80px 0 50px; } }
  @media only screen and (max-width: 767px) {
    .boost-section {
      padding: 60px 0 40px;
      display: flex; } }
  .boost-section .boost-wrapper {
    position: relative;
    overflow: hidden; }
    @media only screen and (max-width: 991px) {
      .boost-section .boost-wrapper {
        margin-bottom: 30px; } }
    @media only screen and (max-width: 767px) {
      .boost-section .boost-wrapper {
        flex: 1; } }
    @media only screen and (max-width: 479px) {
      .boost-section .boost-wrapper {
        margin-bottom: 30px; } }
    .boost-section .boost-wrapper:hover .boost-content {
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0);
      padding: 45px 35px; }
      @media (min-width: 992px) and (max-width: 1199px) {
        .boost-section .boost-wrapper:hover .boost-content {
          padding: 25px 20px; } }
      @media only screen and (max-width: 479px) {
        .boost-section .boost-wrapper:hover .boost-content {
          padding: 25px 20px; } }
    .boost-section .boost-wrapper img {
      width: 100%; }
    .boost-section .boost-wrapper .boost-content {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(9, 42, 72, 0.92);
      padding: 15px 35px 45px 35px;
      -webkit-transform: translateY(75%);
      -moz-transform: translateY(75%);
      -ms-transform: translateY(75%);
      -o-transform: translateY(75%);
      transform: translateY(75%);
      -webkit-transition: 0.3s;
      -khtml-transition: 0.3s;
      -moz-transition: 0.3s;
      -ms-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
      @media (min-width: 992px) and (max-width: 1199px) {
        .boost-section .boost-wrapper .boost-content {
          padding: 15px 20px 45px 20px; } }
      @media only screen and (max-width: 479px) {
        .boost-section .boost-wrapper .boost-content {
          padding: 15px 20px 45px 20px; } }
      .boost-section .boost-wrapper .boost-content .icon {
        float: left; }
        .boost-section .boost-wrapper .boost-content .icon img {
          width: auto;
          vertical-align: -webkit-baseline-middle; }
          @media (min-width: 992px) and (max-width: 1199px) {
            .boost-section .boost-wrapper .boost-content .icon img {
              width: 25px; } }
          @media only screen and (max-width: 479px) {
            .boost-section .boost-wrapper .boost-content .icon img {
              width: 25px; } }
      .boost-section .boost-wrapper .boost-content .wrapper-content {
        margin-left: 65px; }
        @media (min-width: 992px) and (max-width: 1199px) {
          .boost-section .boost-wrapper .boost-content .wrapper-content {
            margin-left: 40px; } }
        @media only screen and (max-width: 991px) {
          .boost-section .boost-wrapper .boost-content .wrapper-content {
            margin-left: 50px; } }
        @media only screen and (max-width: 479px) {
          .boost-section .boost-wrapper .boost-content .wrapper-content {
            margin-left: 40px; } }
        .boost-section .boost-wrapper .boost-content .wrapper-content h4 {
          font-size: 24px;
          font-weight: 600;
          line-height: 36px;
          color: #FFFFFF;
          margin-bottom: 14px; }
          @media (min-width: 992px) and (max-width: 1199px) {
            .boost-section .boost-wrapper .boost-content .wrapper-content h4 {
              font-size: 20px;
              margin-bottom: 4px; } }
          @media only screen and (max-width: 479px) {
            .boost-section .boost-wrapper .boost-content .wrapper-content h4 {
              font-size: 20px;
              margin-bottom: 25px; } }
        .boost-section .boost-wrapper .boost-content .wrapper-content p {
          color: #FFFFFF;
          margin-bottom: 25px; }
          @media (min-width: 992px) and (max-width: 1199px) {
            .boost-section .boost-wrapper .boost-content .wrapper-content p {
              margin-bottom: 15px; } }
          @media only screen and (max-width: 479px) {
            .boost-section .boost-wrapper .boost-content .wrapper-content p {
              margin-bottom: 15px; } }
        .boost-section .boost-wrapper .boost-content .wrapper-content .link {
          font-weight: 600; }
          .boost-section .boost-wrapper .boost-content .wrapper-content .link:hover {
            color: #FFFFFF; }

/* =========================================================
        Service-Section STYLE 
============================================================ */
.service-section {
  background-color: #092a48; }
  .service-section .section-title {
    margin-bottom: 65px; }
    @media only screen and (max-width: 479px) {
      .service-section .section-title {
        margin-bottom: 20px; } }
    .service-section .section-title h2 {
      color: #FFFFFF; }
  .service-section .first-row {
    margin-bottom: 45px; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .service-section .first-row {
        margin-bottom: 25px; } }
    @media only screen and (max-width: 991px) {
      .service-section .first-row {
        margin-bottom: 0; } }
  .service-section .service-wrapper {
    position: relative;
    padding: 40px 40px;
    border-radius: 5px;
    -webkit-transition: 0.3s;
    -khtml-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .service-section .service-wrapper {
        padding: 40px 15px; } }
    @media only screen and (max-width: 991px) {
      .service-section .service-wrapper {
        padding: 40px 20px; } }
    @media only screen and (max-width: 767px) {
      .service-section .service-wrapper {
        padding: 20px 20px; } }
    .service-section .service-wrapper:hover {
      /*background-color: $white;*/ }
      .service-section .service-wrapper:hover .wrapper-content h3 a {
        color: #002e5b; }
        .service-section .service-wrapper:hover .wrapper-content h3 a:hover {
          color: #0101F8; }
      .service-section .service-wrapper:hover .hover .hover-one,
      .service-section .service-wrapper:hover .hover .hover-two,
      .service-section .service-wrapper:hover .hover .hover-three,
      .service-section .service-wrapper:hover .hover .hover-four {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1; }
    .service-section .service-wrapper i {
      position: relative;
      font-size: 24px;
      color: #0101F8;
      float: left;
      z-index: 5; }
      @media only screen and (max-width: 479px) {
        .service-section .service-wrapper i {
          font-size: 20px; } }
    .service-section .service-wrapper .wrapper-content {
      position: relative;
      margin-left: 43px;
      z-index: 5; }
      @media only screen and (max-width: 479px) {
        .service-section .service-wrapper .wrapper-content {
          margin-left: 30px; } }
      .service-section .service-wrapper .wrapper-content h3 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 9px; }
        @media only screen and (max-width: 767px) {
          .service-section .service-wrapper .wrapper-content h3 {
            font-size: 22px;
            line-height: 27px; } }
        @media only screen and (max-width: 479px) {
          .service-section .service-wrapper .wrapper-content h3 {
            font-size: 20px;
            line-height: 25px; } }
        .service-section .service-wrapper .wrapper-content h3 a {
          color: #FFFFFF; }
          .service-section .service-wrapper .wrapper-content h3 a:hover {
            color: #0101F8; }
      .service-section .service-wrapper .wrapper-content p {
        color: #9a9a9a;
        margin-bottom: 0; }
    .service-section .service-wrapper .hover .hover-one,
    .service-section .service-wrapper .hover .hover-two,
    .service-section .service-wrapper .hover .hover-three,
    .service-section .service-wrapper .hover .hover-four {
      position: absolute;
      left: 0;
      width: 100%;
      height: 25%;
      background: #FFFFFF;
      opacity: 0;
      z-index: 1;
      -webkit-transition: all 0.35s ease;
      -o-transition: all 0.35s ease;
      -moz-transition: all 0.35s ease;
      transition: all 0.35s ease;
      -webkit-transform: scaleY(0);
      -moz-transform: scaleY(0);
      -ms-transform: scaleY(0);
      -o-transform: scaleY(0);
      transform: scaleY(0); }
    .service-section .service-wrapper .hover .hover-one {
      top: 0;
      border-radius: 5px 5px 0 0;
      -webkit-transition-delay: 0.25s;
      -moz-transition-delay: 0.25s;
      -o-transition-delay: 0.25s;
      transition-delay: 0.25s; }
    .service-section .service-wrapper .hover .hover-two {
      top: 25%;
      -webkit-transition-delay: 0.105s;
      -moz-transition-delay: 0.105s;
      -o-transition-delay: 0.105s;
      transition-delay: 0.105s; }
    .service-section .service-wrapper .hover .hover-three {
      top: 50%;
      -webkit-transition-delay: 0.105s;
      -moz-transition-delay: 0.105s;
      -o-transition-delay: 0.105s;
      transition-delay: 0.105s; }
    .service-section .service-wrapper .hover .hover-four {
      top: 75%;
      border-radius: 0 0 5px 5px;
      -webkit-transition-delay: 0s;
      -moz-transition-delay: 0s;
      -o-transition-delay: 0s;
      transition-delay: 0s; }

/* =========================================================
        Team-Section STYLE 
============================================================ */
.team-section .section-title {
  margin-bottom: 80px; }
  @media only screen and (max-width: 479px) {
    .team-section .section-title {
      margin-bottom: 40px; } }
  .team-section .section-title .border {
    right: auto; }
.team-section .team-carousel {
  position: relative; }
  .team-section .team-carousel .team-wrapper .caption {
    position: relative; }
    .team-section .team-carousel .team-wrapper .caption:hover::before {
      opacity: 1;
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
      transform: scale(1, 1); }
    .team-section .team-carousel .team-wrapper .caption:hover .hover-view li {
      opacity: 1; }
      .team-section .team-carousel .team-wrapper .caption:hover .hover-view li:nth-child(1) {
        transform: translateY(0); }
      .team-section .team-carousel .team-wrapper .caption:hover .hover-view li:nth-child(2) {
        transform: translateY(0); }
      .team-section .team-carousel .team-wrapper .caption:hover .hover-view li:nth-child(3) {
        transform: translateY(0); }
    .team-section .team-carousel .team-wrapper .caption::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(9, 42, 72, 0.75);
      opacity: 0;
      z-index: 1;
      -webkit-transition: 0.5s;
      -khtml-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s;
      -webkit-transform: scale(1, 0.5);
      -moz-transform: scale(1, 0.5);
      -ms-transform: scale(1, 0.5);
      -o-transform: scale(1, 0.5);
      transform: scale(1, 0.5); }
    .team-section .team-carousel .team-wrapper .caption .hover-view {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      width: 100%;
      text-align: center;
      margin-top: -8px; }
      .team-section .team-carousel .team-wrapper .caption .hover-view li {
        position: relative;
        display: inline-block;
        margin-right: 15px;
        opacity: 0;
        z-index: 5;
        -webkit-transition: 0.5s;
        -khtml-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s; }
        .team-section .team-carousel .team-wrapper .caption .hover-view li:nth-child(1) {
          transform: translateY(10px); }
        .team-section .team-carousel .team-wrapper .caption .hover-view li:nth-child(2) {
          transform: translateY(20px);
          transition-delay: .1s; }
        .team-section .team-carousel .team-wrapper .caption .hover-view li:nth-child(3) {
          transform: translateY(40px);
          transition-delay: .2s; }
        .team-section .team-carousel .team-wrapper .caption .hover-view li:last-child {
          margin-right: 0; }
        .team-section .team-carousel .team-wrapper .caption .hover-view li i {
          font-size: 24px;
          color: #FFFFFF;
          -webkit-transition: 0.5s;
          -khtml-transition: 0.5s;
          -moz-transition: 0.5s;
          -ms-transition: 0.5s;
          -o-transition: 0.5s;
          transition: 0.5s; }
          .team-section .team-carousel .team-wrapper .caption .hover-view li i:hover {
            color: #0101F8; }
  .team-section .team-carousel .team-wrapper .contact-wrapper {
    margin-top: 20px; }
    .team-section .team-carousel .team-wrapper .contact-wrapper h4 {
      font-size: 24px;
      font-weight: 500;
      line-height: 34px;
      margin-bottom: -4px; }
      .team-section .team-carousel .team-wrapper .contact-wrapper h4 a {
        color: #222222; }
        .team-section .team-carousel .team-wrapper .contact-wrapper h4 a:hover {
          color: #0101F8; }
    .team-section .team-carousel .team-wrapper .contact-wrapper .position {
      font-size: 14px;
      font-weight: 500;
      color: #999999; }
    .team-section .team-carousel .team-wrapper .contact-wrapper p {
      color: #6a6a6a;
      margin: 10px 0 0; }
  .team-section .team-carousel .owl-nav {
    position: absolute;
    top: -113px;
    right: 0;
    margin: 0; }
    @media only screen and (max-width: 479px) {
      .team-section .team-carousel .owl-nav {
        top: -68px; } }
    .team-section .team-carousel .owl-nav .owl-prev,
    .team-section .team-carousel .owl-nav .owl-next {
      background: #0101F8;
      border-radius: 0;
      width: 35px;
      height: 35px;
      line-height: 35px;
      padding: 0;
      margin: 0;
      -webkit-transition: 0.5s;
      -khtml-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
      .team-section .team-carousel .owl-nav .owl-prev:hover,
      .team-section .team-carousel .owl-nav .owl-next:hover {
        background: #092a48; }
      .team-section .team-carousel .owl-nav .owl-prev i,
      .team-section .team-carousel .owl-nav .owl-next i {
        font-size: 11px; }
    .team-section .team-carousel .owl-nav .owl-prev {
      margin-right: 3px; }
.team-section .link {
  margin-top: 90px; }
  @media only screen and (max-width: 991px) {
    .team-section .link {
      margin-top: 50px; } }
  @media only screen and (max-width: 479px) {
    .team-section .link {
      margin-top: 40px; } }
  .team-section .link .btn {
    padding: 10px 36px; }
    @media only screen and (max-width: 479px) {
      .team-section .link .btn {
        padding: 8px 30px; } }

/* =========================================================
        Thinking-Section STYLE 
============================================================ */
.thinking-section .thinking-content h3 {
  position: relative;
  font-size: 36px;
  font-weight: 600;
  line-height: 42px;
  color: #333333;
  padding-bottom: 20px;
  margin-bottom: 30px; }
  @media only screen and (max-width: 1200px) {
    .thinking-section .thinking-content h3 {
      font-size: 33px; } }
  @media only screen and (max-width: 991px) {
    .thinking-section .thinking-content h3 {
      font-size: 30px;
      line-height: 35px;
      margin-bottom: 20px; } }
  @media only screen and (max-width: 767px) {
    .thinking-section .thinking-content h3 {
      font-size: 25px;
      line-height: 30px; } }
  .thinking-section .thinking-content h3::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 185px;
    height: 1px;
    background-color: #0101F8; }
.thinking-section .thinking-content p {
  color: #6a6a6a;
  margin-bottom: 50px; }
  @media only screen and (max-width: 991px) {
    .thinking-section .thinking-content p {
      margin-bottom: 30px; } }
.thinking-section .thinking-content .btn {
  padding: 10px 25px; }
  @media only screen and (max-width: 991px) {
    .thinking-section .thinking-content .btn {
      padding: 10px 20px; } }
  @media only screen and (max-width: 767px) {
    .thinking-section .thinking-content .btn {
      font-size: 14px;
      padding: 8px 15px; } }
  .thinking-section .thinking-content .btn a {
    color: #FFFFFF; }
.thinking-section .caption img {
  max-width: 100%;
  margin-top: -45px; }
  @media only screen and (max-width: 1200px) {
    .thinking-section .caption img {
      margin-top: 0; } }

/* =========================================================
        Secure-Section STYLE 
============================================================ */
.secure-section {
  background: url(../images/secure-bg.jpg) no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
  padding: 80px 0; }
  @media only screen and (max-width: 1200px) {
    .secure-section {
      text-align: center; } }
  @media only screen and (max-width: 991px) {
    .secure-section {
      padding: 60px 0; } }
  .secure-section h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    color: #FFFFFF;
    display: inline-block;
    margin-bottom: 0; }
    @media only screen and (max-width: 1200px) {
      .secure-section h2 {
        display: block; } }
    @media only screen and (max-width: 991px) {
      .secure-section h2 {
        font-size: 30px;
        line-height: 40px; } }
    @media only screen and (max-width: 767px) {
      .secure-section h2 {
        font-size: 25px;
        line-height: 35px; } }
    @media only screen and (max-width: 479px) {
      .secure-section h2 {
        font-size: 20px;
        line-height: 30px; } }
  .secure-section .btn {
    padding: 10px 31px; }
    .secure-section .btn:hover {
      background-color: #092a48; }
    .secure-section .btn a {
      color: #FFFFFF; }
    .secure-section .btn::before {
      display: none; }
    @media only screen and (max-width: 1200px) {
      .secure-section .btn {
        float: none !important;
        margin-top: 30px; } }
    @media only screen and (max-width: 991px) {
      .secure-section .btn {
        margin-top: 20px;
        padding: 8px 25px; } }
    @media only screen and (max-width: 767px) {
      .secure-section .btn {
        font-size: 14px;
        margin-top: 20px;
        padding: 6px 20px; } }
    @media only screen and (max-width: 479px) {
      .secure-section .btn {
        font-size: 12px;
        margin-top: 15px;
        padding: 5px 15px; } }

/* =========================================================
        Pricing-Section STYLE 
============================================================ */
.pricing-section .section-title {
  margin-bottom: 38px; }
.pricing-section .priceing-wrapper {
  text-align: center; }
  .pricing-section .priceing-wrapper .nav-tabs {
    border: 1px solid #0101F8;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 75px; }
    @media only screen and (max-width: 767px) {
      .pricing-section .priceing-wrapper .nav-tabs {
        margin-bottom: 50px; } }
    .pricing-section .priceing-wrapper .nav-tabs li {
      font-size: 16px;
      font-weight: 600;
      float: none;
      display: inline-block; }
      @media only screen and (max-width: 310px) {
        .pricing-section .priceing-wrapper .nav-tabs li {
          display: block; } }
      .pricing-section .priceing-wrapper .nav-tabs li.active {
        background-color: #0101F8; }
        .pricing-section .priceing-wrapper .nav-tabs li.active a {
          color: #FFFFFF; }
      .pricing-section .priceing-wrapper .nav-tabs li:first-child {
        border-radius: 5px 0 0 5px; }
        @media only screen and (max-width: 310px) {
          .pricing-section .priceing-wrapper .nav-tabs li:first-child {
            border-radius: 5px 5px 0 0; } }
      .pricing-section .priceing-wrapper .nav-tabs li:last-child {
        border-radius: 0 5px 5px 0; }
        @media only screen and (max-width: 310px) {
          .pricing-section .priceing-wrapper .nav-tabs li:last-child {
            border-radius: 0 0 5px 5px; } }
      .pricing-section .priceing-wrapper .nav-tabs li a {
        color: #0101F8;
        background-color: transparent;
        padding: 14px 78px;
        border: 0;
        margin: 0; }
        @media only screen and (max-width: 767px) {
          .pricing-section .priceing-wrapper .nav-tabs li a {
            padding: 12px 60px; } }
        @media only screen and (max-width: 479px) {
          .pricing-section .priceing-wrapper .nav-tabs li a {
            padding: 10px 50px; } }
        @media only screen and (max-width: 390px) {
          .pricing-section .priceing-wrapper .nav-tabs li a {
            padding: 6px 30px; } }
  .pricing-section .priceing-wrapper .tab-content .pricing-wrapper {
    border-radius: 5px; }
    @media only screen and (max-width: 991px) {
      .pricing-section .priceing-wrapper .tab-content .pricing-wrapper {
        margin-bottom: 50px; } }
    @media only screen and (max-width: 767px) {
      .pricing-section .priceing-wrapper .tab-content .pricing-wrapper {
        margin-bottom: 30px; } }
    .pricing-section .priceing-wrapper .tab-content .pricing-wrapper .header {
      position: relative;
      background-color: #092a48;
      border-radius: 5px 5px 0 0;
      padding: 45px 0;
      overflow: hidden; }
      .pricing-section .priceing-wrapper .tab-content .pricing-wrapper .header .discount {
        position: absolute;
        top: 12px;
        right: -32px;
        font-size: 14px;
        text-transform: uppercase;
        color: #FFFFFF;
        background-color: #fd3e03;
        padding: 0 30px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg); }
      .pricing-section .priceing-wrapper .tab-content .pricing-wrapper .header .promotion {
        font-size: 24px;
        font-weight: 600;
        line-height: 27px;
        color: #0101F8; }
      .pricing-section .priceing-wrapper .tab-content .pricing-wrapper .header .rate {
        padding: 22px 0; }
        .pricing-section .priceing-wrapper .tab-content .pricing-wrapper .header .rate sup {
          font-size: 20px;
          font-weight: 600;
          color: #FFFFFF; }
        .pricing-section .priceing-wrapper .tab-content .pricing-wrapper .header .rate .price {
          font-size: 48px;
          font-weight: 600;
          color: #FFFFFF; }
      .pricing-section .priceing-wrapper .tab-content .pricing-wrapper .header .sign {
        font-size: 16px;
        padding: 7px 55px; }
        .pricing-section .priceing-wrapper .tab-content .pricing-wrapper .header .sign::before {
          display: none; }
        .pricing-section .priceing-wrapper .tab-content .pricing-wrapper .header .sign:hover {
          color: #092a48; }
    .pricing-section .priceing-wrapper .tab-content .pricing-wrapper .bottom {
      box-shadow: 0 10px 10px #e8e8e8; }
      .pricing-section .priceing-wrapper .tab-content .pricing-wrapper .bottom .pricing-detail {
        margin: 38px 0 0;
        padding-bottom: 30px;
        border-bottom: 1px solid #d9d9d9; }
        .pricing-section .priceing-wrapper .tab-content .pricing-wrapper .bottom .pricing-detail li {
          font-size: 14px;
          color: #6a6a6a;
          margin-bottom: 18px; }
          .pricing-section .priceing-wrapper .tab-content .pricing-wrapper .bottom .pricing-detail li:last-child {
            margin-bottom: 0; }
          .pricing-section .priceing-wrapper .tab-content .pricing-wrapper .bottom .pricing-detail li i {
            color: #0101F8; }
      .pricing-section .priceing-wrapper .tab-content .pricing-wrapper .bottom .saveings {
        font-size: 14px;
        line-height: 58px;
        color: #0101F8; }
        .pricing-section .priceing-wrapper .tab-content .pricing-wrapper .bottom .saveings .bold {
          font-size: 18px;
          font-weight: 600; }

/* =========================================================
        Working-Section STYLE 
============================================================ */
.working-section .section-title {
  margin-bottom: 73px; }
  @media only screen and (max-width: 767px) {
    .working-section .section-title {
      margin-bottom: 50px; } }
  @media only screen and (max-width: 479px) {
    .working-section .section-title {
      margin-bottom: 30px; } }
.working-section .section-wrapper .wrapper-content h4 {
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  color: #333333;
  margin-bottom: 28px; }
  @media only screen and (max-width: 991px) {
    .working-section .section-wrapper .wrapper-content h4 {
      margin-bottom: 15px; } }
  @media only screen and (max-width: 767px) {
    .working-section .section-wrapper .wrapper-content h4 {
      font-size: 20px;
      line-height: 25px;
      margin-bottom: 10px; } }
.working-section .section-wrapper .wrapper-content p {
  line-height: 25px;
  margin-bottom: 28px; }
  @media only screen and (max-width: 991px) {
    .working-section .section-wrapper .wrapper-content p {
      margin-bottom: 10px; } }
  @media only screen and (max-width: 479px) {
    .working-section .section-wrapper .wrapper-content p {
      margin-bottom: 0; } }
.working-section .section-wrapper .wrapper-content .btn {
  border-radius: 25px;
  margin-top: 22px;
  padding: 9px 38px; }
  @media only screen and (max-width: 991px) {
    .working-section .section-wrapper .wrapper-content .btn {
      padding: 8px 25px; } }
  @media only screen and (max-width: 767px) {
    .working-section .section-wrapper .wrapper-content .btn {
      font-size: 14px;
      padding: 7px 15px; } }
.working-section .section-wrapper .video-wrapper {
  margin-left: 60px; }
  @media only screen and (max-width: 991px) {
    .working-section .section-wrapper .video-wrapper {
      margin: 50px 0 0; } }
  @media only screen and (max-width: 767px) {
    .working-section .section-wrapper .video-wrapper {
      margin: 30px 0 0; } }
  .working-section .section-wrapper .video-wrapper video {
    width: 100%; }
.working-section .working-wrapper .wrapper-content p {
  font-size: 18px;
  line-height: 30px;
  color: #999999; }
  .working-section .working-wrapper .wrapper-content p strong {
    font-size: 30px;
    letter-spacing: 1px;
    color: #333333; }
.working-section .working-wrapper .wrapper-content h4 {
  color: #0d1d36; }
.working-section .working-wrapper .wrapper-content .btn {
  margin-top: 22px;
  color: #FFFFFF;
  background-color: #0d1d36; }
  .working-section .working-wrapper .wrapper-content .btn:hover {
    background-color: #0101F8; }
@media only screen and (max-width: 991px) {
  .working-section .working-wrapper .wrapper-content {
    margin-bottom: 80px; } }
.working-section .working-wrapper #working-carousel {
  overflow: hidden; }
  .working-section .working-wrapper #working-carousel .carousel-inner img {
    width: 100%; }
  .working-section .working-wrapper #working-carousel:hover .carousel-control.left {
    transform: translateX(20px); }
  .working-section .working-wrapper #working-carousel:hover .carousel-control.right {
    transform: translateX(-20px); }
  .working-section .working-wrapper #working-carousel .carousel-control.left {
    transform: translateX(-50px); }
  .working-section .working-wrapper #working-carousel .carousel-control.right {
    transform: translateX(50px); }
  .working-section .working-wrapper #working-carousel .carousel-control.left, .working-section .working-wrapper #working-carousel .carousel-control.right {
    top: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    background-image: none;
    text-shadow: none;
    opacity: 1; }
    .working-section .working-wrapper #working-carousel .carousel-control.left i, .working-section .working-wrapper #working-carousel .carousel-control.right i {
      font-size: 25px;
      width: 50px;
      height: 50px;
      line-height: 50px;
      color: #0d1d36;
      border-radius: 50%;
      background-color: #FFFFFF;
      -webkit-transition: 0.5s;
      -khtml-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
      .working-section .working-wrapper #working-carousel .carousel-control.left i:hover, .working-section .working-wrapper #working-carousel .carousel-control.right i:hover {
        color: #FFFFFF;
        background-color: #0d1d36; }
.working-section .working-section-two h2 {
  position: relative;
  margin-bottom: 53px; }
  @media only screen and (max-width: 767px) {
    .working-section .working-section-two h2 {
      margin-bottom: 10px;
      font-size: 30px;
      line-height: 35px; } }
  @media only screen and (max-width: 479px) {
    .working-section .working-section-two h2 {
      font-size: 25px;
      line-height: 30px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .working-section .working-section-two h2 {
      font-size: 30px;
      line-height: 35px; } }
  .working-section .working-section-two h2::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    right: 21px;
    bottom: 7px;
    background-color: #0101F8; }
    @media only screen and (max-width: 1200px) {
      .working-section .working-section-two h2::before {
        display: none; } }
.working-section .working-section-two p {
  font-size: 20px;
  line-height: 30px;
  color: #999999; }
  @media only screen and (max-width: 991px) {
    .working-section .working-section-two p {
      margin-bottom: 50px;
      font-size: 18px;
      line-height: 27px; } }
  @media only screen and (max-width: 767px) {
    .working-section .working-section-two p {
      margin-bottom: 50px;
      font-size: 18px; } }
.working-section .working-section-two .wrapper-content img {
  width: 100%; }
.working-section .working-section-two .wrapper-content h3 {
  position: relative;
  font-size: 24px;
  line-height: 36px;
  border-bottom: 2px solid #d8d8d8;
  margin: 22px 0;
  padding-bottom: 22px; }
  .working-section .working-section-two .wrapper-content h3::before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -2px;
    background-color: #0101F8;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
  @media (min-width: 768px) and (max-width: 991px) {
    .working-section .working-section-two .wrapper-content h3 {
      font-size: 20px;
      line-height: 25px; } }
  @media (min-width: 480px) and (max-width: 767px) {
    .working-section .working-section-two .wrapper-content h3 {
      font-size: 20px;
      line-height: 25px; } }
  @media only screen and (max-width: 479px) {
    .working-section .working-section-two .wrapper-content h3 {
      font-size: 18px;
      line-height: 22px; } }
.working-section .working-section-two .wrapper-content:hover h3::before {
  width: 100%; }
.working-section .working-section-two .wrapper-content .link {
  font-size: 17px;
  font-weight: 700; }
  .working-section .working-section-two .wrapper-content .link i {
    transform: rotate(90deg); }
  @media only screen and (max-width: 479px) {
    .working-section .working-section-two .wrapper-content .link {
      font-size: 15px; } }
@media only screen and (max-width: 767px) {
  .working-section .working-section-two .wrapper-content {
    margin-bottom: 50px; } }
.working-section .working-section-two .first-part {
  margin-bottom: 40px; }

/* =========================================================
        Finance-Section STYLE 
============================================================ */
.finance-section .section-title {
  margin-bottom: 65px; }
  @media only screen and (max-width: 767px) {
    .finance-section .section-title {
      margin-bottom: 40px; } }
.finance-section .finance-wrapper {
  position: relative;
  padding: 50px 0 65px;
  overflow: hidden; }
  @media only screen and (max-width: 991px) {
    .finance-section .finance-wrapper {
      padding-bottom: 80px; } }
  @media only screen and (max-width: 479px) {
    .finance-section .finance-wrapper {
      padding-bottom: 50px; } }
  .finance-section .finance-wrapper.wrapper-one::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/f-bg.jpg) no-repeat;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: 1s;
    -khtml-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    animation: cloud-animationn 45s linear infinite;
    -ms-animation: cloud-animationn 45s linear infinite;
    -moz-animation: cloud-animationn 45s linear infinite;
    -webkit-animation: cloud-animationn 45s linear infinite; }
@-webkit-keyframes cloud-animationn {
  from {
    background-position: 0 0; }
  to {
    background-position: 100% 0; } }
@keyframes cloud-animationn {
  from {
    background-position: 0 0; }
  to {
    background-position: 100% 0; } }
  .finance-section .finance-wrapper.wrapper-two::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 440px;
    background: url(../images/f3-bg.jpg) no-repeat;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: 1s;
    -khtml-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    animation: cloud-animationn 45s linear infinite;
    -ms-animation: cloud-animationn 45s linear infinite;
    -moz-animation: cloud-animationn 45s linear infinite;
    -webkit-animation: cloud-animationn 45s linear infinite; }
@-webkit-keyframes cloud-animationn {
  from {
    background-position: 0 0; }
  to {
    background-position: 100% 0; } }
@keyframes cloud-animationn {
  from {
    background-position: 0 0; }
  to {
    background-position: 100% 0; } }
  .finance-section .finance-wrapper.wrapper-three::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/f2-bg.jpg) no-repeat;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: 1s;
    -khtml-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    animation: cloud-animationn 45s linear infinite;
    -ms-animation: cloud-animationn 45s linear infinite;
    -moz-animation: cloud-animationn 45s linear infinite;
    -webkit-animation: cloud-animationn 45s linear infinite; }
@-webkit-keyframes cloud-animationn {
  from {
    background-position: 0 0; }
  to {
    background-position: 100% 0; } }
@keyframes cloud-animationn {
  from {
    background-position: 0 0; }
  to {
    background-position: 100% 0; } }
  .finance-section .finance-wrapper:hover.wrapper-one::before, .finance-section .finance-wrapper:hover.wrapper-two::before, .finance-section .finance-wrapper:hover.wrapper-three::before {
    opacity: 1;
    visibility: visible; }
  .finance-section .finance-wrapper:hover .link {
    color: #FFFFFF;
    background-color: #0101F8; }
  .finance-section .finance-wrapper .caption {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #0101F8;
    margin: 0 auto;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .finance-section .finance-wrapper .caption img {
      padding-top: 18px; }
    .finance-section .finance-wrapper .caption .hover-icon {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      margin: 0 auto;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: 0.5s;
      -khtml-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
    @media only screen and (max-width: 479px) {
      .finance-section .finance-wrapper .caption {
        width: 50px;
        height: 50px; }
        .finance-section .finance-wrapper .caption img {
          width: 20px;
          padding-top: 15px; } }
  .finance-section .finance-wrapper:hover .caption {
    background-color: #FFFFFF; }
    .finance-section .finance-wrapper:hover .caption .hover-icon {
      opacity: 1;
      visibility: visible; }
  .finance-section .finance-wrapper h3 {
    font-size: 24px;
    font-weight: 500;
    color: #0d1d36;
    margin: 32px 0 17px;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .finance-section .finance-wrapper h3 {
        font-size: 22px;
        margin: 32px 0 10px; } }
    @media only screen and (max-width: 479px) {
      .finance-section .finance-wrapper h3 {
        font-size: 18px;
        line-height: 27px;
        margin: 10px 0 5px; } }
  .finance-section .finance-wrapper:hover h3 {
    color: #FFFFFF; }
  .finance-section .finance-wrapper p {
    font-size: 15px;
    line-height: 25px;
    color: #6a6a6a;
    margin-bottom: 47px;
    padding: 0 48px;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .finance-section .finance-wrapper p {
        padding: 0 10px; } }
    @media only screen and (max-width: 479px) {
      .finance-section .finance-wrapper p {
        font-size: 14px;
        line-height: 25px;
        padding: 0 10px;
        margin-bottom: 25px; } }
  .finance-section .finance-wrapper:hover p {
    color: #FFFFFF; }
  .finance-section .finance-wrapper .link {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #0101F8;
    border: 1px solid #0101F8;
    border-radius: 25px;
    padding: 9px 28px; }
    @media only screen and (max-width: 479px) {
      .finance-section .finance-wrapper .link {
        font-size: 12px; } }

/* =========================================================
        Map-Section STYLE 
============================================================ */
.map-section #googleMap {
  margin-left: 10vh;
  margin-right: 10vh;
  height: 805px; }
  @media only screen and (max-width: 767px) {
    .map-section #googleMap {
      height: 300px; } }
  @media only screen and (max-width: 479px) {
    .map-section #googleMap {
      height: 250px; } }

/* =========================================================
        Contact-Section STYLE 
============================================================ */
.contact-section {
  position: relative; }
  .contact-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 505px;
    background-color: #f3f3f3; }
  .contact-section .contact-wrapper {
    padding: 85px 100px 55px;
    box-shadow: 0 0 15px #d6d5d5; }
    @media only screen and (max-width: 991px) {
      .contact-section .contact-wrapper {
        padding: 50px 100px; } }
    @media only screen and (max-width: 767px) {
      .contact-section .contact-wrapper {
        padding: 50px; } }
    @media only screen and (max-width: 479px) {
      .contact-section .contact-wrapper {
        padding: 50px 15px; } }
    .contact-section .contact-wrapper .section-title {
      margin-bottom: 60px; }
      @media only screen and (max-width: 767px) {
        .contact-section .contact-wrapper .section-title {
          margin-bottom: 30px; } }
      .contact-section .contact-wrapper .section-title h2 {
        font-weight: 500;
        color: #f3b502;
        margin-bottom: 15px; }
      .contact-section .contact-wrapper .section-title p {
        color: #666666; }
    .contact-section .contact-wrapper .form-section .contact-form .form-group .form-control {
      font-size: 16px;
      color: #8f969e;
      background-color: #eef1f5;
      border: 0;
      box-shadow: none;
      border-radius: 5px;
      padding: 22px 30px; }
      .contact-section .contact-wrapper .form-section .contact-form .form-group .form-control:focus {
        border: 0; }
      @media only screen and (max-width: 479px) {
        .contact-section .contact-wrapper .form-section .contact-form .form-group .form-control {
          font-size: 14px;
          padding: 20px; } }
    .contact-section .contact-wrapper .form-section .contact-form .form-group .btn {
      width: 100%; }
      @media only screen and (max-width: 479px) {
        .contact-section .contact-wrapper .form-section .contact-form .form-group .btn {
          padding: 6px 16px; } }
    .contact-section .contact-wrapper .location {
      margin: 15px 0 0 20px; }
      @media only screen and (max-width: 991px) {
        .contact-section .contact-wrapper .location {
          margin: 50px 0 0 0; } }
      .contact-section .contact-wrapper .location li {
        margin-bottom: 15px; }
        .contact-section .contact-wrapper .location li:last-child {
          margin-bottom: 0; }
        .contact-section .contact-wrapper .location li i {
          font-size: 20px;
          color: #0101F8;
          float: left;
          margin-top: 7px; }
          @media only screen and (max-width: 479px) {
            .contact-section .contact-wrapper .location li i {
              margin-top: 3px; } }
        .contact-section .contact-wrapper .location li .text {
          font-size: 18px;
          line-height: 34px;
          color: #7c828b;
          margin-left: 45px; }
          @media only screen and (max-width: 479px) {
            .contact-section .contact-wrapper .location li .text {
              font-size: 16px;
              line-height: 27px;
              margin-left: 35px; } }
  @media only screen and (max-width: 991px) {
    .contact-section {
      height: auto;
      padding: 80px 0; } }
  @media only screen and (max-width: 767px) {
    .contact-section {
      padding: 60px 0; } }
  .contact-section .contact-left-bar {
    position: relative;
    background: rgba(24, 65, 106, 0.96);
    padding: 70px 55px 65px;
    border-radius: 8px;
    margin: -55px 0 0;
    z-index: 5; }
    @media only screen and (max-width: 991px) {
      .contact-section .contact-left-bar {
        margin: 0; } }
    @media only screen and (max-width: 479px) {
      .contact-section .contact-left-bar {
        padding: 40px 15px 35px; } }
    .contact-section .contact-left-bar .header {
      font-size: 18px;
      font-weight: 500;
      line-height: 34px;
      color: #0101F8; }
    .contact-section .contact-left-bar h4 {
      font-size: 24px;
      font-weight: 500;
      line-height: 36px;
      color: #FFFFFF;
      margin: 8px 0; }
      @media only screen and (max-width: 479px) {
        .contact-section .contact-left-bar h4 {
          line-height: 30px; } }
    .contact-section .contact-left-bar p {
      font-size: 15px;
      color: #9daab8; }
    .contact-section .contact-left-bar .contact-form {
      margin-top: 42px; }
      .contact-section .contact-left-bar .contact-form .padding-right {
        padding-right: 7px; }
        @media only screen and (max-width: 767px) {
          .contact-section .contact-left-bar .contact-form .padding-right {
            padding-right: 15px; } }
      .contact-section .contact-left-bar .contact-form .padding-left {
        padding-left: 7px; }
        @media only screen and (max-width: 767px) {
          .contact-section .contact-left-bar .contact-form .padding-left {
            padding-left: 15px; } }
      .contact-section .contact-left-bar .contact-form .form-group .form-control {
        font-size: 14px;
        border: 0;
        border-radius: 5px;
        padding: 22px 25px; }
        .contact-section .contact-left-bar .contact-form .form-group .form-control::placeholder {
          color: #8f969e; }
      .contact-section .contact-left-bar .contact-form .form-group .submitBtn {
        font-size: 16px;
        font-weight: 500;
        width: 100%;
        border: 0;
        border-radius: 5px;
        padding: 7px 25px;
        color: #FFFFFF;
        background: #0101F8; }
      .contact-section .contact-left-bar .contact-form .selection .dropdown-select {
        width: 100%;
        color: #8f969e;
        border: 0;
        border-radius: 5px;
        padding: 10px 20px;
        margin-bottom: 15px; }
  .contact-section .contact-right-bar img {
    margin-top: -175px;
    margin-left: -145px;
    z-index: 1; }

/* =========================================================
        News-Section STYLE 
============================================================ */
.news-section .section-title {
  margin-bottom: 58px; }
  @media only screen and (max-width: 767px) {
    .news-section .section-title {
      margin-bottom: 30px; } }
@media (min-width: 768px) and (max-width: 991px) {
  .news-section .news-wrapper.middle-wrapper {
    margin-bottom: 30px; } }
@media (min-width: 768px) and (max-width: 991px) {
  .news-section .news-wrapper.last-wrapper {
    display: flex; }
    .news-section .news-wrapper.last-wrapper .news-content {
      flex: 1;
      padding: 28px 32px 20px; }
      .news-section .news-wrapper.last-wrapper .news-content.size-changer {
        margin-bottom: 0; }
      .news-section .news-wrapper.last-wrapper .news-content:first-child {
        margin-right: 15px; }
      .news-section .news-wrapper.last-wrapper .news-content:last-child {
        margin-left: 15px; } }
.news-section .news-wrapper img {
  max-width: 100%; }
  @media only screen and (max-width: 767px) {
    .news-section .news-wrapper img {
      width: 100%; } }
.news-section .news-wrapper .news-content {
  border: 1px solid #dee0e1;
  padding: 35px 32px 42px; }
  @media only screen and (max-width: 767px) {
    .news-section .news-wrapper .news-content {
      margin-bottom: 20px; } }
  @media only screen and (max-width: 479px) {
    .news-section .news-wrapper .news-content {
      padding: 25px 20px 30px; } }
  .news-section .news-wrapper .news-content.size-changer {
    padding: 28px 32px 20px;
    margin-bottom: 25px; }
    @media only screen and (max-width: 767px) {
      .news-section .news-wrapper .news-content.size-changer {
        margin-bottom: 20px; } }
    .news-section .news-wrapper .news-content.size-changer:last-child {
      margin-bottom: 0; }
      @media only screen and (max-width: 767px) {
        .news-section .news-wrapper .news-content.size-changer:last-child {
          margin-bottom: 20px; } }
  .news-section .news-wrapper .news-content h4 {
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 10px; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .news-section .news-wrapper .news-content h4 {
        font-size: 18px; } }
    @media only screen and (max-width: 479px) {
      .news-section .news-wrapper .news-content h4 {
        font-size: 20px;
        line-height: 25px; } }
    .news-section .news-wrapper .news-content h4 a {
      color: #222222; }
      .news-section .news-wrapper .news-content h4 a:hover {
        color: #0101F8; }
  .news-section .news-wrapper .news-content p {
    font-size: 14px;
    line-height: 24px;
    color: #828282;
    margin-bottom: 24px; }
  .news-section .news-wrapper .news-content .date {
    font-size: 14px;
    line-height: 24px;
    color: #222222;
    text-transform: uppercase; }
  .news-section .news-wrapper .news-content .tag {
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase; }
.news-section .news-wrapper .video-content {
  position: relative; }
  .news-section .news-wrapper .video-content .link {
    position: absolute;
    top: 20PX;
    left: 30PX;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0; }
    .news-section .news-wrapper .video-content .link i {
      font-size: 9px;
      border-radius: 50%;
      color: #7891a9;
      background-color: #FFFFFF;
      margin-right: 5px;
      width: 18px;
      height: 18px;
      line-height: 18px;
      text-align: center;
      padding-left: 2px;
      vertical-align: middle;
      -webkit-transition: 0.5s;
      -khtml-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
    .news-section .news-wrapper .video-content .link:hover i {
      background-color: #0101F8; }
    .news-section .news-wrapper .video-content .link a {
      color: #FFFFFF; }
      .news-section .news-wrapper .video-content .link a:hover {
        color: #0101F8; }
  .news-section .news-wrapper .video-content .news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    border: 0;
    padding: 35px 32px 26px; }
    .news-section .news-wrapper .video-content .news-content h4 a {
      color: #FFFFFF; }
      .news-section .news-wrapper .video-content .news-content h4 a:hover {
        color: #0101F8; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .news-section .news-wrapper .video-content .news-content h4 {
        font-size: 16px;
        line-height: 25px; } }
    .news-section .news-wrapper .video-content .news-content .date {
      color: #FFFFFF; }
    .news-section .news-wrapper .video-content .news-content .tag a:hover {
      color: #FFFFFF; }
.news-section .link {
  margin-top: 72px; }
  @media only screen and (max-width: 991px) {
    .news-section .link {
      margin-top: 50px; } }
  @media only screen and (max-width: 767px) {
    .news-section .link {
      margin-top: 20px; } }
  @media only screen and (max-width: 479px) {
    .news-section .link {
      margin-top: 10px; } }
  .news-section .link .btn {
    padding: 9px 40px; }
    @media only screen and (max-width: 767px) {
      .news-section .link .btn {
        padding: 6px 30px; } }
    @media only screen and (max-width: 479px) {
      .news-section .link .btn {
        padding: 4px 20px; } }

/* =========================================================
        Startup STYLE 
============================================================ */
.startup-section .header h2 {
  position: relative;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  color: #031633;
  display: inline-block;
  margin-bottom: 57px; }
  @media only screen and (max-width: 767px) {
    .startup-section .header h2 {
      margin-bottom: 10px; } }
  @media only screen and (max-width: 479px) {
    .startup-section .header h2 {
      font-size: 25px;
      line-height: 30px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .startup-section .header h2 {
      font-size: 30px;
      line-height: 35px; } }
  .startup-section .header h2::before {
    content: "";
    position: absolute;
    width: 75px;
    height: 4px;
    left: 60px;
    bottom: 15px;
    background-color: #0101F8; }
    @media only screen and (max-width: 1200px) {
      .startup-section .header h2::before {
        display: none; } }
.startup-section .header p {
  line-height: 25px; }
  @media only screen and (max-width: 767px) {
    .startup-section .header p {
      margin-bottom: 50px;
      font-size: 13px;
      line-height: 24px; } }
  @media only screen and (max-width: 479px) {
    .startup-section .header p {
      margin-bottom: 30px; } }
.startup-section .wrapper-content.last-wrapper {
  margin-bottom: 0; }
.startup-section .wrapper-content .caption {
  position: relative; }
  .startup-section .wrapper-content .caption img {
    width: 100%; }
  .startup-section .wrapper-content .caption .hover-view {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #0101F8;
    border-radius: 50%;
    text-align: center;
    opacity: 0;
    margin: -30px auto 0;
    z-index: 5;
    @incude transition(.3s);
    -webkit-transition-delay: .5s;
    -moz-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5); }
    .startup-section .wrapper-content .caption .hover-view img {
      width: auto; }
  .startup-section .wrapper-content .caption:hover .hover-view {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  .startup-section .wrapper-content .caption:hover .border .border-one,
  .startup-section .wrapper-content .caption:hover .border .border-two,
  .startup-section .wrapper-content .caption:hover .border .border-three,
  .startup-section .wrapper-content .caption:hover .border .border-four {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  .startup-section .wrapper-content .caption .border .border-one,
  .startup-section .wrapper-content .caption .border .border-two,
  .startup-section .wrapper-content .caption .border .border-three,
  .startup-section .wrapper-content .caption .border .border-four {
    position: absolute;
    height: 25%;
    width: 100%;
    left: 0;
    background-color: rgba(9, 42, 72, 0.95);
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    transition: all 0.35s ease;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    z-index: 1; }
  .startup-section .wrapper-content .caption .border .border-one {
    top: 0;
    -webkit-transition-delay: 0.35s;
    -moz-transition-delay: 0.35s;
    -o-transition-delay: 0.35s;
    transition-delay: 0.35s; }
  .startup-section .wrapper-content .caption .border .border-two {
    top: 25%;
    -webkit-transition-delay: 0.21s;
    -moz-transition-delay: 0.21s;
    -o-transition-delay: 0.21s;
    transition-delay: 0.21s; }
  .startup-section .wrapper-content .caption .border .border-three {
    top: 50%;
    -webkit-transition-delay: 0.105s;
    -moz-transition-delay: 0.105s;
    -o-transition-delay: 0.105s;
    transition-delay: 0.105s; }
  .startup-section .wrapper-content .caption .border .border-four {
    top: 75%;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s; }
.startup-section .wrapper-content h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  color: #031633;
  margin: 22px 0 8px; }
  @media (min-width: 768px) and (max-width: 991px) {
    .startup-section .wrapper-content h3 {
      font-size: 20px;
      line-height: 25px; } }
  @media (min-width: 480px) and (max-width: 767px) {
    .startup-section .wrapper-content h3 {
      font-size: 20px;
      line-height: 25px; } }
  @media only screen and (max-width: 479px) {
    .startup-section .wrapper-content h3 {
      font-size: 18px;
      line-height: 22px; } }
.startup-section .wrapper-content p {
  position: relative;
  line-height: 25px;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 13px;
  padding-bottom: 30px; }
  .startup-section .wrapper-content p::before {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    left: 0;
    bottom: -1px;
    background-color: #0101F8;
    -webkit-transition: 1s;
    -khtml-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s; }
.startup-section .wrapper-content:hover p::before {
  width: 100%; }
.startup-section .wrapper-content .link {
  font-size: 18px;
  line-height: 15px;
  font-weight: 500; }
  .startup-section .wrapper-content .link i {
    transform: rotate(90deg); }
  @media only screen and (max-width: 479px) {
    .startup-section .wrapper-content .link {
      font-size: 15px; } }
@media only screen and (max-width: 767px) {
  .startup-section .wrapper-content {
    margin-bottom: 50px; } }
.startup-section .first-part {
  margin-bottom: 40px; }

/* =========================================================
        Research-Section STYLE 
============================================================ */
.research-section {
  background-color: #f2f2f2; }
  .research-section .section-title {
    margin-bottom: 98px; }
    @media only screen and (max-width: 991px) {
      .research-section .section-title {
        margin-bottom: 70px; } }
    @media only screen and (max-width: 767px) {
      .research-section .section-title {
        margin-bottom: 60px; } }
    @media only screen and (max-width: 479px) {
      .research-section .section-title {
        margin-bottom: 30px; } }
    .research-section .section-title .border-2 {
      right: auto; }
      @media only screen and (max-width: 767px) {
        .research-section .section-title .border-2 {
          top: 45px; } }
  .research-section #research-carousel .carousel-inner {
    background-color: #FFFFFF;
    box-shadow: 0 0 10px 0px rgba(64, 64, 64, 0.12); }
    .research-section #research-carousel .carousel-inner .carousel-wrapper {
      padding: 50px 40px 75px 55px; }
      @media only screen and (max-width: 767px) {
        .research-section #research-carousel .carousel-inner .carousel-wrapper {
          padding: 40px 40px 40px 30px; } }
      @media only screen and (max-width: 479px) {
        .research-section #research-carousel .carousel-inner .carousel-wrapper {
          padding: 30px 20px; } }
      .research-section #research-carousel .carousel-inner .carousel-wrapper img {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        float: left; }
        @media only screen and (max-width: 479px) {
          .research-section #research-carousel .carousel-inner .carousel-wrapper img {
            float: none !important; } }
      .research-section #research-carousel .carousel-inner .carousel-wrapper .content {
        margin-left: 80px; }
        @media only screen and (max-width: 479px) {
          .research-section #research-carousel .carousel-inner .carousel-wrapper .content {
            margin-left: 0; } }
        .research-section #research-carousel .carousel-inner .carousel-wrapper .content h3 {
          font-size: 24px;
          font-weight: 500;
          color: #031633;
          letter-spacing: -.5px;
          margin: 8px 0 2px; }
        .research-section #research-carousel .carousel-inner .carousel-wrapper .content .position {
          font-size: 14px;
          font-weight: 500;
          color: #9a9a9a; }
        .research-section #research-carousel .carousel-inner .carousel-wrapper .content p {
          font-weight: 300;
          line-height: 25px;
          margin: 11px 0 20px; }
        .research-section #research-carousel .carousel-inner .carousel-wrapper .content ul > li {
          display: inline-block;
          margin: 7px 2px 0; }
          .research-section #research-carousel .carousel-inner .carousel-wrapper .content ul > li i {
            font-size: 25px;
            color: #faaf0e; }
  .research-section #research-carousel .carousel-control.left, .research-section #research-carousel .carousel-control.right {
    background-image: none;
    opacity: 1;
    width: 40px;
    height: 30px;
    top: auto;
    bottom: 8px; }
    @media only screen and (max-width: 479px) {
      .research-section #research-carousel .carousel-control.left, .research-section #research-carousel .carousel-control.right {
        bottom: 6px; } }
  .research-section #research-carousel .link .btn {
    padding: 11px 30px;
    margin-top: 45px; }
    @media only screen and (max-width: 479px) {
      .research-section #research-carousel .link .btn {
        padding: 8px 30px;
        margin-top: 30px; } }
    .research-section #research-carousel .link .btn i {
      margin-right: 5px; }
  @media only screen and (max-width: 991px) {
    .research-section .research-content {
      margin-top: 50px; } }
  .research-section .research-content .section-title {
    margin-bottom: 45px; }
    @media only screen and (max-width: 479px) {
      .research-section .research-content .section-title {
        margin-bottom: 30px; } }
    .research-section .research-content .section-title h2 {
      margin-bottom: 10px; }
    .research-section .research-content .section-title p {
      font-size: 18px;
      line-height: 30px;
      color: #999999; }
      @media only screen and (max-width: 767px) {
        .research-section .research-content .section-title p {
          font-size: 15px;
          line-height: 27px; } }
  .research-section .research-content .accordion-content .ui-accordion-header {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    color: #031633;
    background-color: #FFFFFF;
    border-radius: 25px;
    padding: 13px 33px;
    margin-bottom: 0;
    margin-top: 14px;
    cursor: pointer;
    box-shadow: 0 0 10px 0px rgba(64, 64, 64, 0.12); }
    @media only screen and (max-width: 479px) {
      .research-section .research-content .accordion-content .ui-accordion-header {
        font-size: 16px;
        line-height: 24px;
        padding: 13px 40px 13px 15px; } }
    .research-section .research-content .accordion-content .ui-accordion-header:focus {
      outline: none; }
    .research-section .research-content .accordion-content .ui-accordion-header::before {
      content: "\f055";
      font-family: "FontAwesome";
      position: absolute;
      top: 50%;
      right: 35px;
      width: 15px;
      height: 15px;
      font-size: 20px;
      color: #0101F8;
      margin-top: -14px; }
      @media only screen and (max-width: 479px) {
        .research-section .research-content .accordion-content .ui-accordion-header::before {
          right: 15px; } }
    .research-section .research-content .accordion-content .ui-accordion-header.ui-accordion-header-active::before {
      content: "\f056"; }
  .research-section .research-content .accordion-content .ui-accordion-content {
    padding: 22px 30px 0; }
    .research-section .research-content .accordion-content .ui-accordion-content p {
      font-weight: 300;
      margin-bottom: 0; }

/* =========================================================
        Signup-Section STYLE 
============================================================ */
.signup-section {
  background: url(../images/signup-bg.jpg) no-repeat center top;
  background-size: cover;
  background-attachment: fixed; }
  @media only screen and (max-width: 767px) {
    .signup-section {
      padding: 80px 0; } }
  @media only screen and (max-width: 479px) {
    .signup-section {
      padding: 60px 0; } }
  @media only screen and (max-width: 550px) {
    .signup-section {
      background-attachment: inherit; } }
  .signup-section .contact-wrapper {
    margin-top: 85px; }
    @media only screen and (max-width: 767px) {
      .signup-section .contact-wrapper {
        margin-top: 0; } }
    .signup-section .contact-wrapper h3 {
      font-size: 30px;
      font-weight: 400;
      line-height: 42px;
      color: #FFFFFF;
      margin-bottom: 23px; }
      @media only screen and (max-width: 991px) {
        .signup-section .contact-wrapper h3 {
          font-size: 32px; } }
      @media only screen and (max-width: 767px) {
        .signup-section .contact-wrapper h3 {
          font-size: 30px;
          line-height: 35px;
          text-align: center; } }
      @media only screen and (max-width: 479px) {
        .signup-section .contact-wrapper h3 {
          font-size: 25px;
          line-height: 30px; } }
      .signup-section .contact-wrapper h3 span {
        font-weight: 600; }
    .signup-section .contact-wrapper .signupForm .form-wrapper {
      position: relative; }
      .signup-section .contact-wrapper .signupForm .form-wrapper .searchBar {
        width: 100%;
        border-radius: 25px;
        border: 0;
        background: #FFFFFF;
        box-shadow: none;
        padding: 15px 30px;
        font-size: 16px;
        font-weight: 400; }
        .signup-section .contact-wrapper .signupForm .form-wrapper .searchBar::placeholder {
          color: #4e5860; }
        .signup-section .contact-wrapper .signupForm .form-wrapper .searchBar:focus {
          border: 0;
          outline: none; }
        @media only screen and (max-width: 767px) {
          .signup-section .contact-wrapper .signupForm .form-wrapper .searchBar {
            padding: 10px 15px; } }
        @media only screen and (max-width: 479px) {
          .signup-section .contact-wrapper .signupForm .form-wrapper .searchBar {
            padding: 8px 15px; } }
      .signup-section .contact-wrapper .signupForm .form-wrapper .subscribeBtn.btn-primary {
        position: absolute;
        top: 0;
        right: 0;
        border: 0;
        border-radius: 25px;
        font-size: 18px;
        font-weight: 600;
        color: #FFFFFF;
        background: #0101F8;
        height: 100%;
        padding: 0 50px;
        margin: 0; }
        @media only screen and (max-width: 479px) {
          .signup-section .contact-wrapper .signupForm .form-wrapper .subscribeBtn.btn-primary {
            font-size: 15px;
            padding: 0 25px; } }
        .signup-section .contact-wrapper .signupForm .form-wrapper .subscribeBtn.btn-primary::before {
          display: none; }
  .signup-section .caption img {
    max-width: 100%;
    margin-top: -60px; }

/* =========================================================
        Finance-Service-Section STYLE 
============================================================ */
.finance-service-section .section-title {
  margin-bottom: 50px; }
  .finance-service-section .section-title .link {
    font-size: 18px;
    font-weight: 600; }
.finance-service-section .finance-carousel .finance-wrapper {
  position: relative;
  box-shadow: 0 0 10px #e0e0e0;
  margin: 35px 5px 5px 5px; }
  .finance-service-section .finance-carousel .finance-wrapper:hover .border .border-one,
  .finance-service-section .finance-carousel .finance-wrapper:hover .border .border-two,
  .finance-service-section .finance-carousel .finance-wrapper:hover .border .border-three,
  .finance-service-section .finance-carousel .finance-wrapper:hover .border .border-four {
    opacity: 1;
    transform: scale(1); }
  .finance-service-section .finance-carousel .finance-wrapper .icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: #0101F8;
    border-radius: 50%;
    margin: 0 auto;
    transform: translateY(-33px);
    box-shadow: 0 2px 10px #cccccc;
    z-index: 5; }
    .finance-service-section .finance-carousel .finance-wrapper .icon img {
      width: auto;
      padding: 15px 0;
      margin: 0 auto; }
  .finance-service-section .finance-carousel .finance-wrapper .wrapper-content h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 26px;
    margin: -17px 0 7px; }
    .finance-service-section .finance-carousel .finance-wrapper .wrapper-content h4 a {
      color: #222222; }
      .finance-service-section .finance-carousel .finance-wrapper .wrapper-content h4 a:hover {
        color: #0101F8; }
  .finance-service-section .finance-carousel .finance-wrapper .wrapper-content p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    color: #8a8a8a;
    padding: 0 40px 28px;
    margin-bottom: 0; }
  .finance-service-section .finance-carousel .finance-wrapper .border .border-one,
  .finance-service-section .finance-carousel .finance-wrapper .border .border-two,
  .finance-service-section .finance-carousel .finance-wrapper .border .border-three,
  .finance-service-section .finance-carousel .finance-wrapper .border .border-four {
    position: absolute;
    background: #0101F8;
    opacity: 0;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
  .finance-service-section .finance-carousel .finance-wrapper .border .border-one {
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scale(0, 1); }
  .finance-service-section .finance-carousel .finance-wrapper .border .border-two {
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    transform: scale(1, 0); }
  .finance-service-section .finance-carousel .finance-wrapper .border .border-three {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scale(0, 1); }
  .finance-service-section .finance-carousel .finance-wrapper .border .border-four {
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    transform: scale(1, 0); }
.finance-service-section .finance-carousel .owl-nav {
  margin-top: 40px; }
  @media only screen and (max-width: 767px) {
    .finance-service-section .finance-carousel .owl-nav {
      margin-top: 20px; } }
  .finance-service-section .finance-carousel .owl-nav .owl-prev,
  .finance-service-section .finance-carousel .owl-nav .owl-next {
    width: 34px;
    height: 34px;
    line-height: 30px;
    border: 2px solid #0101F8;
    background: transparent;
    padding: 0;
    border-radius: 0;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .finance-service-section .finance-carousel .owl-nav .owl-prev:hover,
    .finance-service-section .finance-carousel .owl-nav .owl-next:hover {
      background: #092a48;
      border: 2px solid #092a48; }
    .finance-service-section .finance-carousel .owl-nav .owl-prev i,
    .finance-service-section .finance-carousel .owl-nav .owl-next i {
      font-size: 12px;
      color: #0101F8; }

/* =========================================================
        Company-Section STYLE 
============================================================ */
.company-section {
  background: #ebeef0; }
  .company-section .section-title {
    margin-bottom: 118px; }
    @media only screen and (max-width: 1199px) {
      .company-section .section-title {
        margin-bottom: 100px; } }
    @media only screen and (max-width: 991px) {
      .company-section .section-title {
        margin-bottom: 80px; } }
    @media only screen and (max-width: 767px) {
      .company-section .section-title {
        margin-bottom: 60px; } }
    @media only screen and (max-width: 479px) {
      .company-section .section-title {
        margin-bottom: 30px; } }
  .company-section .section-leftbar h4 {
    font-size: 26px;
    font-weight: 500;
    line-height: 38px;
    color: #222222; }
    @media only screen and (max-width: 767px) {
      .company-section .section-leftbar h4 {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 10px; } }
    @media only screen and (max-width: 479px) {
      .company-section .section-leftbar h4 {
        font-size: 20px;
        line-height: 25px; } }
  .company-section .section-leftbar p {
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    color: #8a8a8a;
    margin-bottom: 0; }
  .company-section .section-leftbar .progressContent {
    position: relative;
    margin-top: 40px; }
    .company-section .section-leftbar .progressContent .progressSection .title {
      font-size: 18px;
      font-weight: 500;
      line-height: 30px;
      text-transform: uppercase;
      color: #222222; }
      @media only screen and (max-width: 479px) {
        .company-section .section-leftbar .progressContent .progressSection .title {
          font-size: 16px;
          line-height: 20px; } }
    .company-section .section-leftbar .progressContent .progressSection .progress {
      position: relative;
      height: 20px;
      box-shadow: none;
      background-color: #092a48;
      border: 0;
      border-radius: 25px;
      overflow: visible;
      margin: 11px 0 17px; }
      @media only screen and (max-width: 767px) {
        .company-section .section-leftbar .progressContent .progressSection .progress {
          height: 17px; } }
      @media only screen and (max-width: 479px) {
        .company-section .section-leftbar .progressContent .progressSection .progress {
          height: 15px;
          margin: 3px 0 17px; } }
      .company-section .section-leftbar .progressContent .progressSection .progress .progress-percent {
        top: -40px;
        margin-left: -28px; }
      .company-section .section-leftbar .progressContent .progressSection .progress .progress-bar {
        box-shadow: none;
        text-align: right;
        height: 20px;
        border-radius: 15px;
        background-image: none;
        background: #0101F8; }
        @media only screen and (max-width: 767px) {
          .company-section .section-leftbar .progressContent .progressSection .progress .progress-bar {
            height: 17px; } }
        @media only screen and (max-width: 479px) {
          .company-section .section-leftbar .progressContent .progressSection .progress .progress-bar {
            height: 15px; } }
        .company-section .section-leftbar .progressContent .progressSection .progress .progress-bar .progress-percent {
          font-size: 18px;
          font-weight: 500;
          position: absolute;
          padding: 4px 6px;
          border-radius: 5px;
          color: #222222; }
          @media only screen and (max-width: 479px) {
            .company-section .section-leftbar .progressContent .progressSection .progress .progress-bar .progress-percent {
              font-size: 16px;
              line-height: 20px; } }
  .company-section .section-rightbar {
    margin-left: 40px; }
    @media only screen and (max-width: 991px) {
      .company-section .section-rightbar {
        margin: 50px 0 0 0; } }
    .company-section .section-rightbar h4 {
      font-size: 24px;
      font-weight: 500;
      line-height: 26px;
      color: #222222;
      margin: 0 0 15px 23px; }
      @media only screen and (max-width: 991px) {
        .company-section .section-rightbar h4 {
          margin: 0; } }
    .company-section .section-rightbar p {
      margin-left: 23px; }
    .company-section .section-rightbar img {
      max-width: 100%; }

/* =========================================================
        Multi-Section STYLE 
============================================================ */
.multi-section .faq-content h2 {
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
  color: #222222;
  margin-bottom: 65px; }
  @media only screen and (max-width: 991px) {
    .multi-section .faq-content h2 {
      margin-bottom: 40px; } }
  @media only screen and (max-width: 767px) {
    .multi-section .faq-content h2 {
      font-size: 25px;
      margin-bottom: 30px; } }
  @media only screen and (max-width: 767px) {
    .multi-section .faq-content h2 {
      font-size: 22px; } }
.multi-section .faq-content .accordion-content .ui-accordion-header {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #031633;
  background-color: #FFFFFF;
  padding: 13px 33px;
  margin-bottom: 0;
  margin-top: 14px;
  cursor: pointer;
  border: 1px solid #dee0e1; }
  @media only screen and (max-width: 767px) {
    .multi-section .faq-content .accordion-content .ui-accordion-header {
      padding: 8px 20px; } }
  @media only screen and (max-width: 479px) {
    .multi-section .faq-content .accordion-content .ui-accordion-header {
      font-size: 16px;
      line-height: 24px;
      padding: 13px 40px 13px 15px; } }
  .multi-section .faq-content .accordion-content .ui-accordion-header:focus {
    outline: none; }
  .multi-section .faq-content .accordion-content .ui-accordion-header::before {
    content: "\f107";
    font-family: "FontAwesome";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    font-size: 20px;
    color: #222222;
    margin-top: -5px; }
    @media only screen and (max-width: 479px) {
      .multi-section .faq-content .accordion-content .ui-accordion-header::before {
        right: 15px; } }
  .multi-section .faq-content .accordion-content .ui-accordion-header.ui-accordion-header-active {
    border-color: #0101F8; }
    .multi-section .faq-content .accordion-content .ui-accordion-header.ui-accordion-header-active::before {
      content: "\f106"; }
.multi-section .faq-content .accordion-content .ui-accordion-content {
  padding: 25px 35px 35px;
  border: 1px solid #dee0e1; }
  @media only screen and (max-width: 991px) {
    .multi-section .faq-content .accordion-content .ui-accordion-content {
      padding: 25px 35px 50px; } }
  @media only screen and (max-width: 767px) {
    .multi-section .faq-content .accordion-content .ui-accordion-content {
      padding: 25px 20px 50px; } }
  @media only screen and (max-width: 699px) {
    .multi-section .faq-content .accordion-content .ui-accordion-content {
      padding: 25px 20px 30px; } }
  @media only screen and (max-width: 450px) {
    .multi-section .faq-content .accordion-content .ui-accordion-content {
      padding: 25px 20px 50px; } }
  .multi-section .faq-content .accordion-content .ui-accordion-content p {
    font-size: 14px;
    font-weight: 300;
    line-height: 26px;
    color: #828282;
    word-break: break-all;
    margin-bottom: 0; }
@media only screen and (max-width: 991px) {
  .multi-section .client-section {
    margin-top: 50px; } }
.multi-section .client-section h3 {
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
  color: #222222;
  margin: 0 0 47px 28px; }
  @media only screen and (max-width: 991px) {
    .multi-section .client-section h3 {
      margin: 0 0 47px 0; } }
  @media only screen and (max-width: 767px) {
    .multi-section .client-section h3 {
      font-size: 25px;
      margin: 0 0 30px 0; } }
.multi-section .client-section .logo li {
  display: inline-block;
  margin: 0 15px 10px; }

/* =========================================================
        Achievement-Section STYLE 
============================================================ */
.achievement-section .section-title {
  margin-bottom: 60px; }
  @media only screen and (max-width: 767px) {
    .achievement-section .section-title {
      margin-bottom: 40px; } }
.achievement-section .achievement-slide {
  position: relative; }
  .achievement-section .achievement-slide .owl-item {
    opacity: 0.3;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .achievement-section .achievement-slide .owl-item.active {
      opacity: 1; }
  @media only screen and (max-width: 767px) {
    .achievement-section .achievement-slide .carousel-wrapper {
      text-align: center; } }
  .achievement-section .achievement-slide .carousel-wrapper .caption {
    margin-right: 30px; }
    @media only screen and (max-width: 991px) {
      .achievement-section .achievement-slide .carousel-wrapper .caption {
        margin-right: 0; } }
    .achievement-section .achievement-slide .carousel-wrapper .caption img {
      width: 100%; }
  .achievement-section .achievement-slide .carousel-wrapper .content {
    margin-top: 60px; }
    @media only screen and (max-width: 1199px) {
      .achievement-section .achievement-slide .carousel-wrapper .content {
        margin-top: 10px; } }
    @media only screen and (max-width: 991px) {
      .achievement-section .achievement-slide .carousel-wrapper .content {
        margin: 0 0 100px 0; } }
    @media only screen and (max-width: 767px) {
      .achievement-section .achievement-slide .carousel-wrapper .content {
        margin: 30px 0 100px; } }
    .achievement-section .achievement-slide .carousel-wrapper .content h3 {
      font-size: 24px;
      font-weight: 500;
      line-height: 26px;
      color: #222222;
      margin-bottom: 16px; }
      @media only screen and (max-width: 991px) {
        .achievement-section .achievement-slide .carousel-wrapper .content h3 {
          font-size: 22px;
          margin-bottom: 10px; } }
    .achievement-section .achievement-slide .carousel-wrapper .content p {
      font-size: 16px;
      font-weight: 300;
      line-height: 26px;
      color: #8a8a8a; }
      @media only screen and (max-width: 991px) {
        .achievement-section .achievement-slide .carousel-wrapper .content p {
          font-size: 14px;
          line-height: 24px; } }
  .achievement-section .achievement-slide .owl-dots {
    position: absolute;
    bottom: auto;
    top: 60px;
    width: auto;
    left: auto;
    right: 0;
    margin: 0; }
    @media only screen and (max-width: 1199px) {
      .achievement-section .achievement-slide .owl-dots {
        top: 20px; } }
    @media only screen and (max-width: 991px) {
      .achievement-section .achievement-slide .owl-dots {
        top: auto;
        bottom: 0;
        left: 0;
        margin: 0 auto;
        text-align: center; } }
    .achievement-section .achievement-slide .owl-dots .owl-dot {
      width: 75px;
      height: 60px;
      display: block;
      margin: 0 0 10px 0; }
      .achievement-section .achievement-slide .owl-dots .owl-dot:nth-child(1) {
        background: url(../images/achivement/s2.jpg) no-repeat; }
      .achievement-section .achievement-slide .owl-dots .owl-dot:nth-child(2) {
        background: url(../images/achivement/s1.jpg) no-repeat; }
      .achievement-section .achievement-slide .owl-dots .owl-dot:nth-child(3) {
        background: url(../images/achivement/s3.jpg) no-repeat; }
      .achievement-section .achievement-slide .owl-dots .owl-dot:nth-child(4) {
        background: url(../images/achivement/s4.jpg) no-repeat; }
      @media only screen and (max-width: 991px) {
        .achievement-section .achievement-slide .owl-dots .owl-dot {
          display: inline-block; } }

/* =========================================================
        About-Company-Section STYLE 
============================================================ */
.about-Company-Section {
  position: relative;
  background: url(../images/about-company-bg-3.jpg) no-repeat center top;
  background-size: cover;
}

.about-Company-Section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(189, 187, 187, 0.644); /* Couleur de filtre, ajustez l'opacité et la couleur selon vos besoins */
 
  z-index: 1; /* Assure que le filtre est au-dessus de l'image mais en dessous du contenu */
  pointer-events: none; /* Empêche d'interagir avec le filtre */
}

.about-Company-Section > * {
  position: relative;
  z-index: 2; /* Assure que le contenu est au-dessus du filtre */
}

  .about-Company-Section .section-title {
    margin-bottom: 100px; }
    @media only screen and (max-width: 991px) {
      .about-Company-Section .section-title {
        margin-bottom: 50px; } }
    @media only screen and (max-width: 767px) {
      .about-Company-Section .section-title {
        margin-bottom: 30px; } }
    .about-Company-Section .section-title h2 {
      color: #f3b502; }
  .about-Company-Section .content-wrapper h3 {
    font-size: 26px;
    font-weight: 500;
    line-height: 38px;
    color: #0101F8;
    margin-bottom: 30px; }
    @media only screen and (max-width: 991px) {
      .about-Company-Section .content-wrapper h3 {
        margin-bottom: 15px; } }
    @media only screen and (max-width: 767px) {
      .about-Company-Section .content-wrapper h3 {
        font-size: 22px;
        line-height: 30px; } }
    @media only screen and (max-width: 479px) {
      .about-Company-Section .content-wrapper h3 {
        font-size: 20px;
        line-height: 25px; } }
  .about-Company-Section .content-wrapper p {
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    color: #000000;
    margin-bottom: 35px; }
    @media only screen and (max-width: 991px) {
      .about-Company-Section .content-wrapper p {
        margin-bottom: 20px; } }
  @media only screen and (max-width: 479px) {
    .about-Company-Section .content-wrapper .content li {
      margin-bottom: 5px; } }
  .about-Company-Section .content-wrapper .content li img {
    float: left;
    margin-top: 8px; }
    @media only screen and (max-width: 479px) {
      .about-Company-Section .content-wrapper .content li img {
        width: 18px;
        margin-top: 5px; } }
  .about-Company-Section .content-wrapper .content li .single-content {
    font-size: 18px;
    font-weight: 300;
    line-height: 48px;
    color: #000000;
    margin-left: 45px; }
    @media only screen and (max-width: 479px) {
      .about-Company-Section .content-wrapper .content li .single-content {
        font-size: 16px;
        line-height: 30px;
        margin-left: 30px; } }
  .about-Company-Section .faq-content {
    margin-top: 35px; }
    .about-Company-Section .faq-content h3 {
      font-size: 26px;
      font-weight: 500;
      line-height: 30px;
      color: #222222;
      margin-bottom: 40px; }
      @media only screen and (max-width: 991px) {
        .about-Company-Section .faq-content h3 {
          margin-bottom: 25px; } }
      @media only screen and (max-width: 767px) {
        .about-Company-Section .faq-content h3 {
          font-size: 22px;
          line-height: 30px; } }
      @media only screen and (max-width: 479px) {
        .about-Company-Section .faq-content h3 {
          font-size: 20px;
          line-height: 25px; } }
    .about-Company-Section .faq-content .accordion-content .ui-accordion-header {
      position: relative;
      font-size: 18px;
      font-weight: 500;
      line-height: 30px;
      color: #222222;
      background-color: #FFFFFF;
      padding: 13px 33px;
      margin-bottom: 0;
      margin-top: 10px;
      cursor: pointer;
      border-bottom: 2px solid #0101F8; }
      @media only screen and (max-width: 767px) {
        .about-Company-Section .faq-content .accordion-content .ui-accordion-header {
          padding: 8px 20px; } }
      @media only screen and (max-width: 479px) {
        .about-Company-Section .faq-content .accordion-content .ui-accordion-header {
          font-size: 16px;
          line-height: 24px;
          padding: 13px 40px 13px 15px; } }
      .about-Company-Section .faq-content .accordion-content .ui-accordion-header:focus {
        outline: none; }
      .about-Company-Section .faq-content .accordion-content .ui-accordion-header::before {
        content: "\f107";
        font-family: "FontAwesome";
        position: absolute;
        top: 50%;
        right: 20px;
        width: 15px;
        height: 15px;
        line-height: 15px;
        font-size: 20px;
        color: #222222;
        margin-top: -5px; }
        @media only screen and (max-width: 479px) {
          .about-Company-Section .faq-content .accordion-content .ui-accordion-header::before {
            right: 15px; } }
      .about-Company-Section .faq-content .accordion-content .ui-accordion-header.ui-accordion-header-active {
        color: #0101F8; }
        .about-Company-Section .faq-content .accordion-content .ui-accordion-header.ui-accordion-header-active::before {
          content: "\f106";
          color: #0101F8; }
    .about-Company-Section .faq-content .accordion-content .ui-accordion-content {
      padding: 25px 35px 35px;
      background: #FFFFFF; }
      @media only screen and (max-width: 991px) {
        .about-Company-Section .faq-content .accordion-content .ui-accordion-content {
          padding: 25px 35px 50px; } }
      @media only screen and (max-width: 767px) {
        .about-Company-Section .faq-content .accordion-content .ui-accordion-content {
          padding: 25px 20px 50px; } }
      @media only screen and (max-width: 699px) {
        .about-Company-Section .faq-content .accordion-content .ui-accordion-content {
          padding: 25px 20px 30px; } }
      @media only screen and (max-width: 450px) {
        .about-Company-Section .faq-content .accordion-content .ui-accordion-content {
          padding: 25px 20px 50px; } }
      .about-Company-Section .faq-content .accordion-content .ui-accordion-content p {
        font-size: 14px;
        font-weight: 300;
        line-height: 26px;
        color: #828282;
        word-break: break-all;
        margin-bottom: 0; }
  .about-Company-Section .quote-section {
    position: relative; }
    @media only screen and (max-width: 991px) {
      .about-Company-Section .quote-section {
        margin-top: 40px; } }
    .about-Company-Section .quote-section::before {
      content: "";
      position: absolute;
      left: 0;
      top: -50px;
      width: 100%;
      height: 4px;
      background: #000000; }
      @media only screen and (max-width: 991px) {
        .about-Company-Section .quote-section::before {
          display: none; } }
    .about-Company-Section .quote-section h3 {
      font-size: 26px;
      font-weight: 500;
      line-height: 38px;
      color: #222222;
      margin-bottom: 40px; }
      @media only screen and (max-width: 991px) {
        .about-Company-Section .quote-section h3 {
          margin-bottom: 20px; } }
      @media only screen and (max-width: 767px) {
        .about-Company-Section .quote-section h3 {
          font-size: 22px;
          line-height: 30px; } }
      @media only screen and (max-width: 479px) {
        .about-Company-Section .quote-section h3 {
          margin-bottom: 10px; } }
    .about-Company-Section .quote-section .contact-form .form-group {
      position: relative;
      margin-bottom: 25px; }
      @media only screen and (max-width: 479px) {
        .about-Company-Section .quote-section .contact-form .form-group {
          margin-bottom: 10px; } }
      .about-Company-Section .quote-section .contact-form .form-group:last-child {
        margin-bottom: 0; }
      .about-Company-Section .quote-section .contact-form .form-group i {
        position: absolute;
        top: 12px;
        left: 0;
        font-size: 22px;
        color: #000000; }
        @media only screen and (max-width: 479px) {
          .about-Company-Section .quote-section .contact-form .form-group i {
            top: 14px;
            font-size: 18px; } }
      .about-Company-Section .quote-section .contact-form .form-group .form-control {
        font-size: 16px;
        font-weight: 300;
        line-height: 38px;
        color: #000000;
        border: 0;
        border-radius: 0;
        border-bottom: 1px solid #848484;
        background-color: transparent;
        box-shadow: none;
        padding: 22px 35px; }
        @media only screen and (max-width: 479px) {
          .about-Company-Section .quote-section .contact-form .form-group .form-control {
            font-size: 14px;
            padding: 22px; } }
        .about-Company-Section .quote-section .contact-form .form-group .form-control.form-message {
          padding: 5px 35px; }
      .about-Company-Section .quote-section .contact-form .form-group .btn {
        font-size: 18px;
        font-weight: 500;
        line-height: 38px;
        color: #e8f0f3;
        border-radius: 0;
        display: block;
        width: 100%;
        margin-top: 32px; }
        .about-Company-Section .quote-section .contact-form .form-group .btn:before {
          border-radius: 0; }
        @media only screen and (max-width: 479px) {
          .about-Company-Section .quote-section .contact-form .form-group .btn {
            font-size: 16px;
            margin-top: 20px; } }

/* =========================================================
        Right-Choice-Section STYLE 
============================================================ */
@media only screen and (max-width: 767px) {
  .right-choice-section {
    padding-bottom: 30px; } }
.right-choice-section .section-title {
  margin-bottom: 65px; }
  @media only screen and (max-width: 767px) {
    .right-choice-section .section-title {
      margin-bottom: 40px; } }
  @media only screen and (max-width: 479px) {
    .right-choice-section .section-title {
      margin-bottom: 30px; } }
.right-choice-section .section-wrapper {
  margin-bottom: 30px; }
  .right-choice-section .section-wrapper .caption {
    position: relative; }
    .right-choice-section .section-wrapper .caption:hover .hover-view {
      opacity: 1;
      transform: translateY(0); }
    .right-choice-section .section-wrapper .caption:hover .hover .hover-one,
    .right-choice-section .section-wrapper .caption:hover .hover .hover-two,
    .right-choice-section .section-wrapper .caption:hover .hover .hover-three,
    .right-choice-section .section-wrapper .caption:hover .hover .hover-four {
      opacity: 1;
      -webkit-transform: translate(0, 0) scale(1);
      -moz-transform: translate(0, 0) scale(1);
      -ms-transform: translate(0, 0) scale(1);
      -o-transform: translate(0, 0) scale(1);
      transform: translate(0, 0) scale(1); }
    .right-choice-section .section-wrapper .caption img {
      width: 100%; }
    .right-choice-section .section-wrapper .caption .hover-view {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      width: 150px;
      font-size: 16px;
      line-height: 26px;
      color: #FFFFFF;
      border: 2px solid #FFFFFF;
      padding: 8px 0;
      margin: -24px auto 0;
      opacity: 0;
      z-index: 5;
      transform: translateY(80px);
      transition-delay: .1s; }
      @media only screen and (max-width: 991px) {
        .right-choice-section .section-wrapper .caption .hover-view {
          width: 100px;
          font-size: 14px;
          padding: 2px 0;
          margin: -17px auto 0; } }
      .right-choice-section .section-wrapper .caption .hover-view:hover {
        color: #313131; }
    .right-choice-section .section-wrapper .caption .hover .hover-one,
    .right-choice-section .section-wrapper .caption .hover .hover-two,
    .right-choice-section .section-wrapper .caption .hover .hover-three,
    .right-choice-section .section-wrapper .caption .hover .hover-four {
      position: absolute;
      height: 50%;
      width: 50%;
      background: #092a48;
      opacity: 0;
      z-index: 2;
      -webkit-transition: all 0.35s ease;
      -o-transition: all 0.35s ease;
      -moz-transition: all 0.35s ease;
      transition: all 0.35s ease; }
    .right-choice-section .section-wrapper .caption .hover .hover-one {
      bottom: 0;
      left: 0;
      -webkit-transform: translateY(-100%);
      -moz-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
      -o-transform: translateY(-100%);
      transform: translateY(-100%); }
    .right-choice-section .section-wrapper .caption .hover .hover-two {
      top: 0;
      left: 0;
      -webkit-transform: translateX(100%);
      -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
      -o-transform: translateX(100%);
      transform: translateX(100%); }
    .right-choice-section .section-wrapper .caption .hover .hover-three {
      top: 0;
      right: 0;
      -webkit-transform: translateY(100%);
      -moz-transform: translateY(100%);
      -ms-transform: translateY(100%);
      -o-transform: translateY(100%);
      transform: translateY(100%); }
    .right-choice-section .section-wrapper .caption .hover .hover-four {
      bottom: 0;
      right: 0;
      -webkit-transform: translateX(-100%);
      -moz-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
      -o-transform: translateX(-100%);
      transform: translateX(-100%); }
  .right-choice-section .section-wrapper .content {
    box-shadow: 0 0 15px #e2e2e2;
    padding: 15px 30px 12px; }
    @media only screen and (max-width: 991px) {
      .right-choice-section .section-wrapper .content {
        padding: 15px 15px 12px; } }
    .right-choice-section .section-wrapper .content h4 {
      font-size: 24px;
      font-weight: 400;
      line-height: 26px;
      color: #222222;
      margin: 14px 0; }
      @media only screen and (max-width: 1199px) {
        .right-choice-section .section-wrapper .content h4 {
          font-size: 22px; } }
      @media only screen and (max-width: 991px) {
        .right-choice-section .section-wrapper .content h4 {
          font-size: 20px; } }
    .right-choice-section .section-wrapper .content p {
      font-size: 14px;
      line-height: 24px;
      color: #999999; }

/* =========================================================
        Video-Section STYLE 
============================================================ */
.video-section {
  position: relative;
  overflow: hidden;
  padding: 440px 0;
  background: #082a4885; 
}

@media only screen and (max-width: 991px) {
  .video-section {
      padding: 100px 0;
  }
}

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

.video-section video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
}

.video-section .container {
  position: relative;
  z-index: 1;
}

.video-section .video-icon i {
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 30px;
  color: #FFFFFF;
  background: #0101F8;
}

@media only screen and (max-width: 991px) {
  .video-section .video-icon i {
      width: 60px;
      height: 60px;
      line-height: 60px;
      font-size: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .video-section .video-icon i {
      width: 40px;
      height: 40px;
      line-height: 40px;
      font-size: 20px;
  }
}


/* =========================================================
        About-Office-Section STYLE 
============================================================ */
.about-office-section {
  padding-top: 45px; }
  @media only screen and (max-width: 767px) {
    .about-office-section {
      padding-top: 0; } }
  .about-office-section .content {
    margin-top: 45px; }
    @media only screen and (max-width: 767px) {
      .about-office-section .content {
        margin-bottom: 50px; } }
    @media only screen and (max-width: 479px) {
      .about-office-section .content {
        margin-bottom: 30px; } }
    .about-office-section .content h3 {
      font-size: 26px;
      font-weight: 500;
      line-height: 38px;
      color: #f3b502;
      margin-bottom: 22px; }
      @media only screen and (max-width: 767px) {
        .about-office-section .content h3 {
          font-size: 22px;
          line-height: 30px;
          margin-bottom: 15px; } }
      @media only screen and (max-width: 479px) {
        .about-office-section .content h3 {
          font-size: 20px;
          line-height: 25px; } }
    .about-office-section .content p {
      font-size: 16px;
      font-weight: 300;
      line-height: 26px;
      color: #8a8a8a;
      margin-bottom: 25px; }
      @media only screen and (max-width: 767px) {
        .about-office-section .content p {
          font-size: 14px;
          line-height: 24px;
          margin-bottom: 20px; } }
  .about-office-section .caption img {
    max-width: 100%; }

/* =========================================================
        Hiring-Section STYLE 
============================================================ */
.hiring-section .header-content {
  margin: 0 0 52px; }
  @media only screen and (max-width: 991px) {
    .hiring-section .header-content {
      margin: 0 0 30px; } }
  .hiring-section .header-content .hiringForm .form-wrapper {
    position: relative; }
    .hiring-section .header-content .hiringForm .form-wrapper .searchBar {
      width: 100%;
      padding: 0 15px;
      border-radius: 8px;
      border: 1px solid #7f7f7f;
      height: 50px;
      margin-bottom: 20px; }
      .hiring-section .header-content .hiringForm .form-wrapper .searchBar:focus {
        outline: none; }
      @media only screen and (max-width: 767px) {
        .hiring-section .header-content .hiringForm .form-wrapper .searchBar {
          height: 40px;
          margin-bottom: 10px; } }
    .hiring-section .header-content .hiringForm .form-wrapper .subscribeBtn {
      position: absolute;
      top: 0;
      right: 0;
      border-radius: 8px;
      margin: 0;
      height: 50px;
      font-size: 16px;
      font-weight: 500; }
      @media only screen and (max-width: 767px) {
        .hiring-section .header-content .hiringForm .form-wrapper .subscribeBtn {
          height: 40px; } }
      .hiring-section .header-content .hiringForm .form-wrapper .subscribeBtn::before {
        border-radius: 8px; }
.hiring-section .left-content {
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 45px;
  margin-bottom: 40px; }
  @media only screen and (max-width: 767px) {
    .hiring-section .left-content {
      padding-bottom: 30px;
      margin-bottom: 25px; } }
  .hiring-section .left-content:last-child {
    border: 0;
    margin: 0;
    padding: 0; }
  .hiring-section .left-content h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 27px;
    color: #000000;
    margin-bottom: 0; }
    @media only screen and (max-width: 479px) {
      .hiring-section .left-content h4 {
        font-size: 22px;
        line-height: 25px; } }
  .hiring-section .left-content .small {
    font-size: 14px;
    color: #999999; }
  .hiring-section .left-content p {
    color: #606060;
    margin: 16px 0 22px; }
    @media only screen and (max-width: 479px) {
      .hiring-section .left-content p {
        margin: 10px 0 15px; } }
  .hiring-section .left-content .btn {
    font-size: 16px;
    padding: 7px 38px; }
    @media only screen and (max-width: 479px) {
      .hiring-section .left-content .btn {
        font-size: 14px;
        padding: 5px 22px; } }
@media only screen and (max-width: 991px) {
  .hiring-section .right-content {
    margin-top: 50px; } }
.hiring-section .right-content .caption {
  position: relative;
  margin-bottom: 50px; }
  @media only screen and (max-width: 767px) {
    .hiring-section .right-content .caption {
      margin-bottom: 30px; } }
  .hiring-section .right-content .caption img {
    width: 100%;
    border-radius: 5px; }
  .hiring-section .right-content .caption .hover-view {
    position: absolute;
    width: 60px;
    top: 50%;
    left: 0;
    right: 0;
    font-size: 60px;
    margin: -27px auto 0; }
.hiring-section .right-content h4 {
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  color: #000000; }
  @media only screen and (max-width: 767px) {
    .hiring-section .right-content h4 {
      font-size: 25px;
      line-height: 30px;
      margin-bottom: 10px; } }
  @media only screen and (max-width: 479px) {
    .hiring-section .right-content h4 {
      font-size: 22px;
      line-height: 25px; } }
.hiring-section .right-content p {
  font-size: 18px;
  color: #606060;
  line-height: 30px;
  margin-bottom: 30px; }
  @media only screen and (max-width: 767px) {
    .hiring-section .right-content p {
      font-size: 16px;
      line-height: 27px; } }
  .hiring-section .right-content p a {
    font-weight: 600; }
.hiring-section .right-content .contact-form .form-group:last-child {
  margin-bottom: 0; }
.hiring-section .right-content .contact-form .form-group .form-control {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #7f7f7f;
  height: 50px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #666666; }
  .hiring-section .right-content .contact-form .form-group .form-control:focus {
    outline: none; }
  @media only screen and (max-width: 767px) {
    .hiring-section .right-content .contact-form .form-group .form-control {
      height: 40px;
      margin-bottom: 10px;
      padding: 7px 15px; } }
  @media only screen and (max-width: 479px) {
    .hiring-section .right-content .contact-form .form-group .form-control {
      font-size: 13px; } }
.hiring-section .right-content .contact-form .form-group .btn {
  width: 100%;
  border-radius: 8px;
  margin-top: 10px; }
  .hiring-section .right-content .contact-form .form-group .btn::before {
    border-radius: 5px; }
  @media only screen and (max-width: 767px) {
    .hiring-section .right-content .contact-form .form-group .btn {
      padding: 6px 16px;
      background: none;
      -webkit-text-fill-color: #313131; } }

/* =========================================================
        Blog-Section STYLE 
============================================================ */
.blog-section .first-row {
  margin-bottom: 30px; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .blog-section .first-row {
      margin-bottom: 25px; } }
  @media only screen and (max-width: 991px) {
    .blog-section .first-row {
      margin-bottom: 0; } }
.blog-section .blog-wrapper.last-wrapper {
  margin-bottom: 0; }
@media only screen and (max-width: 767px) {
  .blog-section .blog-wrapper {
    margin-bottom: 50px; } }
@media only screen and (max-width: 479px) {
  .blog-section .blog-wrapper {
    margin-bottom: 30px; } }
.blog-section .blog-wrapper img {
  width: 100%; }
.blog-section .blog-wrapper .caption {
  position: relative; }
  .blog-section .blog-wrapper .caption:hover .video-icon::before {
    opacity: 0;
    visibility: hidden; }
  .blog-section .blog-wrapper .caption .video-icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    text-align: center; }
    .blog-section .blog-wrapper .caption .video-icon::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      background-color: rgba(0, 0, 0, 0.57);
      -webkit-transition: 0.5s;
      -khtml-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
    .blog-section .blog-wrapper .caption .video-icon .icon {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      margin: -17px auto 0; }
    .blog-section .blog-wrapper .caption .video-icon i {
      position: relative;
      font-size: 36px;
      color: #FFFFFF; }
      @media only screen and (max-width: 479px) {
        .blog-section .blog-wrapper .caption .video-icon i {
          font-size: 25px; } }
.blog-section .blog-wrapper h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 25px;
  color: #000000;
  margin: 15px 0 8px; }
  @media (min-width: 768px) and (max-width: 991px) {
    .blog-section .blog-wrapper h3 {
      font-size: 20px;
      line-height: 25px; } }
  @media only screen and (max-width: 479px) {
    .blog-section .blog-wrapper h3 {
      font-size: 18px;
      line-height: 20px; } }
.blog-section .blog-wrapper p {
  line-height: 27px;
  color: #6d747d;
  margin-bottom: 19px; }
  @media (min-width: 768px) and (max-width: 991px) {
    .blog-section .blog-wrapper p {
      font-size: 15px;
      line-height: 25px; } }
  @media only screen and (max-width: 479px) {
    .blog-section .blog-wrapper p {
      font-size: 15px;
      line-height: 25px; } }
.blog-section .blog-wrapper .link {
  font-size: 18px;
  font-weight: 500;
  color: #313131;
  padding: 0; }
  .blog-section .blog-wrapper .link:hover {
    color: #0101F8; }
  @media only screen and (max-width: 1200px) {
    .blog-section .blog-wrapper .link {
      font-size: 18px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .blog-section .blog-wrapper .link {
      font-size: 15px; } }
  @media only screen and (max-width: 479px) {
    .blog-section .blog-wrapper .link {
      font-size: 16px; } }
.blog-section .blog-wrapper .author img {
  width: auto;
  margin-right: 5px; }
  @media (min-width: 768px) and (max-width: 991px) {
    .blog-section .blog-wrapper .author img {
      margin-right: 0;
      width: 20px; } }
.blog-section .blog-wrapper .author .title {
  font-weight: 600;
  color: #8b98a4; }
  @media (min-width: 768px) and (max-width: 991px) {
    .blog-section .blog-wrapper .author .title {
      font-size: 13px; } }
.blog-section .blog-wrapper .share {
  background: #0101F8;
  width: 100%;
  padding: 11px 20px;
  margin-top: 20px; }
  @media (min-width: 768px) and (max-width: 991px) {
    .blog-section .blog-wrapper .share {
      margin-top: 15px; } }
  @media only screen and (max-width: 479px) {
    .blog-section .blog-wrapper .share {
      margin-top: 10px; } }
  .blog-section .blog-wrapper .share li {
    display: inline-block;
    color: #FFFFFF;
    margin-right: 15px; }
    .blog-section .blog-wrapper .share li:last-child {
      margin-right: 0; }
    .blog-section .blog-wrapper .share li a {
      color: #FFFFFF; }
      .blog-section .blog-wrapper .share li a:hover {
        color: #313131; }
.blog-section .link {
  margin-top: 50px;
  padding: 11px 50px; }
  @media only screen and (max-width: 767px) {
    .blog-section .link {
      margin-top: 40px;
      padding: 7px 30px; } }
  @media only screen and (max-width: 479px) {
    .blog-section .link {
      margin-top: 30px;
      padding: 5px 25px; } }

/* =========================================================
       Single-News-Section  STYLE 
============================================================ */
.single-news-section .news-left-bar {
  margin-right: 25px; }
  @media only screen and (max-width: 991px) {
    .single-news-section .news-left-bar {
      margin-right: 0;
      margin-bottom: 100px; } }
  @media only screen and (max-width: 767px) {
    .single-news-section .news-left-bar {
      margin-bottom: 50px; } }
  .single-news-section .news-left-bar .news-wrapper {
    background-color: #FFFFFF;
    margin-bottom: 50px; }
    @media only screen and (max-width: 991px) {
      .single-news-section .news-left-bar .news-wrapper {
        margin-bottom: 30px; } }
    @media only screen and (max-width: 767px) {
      .single-news-section .news-left-bar .news-wrapper {
        margin-bottom: 10px; } }
    .single-news-section .news-left-bar .news-wrapper img {
      width: 100%; }
    .single-news-section .news-left-bar .news-wrapper .wrapper-content {
      padding: 32px 32px 26px; }
      @media only screen and (max-width: 767px) {
        .single-news-section .news-left-bar .news-wrapper .wrapper-content {
          padding: 32px 0 26px; } }
      @media only screen and (max-width: 479px) {
        .single-news-section .news-left-bar .news-wrapper .wrapper-content {
          padding: 25px 0; } }
      .single-news-section .news-left-bar .news-wrapper .wrapper-content .title {
        font-size: 14px;
        font-weight: 700;
        color: #FFFFFF;
        background-color: #0101F8;
        padding: 4px 8px; }
        @media only screen and (max-width: 767px) {
          .single-news-section .news-left-bar .news-wrapper .wrapper-content .title {
            font-size: 12px; } }
      .single-news-section .news-left-bar .news-wrapper .wrapper-content h3 {
        font-size: 26px;
        font-weight: 700;
        line-height: 30px;
        color: #111111;
        margin: 10px 0 7px; }
        @media only screen and (max-width: 767px) {
          .single-news-section .news-left-bar .news-wrapper .wrapper-content h3 {
            font-size: 20px;
            line-height: 25px; } }
      .single-news-section .news-left-bar .news-wrapper .wrapper-content .post {
        font-size: 14px;
        line-height: 27px;
        text-transform: uppercase;
        color: #999999; }
      .single-news-section .news-left-bar .news-wrapper .wrapper-content p {
        font-size: 16px;
        line-height: 24px;
        color: #666666;
        padding-top: 10px; }
        @media only screen and (max-width: 479px) {
          .single-news-section .news-left-bar .news-wrapper .wrapper-content p {
            font-size: 14px; } }
      .single-news-section .news-left-bar .news-wrapper .wrapper-content .link {
        font-size: 16px; }
        .single-news-section .news-left-bar .news-wrapper .wrapper-content .link a {
          color: #666666; }
          .single-news-section .news-left-bar .news-wrapper .wrapper-content .link a:hover {
            color: #0101F8; }
          .single-news-section .news-left-bar .news-wrapper .wrapper-content .link a i {
            margin-left: 5px;
            vertical-align: middle; }
  @media only screen and (max-width: 767px) {
    .single-news-section .news-left-bar .pagination {
      margin: 0; } }
@media (max-width: 991px) {
  .single-news-section .news-right-bar {
    margin: 0 !important; } }
.single-news-section .news-right-bar .widget-search .form-control {
  color: #999999;
  height: 40px;
  border: 1px solid #c8c8c8;
  background: transparent; }
.single-news-section .news-right-bar .widget-category,
.single-news-section .news-right-bar .widget-archive {
  margin: 50px 0; }
  @media only screen and (max-width: 767px) {
    .single-news-section .news-right-bar .widget-category,
    .single-news-section .news-right-bar .widget-archive {
      margin: 30px 0; } }
  .single-news-section .news-right-bar .widget-category h4,
  .single-news-section .news-right-bar .widget-archive h4 {
    font-size: 24px;
    font-weight: 600;
    color: #000000; }
    @media only screen and (max-width: 767px) {
      .single-news-section .news-right-bar .widget-category h4,
      .single-news-section .news-right-bar .widget-archive h4 {
        font-size: 20px;
        margin-bottom: 10px; } }
    @media only screen and (max-width: 479px) {
      .single-news-section .news-right-bar .widget-category h4,
      .single-news-section .news-right-bar .widget-archive h4 {
        margin: 0 0 10px; } }
  .single-news-section .news-right-bar .widget-category ul li,
  .single-news-section .news-right-bar .widget-archive ul li {
    font-size: 16px;
    font-weight: 700;
    line-height: 40px;
    border-bottom: 1px solid rgba(199, 197, 197, 0.38);
    padding: 5px 0; }
    @media only screen and (max-width: 479px) {
      .single-news-section .news-right-bar .widget-category ul li,
      .single-news-section .news-right-bar .widget-archive ul li {
        font-size: 14px;
        line-height: 30px; } }
    .single-news-section .news-right-bar .widget-category ul li:last-child,
    .single-news-section .news-right-bar .widget-archive ul li:last-child {
      border-bottom: none; }
    .single-news-section .news-right-bar .widget-category ul li a,
    .single-news-section .news-right-bar .widget-archive ul li a {
      color: #31363b; }
      .single-news-section .news-right-bar .widget-category ul li a:hover,
      .single-news-section .news-right-bar .widget-archive ul li a:hover {
        color: #0101F8; }
.single-news-section .news-right-bar .widget-post {
  margin-bottom: 75px; }
  @media only screen and (max-width: 991px) {
    .single-news-section .news-right-bar .widget-post {
      margin-bottom: 80px; } }
  @media only screen and (max-width: 767px) {
    .single-news-section .news-right-bar .widget-post {
      margin-bottom: 55px; } }
  .single-news-section .news-right-bar .widget-post h4 {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 35px; }
    @media only screen and (max-width: 767px) {
      .single-news-section .news-right-bar .widget-post h4 {
        font-size: 20px;
        margin-bottom: 20px; } }
  .single-news-section .news-right-bar .widget-post ul li {
    margin-bottom: 25px; }
    @media only screen and (max-width: 991px) {
      .single-news-section .news-right-bar .widget-post ul li {
        margin-bottom: 50px; } }
    .single-news-section .news-right-bar .widget-post ul li .thumb {
      margin-right: 20px; }
      .single-news-section .news-right-bar .widget-post ul li .thumb img {
        width: 70px;
        height: 100px; }
    .single-news-section .news-right-bar .widget-post ul li .post-desk {
      padding: 8px 0; }
      .single-news-section .news-right-bar .widget-post ul li .post-desk h5 {
        font-family: "Poppins", sans-serif;
        font-size: 16px;
        font-weight: 500;
        line-height: 20px;
        margin: 0; }
        .single-news-section .news-right-bar .widget-post ul li .post-desk h5 a {
          color: #000000; }
          .single-news-section .news-right-bar .widget-post ul li .post-desk h5 a:hover {
            color: #0101F8; }
      .single-news-section .news-right-bar .widget-post ul li .post-desk .date {
        font-size: 12px;
        font-weight: 700;
        color: #999999; }
.single-news-section .news-right-bar .widget-tag h4 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 35px; }
  @media only screen and (max-width: 767px) {
    .single-news-section .news-right-bar .widget-tag h4 {
      font-size: 20px;
      margin-bottom: 20px; } }
.single-news-section .news-right-bar .widget-tag ul li {
  font-family: "Poppins", sans-serif;
  display: inline-block;
  font-weight: 700;
  line-height: 26px;
  margin-right: 7px; }
  .single-news-section .news-right-bar .widget-tag ul li a {
    color: #555555; }
    .single-news-section .news-right-bar .widget-tag ul li a:hover {
      color: #0101F8; }
.single-news-section .news-right-bar .widget-tag ul li:nth-child(1) a,
.single-news-section .news-right-bar .widget-tag ul li:nth-child(3) a,
.single-news-section .news-right-bar .widget-tag ul li:nth-child(5) a,
.single-news-section .news-right-bar .widget-tag ul li:nth-child(7) a,
.single-news-section .news-right-bar .widget-tag ul li:nth-child(8) a,
.single-news-section .news-right-bar .widget-tag ul li:nth-child(9) a,
.single-news-section .news-right-bar .widget-tag ul li:nth-child(11) a {
  font-size: 14px;
  color: #555555; }
  .single-news-section .news-right-bar .widget-tag ul li:nth-child(1) a:hover,
  .single-news-section .news-right-bar .widget-tag ul li:nth-child(3) a:hover,
  .single-news-section .news-right-bar .widget-tag ul li:nth-child(5) a:hover,
  .single-news-section .news-right-bar .widget-tag ul li:nth-child(7) a:hover,
  .single-news-section .news-right-bar .widget-tag ul li:nth-child(8) a:hover,
  .single-news-section .news-right-bar .widget-tag ul li:nth-child(9) a:hover,
  .single-news-section .news-right-bar .widget-tag ul li:nth-child(11) a:hover {
    color: #0101F8; }
.single-news-section .news-right-bar .widget-tag ul li:nth-child(2) a {
  color: #212121;
  font-size: 24px; }
  .single-news-section .news-right-bar .widget-tag ul li:nth-child(2) a:hover {
    color: #0101F8; }
.single-news-section .news-right-bar .widget-tag ul li:nth-child(4) a {
  color: #888888;
  font-size: 20px; }
  .single-news-section .news-right-bar .widget-tag ul li:nth-child(4) a:hover {
    color: #0101F8; }
.single-news-section .news-right-bar .widget-tag ul li:nth-child(6) a,
.single-news-section .news-right-bar .widget-tag ul li:nth-child(13) a {
  color: #555555;
  font-size: 18px; }
  .single-news-section .news-right-bar .widget-tag ul li:nth-child(6) a:hover,
  .single-news-section .news-right-bar .widget-tag ul li:nth-child(13) a:hover {
    color: #0101F8; }
.single-news-section .news-right-bar .widget-tag ul li:nth-child(10) a {
  color: #888888;
  font-size: 22px; }
  .single-news-section .news-right-bar .widget-tag ul li:nth-child(10) a:hover {
    color: #0101F8; }
.single-news-section .news-right-bar .widget-tag ul li:nth-child(12) a {
  color: #212121;
  font-size: 24px; }
  .single-news-section .news-right-bar .widget-tag ul li:nth-child(12) a:hover {
    color: #0101F8; }
.single-news-section .news-right-bar .widget-photo-gram {
  margin-top: 75px; }
  @media only screen and (max-width: 767px) {
    .single-news-section .news-right-bar .widget-photo-gram {
      margin-top: 50px; } }
  @media only screen and (max-width: 479px) {
    .single-news-section .news-right-bar .widget-photo-gram {
      margin-top: 30px; } }
  .single-news-section .news-right-bar .widget-photo-gram h4 {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 35px; }
    @media only screen and (max-width: 767px) {
      .single-news-section .news-right-bar .widget-photo-gram h4 {
        font-size: 20px;
        margin-bottom: 20px; } }
  .single-news-section .news-right-bar .widget-photo-gram .instagram {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    overflow: hidden;
    margin: 0 auto; }
    .single-news-section .news-right-bar .widget-photo-gram .instagram .image {
      background-image: 100%;
      background-position: center center;
      width: 73px;
      height: 73px;
      margin: 2px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      -webkit-transition: 1s;
      -khtml-transition: 1s;
      -moz-transition: 1s;
      -ms-transition: 1s;
      -o-transition: 1s;
      transition: 1s; }
      .single-news-section .news-right-bar .widget-photo-gram .instagram .image:hover {
        background-image: 110%; }
      .single-news-section .news-right-bar .widget-photo-gram .instagram .image .caption {
        display: none; }
@media only screen and (max-width: 991px) {
  .single-news-section .single-news {
    margin-bottom: 100px; } }
@media only screen and (max-width: 767px) {
  .single-news-section .single-news {
    margin-bottom: 0; } }
.single-news-section .single-news .news-wrapper img {
  width: 100%; }
.single-news-section .single-news .news-wrapper .wrapper-content {
  padding: 32px 0 50px; }
  @media only screen and (max-width: 991px) {
    .single-news-section .single-news .news-wrapper .wrapper-content {
      padding: 32px 0 20px; } }
  @media only screen and (max-width: 479px) {
    .single-news-section .single-news .news-wrapper .wrapper-content {
      padding: 32px 0 10px; } }
  .single-news-section .single-news .news-wrapper .wrapper-content .title {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    background-color: #0101F8;
    padding: 4px 8px; }
  .single-news-section .single-news .news-wrapper .wrapper-content h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 35px;
    color: #111111;
    margin: 10px 0 7px; }
    @media only screen and (max-width: 767px) {
      .single-news-section .single-news .news-wrapper .wrapper-content h3 {
        font-size: 25px;
        line-height: 30px; } }
    @media only screen and (max-width: 479px) {
      .single-news-section .single-news .news-wrapper .wrapper-content h3 {
        font-size: 20px;
        line-height: 25px; } }
  .single-news-section .single-news .news-wrapper .wrapper-content .post {
    font-size: 14px;
    line-height: 27px;
    text-transform: uppercase;
    color: #999999; }
  .single-news-section .single-news .news-wrapper .wrapper-content p {
    font-size: 16px;
    line-height: 28px;
    color: #666666;
    padding-top: 10px; }
  .single-news-section .single-news .news-wrapper .wrapper-content img {
    margin-top: 10px; }
  .single-news-section .single-news .news-wrapper .wrapper-content h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    color: #212121;
    margin: 30px 0 0; }
  .single-news-section .single-news .news-wrapper .wrapper-content .link {
    font-size: 16px; }
    .single-news-section .single-news .news-wrapper .wrapper-content .link a {
      color: #666666; }
      .single-news-section .single-news .news-wrapper .wrapper-content .link a:hover {
        color: #0101F8; }
      .single-news-section .single-news .news-wrapper .wrapper-content .link a i {
        margin-left: 5px;
        vertical-align: middle; }
.single-news-section .single-news .widget {
  margin: 25px 32px 17px 40px; }
  @media only screen and (max-width: 479px) {
    .single-news-section .single-news .widget {
      margin: 25px 32px 17px 0; } }
  .single-news-section .single-news .widget .widget-tag {
    display: inline-block; }
    .single-news-section .single-news .widget .widget-tag h5 {
      font-family: "Poppins", sans-serif;
      font-size: 14.5px;
      font-weight: 600;
      text-transform: capitalize;
      line-height: 25px;
      letter-spacing: 1px;
      color: #000000;
      display: inline-block;
      margin-right: 32px;
      vertical-align: top; }
    .single-news-section .single-news .widget .widget-tag ul {
      display: inline-block; }
      .single-news-section .single-news .widget .widget-tag ul li {
        font-family: "Poppins", sans-serif;
        padding: 0;
        margin-right: 6px;
        margin-bottom: 13px; }
        @media (max-width: 767px) {
          .single-news-section .single-news .widget .widget-tag ul li {
            margin-bottom: 10px; } }
        .single-news-section .single-news .widget .widget-tag ul li:last-child {
          margin-right: 0; }
        .single-news-section .single-news .widget .widget-tag ul li a {
          font-size: 14px;
          line-height: 20px;
          color: #666666;
          background: #FFFFFF;
          padding: 6px 15px; }
          .single-news-section .single-news .widget .widget-tag ul li a:hover {
            color: #FFFFFF;
            background: #0101F8; }
  @media (max-width: 1199px) {
    .single-news-section .single-news .widget .widget-social {
      float: none !important; } }
  @media (max-width: 767px) {
    .single-news-section .single-news .widget .widget-social ul {
      margin: 0; } }
  .single-news-section .single-news .widget .widget-social ul li {
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin-right: 6px; }
    @media (max-width: 767px) {
      .single-news-section .single-news .widget .widget-social ul li {
        margin-bottom: 15px; } }
    .single-news-section .single-news .widget .widget-social ul li:last-child {
      margin-right: 0; }
    .single-news-section .single-news .widget .widget-social ul li a {
      font-size: 16.5px;
      font-weight: 500;
      color: #FFFFFF;
      padding: 8px 20px; }
      .single-news-section .single-news .widget .widget-social ul li a:hover {
        color: #0101F8; }
      .single-news-section .single-news .widget .widget-social ul li a i {
        font-size: 14px;
        padding-right: 5px; }
      @media (max-width: 767px) {
        .single-news-section .single-news .widget .widget-social ul li a {
          font-size: 12px; } }
.single-news-section .single-news .section-bottom {
  background-color: #f6f6f6; }
  @media (max-width: 767px) {
    .single-news-section .single-news .section-bottom .comments-wrapper {
      margin-left: 0 !important;
      margin-right: 0 !important; } }
  .single-news-section .single-news .section-bottom .comments-wrapper h3 {
    font-size: 21px;
    font-weight: 700;
    line-height: 28px;
    color: #000000;
    text-align: center;
    padding-top: 50px;
    margin-bottom: 65px; }
    @media only screen and (max-width: 767px) {
      .single-news-section .single-news .section-bottom .comments-wrapper h3 {
        padding-top: 20px;
        margin-bottom: 30px; } }
    @media only screen and (max-width: 479px) {
      .single-news-section .single-news .section-bottom .comments-wrapper h3 {
        margin-bottom: 40px; } }
  .single-news-section .single-news .section-bottom .comments-wrapper .comment-respond .first-comment {
    margin: 0 40px 0 45px; }
    @media only screen and (max-width: 479px) {
      .single-news-section .single-news .section-bottom .comments-wrapper .comment-respond .first-comment {
        margin: 0 15px; }
        .single-news-section .single-news .section-bottom .comments-wrapper .comment-respond .first-comment .pull-left {
          float: none !important; } }
  .single-news-section .single-news .section-bottom .comments-wrapper .comment-respond .sub-comment {
    background: #e9e8e8;
    padding: 30px;
    margin: 25px 0 80px 102px; }
    @media (max-width: 767px) {
      .single-news-section .single-news .section-bottom .comments-wrapper .comment-respond .sub-comment {
        margin-left: 0;
        margin-bottom: 40px; } }
    @media only screen and (max-width: 479px) {
      .single-news-section .single-news .section-bottom .comments-wrapper .comment-respond .sub-comment {
        padding: 30px 15px; }
        .single-news-section .single-news .section-bottom .comments-wrapper .comment-respond .sub-comment .pull-left {
          float: none !important; } }
  .single-news-section .single-news .section-bottom .comments-wrapper .comment-respond .comment-avater {
    width: 43px;
    height: 43px;
    margin-right: 2px; }
  @media (max-width: 767px) {
    .single-news-section .single-news .section-bottom .comments-wrapper .comment-respond .media-body {
      display: block;
      padding-top: 15px;
      width: auto; } }
  .single-news-section .single-news .section-bottom .comments-wrapper .comment-respond .media-body h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: 15px;
    display: inline-block;
    vertical-align: top;
    margin: 0 15px 0 0; }
    .single-news-section .single-news .section-bottom .comments-wrapper .comment-respond .media-body h5 a {
      color: #000000; }
  .single-news-section .single-news .section-bottom .comments-wrapper .comment-respond .media-body .time {
    font-size: 14px;
    line-height: 10px;
    color: #a9a9a9;
    letter-spacing: -1px;
    vertical-align: text-top; }
  .single-news-section .single-news .section-bottom .comments-wrapper .comment-respond .media-body p {
    font-size: 14.5px;
    line-height: 23.5px;
    color: #666666;
    margin-bottom: 11px;
    margin-top: -3px; }
  .single-news-section .single-news .section-bottom .comments-wrapper .comment-respond .media-body .comment-replay {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px; }
  .single-news-section .single-news .section-bottom .reserve-blog-form {
    padding: 10px 0 5px; }
    .single-news-section .single-news .section-bottom .reserve-blog-form h3 {
      font-size: 21.5px;
      font-weight: 500;
      line-height: 28px;
      color: #000000;
      text-align: center;
      margin-bottom: 40px; }
    .single-news-section .single-news .section-bottom .reserve-blog-form .blog-contact-form {
      padding: 0 25px; }
      @media only screen and (max-width: 479px) {
        .single-news-section .single-news .section-bottom .reserve-blog-form .blog-contact-form {
          padding: 0; } }
      .single-news-section .single-news .section-bottom .reserve-blog-form .blog-contact-form .form-horizontal .form-group {
        margin: 0 0 50px; }
        @media only screen and (max-width: 479px) {
          .single-news-section .single-news .section-bottom .reserve-blog-form .blog-contact-form .form-horizontal .form-group {
            margin: 0 0 30px; } }
        .single-news-section .single-news .section-bottom .reserve-blog-form .blog-contact-form .form-horizontal .form-group .form-control {
          font-size: 15px;
          color: #a7a7a7;
          border: 0;
          border-bottom: 1px solid #dbdbdb;
          border-radius: 0;
          box-shadow: none;
          background-color: transparent; }
    .single-news-section .single-news .section-bottom .reserve-blog-form .subscribeBtn {
      margin-top: 30px;
      padding: 10px 55px; }
      @media only screen and (max-width: 767px) {
        .single-news-section .single-news .section-bottom .reserve-blog-form .subscribeBtn {
          padding: 8px 50px;
          margin-top: 0;
          font-size: 18px; } }
      @media only screen and (max-width: 767px) {
        .single-news-section .single-news .section-bottom .reserve-blog-form .subscribeBtn {
          padding: 5px 40px;
          font-size: 16px; } }

/* =========================================================
        Footer STYLE 
============================================================ */
.footer-section {
  position: relative;
  background: #061d31; }
  .footer-section .footer-container {
    padding: 5px 0px; }
    @media only screen and (max-width: 991px) {
      .footer-section .footer-container {
        padding: 80px 0 70px; } }
    @media only screen and (max-width: 767px) {
      .footer-section .footer-container {
        padding: 60px 0; } }
    @media only screen and (max-width: 767px) {
      .footer-section .footer-container .footer-wrapper {
        padding-bottom: 40px; } }
    .footer-section .footer-container .footer-wrapper .last-wrapper {
      margin-bottom: 0; }
    .footer-section .footer-container .footer-wrapper img {
      max-width: 100%; }
    .footer-section .footer-container .footer-wrapper .location {
      margin-top: 45px; }
      @media only screen and (max-width: 767px) {
        .footer-section .footer-container .footer-wrapper .location {
          margin-top: 30px; } }
      .footer-section .footer-container .footer-wrapper .location li {
        margin-bottom: 25px; }
        @media only screen and (max-width: 767px) {
          .footer-section .footer-container .footer-wrapper .location li {
            margin-bottom: 15px; } }
        .footer-section .footer-container .footer-wrapper .location li:last-child {
          margin-bottom: 0; }
        .footer-section .footer-container .footer-wrapper .location li i {
          font-size: 24px;
          color: #0101F8;
          vertical-align: top; }
          @media only screen and (max-width: 991px) {
            .footer-section .footer-container .footer-wrapper .location li i {
              font-size: 25px; } }
        .footer-section .footer-container .footer-wrapper .location li .content {
          font-size: 15px;
          line-height: 25px;
          color: #aaa;
          display: inline-block;
          margin-left: 15px; }
          @media only screen and (max-width: 991px) {
            .footer-section .footer-container .footer-wrapper .location li .content {
              font-size: 16px;
              line-height: 27px;
              margin-left: 10px; } }
    .footer-section .footer-container .footer-wrapper h3 {
      font-size: 24px;
      font-weight: 700;
      line-height: 30px;
      color: #FFFFFF;
      text-transform: uppercase; }
    .footer-section .footer-container .footer-wrapper p {
      font-size: 14px;
      line-height: 24px;
      font-weight: 300;
      color: #aaa;
      margin-bottom: 0; }
    .footer-section .footer-container .footer-wrapper .social-icon {
      margin-top: 40px; }
      @media only screen and (max-width: 991px) {
        .footer-section .footer-container .footer-wrapper .social-icon {
          margin-top: 25px; } }
      .footer-section .footer-container .footer-wrapper .social-icon li {
        display: inline-block;
        font-size: 20px;
        margin-right: 20px; }
        @media only screen and (max-width: 991px) {
          .footer-section .footer-container .footer-wrapper .social-icon li {
            margin-right: 18px; } }
        .footer-section .footer-container .footer-wrapper .social-icon li:last-child {
          margin-right: 0; }
        .footer-section .footer-container .footer-wrapper .social-icon li a {
          color: #FFFFFF; }
          .footer-section .footer-container .footer-wrapper .social-icon li a:hover {
            color: #0101F8; }
    .footer-section .footer-container .footer-wrapper .wrapper-option {
      float: left;
      margin-top: -5px; }
      .footer-section .footer-container .footer-wrapper .wrapper-option li {
        font-size: 16px;
        line-height: 36px; }
        .footer-section .footer-container .footer-wrapper .wrapper-option li a {
          color: #aaa; }
          .footer-section .footer-container .footer-wrapper .wrapper-option li a:hover {
            color: #0101F8; }
  .footer-section .copy-right {
    background-color: #061d31;
    padding: 16px 0;
    border-top: 1px solid #203548; }
    .footer-section .copy-right p {
      font-size: 16px;
      margin-bottom: 0; }
      @media only screen and (max-width: 767px) {
        .footer-section .copy-right p {
          font-size: 14px; } }
      @media only screen and (max-width: 479px) {
        .footer-section .copy-right p {
          font-size: 12px; } }

/* =========================================================
        HomePageOne-STYLE 
============================================================ */
.homePageOne .header-section .top-bar {
  min-height: 65px;
  line-height: 65px; }
  @media only screen and (max-width: 991px) {
    .homePageOne .header-section .top-bar {
      line-height: 35px;
      padding: 10px 0 20px; } }
  @media only screen and (max-width: 767px) {
    .homePageOne .header-section .top-bar {
      line-height: 35px;
      padding: 10px 0; } }
  @media only screen and (max-width: 991px) {
    .homePageOne .header-section .top-bar .header-left-bar {
      text-align: center; } }
  .homePageOne .header-section .top-bar .header-left-bar .contact-wrapper li {
    font-size: 16px;
    color: #FFFFFF; }
    @media only screen and (max-width: 767px) {
      .homePageOne .header-section .top-bar .header-left-bar .contact-wrapper li {
        font-size: 14px; } }
  .homePageOne .header-section .top-bar .header-right-bar {
    margin-bottom: -20px; }
    @media only screen and (max-width: 991px) {
      .homePageOne .header-section .top-bar .header-right-bar {
        text-align: center; } }
    @media only screen and (max-width: 767px) {
      .homePageOne .header-section .top-bar .header-right-bar {
        margin-bottom: -10px; } }
    .homePageOne .header-section .top-bar .header-right-bar .social-icon {
      display: inline-block;
      vertical-align: top; }
      @media only screen and (max-width: 991px) {
        .homePageOne .header-section .top-bar .header-right-bar .social-icon {
          float: none !important; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .homePageOne .header-section .top-bar .header-right-bar .social-icon li {
          margin-right: 10px; } }
      .homePageOne .header-section .top-bar .header-right-bar .social-icon li:last-child {
        margin-right: 0; }
      .homePageOne .header-section .top-bar .header-right-bar .social-icon li i {
        color: #FFFFFF; }
        .homePageOne .header-section .top-bar .header-right-bar .social-icon li i:hover {
          color: #0101F8; }
.homePageOne .header-section .navbar {
  height: 150px;
  background-color: #FFFFFF; }
  .homePageOne .header-section .navbar.sticky .navbar-inner {
    width: auto; }
    .homePageOne .header-section .navbar.sticky .navbar-inner .navbar-collapse {
      width: auto; }
  .homePageOne .header-section .navbar .navbar-inner {
    padding: 0 30px;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .homePageOne .header-section .navbar .navbar-inner .navbar-header .navbar-brand img {
      padding: 22px 0; }
    .homePageOne .header-section .navbar .navbar-inner .navbar-collapse {
      margin: 0; }
      .homePageOne .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav {
        margin: 0; }
        .homePageOne .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li a, .homePageOne .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li .search-view, .homePageOne .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li .cart-icon {
          color: #222222;
          line-height: 95px; }
        .homePageOne .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li.active a, .homePageOne .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li:hover a {
          color: #0101F8; }
        .homePageOne .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li .dropdown-menu, .homePageOne .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu,
        .homePageOne .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li .cart-item {
          top: 95px; }
        .homePageOne .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li .dropdown-menu li a {
          line-height: 45px; }
.homePageOne .slider-section .tp-banner-container .tp-banner .slide-content-box h1 {
  font-size: 55px;
  font-weight: 600;
  line-height: 62px;
  color: #FFFFFF;
  margin: 14px 0 27px; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .homePageOne .slider-section .tp-banner-container .tp-banner .slide-content-box h1 {
      font-size: 40px;
      line-height: 60px; } }
  @media only screen and (max-width: 991px) {
    .homePageOne .slider-section .tp-banner-container .tp-banner .slide-content-box h1 {
      font-size: 30px;
      line-height: 50px; } }
  @media only screen and (max-width: 767px) {
    .homePageOne .slider-section .tp-banner-container .tp-banner .slide-content-box h1 {
      font-size: 25px;
      line-height: 40px;
      margin: 0 0 9px; } }
.homePageOne .slider-section .tp-banner-container .tp-banner .slide-content-box p {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: #FFFFFF; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .homePageOne .slider-section .tp-banner-container .tp-banner .slide-content-box p {
      font-size: 18px;
      line-height: 30px; } }
  @media only screen and (max-width: 991px) {
    .homePageOne .slider-section .tp-banner-container .tp-banner .slide-content-box p {
      font-size: 16px;
      line-height: 27px; } }
  @media only screen and (max-width: 767px) {
    .homePageOne .slider-section .tp-banner-container .tp-banner .slide-content-box p {
      font-size: 14px;
      line-height: 24px;
      word-break: break-all;
      margin: 0 0 10px; } }
.homePageOne .slider-section .tp-banner-container .tp-banner .button {
  margin-top: 53px; }
  @media only screen and (max-width: 767px) {
    .homePageOne .slider-section .tp-banner-container .tp-banner .button {
      margin-top: 40px; } }
  .homePageOne .slider-section .tp-banner-container .tp-banner .button .btn {
    border-radius: 0; }
    .homePageOne .slider-section .tp-banner-container .tp-banner .button .btn::before {
      border-radius: 0; }
.homePageOne .right-choice-section .section-wrapper {
  margin-bottom: 0; }
  @media only screen and (max-width: 767px) {
    .homePageOne .right-choice-section .section-wrapper {
      margin-bottom: 30px; } }
.homePageOne .about-Company-Section {
  background: url(../images/about-company-bg-2.jpg) no-repeat center top;
  background-size: cover; }
  .homePageOne .about-Company-Section .section-title {
    margin-bottom: 112px; }
    @media only screen and (max-width: 991px) {
      .homePageOne .about-Company-Section .section-title {
        margin-bottom: 50px; } }
    @media only screen and (max-width: 479px) {
      .homePageOne .about-Company-Section .section-title {
        margin-bottom: 30px; } }
  .homePageOne .about-Company-Section .content-wrapper {
    margin-right: 60px; }
    @media only screen and (max-width: 991px) {
      .homePageOne .about-Company-Section .content-wrapper {
        margin-right: 0; } }
    .homePageOne .about-Company-Section .content-wrapper p {
      color: #848484; }
      .homePageOne .about-Company-Section .content-wrapper p:last-child {
        margin: 0; }
    .homePageOne .about-Company-Section .content-wrapper .content {
      margin-bottom: 22px; }
      .homePageOne .about-Company-Section .content-wrapper .content li .single-content {
        color: #848484; }
.homePageOne .finance-service-section .section-title {
  margin-bottom: 13px; }
.homePageOne .finance-service-section .finance-carousel .finance-wrapper {
  box-shadow: none;
  border: 1px solid #e7e8e8;
  border-bottom: 0; }
  .homePageOne .finance-service-section .finance-carousel .finance-wrapper:hover .wrapper-content {
    position: relative;
    z-index: 5; }
    .homePageOne .finance-service-section .finance-carousel .finance-wrapper:hover .wrapper-content h4 a {
      color: #FFFFFF; }
      .homePageOne .finance-service-section .finance-carousel .finance-wrapper:hover .wrapper-content h4 a:hover {
        color: #0101F8; }
    .homePageOne .finance-service-section .finance-carousel .finance-wrapper:hover .wrapper-content p {
      color: #FFFFFF; }
  .homePageOne .finance-service-section .finance-carousel .finance-wrapper:hover .hover .hover-one,
  .homePageOne .finance-service-section .finance-carousel .finance-wrapper:hover .hover .hover-two,
  .homePageOne .finance-service-section .finance-carousel .finance-wrapper:hover .hover .hover-three,
  .homePageOne .finance-service-section .finance-carousel .finance-wrapper:hover .hover .hover-four {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  .homePageOne .finance-service-section .finance-carousel .finance-wrapper .icon {
    background: transparent;
    box-shadow: none;
    transform: translateY(0);
    margin: 30px auto 10px; }
  .homePageOne .finance-service-section .finance-carousel .finance-wrapper .wrapper-content {
    border-bottom: 4px solid #0101F8; }
    .homePageOne .finance-service-section .finance-carousel .finance-wrapper .wrapper-content h4 {
      margin: 0 0 15px; }
    .homePageOne .finance-service-section .finance-carousel .finance-wrapper .wrapper-content p {
      padding: 0 35px 38px; }
  .homePageOne .finance-service-section .finance-carousel .finance-wrapper .hover .hover-one,
  .homePageOne .finance-service-section .finance-carousel .finance-wrapper .hover .hover-two,
  .homePageOne .finance-service-section .finance-carousel .finance-wrapper .hover .hover-three,
  .homePageOne .finance-service-section .finance-carousel .finance-wrapper .hover .hover-four {
    position: absolute;
    left: 0;
    width: 100%;
    height: 25%;
    background: #092a48;
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    transition: all 0.35s ease;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0); }
  .homePageOne .finance-service-section .finance-carousel .finance-wrapper .hover .hover-one {
    top: 0;
    -webkit-transition-delay: 0.25s;
    -moz-transition-delay: 0.25s;
    -o-transition-delay: 0.25s;
    transition-delay: 0.25s; }
  .homePageOne .finance-service-section .finance-carousel .finance-wrapper .hover .hover-two {
    top: 25%;
    -webkit-transition-delay: 0.105s;
    -moz-transition-delay: 0.105s;
    -o-transition-delay: 0.105s;
    transition-delay: 0.105s; }
  .homePageOne .finance-service-section .finance-carousel .finance-wrapper .hover .hover-three {
    top: 49%;
    -webkit-transition-delay: 0.105s;
    -moz-transition-delay: 0.105s;
    -o-transition-delay: 0.105s;
    transition-delay: 0.105s; }
  .homePageOne .finance-service-section .finance-carousel .finance-wrapper .hover .hover-four {
    top: 74%;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s; }
.homePageOne .news-section .link .btn,
.homePageOne .project-section .link .btn {
  border-radius: 0; }
  .homePageOne .news-section .link .btn:before,
  .homePageOne .project-section .link .btn:before {
    border-radius: 0; }

/* =========================================================
        HomePageTwo-STYLE 
============================================================ */
@media only screen and (max-width: 767px) {
  .homePageTwo .header-section .topper .container {
    padding: 0; } }
.homePageTwo .header-section .topper .top-bar {
  min-height: 50px;
  line-height: 50px;
  padding: 0 30px; }
  @media only screen and (max-width: 767px) {
    .homePageTwo .header-section .topper .top-bar {
      line-height: 35px; } }
  @media only screen and (max-width: 991px) {
    .homePageTwo .header-section .topper .top-bar .header-left-bar {
      text-align: center; } }
  .homePageTwo .header-section .topper .top-bar .header-left-bar .contact-wrapper li {
    font-size: 16px;
    color: #FFFFFF; }
    @media only screen and (max-width: 767px) {
      .homePageTwo .header-section .topper .top-bar .header-left-bar .contact-wrapper li {
        font-size: 14px; } }
  .homePageTwo .header-section .topper .top-bar .header-right-bar {
    margin-bottom: -20px; }
    @media only screen and (max-width: 991px) {
      .homePageTwo .header-section .topper .top-bar .header-right-bar {
        text-align: center; } }
    @media only screen and (max-width: 767px) {
      .homePageTwo .header-section .topper .top-bar .header-right-bar {
        margin-bottom: -10px; } }
    @media only screen and (max-width: 479px) {
      .homePageTwo .header-section .topper .top-bar .header-right-bar {
        margin-bottom: 0;
        line-height: 25px; } }
    .homePageTwo .header-section .topper .top-bar .header-right-bar .social-icon {
      display: inline-block;
      vertical-align: top; }
      @media only screen and (max-width: 991px) {
        .homePageTwo .header-section .topper .top-bar .header-right-bar .social-icon {
          float: none !important; 
        padding-bottom: 10px;} }
      @media (min-width: 992px) and (max-width: 1199px) {
        .homePageTwo .header-section .topper .top-bar .header-right-bar .social-icon li {
          margin-right: 10px; } }
      .homePageTwo .header-section .topper .top-bar .header-right-bar .social-icon li:last-child {
        margin-right: 0; }
      .homePageTwo .header-section .topper .top-bar .header-right-bar .social-icon li i {
        color: #FFFFFF; }
        .homePageTwo .header-section .topper .top-bar .header-right-bar .social-icon li i:hover {
          color: #0101F8; }
.homePageTwo .header-section .navbar {
  background-color: #FFFFFF; }
  .homePageTwo .header-section .navbar.sticky .navbar-inner {
    width: 1140px;
    margin: 0 auto; }
    .homePageTwo .header-section .navbar.sticky .navbar-inner .navbar-collapse {
      width: auto; }
  .homePageTwo .header-section .navbar .navbar-inner {
    padding: 0 30px;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .homePageTwo .header-section .navbar .navbar-inner .navbar-header .navbar-brand img {
      padding: 20px 0; }
    .homePageTwo .header-section .navbar .navbar-inner .navbar-collapse {
      margin: 0; }
      .homePageTwo .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav {
        margin: 0; }
        .homePageTwo .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li a, .homePageTwo .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li .search-view, .homePageTwo .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li .cart-icon {
          color: #222222;
          line-height: 90px; }
        .homePageTwo .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li.active a, .homePageTwo .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li:hover a {
          color: #0101F8; }
        .homePageTwo .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li .dropdown-menu, .homePageTwo .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu,
        .homePageTwo .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li .cart-item {
          top: 90px; }
        .homePageTwo .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li .dropdown-menu li a {
          line-height: 45px; }
.homePageTwo .slider-section .tp-banner-container .tp-banner .slide-content-box h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 62px;
  color: #FFFFFF; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .homePageTwo .slider-section .tp-banner-container .tp-banner .slide-content-box h1 {
      font-size: 40px;
      line-height: 60px; } }
  @media only screen and (max-width: 991px) {
    .homePageTwo .slider-section .tp-banner-container .tp-banner .slide-content-box h1 {
      font-size: 30px;
      line-height: 50px; } }
  @media only screen and (max-width: 767px) {
    .homePageTwo .slider-section .tp-banner-container .tp-banner .slide-content-box h1 {
      font-size: 25px;
      line-height: 40px;
      margin: 0 0 9px; } }
.homePageTwo .slider-section .tp-banner-container .tp-banner .slide-content-box p {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: #FFFFFF; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .homePageTwo .slider-section .tp-banner-container .tp-banner .slide-content-box p {
      font-size: 18px;
      line-height: 30px; } }
  @media only screen and (max-width: 991px) {
    .homePageTwo .slider-section .tp-banner-container .tp-banner .slide-content-box p {
      font-size: 16px;
      line-height: 27px; } }
  @media only screen and (max-width: 767px) {
    .homePageTwo .slider-section .tp-banner-container .tp-banner .slide-content-box p {
      font-size: 14px;
      line-height: 24px;
      word-break: break-all;
      margin: 0 0 10px; } }
.homePageTwo .slider-section .tp-banner-container .tp-banner .button .btn {
  border-radius: 0; }
  .homePageTwo .slider-section .tp-banner-container .tp-banner .button .btn::before {
    border-radius: 0; }
.homePageTwo .finance-service-section .section-title {
  margin-bottom: 13px; }
.homePageTwo .finance-service-section .finance-carousel .finance-wrapper {
  box-shadow: none;
  border: 1px solid #e7e8e8;
  border-bottom: 0; }
  .homePageTwo .finance-service-section .finance-carousel .finance-wrapper:hover .wrapper-content {
    position: relative;
    z-index: 5; }
    .homePageTwo .finance-service-section .finance-carousel .finance-wrapper:hover .wrapper-content h4 a {
      color: #FFFFFF; }
      .homePageTwo .finance-service-section .finance-carousel .finance-wrapper:hover .wrapper-content h4 a:hover {
        color: #f3b502; }
    .homePageTwo .finance-service-section .finance-carousel .finance-wrapper:hover .wrapper-content p {
      color: #FFFFFF; }
  .homePageTwo .finance-service-section .finance-carousel .finance-wrapper:hover .hover .hover-one,
  .homePageTwo .finance-service-section .finance-carousel .finance-wrapper:hover .hover .hover-two,
  .homePageTwo .finance-service-section .finance-carousel .finance-wrapper:hover .hover .hover-three,
  .homePageTwo .finance-service-section .finance-carousel .finance-wrapper:hover .hover .hover-four {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  .homePageTwo .finance-service-section .finance-carousel .finance-wrapper .icon {
    background: transparent;
    box-shadow: none;
    transform: translateY(0);
    margin: 30px auto 10px; }
  .homePageTwo .finance-service-section .finance-carousel .finance-wrapper .wrapper-content {
    border-bottom: 4px solid #0101F8; }
    .homePageTwo .finance-service-section .finance-carousel .finance-wrapper .wrapper-content h4 {
      margin: 0 0 15px; }
    .homePageTwo .finance-service-section .finance-carousel .finance-wrapper .wrapper-content p {
      padding: 0 35px 38px; }
  .homePageTwo .finance-service-section .finance-carousel .finance-wrapper .hover .hover-one,
  .homePageTwo .finance-service-section .finance-carousel .finance-wrapper .hover .hover-two,
  .homePageTwo .finance-service-section .finance-carousel .finance-wrapper .hover .hover-three,
  .homePageTwo .finance-service-section .finance-carousel .finance-wrapper .hover .hover-four {
    position: absolute;
    left: 0;
    width: 100%;
    height: 25%;
    background: #092a48;
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    transition: all 0.35s ease;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0); }
  .homePageTwo .finance-service-section .finance-carousel .finance-wrapper .hover .hover-one {
    top: 0;
    -webkit-transition-delay: 0.25s;
    -moz-transition-delay: 0.25s;
    -o-transition-delay: 0.25s;
    transition-delay: 0.25s; }
  .homePageTwo .finance-service-section .finance-carousel .finance-wrapper .hover .hover-two {
    top: 25%;
    -webkit-transition-delay: 0.105s;
    -moz-transition-delay: 0.105s;
    -o-transition-delay: 0.105s;
    transition-delay: 0.105s; }
  .homePageTwo .finance-service-section .finance-carousel .finance-wrapper .hover .hover-three {
    top: 49%;
    -webkit-transition-delay: 0.105s;
    -moz-transition-delay: 0.105s;
    -o-transition-delay: 0.105s;
    transition-delay: 0.105s; }
  .homePageTwo .finance-service-section .finance-carousel .finance-wrapper .hover .hover-four {
    top: 74%;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s; }
.homePageTwo .news-section .link .btn,
.homePageTwo .project-section .link .btn {
  border-radius: 0; }
  .homePageTwo .news-section .link .btn:before,
  .homePageTwo .project-section .link .btn:before {
    border-radius: 0; }
.homePageTwo .client-section {
  margin: 30px 0 20px; }

/* =========================================================
        HomePageThree-STYLE 
============================================================ */
.homePageThree .header-section .top-bar {
  min-height: 50px;
  line-height: 50px; }
  @media only screen and (max-width: 767px) {
    .homePageThree .header-section .top-bar {
      line-height: 35px; } }
  .homePageThree .header-section .top-bar .header-left-bar .contact-wrapper li {
    font-size: 16px;
    color: #FFFFFF; }
    @media only screen and (max-width: 767px) {
      .homePageThree .header-section .top-bar .header-left-bar .contact-wrapper li {
        font-size: 14px; } }
  .homePageThree .header-section .top-bar .header-right-bar {
    margin-bottom: -20px; }
    @media only screen and (max-width: 991px) {
      .homePageThree .header-section .top-bar .header-right-bar {
        text-align: center; } }
    @media only screen and (max-width: 767px) {
      .homePageThree .header-section .top-bar .header-right-bar {
        margin-bottom: -10px; } }
    .homePageThree .header-section .top-bar .header-right-bar .social-icon {
      display: inline-block;
      vertical-align: top; }
      @media (min-width: 992px) and (max-width: 1199px) {
        .homePageThree .header-section .top-bar .header-right-bar .social-icon li {
          margin-right: 10px; } }
      .homePageThree .header-section .top-bar .header-right-bar .social-icon li:last-child {
        margin-right: 0; }
      .homePageThree .header-section .top-bar .header-right-bar .social-icon li i {
        color: #FFFFFF; }
        .homePageThree .header-section .top-bar .header-right-bar .social-icon li i:hover {
          color: #0101F8; }
.homePageThree .header-section .navbar {
  background-color: transparent;
  box-shadow: 0 0 5px #8c8c8c;
  transition: .5s; }
  .homePageThree .header-section .navbar.sticky {
    background-color: #FFFFFF; }
    .homePageThree .header-section .navbar.sticky .navbar-collapse {
      width: auto; }
  .homePageThree .header-section .navbar .navbar-header .navbar-brand img {
    padding: 20px 0; }
  .homePageThree .header-section .navbar .navbar-collapse .navbar-nav {
    margin: 0; }
    .homePageThree .header-section .navbar .navbar-collapse .navbar-nav li a, .homePageThree .header-section .navbar .navbar-collapse .navbar-nav li .search-view, .homePageThree .header-section .navbar .navbar-collapse .navbar-nav li .cart-icon {
      color: #222222;
      line-height: 90px; }
    .homePageThree .header-section .navbar .navbar-collapse .navbar-nav li.active a, .homePageThree .header-section .navbar .navbar-collapse .navbar-nav li:hover a {
      color: #0101F8; }
    .homePageThree .header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu, .homePageThree .header-section .navbar .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu,
    .homePageThree .header-section .navbar .navbar-collapse .navbar-nav li .cart-item {
      top: 90px; }
.homePageThree .slider-section .tp-banner-container .tp-banner .button .btn {
  border-radius: 0; }
@media only screen and (max-width: 767px) {
  .homePageThree .boost-section {
    display: block; } }
.homePageThree .boost-section .section-title {
  margin-bottom: 52px; }
  @media only screen and (max-width: 767px) {
    .homePageThree .boost-section .section-title {
      margin-bottom: 30px; } }
.homePageThree .boost-section .boost-wrapper:hover .boost-content {
  padding: 52px 25px;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0); }
  @media only screen and (max-width: 767px) {
    .homePageThree .boost-section .boost-wrapper:hover .boost-content .wrapper-content p {
      opacity: 1; } }
.homePageThree .boost-section .boost-wrapper .boost-content {
  padding: 15px 25px 45px 25px;
  -webkit-transform: translateY(70%);
  -moz-transform: translateY(70%);
  -ms-transform: translateY(70%);
  -o-transform: translateY(70%);
  transform: translateY(70%); }
  .homePageThree .boost-section .boost-wrapper .boost-content .wrapper-content {
    margin-top: 8px; }
    @media only screen and (max-width: 767px) {
      .homePageThree .boost-section .boost-wrapper .boost-content .wrapper-content {
        margin-top: 0; }
        .homePageThree .boost-section .boost-wrapper .boost-content .wrapper-content p {
          opacity: 0; } }
    @media only screen and (max-width: 767px) {
      .homePageThree .boost-section .boost-wrapper .boost-content .wrapper-content h4 {
        font-size: 20px;
        margin-bottom: 4px; } }
.homePageThree .boost-section .owl-nav {
  margin-top: 55px; }
  @media only screen and (max-width: 991px) {
    .homePageThree .boost-section .owl-nav {
      margin-top: 20px; } }
  .homePageThree .boost-section .owl-nav .owl-prev,
  .homePageThree .boost-section .owl-nav .owl-next {
    background: transparent;
    color: #cecece;
    padding: 0;
    margin: 0 70px; }
    @media only screen and (max-width: 767px) {
      .homePageThree .boost-section .owl-nav .owl-prev,
      .homePageThree .boost-section .owl-nav .owl-next {
        margin: 0 95px; } }
.homePageThree .boost-section .owl-dots {
  margin-top: -27px; }
  @media only screen and (max-width: 600px) {
    .homePageThree .boost-section .owl-dots {
      margin-top: 0; } }
  .homePageThree .boost-section .owl-dots .owl-dot.active span {
    background: #092a48; }
  .homePageThree .boost-section .owl-dots .owl-dot span {
    margin: 0 12px;
    background: transparent;
    border: 1px solid #092a48; }
.homePageThree .news-section {
  background: #ebeef0; }
  .homePageThree .news-section .news-wrapper .news-content {
    background: #FFFFFF; }
  .homePageThree .news-section .news-wrapper .video-content .news-content {
    background: transparent; }
  .homePageThree .news-section .link .btn {
    border-radius: 0; }
.homePageThree .project-section .link .btn {
  border-radius: 0; }
  .homePageThree .project-section .link .btn::before {
    border-radius: 0; }

/* =========================================================
        HomePageFour-STYLE 
============================================================ */
.homePageFour .header-section .top-bar {
  min-height: 70px;
  line-height: 70px;
  background-color: #FFFFFF;
  padding-bottom: 20px; }
  @media only screen and (max-width: 991px) {
    .homePageFour .header-section .top-bar {
      padding-bottom: 0;
      min-height: 50px;
      line-height: 50px; } }
  @media only screen and (max-width: 767px) {
    .homePageFour .header-section .top-bar {
      line-height: 35px;
      padding-bottom: 10px; } }
  @media only screen and (max-width: 991px) {
    .homePageFour .header-section .top-bar .navbar-header {
      float: none !important;
      padding-top: 15px; }
      .homePageFour .header-section .top-bar .navbar-header .navbar-brand {
        float: none !important;
        padding: 0; }
        .homePageFour .header-section .top-bar .navbar-header .navbar-brand img {
          margin: 0 auto; } }
      @media only screen and (max-width: 991px) and (max-width: 479px) {
        .homePageFour .header-section .top-bar .navbar-header .navbar-brand img {
          width: 180px; } }

  @media only screen and (max-width: 767px) {
    .homePageFour .header-section .top-bar .navbar-header {
      padding: 10px 0; } }
  @media only screen and (max-width: 991px) {
    .homePageFour .header-section .top-bar .header-left-bar {
      float: none !important;
      text-align: center; } }
  .homePageFour .header-section .top-bar .header-left-bar .contact-wrapper li {
    color: #6a6a6a; }
.homePageFour .header-section .navbar {
  background-color: #092a48;
  margin-top: -14px; }
  .homePageFour .header-section .navbar.sticky {
    margin-top: 0; }
  .homePageFour .header-section .navbar .navbar-collapse .navbar-nav {
    margin: 0 45px; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .homePageFour .header-section .navbar .navbar-collapse .navbar-nav {
        margin: 0 25px; } }
    .homePageFour .header-section .navbar .navbar-collapse .navbar-nav li a, .homePageFour .header-section .navbar .navbar-collapse .navbar-nav li .search-view, .homePageFour .header-section .navbar .navbar-collapse .navbar-nav li .cart-icon {
      line-height: 75px; }
    .homePageFour .header-section .navbar .navbar-collapse .navbar-nav li.active a, .homePageFour .header-section .navbar .navbar-collapse .navbar-nav li:hover a {
      color: #0101F8; }
    .homePageFour .header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu, .homePageFour .header-section .navbar .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu,
    .homePageFour .header-section .navbar .navbar-collapse .navbar-nav li .cart-item {
      top: 75px; }
    .homePageFour .header-section .navbar .navbar-collapse .navbar-nav.social-icon li {
      margin-right: 14px; }
      .homePageFour .header-section .navbar .navbar-collapse .navbar-nav.social-icon li:last-child {
        margin-right: 0; }
.homePageFour .slider-section .tp-banner-container .tp-banner .slide-content-box {
  margin-top: 60px; }
  @media only screen and (max-width: 767px) {
    .homePageFour .slider-section .tp-banner-container .tp-banner .slide-content-box {
      margin-top: 0; } }
  .homePageFour .slider-section .tp-banner-container .tp-banner .slide-content-box h1,
  .homePageFour .slider-section .tp-banner-container .tp-banner .slide-content-box p {
    color: #FFFFFF; }
.homePageFour .working-section .section-wrapper .wrapper-content .btn {
  border-radius: 5px; }

/* =========================================================
        HomePageFive-STYLE 
============================================================ */
.homePageFive .header-section .top-bar {
  min-height: auto;
  line-height: 20px;
  padding: 35px 0; }
  @media only screen and (max-width: 991px) {
    .homePageFive .header-section .top-bar {
      padding: 15px 0;
      text-align: left; } }
.homePageFive .header-section .navbar {
  background-color: #FFFFFF; }
  .homePageFive .header-section .navbar.sticky .navbar-collapse {
    width: auto; }
  .homePageFive .header-section .navbar .navbar-header .navbar-brand img {
    padding: 24px 0; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .homePageFive .header-section .navbar .navbar-header .navbar-brand img {
        width: 180px;
        padding: 33px 0; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .homePageFive .header-section .navbar .navbar-collapse .navbar-nav {
      margin: 0 15px; } }
  .homePageFive .header-section .navbar .navbar-collapse .navbar-nav li:hover a, .homePageFive .header-section .navbar .navbar-collapse .navbar-nav li.active a {
    color: #0101F8; }
  .homePageFive .header-section .navbar .navbar-collapse .navbar-nav li a,
  .homePageFive .header-section .navbar .navbar-collapse .navbar-nav li .cart-icon {
    line-height: 100px;
    color: #0d1d36; }
  .homePageFive .header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu,
  .homePageFive .header-section .navbar .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu,
  .homePageFive .header-section .navbar .navbar-collapse .navbar-nav li .cart-item {
    top: 100px; }
.homePageFive .slider-section .tp-banner-container .tp-banner .slide-content-box {
  margin-top: 60px; }
  @media only screen and (max-width: 767px) {
    .homePageFive .slider-section .tp-banner-container .tp-banner .slide-content-box {
      margin-top: 0; } }
  .homePageFive .slider-section .tp-banner-container .tp-banner .slide-content-box h1,
  .homePageFive .slider-section .tp-banner-container .tp-banner .slide-content-box p {
    color: #FFFFFF; }
.homePageFive .slider-section .tp-banner-container .tp-banner .button .btn {
  border-radius: 25px; }
  .homePageFive .slider-section .tp-banner-container .tp-banner .button .btn::before {
    border-radius: 25px; }
.homePageFive .working-section {
  background-color: #f2f2f2; }
.homePageFive .service-section {
  background-color: #FFFFFF;
  padding-bottom: 220px; }
  @media only screen and (max-width: 991px) {
    .homePageFive .service-section {
      padding-bottom: 30px; } }
  .homePageFive .service-section .section-title h2 {
    color: #f3b502; }
  .homePageFive .service-section .service-wrapper:hover {
    box-shadow: 0 0 40px #cecece; }
  .homePageFive .service-section .service-wrapper .wrapper-content h3 a {
    color: #092a48; }
    .homePageFive .service-section .service-wrapper .wrapper-content h3 a:hover {
      color: #0101F8; }
@media only screen and (max-width: 767px) {
  .homePageFive .contact-section {
    padding: 60px 0 0; } }

/* =========================================================
        HomePageSix-STYLE 
============================================================ */
.homePageSix .header-section .navbar .navbar-collapse .navbar-nav.navbar-right {
  margin-right: 90px; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .homePageSix .header-section .navbar .navbar-collapse .navbar-nav.navbar-right {
      margin-right: 30px; } }
.homePageSix .boost-section {
  padding-top: 0;
  margin-top: -70px; }
  @media only screen and (max-width: 991px) {
    .homePageSix .boost-section {
      margin-top: 0;
      padding: 80px 0 50px; } }
.homePageSix .pricing-section {
  padding-bottom: 290px; }
  @media only screen and (max-width: 991px) {
    .homePageSix .pricing-section {
      padding-bottom: 30px; } }
@media only screen and (max-width: 767px) {
  .homePageSix .contact-section {
    padding: 60px 0 0; } }

/* =========================================================
        SubPage-STYLE 
============================================================ */
@media only screen and (max-width: 767px) {
  .subPage .header-section .topper .container {
    padding: 0; } }
.subPage .header-section .topper .top-bar {
  min-height: 50px;
  line-height: 50px;
  padding: 0 30px; }
  @media only screen and (max-width: 767px) {
    .subPage .header-section .topper .top-bar {
      line-height: 35px; } }
  @media only screen and (max-width: 991px) {
    .subPage .header-section .topper .top-bar .header-left-bar {
      text-align: center; } }
  .subPage .header-section .topper .top-bar .header-left-bar .contact-wrapper li {
    font-size: 16px;
    color: #FFFFFF; }
    @media only screen and (max-width: 767px) {
      .subPage .header-section .topper .top-bar .header-left-bar .contact-wrapper li {
        font-size: 14px; } }
  .subPage .header-section .topper .top-bar .header-right-bar {
    margin-bottom: -20px; }
    @media only screen and (max-width: 991px) {
      .subPage .header-section .topper .top-bar .header-right-bar {
        text-align: center; } }
    @media only screen and (max-width: 767px) {
      .subPage .header-section .topper .top-bar .header-right-bar {
        margin-bottom: -10px; } }
    @media only screen and (max-width: 479px) {
      .subPage .header-section .topper .top-bar .header-right-bar {
        margin-bottom: 0;
        line-height: 25px; } }
    .subPage .header-section .topper .top-bar .header-right-bar .social-icon {
      display: inline-block;
      vertical-align: top; }
      @media only screen and (max-width: 991px) {
        .subPage .header-section .topper .top-bar .header-right-bar .social-icon {
          float: none !important; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .subPage .header-section .topper .top-bar .header-right-bar .social-icon li {
          margin-right: 10px; } }
      .subPage .header-section .topper .top-bar .header-right-bar .social-icon li:last-child {
        margin-right: 0; }
      .subPage .header-section .topper .top-bar .header-right-bar .social-icon li i {
        color: #FFFFFF; }
        .subPage .header-section .topper .top-bar .header-right-bar .social-icon li i:hover {
          color: #0101F8; }
.subPage .header-section .navbar {
  height: 150px;
  background-color: #FFFFFF; }
  .subPage .header-section .navbar.sticky .navbar-inner {
    width: 1140px;
    margin: 0 auto; }
    .subPage .header-section .navbar.sticky .navbar-inner .navbar-collapse {
      width: auto; }
  .subPage .header-section .navbar .navbar-inner {
    padding: 0 30px;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .subPage .header-section .navbar .navbar-inner .navbar-header .navbar-brand img {
      padding: 20px 0; }
    .subPage .header-section .navbar .navbar-inner .navbar-collapse {
      margin: 0; }
      .subPage .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav {
        margin: 0; }
        .subPage .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li a, .subPage .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li .search-view, .subPage .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li .cart-icon {
          color: #222222;
          line-height: 90px; }
        .subPage .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li.active a, .subPage .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li:hover a {
          color: #0101F8; }
        .subPage .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li .dropdown-menu, .subPage .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu,
        .subPage .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li .cart-item {
          top: 90px; }
        .subPage .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li .dropdown-menu li a {
          line-height: 45px; }


/* =========================================================
        AboutPage-STYLE 
============================================================ */
.aboutPage .finance-service-section .section-title {
  margin-bottom: 13px; }
.aboutPage .finance-service-section .finance-carousel .finance-wrapper {
  box-shadow: none;
  border: 1px solid #e7e8e8;
  border-bottom: 0; }
  .aboutPage .finance-service-section .finance-carousel .finance-wrapper:hover .wrapper-content {
    position: relative;
    z-index: 5; }
    .aboutPage .finance-service-section .finance-carousel .finance-wrapper:hover .wrapper-content h4 a {
      color: #FFFFFF; }
      .aboutPage .finance-service-section .finance-carousel .finance-wrapper:hover .wrapper-content h4 a:hover {
        color: #0101F8; }
    .aboutPage .finance-service-section .finance-carousel .finance-wrapper:hover .wrapper-content p {
      color: #FFFFFF; }
  .aboutPage .finance-service-section .finance-carousel .finance-wrapper:hover .hover .hover-one,
  .aboutPage .finance-service-section .finance-carousel .finance-wrapper:hover .hover .hover-two,
  .aboutPage .finance-service-section .finance-carousel .finance-wrapper:hover .hover .hover-three,
  .aboutPage .finance-service-section .finance-carousel .finance-wrapper:hover .hover .hover-four {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  .aboutPage .finance-service-section .finance-carousel .finance-wrapper .icon {
    background: transparent;
    box-shadow: none;
    transform: translateY(0);
    margin: 30px auto 10px; }
  .aboutPage .finance-service-section .finance-carousel .finance-wrapper .wrapper-content {
    border-bottom: 4px solid #0101F8; }
    .aboutPage .finance-service-section .finance-carousel .finance-wrapper .wrapper-content h4 {
      margin: 0 0 15px; }
    .aboutPage .finance-service-section .finance-carousel .finance-wrapper .wrapper-content p {
      padding: 0 35px 38px; }
  .aboutPage .finance-service-section .finance-carousel .finance-wrapper .hover .hover-one,
  .aboutPage .finance-service-section .finance-carousel .finance-wrapper .hover .hover-two,
  .aboutPage .finance-service-section .finance-carousel .finance-wrapper .hover .hover-three,
  .aboutPage .finance-service-section .finance-carousel .finance-wrapper .hover .hover-four {
    position: absolute;
    left: 0;
    width: 100%;
    height: 25%;
    background: #092a48;
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    transition: all 0.35s ease;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0); }
  .aboutPage .finance-service-section .finance-carousel .finance-wrapper .hover .hover-one {
    top: 0;
    -webkit-transition-delay: 0.25s;
    -moz-transition-delay: 0.25s;
    -o-transition-delay: 0.25s;
    transition-delay: 0.25s; }
  .aboutPage .finance-service-section .finance-carousel .finance-wrapper .hover .hover-two {
    top: 25%;
    -webkit-transition-delay: 0.105s;
    -moz-transition-delay: 0.105s;
    -o-transition-delay: 0.105s;
    transition-delay: 0.105s; }
  .aboutPage .finance-service-section .finance-carousel .finance-wrapper .hover .hover-three {
    top: 49%;
    -webkit-transition-delay: 0.105s;
    -moz-transition-delay: 0.105s;
    -o-transition-delay: 0.105s;
    transition-delay: 0.105s; }
  .aboutPage .finance-service-section .finance-carousel .finance-wrapper .hover .hover-four {
    top: 74%;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s; }

/* =========================================================
        Team-Page-STYLE 
============================================================ */
.team-page-section .section-wrapper {
  position: relative; }
  .team-page-section .section-wrapper .team-wrapper {
    margin-bottom: 50px; }
    .team-page-section .section-wrapper .team-wrapper .caption {
      position: relative; }
      .team-page-section .section-wrapper .team-wrapper .caption:hover::before {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1); }
      .team-page-section .section-wrapper .team-wrapper .caption:hover .hover-view li {
        opacity: 1; }
        .team-page-section .section-wrapper .team-wrapper .caption:hover .hover-view li:nth-child(1) {
          transform: translateY(0); }
        .team-page-section .section-wrapper .team-wrapper .caption:hover .hover-view li:nth-child(2) {
          transform: translateY(0); }
        .team-page-section .section-wrapper .team-wrapper .caption:hover .hover-view li:nth-child(3) {
          transform: translateY(0); }
      .team-page-section .section-wrapper .team-wrapper .caption::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(9, 42, 72, 0.75);
        opacity: 0;
        z-index: 1;
        -webkit-transition: 0.5s;
        -khtml-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
        -webkit-transform: scale(1, 0.5);
        -moz-transform: scale(1, 0.5);
        -ms-transform: scale(1, 0.5);
        -o-transform: scale(1, 0.5);
        transform: scale(1, 0.5); }
      .team-page-section .section-wrapper .team-wrapper .caption img {
        width: 100%; }
      .team-page-section .section-wrapper .team-wrapper .caption .hover-view {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        width: 100%;
        text-align: center;
        margin-top: -8px; }
        .team-page-section .section-wrapper .team-wrapper .caption .hover-view li {
          position: relative;
          display: inline-block;
          margin-right: 15px;
          opacity: 0;
          z-index: 5;
          -webkit-transition: 0.5s;
          -khtml-transition: 0.5s;
          -moz-transition: 0.5s;
          -ms-transition: 0.5s;
          -o-transition: 0.5s;
          transition: 0.5s; }
          .team-page-section .section-wrapper .team-wrapper .caption .hover-view li:nth-child(1) {
            transform: translateY(10px); }
          .team-page-section .section-wrapper .team-wrapper .caption .hover-view li:nth-child(2) {
            transform: translateY(20px);
            transition-delay: .1s; }
          .team-page-section .section-wrapper .team-wrapper .caption .hover-view li:nth-child(3) {
            transform: translateY(40px);
            transition-delay: .2s; }
          .team-page-section .section-wrapper .team-wrapper .caption .hover-view li:last-child {
            margin-right: 0; }
          .team-page-section .section-wrapper .team-wrapper .caption .hover-view li i {
            font-size: 24px;
            color: #FFFFFF;
            -webkit-transition: 0.5s;
            -khtml-transition: 0.5s;
            -moz-transition: 0.5s;
            -ms-transition: 0.5s;
            -o-transition: 0.5s;
            transition: 0.5s; }
            .team-page-section .section-wrapper .team-wrapper .caption .hover-view li i:hover {
              color: #0101F8; }
    .team-page-section .section-wrapper .team-wrapper .contact-wrapper {
      margin-top: 20px; }
      .team-page-section .section-wrapper .team-wrapper .contact-wrapper h4 {
        font-size: 24px;
        font-weight: 500;
        line-height: 34px;
        margin-bottom: -4px; }
        .team-page-section .section-wrapper .team-wrapper .contact-wrapper h4 a {
          color: #222222; }
          .team-page-section .section-wrapper .team-wrapper .contact-wrapper h4 a:hover {
            color: #0101F8; }
      .team-page-section .section-wrapper .team-wrapper .contact-wrapper .position {
        font-size: 14px;
        font-weight: 500;
        color: #999999; }
      .team-page-section .section-wrapper .team-wrapper .contact-wrapper p {
        color: #6a6a6a;
        margin: 10px 0 0; }
.team-page-section .link {
  margin-top: 12px; }
  @media only screen and (max-width: 991px) {
    .team-page-section .link {
      margin-bottom: 50px; } }
  .team-page-section .link .btn {
    padding: 8px 34px; }
    @media only screen and (max-width: 479px) {
      .team-page-section .link .btn {
        padding: 5px 25px; } }
@media (min-width: 768px) and (max-width: 991px) {
  .team-page-section .side-bar .page-list {
    width: 50%;
    float: left; } }
.team-page-section .side-bar .page-list li {
  margin-bottom: 8px; }
  .team-page-section .side-bar .page-list li:last-child {
    margin-bottom: 0; }
  .team-page-section .side-bar .page-list li:hover a {
    color: #FFFFFF;
    background: #0101F8;
    border-color: #0101F8; }
  .team-page-section .side-bar .page-list li a {
    font-size: 18px;
    line-height: 30px;
    color: #333333;
    border: 2px solid #f3f3f3;
    padding: 9px 0;
    display: block;
    border-radius: 8px; }
    @media only screen and (max-width: 479px) {
      .team-page-section .side-bar .page-list li a {
        padding: 6px 0; } }
.team-page-section .side-bar .brochure {
  margin-top: 50px; }
  @media (min-width: 768px) and (max-width: 991px) {
    .team-page-section .side-bar .brochure {
      width: 50%;
      display: inline-block;
      padding: 0 20px; } }
  .team-page-section .side-bar .brochure h4 {
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
    color: #333333; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .team-page-section .side-bar .brochure h4 {
        font-size: 21px;
        margin-bottom: 15px; } }
  .team-page-section .side-bar .brochure span {
    font-size: 16px;
    color: #0101F8;
    border: 2px solid #0101F8;
    border-radius: 8px;
    display: block;
    padding: 10px 0; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .team-page-section .side-bar .brochure span {
        padding: 6px 0; } }
    .team-page-section .side-bar .brochure span i {
      font-size: 22px;
      color: #0101F8;
      margin-right: 10px; }
.team-page-section .side-bar .susbscribe-section {
  border: 2px solid #f3f3f3;
  border-radius: 8px;
  margin-top: 60px;
  padding: 35px 22px; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .team-page-section .side-bar .susbscribe-section {
      padding: 25px 15px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .team-page-section .side-bar .susbscribe-section {
      margin-top: 105px; } }
  @media only screen and (max-width: 479px) {
    .team-page-section .side-bar .susbscribe-section {
      padding: 20px; } }
  .team-page-section .side-bar .susbscribe-section h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    color: #0d1d36;
    margin-bottom: 70px; }
    @media only screen and (max-width: 1199px) {
      .team-page-section .side-bar .susbscribe-section h4 {
        margin-bottom: 30px; } }
  .team-page-section .side-bar .susbscribe-section .form .form-group {
    margin-bottom: 8px; }
    .team-page-section .side-bar .susbscribe-section .form .form-group:last-child {
      margin-bottom: 0; }
    .team-page-section .side-bar .susbscribe-section .form .form-group .form-control {
      font-size: 12px;
      border: 2px solid #0101F8;
      color: #bcbaba;
      border-radius: 8px;
      padding: 18px; }
      .team-page-section .side-bar .susbscribe-section .form .form-group .form-control::placeholder {
        color: #bcbaba; }
    .team-page-section .side-bar .susbscribe-section .form .form-group .btn {
      font-size: 15px;
      display: block;
      width: 100%;
      border-radius: 8px; }

/* =========================================================
        Faq-Page-STYLE 
============================================================ */
.faq-page-section .brochure {
  margin-right: 60px; }
  @media only screen and (max-width: 1199px) {
    .faq-page-section .brochure {
      margin-right: 0; } }
  .faq-page-section .brochure h4 {
    font-size: 30px;
    font-weight: 500;
    line-height: 30px;
    color: #0d1d36; }
    @media only screen and (max-width: 991px) {
      .faq-page-section .brochure h4 {
        font-size: 25px; } }
    @media only screen and (max-width: 767px) {
      .faq-page-section .brochure h4 {
        font-size: 22px;
        margin-bottom: 5px; } }
  .faq-page-section .brochure p {
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    color: #666666;
    margin-bottom: 25px; }
    @media only screen and (max-width: 767px) {
      .faq-page-section .brochure p {
        font-size: 14px;
        line-height: 25px; } }
  .faq-page-section .brochure span {
    font-size: 16px;
    color: #0101F8;
    border: 2px solid #0101F8;
    border-radius: 8px;
    display: block;
    padding: 10px 30px;
    margin-bottom: 18px; }
    @media only screen and (max-width: 991px) {
      .faq-page-section .brochure span {
        padding: 8px 30px;
        margin-bottom: 10px; } }
    .faq-page-section .brochure span i {
      font-size: 22px;
      color: #0101F8;
      margin-right: 10px; }
@media only screen and (max-width: 991px) {
  .faq-page-section .faq-content {
    margin-top: 50px; } }
.faq-page-section .faq-content h3 {
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
  color: #222222;
  margin-bottom: 65px; }
  @media only screen and (max-width: 991px) {
    .faq-page-section .faq-content h3 {
      margin-bottom: 40px; } }
  @media only screen and (max-width: 767px) {
    .faq-page-section .faq-content h3 {
      font-size: 25px;
      margin-bottom: 30px; } }
  @media only screen and (max-width: 767px) {
    .faq-page-section .faq-content h3 {
      font-size: 22px; } }
.faq-page-section .faq-content .accordion-content .ui-accordion-header {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #031633;
  background-color: #FFFFFF;
  padding: 13px 33px;
  margin-bottom: 0;
  margin-top: 14px;
  cursor: pointer;
  border: 1px solid #dee0e1; }
  @media only screen and (max-width: 767px) {
    .faq-page-section .faq-content .accordion-content .ui-accordion-header {
      padding: 8px 20px; } }
  @media only screen and (max-width: 479px) {
    .faq-page-section .faq-content .accordion-content .ui-accordion-header {
      font-size: 16px;
      line-height: 24px;
      padding: 13px 40px 13px 15px; } }
  .faq-page-section .faq-content .accordion-content .ui-accordion-header:focus {
    outline: none; }
  .faq-page-section .faq-content .accordion-content .ui-accordion-header::before {
    content: "\f107";
    font-family: "FontAwesome";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    font-size: 20px;
    color: #222222;
    margin-top: -5px; }
    @media only screen and (max-width: 479px) {
      .faq-page-section .faq-content .accordion-content .ui-accordion-header::before {
        right: 15px; } }
  .faq-page-section .faq-content .accordion-content .ui-accordion-header.ui-accordion-header-active {
    border-color: #0101F8; }
    .faq-page-section .faq-content .accordion-content .ui-accordion-header.ui-accordion-header-active::before {
      content: "\f106"; }
.faq-page-section .faq-content .accordion-content .ui-accordion-content {
  padding: 25px 35px 35px;
  border: 1px solid #dee0e1; }
  @media only screen and (max-width: 991px) {
    .faq-page-section .faq-content .accordion-content .ui-accordion-content {
      padding: 25px 35px 50px; } }
  @media only screen and (max-width: 767px) {
    .faq-page-section .faq-content .accordion-content .ui-accordion-content {
      padding: 25px 20px 50px; } }
  @media only screen and (max-width: 699px) {
    .faq-page-section .faq-content .accordion-content .ui-accordion-content {
      padding: 25px 20px 30px; } }
  @media only screen and (max-width: 450px) {
    .faq-page-section .faq-content .accordion-content .ui-accordion-content {
      padding: 25px 20px 50px; } }
  .faq-page-section .faq-content .accordion-content .ui-accordion-content p {
    font-size: 14px;
    font-weight: 300;
    line-height: 26px;
    color: #828282;
    word-break: break-all;
    margin-bottom: 0; }

/* =========================================================
        partner-Page-STYLE 
============================================================ */
.partner-page-section .partner-wrapper {
  margin-bottom: 15px; }
  .partner-page-section .partner-wrapper:last-child {
    margin-bottom: 0; }
  .partner-page-section .partner-wrapper .caption img {
    max-width: 100%; }
  .partner-page-section .partner-wrapper .content {
    margin: 30px 30px 0 0; }
    @media only screen and (max-width: 1199px) {
      .partner-page-section .partner-wrapper .content {
        margin: 0; } }
    @media only screen and (max-width: 991px) {
      .partner-page-section .partner-wrapper .content {
        margin-top: 15px; } }
    .partner-page-section .partner-wrapper .content h3 {
      position: relative;
      font-size: 30px;
      font-weight: 500;
      line-height: 27px;
      margin-bottom: 35px;
      padding-bottom: 10px; }
      @media only screen and (max-width: 991px) {
        .partner-page-section .partner-wrapper .content h3 {
          font-size: 25px;
          margin-bottom: 30px;
          padding-bottom: 0px; } }
      @media only screen and (max-width: 767px) {
        .partner-page-section .partner-wrapper .content h3 {
          font-size: 22px; } }
      .partner-page-section .partner-wrapper .content h3::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -14px;
        width: 80px;
        height: 5px;
        border-radius: 5px;
        background-color: #0101F8; }
        @media only screen and (max-width: 767px) {
          .partner-page-section .partner-wrapper .content h3::before {
            height: 4px; } }
      .partner-page-section .partner-wrapper .content h3 a {
        color: #0d1d36; }
        .partner-page-section .partner-wrapper .content h3 a:hover {
          color: #0101F8; }
    .partner-page-section .partner-wrapper .content p {
      color: #666666; }
@media only screen and (max-width: 991px) {
  .partner-page-section .side-bar {
    margin-top: 50px; } }
@media (min-width: 768px) and (max-width: 991px) {
  .partner-page-section .side-bar .page-list {
    width: 50%;
    float: left; } }
.partner-page-section .side-bar .page-list li {
  margin-bottom: 8px; }
  .partner-page-section .side-bar .page-list li:last-child {
    margin-bottom: 0; }
  .partner-page-section .side-bar .page-list li:hover a {
    color: #FFFFFF;
    background: #0101F8;
    border-color: #0101F8; }
  .partner-page-section .side-bar .page-list li a {
    font-size: 18px;
    line-height: 30px;
    color: #333333;
    border: 2px solid #f3f3f3;
    padding: 9px 0;
    display: block;
    border-radius: 8px; }
    @media only screen and (max-width: 479px) {
      .partner-page-section .side-bar .page-list li a {
        padding: 6px 0; } }
.partner-page-section .side-bar .brochure {
  margin-top: 50px; }
  @media (min-width: 768px) and (max-width: 991px) {
    .partner-page-section .side-bar .brochure {
      width: 50%;
      display: inline-block;
      padding: 0 20px; } }
  .partner-page-section .side-bar .brochure h4 {
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
    color: #333333; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .partner-page-section .side-bar .brochure h4 {
        font-size: 21px;
        margin-bottom: 15px; } }
  .partner-page-section .side-bar .brochure span {
    font-size: 16px;
    color: #0101F8;
    border: 2px solid #0101F8;
    border-radius: 8px;
    display: block;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .partner-page-section .side-bar .brochure span:hover {
      border: 2px solid #092a48;
      background: #092a48; }
    .partner-page-section .side-bar .brochure span a {
      color: #0101F8;
      display: block;
      padding: 10px 0; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .partner-page-section .side-bar .brochure span {
        padding: 6px 0; } }
    .partner-page-section .side-bar .brochure span i {
      font-size: 22px;
      color: #0101F8;
      margin-right: 10px; }
.partner-page-section .side-bar .susbscribe-section {
  border: 2px solid #f3f3f3;
  border-radius: 8px;
  margin-top: 60px;
  padding: 35px 22px; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .partner-page-section .side-bar .susbscribe-section {
      padding: 25px 15px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .partner-page-section .side-bar .susbscribe-section {
      margin-top: 105px; } }
  @media only screen and (max-width: 479px) {
    .partner-page-section .side-bar .susbscribe-section {
      padding: 20px; } }
  .partner-page-section .side-bar .susbscribe-section h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    color: #0d1d36;
    margin-bottom: 70px; }
    @media only screen and (max-width: 1199px) {
      .partner-page-section .side-bar .susbscribe-section h4 {
        margin-bottom: 30px; } }
  .partner-page-section .side-bar .susbscribe-section .form .form-group {
    margin-bottom: 8px; }
    .partner-page-section .side-bar .susbscribe-section .form .form-group:last-child {
      margin-bottom: 0; }
    .partner-page-section .side-bar .susbscribe-section .form .form-group .form-control {
      font-size: 12px;
      border: 2px solid #0101F8;
      color: #bcbaba;
      border-radius: 8px;
      padding: 18px; }
      .partner-page-section .side-bar .susbscribe-section .form .form-group .form-control::placeholder {
        color: #bcbaba; }
    .partner-page-section .side-bar .susbscribe-section .form .form-group .btn {
      font-size: 15px;
      display: block;
      width: 100%;
      border-radius: 8px; }
      @media only screen and (max-width: 479px) {
        .partner-page-section .side-bar .susbscribe-section .form .form-group .btn {
          padding: 5px 16px; } }

/* =========================================================
        service-Page-STYLE 
============================================================ */
.service-page-section .side-bar {
  margin-right: 50px; }
  @media only screen and (max-width: 1199px) {
    .service-page-section .side-bar {
      margin-right: 0; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .service-page-section .side-bar .page-list {
      width: 50%;
      float: left;
      margin-right: 50px; } }
  .service-page-section .side-bar .page-list li {
    margin-bottom: 8px; }
    .service-page-section .side-bar .page-list li:last-child {
      margin-bottom: 0; }
    .service-page-section .side-bar .page-list li:hover a, .service-page-section .side-bar .page-list li.active a {
      color: #0101F8; }
    .service-page-section .side-bar .page-list li a {
      font-size: 18px;
      line-height: 30px;
      color: #333333;
      border: 2px solid #f3f3f3;
      padding: 9px 30px;
      display: block;
      border-radius: 8px; }
      @media only screen and (max-width: 479px) {
        .service-page-section .side-bar .page-list li a {
          padding: 6px 20px; } }
      .service-page-section .side-bar .page-list li a i {
        font-size: 22px;
        margin-top: 5px;
        float: right; }
  .service-page-section .side-bar .location {
    margin: 65px 0 55px; }
    @media only screen and (max-width: 991px) {
      .service-page-section .side-bar .location {
        margin: 0 0 125px; } }
    @media only screen and (max-width: 767px) {
      .service-page-section .side-bar .location {
        margin: 35px 0; } }
    .service-page-section .side-bar .location .heading {
      font-size: 30px;
      font-weight: 500;
      line-height: 30px;
      color: #0d1d36; }
      @media only screen and (max-width: 991px) {
        .service-page-section .side-bar .location .heading {
          font-size: 25px;
          margin-bottom: 10px; } }
      @media only screen and (max-width: 767px) {
        .service-page-section .side-bar .location .heading {
          font-size: 22px;
          margin-bottom: 5px; } }
    .service-page-section .side-bar .location li {
      margin-bottom: 15px; }
      .service-page-section .side-bar .location li:last-child {
        margin-bottom: 0; }
      .service-page-section .side-bar .location li i {
        font-size: 20px;
        color: #0101F8;
        float: left;
        margin-top: 7px; }
        @media only screen and (max-width: 991px) {
          .service-page-section .side-bar .location li i {
            margin: 4px 10px 0 0; } }
        @media only screen and (max-width: 479px) {
          .service-page-section .side-bar .location li i {
            margin-top: 3px; } }
      .service-page-section .side-bar .location li .text {
        font-size: 18px;
        line-height: 34px;
        color: #7c828b;
        margin-left: 45px; }
        @media only screen and (max-width: 991px) {
          .service-page-section .side-bar .location li .text {
            font-size: 16px;
            line-height: 27px;
            margin-left: 35px; } }
  .service-page-section .side-bar .brochure h4 {
    font-size: 30px;
    font-weight: 500;
    line-height: 30px;
    color: #0d1d36; }
    @media only screen and (max-width: 991px) {
      .service-page-section .side-bar .brochure h4 {
        font-size: 25px; } }
    @media only screen and (max-width: 767px) {
      .service-page-section .side-bar .brochure h4 {
        font-size: 22px;
        margin-bottom: 5px; } }
  .service-page-section .side-bar .brochure p {
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    color: #666666;
    margin-bottom: 25px; }
    @media only screen and (max-width: 767px) {
      .service-page-section .side-bar .brochure p {
        font-size: 14px;
        line-height: 25px; } }
  .service-page-section .side-bar .brochure span {
    font-size: 16px;
    color: #0101F8;
    border: 2px solid #0101F8;
    border-radius: 8px;
    display: block;
    padding: 10px 30px;
    margin-bottom: 18px;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .service-page-section .side-bar .brochure span a {
      color: #0101F8; }
    .service-page-section .side-bar .brochure span:hover {
      border: 2px solid #092a48;
      background: #092a48; }
    @media only screen and (max-width: 991px) {
      .service-page-section .side-bar .brochure span {
        padding: 8px 30px;
        margin-bottom: 10px; } }
    .service-page-section .side-bar .brochure span i {
      font-size: 22px;
      color: #0101F8;
      margin-right: 10px; }
@media only screen and (max-width: 991px) {
  .service-page-section .working-section {
    margin-top: 50px; } }
.service-page-section .working-section .header {
  margin-bottom: 30px; }
  .service-page-section .working-section .header h2 {
    position: relative;
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
    color: #031633;
    margin-bottom: 53px; }
    @media (min-width: 768px) and (max-width: 991px) {
      .service-page-section .working-section .header h2 {
        font-size: 30px;
        line-height: 35px; } }
    @media only screen and (max-width: 767px) {
      .service-page-section .working-section .header h2 {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 10px; } }
    @media only screen and (max-width: 479px) {
      .service-page-section .working-section .header h2 {
        font-size: 25px;
        line-height: 30px; } }
    .service-page-section .working-section .header h2::before {
      content: "";
      position: absolute;
      width: 75px;
      height: 5px;
      left: 0;
      bottom: -13px;
      background-color: #0101F8; }
      @media only screen and (max-width: 1200px) {
        .service-page-section .working-section .header h2::before {
          display: none; } }
  .service-page-section .working-section .header p {
    font-size: 15px;
    line-height: 25px;
    color: #6a6a6a;
    margin-left: 30px; }
    @media only screen and (max-width: 767px) {
      .service-page-section .working-section .header p {
        margin-left: 0; } }
.service-page-section .working-section .wrapper-content {
  margin-bottom: 52px; }
  .service-page-section .working-section .wrapper-content.last-wrapper {
    margin-bottom: 0; }
  @media only screen and (max-width: 767px) {
    .service-page-section .working-section .wrapper-content {
      margin-bottom: 50px; } }
  @media only screen and (max-width: 479px) {
    .service-page-section .working-section .wrapper-content {
      margin-bottom: 30px; } }
  .service-page-section .working-section .wrapper-content img {
    width: 100%; }
  .service-page-section .working-section .wrapper-content h3 {
    position: relative;
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
    border-bottom: 1px solid #d8d8d8;
    margin: 13px 0 22px;
    padding-bottom: 36px; }
    .service-page-section .working-section .wrapper-content h3::before {
      content: "";
      position: absolute;
      width: 0;
      height: 1px;
      left: 0;
      bottom: -1px;
      background-color: #0101F8;
      -webkit-transition: 0.8s;
      -khtml-transition: 0.8s;
      -moz-transition: 0.8s;
      -ms-transition: 0.8s;
      -o-transition: 0.8s;
      transition: 0.8s; }
    @media (min-width: 768px) and (max-width: 991px) {
      .service-page-section .working-section .wrapper-content h3 {
        font-size: 20px;
        line-height: 25px; } }
    @media (min-width: 480px) and (max-width: 767px) {
      .service-page-section .working-section .wrapper-content h3 {
        font-size: 20px;
        line-height: 25px; } }
    @media only screen and (max-width: 479px) {
      .service-page-section .working-section .wrapper-content h3 {
        font-size: 18px;
        line-height: 22px;
        margin: 13px 0 15px;
        padding-bottom: 15px; } }
  .service-page-section .working-section .wrapper-content:hover h3::before {
    width: 100%; }
  .service-page-section .working-section .wrapper-content .link {
    font-size: 18px;
    font-weight: 500;
    color: #222222; }
    .service-page-section .working-section .wrapper-content .link:hover {
      color: #0101F8; }
    .service-page-section .working-section .wrapper-content .link i {
      transform: rotate(90deg); }
    @media only screen and (max-width: 479px) {
      .service-page-section .working-section .wrapper-content .link {
        font-size: 15px; } }
.service-page-section .working-section .first-part {
  margin-bottom: 40px; }
@media only screen and (max-width: 991px) {
  .service-page-section .single-service-wrapper {
    margin-top: 50px; } }
.service-page-section .single-service-wrapper h3 {
  font-size: 36px;
  font-weight: 500;
  line-height: 30px;
  color: #0d1d36; }
  @media only screen and (max-width: 991px) {
    .service-page-section .single-service-wrapper h3 {
      font-size: 30px; } }
  @media only screen and (max-width: 767px) {
    .service-page-section .single-service-wrapper h3 {
      font-size: 25px; } }
  @media only screen and (max-width: 479px) {
    .service-page-section .single-service-wrapper h3 {
      font-size: 22px;
      line-height: 25px; } }
.service-page-section .single-service-wrapper p {
  font-size: 16px;
  line-height: 28px;
  color: #6a6a6a;
  margin-bottom: 30px; }
  .service-page-section .single-service-wrapper p:nth-child(3) {
    margin-bottom: 25px; }
.service-page-section .single-service-wrapper .service-list {
  margin-bottom: 40px; }
  .service-page-section .single-service-wrapper .service-list li {
    font-size: 16px;
    line-height: 28px;
    color: #6a6a6a;
    margin-bottom: 2px; }
    .service-page-section .single-service-wrapper .service-list li i {
      vertical-align: middle;
      margin-right: 5px; }
.service-page-section .single-service-wrapper #service-carousel {
  margin-bottom: 100px; }
  @media only screen and (max-width: 479px) {
    .service-page-section .single-service-wrapper #service-carousel {
      margin-bottom: 60px; } }
  .service-page-section .single-service-wrapper #service-carousel .carousel-indicators {
    width: 200px;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -65px; }
    @media only screen and (max-width: 479px) {
      .service-page-section .single-service-wrapper #service-carousel .carousel-indicators {
        bottom: -40px; } }
    .service-page-section .single-service-wrapper #service-carousel .carousel-indicators li {
      width: 7px;
      height: 7px;
      background-color: #c6c6c6;
      border: 0;
      margin: 0 20px; }
      @media only screen and (max-width: 479px) {
        .service-page-section .single-service-wrapper #service-carousel .carousel-indicators li {
          margin: 0 10px; } }
      .service-page-section .single-service-wrapper #service-carousel .carousel-indicators li.active {
        width: 15px;
        height: 15px;
        background-color: #0101F8;
        margin: -3px 20px; }
        @media only screen and (max-width: 479px) {
          .service-page-section .single-service-wrapper #service-carousel .carousel-indicators li.active {
            margin: -3px 10px; } }
  .service-page-section .single-service-wrapper #service-carousel .carousel-inner img {
    width: 100%; }
.service-page-section .single-service-wrapper .service-tab {
  padding-top: 17px; }
  .service-page-section .single-service-wrapper .service-tab .nav-tabs {
    border-bottom: 1px solid #0101F8; }
    .service-page-section .single-service-wrapper .service-tab .nav-tabs li {
      font-size: 18px;
      font-weight: 600;
      line-height: 30px;
      margin: 0; }
      @media only screen and (max-width: 479px) {
        .service-page-section .single-service-wrapper .service-tab .nav-tabs li {
          font-size: 16px;
          font-weight: 400; } }
      .service-page-section .single-service-wrapper .service-tab .nav-tabs li.active a {
        color: #FFFFFF;
        background-color: #0101F8; }
        .service-page-section .single-service-wrapper .service-tab .nav-tabs li.active a:hover {
          color: #FFFFFF;
          background-color: #0101F8; }
      .service-page-section .single-service-wrapper .service-tab .nav-tabs li a {
        color: #0101F8;
        margin: 0;
        border: 0;
        border-radius: 5px;
        padding: 10px 50px; }
        @media only screen and (max-width: 767px) {
          .service-page-section .single-service-wrapper .service-tab .nav-tabs li a {
            padding: 10px 30px; } }
        @media only screen and (max-width: 479px) {
          .service-page-section .single-service-wrapper .service-tab .nav-tabs li a {
            padding: 8px 20px; } }
        .service-page-section .single-service-wrapper .service-tab .nav-tabs li a:hover {
          color: #0101F8;
          background-color: #FFFFFF; }
  .service-page-section .single-service-wrapper .service-tab .tab-content .tab-pane {
    margin-top: 22px; }
    .service-page-section .single-service-wrapper .service-tab .tab-content .tab-pane p {
      font-size: 15px;
      font-weight: 300;
      line-height: 25px;
      color: #6a6a6a; }
      @media only screen and (max-width: 479px) {
        .service-page-section .single-service-wrapper .service-tab .tab-content .tab-pane p {
          margin-bottom: 15px; } }
      .service-page-section .single-service-wrapper .service-tab .tab-content .tab-pane p:last-child {
        margin-bottom: 0; }

/* =========================================================
        ContactPage-STYLE 
============================================================ */
.contactPage .contact-section::before {
  display: none; }

/* =========================================================
        Shop-Page-STYLE 
============================================================ */
.shopPage .banner-section {
  background: url(../images/sub/t-bg.html) no-repeat;
  background-position: center;
  background-size: cover; }
.shopPage .shop-section {
  padding-bottom: 75px; }
  @media only screen and (max-width: 767px) {
    .shopPage .shop-section {
      padding-bottom: 50px; } }
  .shopPage .shop-section .left-bar .wrapper-contant {
    margin-bottom: 70px; }
    .shopPage .shop-section .left-bar .wrapper-contant.last-content {
      margin-bottom: 0; }
    .shopPage .shop-section .left-bar .wrapper-contant h4 {
      position: relative;
      font-size: 24px;
      font-weight: 500;
      color: #3d424b;
      margin-bottom: 40px; }
      @media only screen and (max-width: 767px) {
        .shopPage .shop-section .left-bar .wrapper-contant h4 {
          font-size: 20px; } }
      .shopPage .shop-section .left-bar .wrapper-contant h4::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 40px;
        height: 2px;
        background-color: #0101F8; }
    .shopPage .shop-section .left-bar .wrapper-contant .layout-slider {
      margin-top: 60px; }
      .shopPage .shop-section .left-bar .wrapper-contant .layout-slider span {
        font-size: 12px;
        color: #3d424b; }
    .shopPage .shop-section .left-bar .wrapper-contant ul li {
      font-size: 16px;
      font-weight: 600;
      border-bottom: 1px solid #f1f1f1;
      margin-bottom: 10px;
      padding-bottom: 10px; }
      .shopPage .shop-section .left-bar .wrapper-contant ul li:last-child {
        border: 0; }
      .shopPage .shop-section .left-bar .wrapper-contant ul li a {
        color: #212121; }
        .shopPage .shop-section .left-bar .wrapper-contant ul li a:hover {
          color: #0101F8; }
  .shopPage .shop-section .right-bar .product-selection .product-wrapper {
    margin-bottom: 60px;
    text-align: center; }
    @media only screen and (max-width: 767px) {
      .shopPage .shop-section .right-bar .product-selection .product-wrapper.last-wrapper {
        margin-bottom: 0; } }
    .shopPage .shop-section .right-bar .product-selection .product-wrapper:hover .product-detail {
      background-color: #0101F8;
      border-radius: 8px; }
      .shopPage .shop-section .right-bar .product-selection .product-wrapper:hover .product-detail h5 {
        color: #FFFFFF; }
      .shopPage .shop-section .right-bar .product-selection .product-wrapper:hover .product-detail .cart {
        color: #3d424b; }
      .shopPage .shop-section .right-bar .product-selection .product-wrapper:hover .product-detail .price {
        background-color: #FFFFFF;
        color: #0101F8;
        box-shadow: 0 0 5px #a5a3a3; }
    .shopPage .shop-section .right-bar .product-selection .product-wrapper img {
      max-width: 100%; }
    .shopPage .shop-section .right-bar .product-selection .product-wrapper .product-detail {
      position: relative;
      box-shadow: 0 0 20px #dcdada;
      margin-top: 15px;
      padding: 15px 20px;
      -webkit-transition: 0.8s;
      -khtml-transition: 0.8s;
      -moz-transition: 0.8s;
      -ms-transition: 0.8s;
      -o-transition: 0.8s;
      transition: 0.8s; }
      .shopPage .shop-section .right-bar .product-selection .product-wrapper .product-detail h5 {
        font-size: 20px;
        font-weight: 500;
        color: #3d424b;
        margin-bottom: 5px;
        -webkit-transition: 0.5s;
        -khtml-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s; }
      .shopPage .shop-section .right-bar .product-selection .product-wrapper .product-detail .cart {
        font-weight: 600;
        -webkit-transition: 0.5s;
        -khtml-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s; }
      .shopPage .shop-section .right-bar .product-selection .product-wrapper .product-detail .price {
        position: absolute;
        right: -15px;
        bottom: -20px;
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 22px;
        font-weight: 600;
        color: #FFFFFF;
        background-color: #0101F8;
        text-align: center;
        border-radius: 50%;
        -webkit-transition: 0.8s;
        -khtml-transition: 0.8s;
        -moz-transition: 0.8s;
        -ms-transition: 0.8s;
        -o-transition: 0.8s;
        transition: 0.8s; }
.shopPage .pagination-wrapper .pagination {
  margin: 30px 0 0; }

/* =========================================================
        Cart-Page-STYLE 
============================================================ */
.cartpage .banner-section {
  background: url(../images/sub/t-bg.html) no-repeat;
  background-position: center;
  background-size: cover; }
.cartpage .cart-section .table {
  border: 1px solid #dedcdc;
  border-radius: 8px;
  margin: 0; }
  .cartpage .cart-section .table thead tr th {
    color: #333; }
  @media only screen and (max-width: 479px) {
    .cartpage .cart-section .table tbody tr th {
      padding: 0; } }
  .cartpage .cart-section .table tbody tr th img {
    width: 50px; }
    @media only screen and (max-width: 479px) {
      .cartpage .cart-section .table tbody tr th img {
        width: 40px; } }
  .cartpage .cart-section .table tbody tr td {
    color: #333;
    line-height: 72px; }
    @media only screen and (max-width: 479px) {
      .cartpage .cart-section .table tbody tr td {
        line-height: 50px;
        padding: 0; } }
    .cartpage .cart-section .table tbody tr td i {
      color: red; }
  @media only screen and (max-width: 479px) {
    .cartpage .cart-section .table tbody tr.button th {
      display: none; } }
  .cartpage .cart-section .table tbody tr.button td {
    text-align: center;
    padding: 0;
    line-height: 50px;
    color: #FFFFFF; }
    @media only screen and (max-width: 479px) {
      .cartpage .cart-section .table tbody tr.button td {
        line-height: 20px;
        padding: 5px 0; } }
    @media only screen and (max-width: 479px) {
      .cartpage .cart-section .table tbody tr.button td.ff {
        display: none; } }
    .cartpage .cart-section .table tbody tr.button td:last-child {
      background-color: #0101F8; }
.cartpage .cart-section .cart-amount {
  margin-top: 100px; }
  .cartpage .cart-section .cart-amount h5 {
    font-size: 30px;
    font-weight: 500;
    color: #3d424b; }
  .cartpage .cart-section .cart-amount ul {
    border: 1px solid #d8d5d5; }
    .cartpage .cart-section .cart-amount ul li {
      display: flex;
      border-bottom: 1px solid #d8d5d5;
      padding: 10px; }
      .cartpage .cart-section .cart-amount ul li:last-child {
        border: 0; }
      .cartpage .cart-section .cart-amount ul li span {
        flex: 1; }
        .cartpage .cart-section .cart-amount ul li span.text {
          font-size: 15px;
          font-weight: 700;
          color: #3d424b; }
        .cartpage .cart-section .cart-amount ul li span.amount {
          font-weight: 700;
          color: #3d424b; }
  .cartpage .cart-section .cart-amount .btn {
    border-radius: 0;
    width: 100%;
    margin-top: 20px; }
    .cartpage .cart-section .cart-amount .btn:focus {
      color: #FFFFFF; }
    .cartpage .cart-section .cart-amount .btn::before {
      border-radius: 0; }

/* =========================================================
        Color-Switcher-STYLE 
============================================================ */
.style-switcher-box {
  background-color: #FFFFFF;
  width: 252px;
  padding: 50px 25px;
  position: fixed;
  left: -252px;
  top: 15%;
  z-index: 999;
  border: 1px solid #d9d9d9;
  -webkit-transition: 0.3s;
  -khtml-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }
  .style-switcher-box button {
    background-color: #0101F8;
    width: 45px;
    height: 45px;
    line-height: 40px;
    text-align: center;
    color: #000000;
    font-size: 20px;
    border: 0;
    outline: 0;
    box-shadow: none;
    position: absolute;
    right: -45px;
    top: 50px; }
    .style-switcher-box button i {
      color: #FFFFFF;
      -webkit-animation: rotating 2s linear infinite;
      animation: rotating 2s linear infinite; }
  .style-switcher-box h5 {
    font-size: 18px;
    color: #000000;
    text-align: center;
    margin: 0 0 2em;
    text-transform: uppercase; }
  .style-switcher-box .main-list > .list {
    margin-bottom: 30px; }
    .style-switcher-box .main-list > .list:last-child {
      margin-bottom: 0; }
  .style-switcher-box .list-title {
    display: block;
    font-size: 12px;
    border-bottom: 1px solid #cccccc;
    margin-bottom: 10px;
    padding-bottom: 5px;
    text-transform: uppercase; }
  .style-switcher-box .list > .sublist {
    margin-bottom: 10px; }
    .style-switcher-box .list > .sublist:last-child {
      margin-bottom: 0; }
  .style-switcher-box .sublist span {
    display: block;
    font-size: 12px;
    margin-bottom: 5px; }
  .style-switcher-box .sublist ul {
    overflow: hidden; }
    .style-switcher-box .sublist ul li {
      float: left;
      min-width: 32px;
      min-height: 32px;
      margin: 0 5px 5px 0;
      cursor: pointer; }
      .style-switcher-box .sublist ul li.color-default {
        background: #3575d3; }
      .style-switcher-box .sublist ul li.color-style1 {
        background: #C1AA81; }
      .style-switcher-box .sublist ul li.color-style2 {
        background: #FA9928; }
      .style-switcher-box .sublist ul li.color-style3 {
        background: #e21f2f; }
      .style-switcher-box .sublist ul li.color-style4 {
        background: #09142d; }
      .style-switcher-box .sublist ul li.color-style5 {
        background: #3498db; }
      .style-switcher-box .sublist ul li.color-style6 {
        background: #a57b4a; }
      .style-switcher-box .sublist ul li.color-style7 {
        background: #09a223; }
      .style-switcher-box .sublist ul li.color-style8 {
        background: #904eab; }
      .style-switcher-box .sublist ul li.color-style9 {
        background: #38cbcb; }
  .style-switcher-box .pattern-bg .sublist ul {
    overflow: hidden; }
    .style-switcher-box .pattern-bg .sublist ul li {
      float: left;
      min-width: 32px;
      min-height: 32px;
      margin: 0 5px 5px 0;
      cursor: pointer;
      background: url(../images/sp.html) no-repeat; }
  .style-switcher-box .layout ul li {
    background-color: #0101F8;
    min-height: 20px;
    color: #FFFFFF;
    padding: 5px 10px;
    font-size: 12px; }
  .style-switcher-box p {
    font-size: 11px;
    margin: 15px 0 0; }
    .style-switcher-box p span {
      color: #ff6666; }

.toggle-switcherbox {
  left: 0; }

/*** rotating ***/
@-webkit-keyframes rotating {
  form {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes rotating {
  form {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
/* =========================================================
        Scroll-To-Top-STYLE 
============================================================ */
#toTop {
  position: fixed;
  bottom: 50px;
  right: 30px;
  color: #0101F8;
  cursor: pointer;
  display: none;
  width: 35px;
  height: 35px;
  font-size: 16px;
  line-height: 30px;
  border: 1px solid #0101F8;
  border-radius: 4px;
  text-align: center;
  z-index: 999; }

/* =========================================================
        Preloader-STYLE 
============================================================ */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  z-index: 10000; }
  #preloader .preloader {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 50px;
    width: 50px;
    margin: -25px auto 0;
    display: block; }
    #preloader .preloader span {
      position: absolute;
      display: block;
      bottom: 10px;
      width: 9px;
      height: 5px;
      -webkit-animation: animation 3s infinite ease-in-out;
      animation: animation 3s infinite ease-in-out; }
      #preloader .preloader span:nth-child(2) {
        left: 11px;
        -webkit-animation-delay: .2s;
        animation-delay: .2s; }
      #preloader .preloader span:nth-child(3) {
        left: 22px;
        -webkit-animation-delay: .4s;
        animation-delay: .4s; }
      #preloader .preloader span:nth-child(4) {
        left: 33px;
        -webkit-animation-delay: .6s;
        animation-delay: .6s; }
      #preloader .preloader span:nth-child(5) {
        left: 44px;
        -webkit-animation-delay: .8s;
        animation-delay: .8s; }
@keyframes animation {
  0% {
    height: 5px;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    background: #082a48; }
  25% {
    height: 30px;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    background: #082a48; }
  50% {
    height: 30px;
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
    background: #082a48; }
  100% {
    height: 5px;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    background: #082a48; } }

    .navbar-brand {
      width: 50vh; /* ajustez cette valeur selon vos besoins */
      height: auto; /* permet de conserver les proportions */
  }
    .navbar-brand img {
      width: 70%; /* ajustez cette valeur selon vos besoins */
      height: auto; /* permet de conserver les proportions */
  }

  .footer-wrapper img {
    width: 70%; 
    height: auto; 
}

.footer-wrapper p{
  padding-top: 1vh; 
}
.footer-wrapper ul{
  padding-top: 0vh; 
}
.footer-wrapper h3 {
  padding-top: 6vh; 
}
.footer-wrapper .location {
  padding-top: 0vh; 
}

  .navbar-nav {
    height: auto;
    padding-top: 4vh;
}


.page-banner {
  z-index: 1;
  position: relative;
  padding-top: 250px;
  margin-bottom: 50px;
  background-color: #0E1E36;
  overflow: hidden; /* Ajouté pour cacher les dépassements */
}

/* Styles pour le pseudo-élément :before de page-banner */
.page-banner:before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: -28px; /* Ajuster si nécessaire */
  width: 486px; /* Ajuster si nécessaire */
  height: 486.71px; /* Ajuster si nécessaire */
  background-image: url(assets/images/page-banner/pattern.svg); /* Assurez-vous que le chemin est correct */
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

@media (max-width: 991px) {
  .page-banner:before {
    top: 200px; /* Positionne le pseudo-élément en haut */
    bottom: auto; /* Enlève la position en bas */
    left: 0; /* Ajuste la position à gauche */
    width: 100%; /* Ajuste la largeur pour couvrir toute la largeur */
    height: 200px; /* Ajuste la hauteur si nécessaire */
    background-size: cover; /* Ajuste le dimensionnement pour être visible */
    background-position: top; /* Positionne le motif en haut */
    background-repeat: no-repeat;
    z-index: 0; /* Assure qu'il est en dessous du contenu principal */
  }
}

.page-banner__media {
  max-height: 450px;
  margin-bottom: 50px;
  margin-right: calc(-50vw + 50%) !important;
}


@media (max-width: 767px) {
  .page-banner__media:before {
    top: 0;
    height: 100%;
    left: 0; /* Assurez-vous que cela est cohérent avec le parent */
    width: 100%; /* Ajuster la largeur */
    transform: none; /* Désactiver la transformation pour les petits écrans */
    background-color: #0E1E36;
  }
}

@media (max-width: 1024px) {
  .page-banner__media:before {
    top: 0;
    height: 100%;
    left: 0; /* Assurez-vous que cela est cohérent avec le parent */
    width: 100%; /* Ajuster la largeur */
    transform: none; /* Désactiver la transformation pour les petits écrans */
    background-color: #0E1E36;
  }
}


  .page-banner:before {
    bottom: 2px;
  }

@media (max-width: 480px) {
  .page-banner:before {
    left: -181px;
  }
}
.page-banner__content {
  position: relative;
}
.page-banner__content .transparent-text {
  left: 0;
  top: -34px;
  z-index: -1;
  opacity: 0.3;
  font-size: 128px;
  font-weight: 700;
  line-height: 100px;
  position: absolute;
  white-space: nowrap;
  -webkit-text-stroke: transparent;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 1346px) {
  .page-banner__content .transparent-text {
    top: -26px;
    font-size: 120px;
    line-height: 80px;
  }
}
@media (max-width: 1299px) {
  .page-banner__content .transparent-text {
    font-size: 106px;
  }
}
@media (max-width: 1199px) {
  .page-banner__content .transparent-text {
    top: -15px;
    font-size: 80px;
    line-height: 60px;
  }
}
@media (max-width: 991px) {
  .page-banner__content .transparent-text {
    top: -18px;
    font-size: 60px;
  }
}
@media (max-width: 380px) {
  .page-banner__content .transparent-text {
    font-size: 54px;
  }
}
.page-banner__content h1 {
  color: #FFF;
  font-weight: 700;
}
.page-banner__content h1 span {
  font-weight: 300;
}
@media (max-width: 1199px) {
  .page-banner__content h1 {
    font-size: 54px;
    line-height: 68px;
  }
}
@media (max-width: 991px) {
  .page-banner__content h1 {
    font-size: 40px;
    line-height: 54px;
  }
}
@media (max-width: 380px) {
  .page-banner__content h1 {
    font-size: 35px;
    line-height: 49px;
  }
}
.page-banner .breadcrumb {
  padding: 0;
  align-items: center;
  background: transparent;
}
.page-banner .breadcrumb .breadcrumb-item {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}
.page-banner .breadcrumb .breadcrumb-item a {
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}
.page-banner .breadcrumb .breadcrumb-item a:hover {
  color: #4069FF;
}
.page-banner .breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 15px;
}
.page-banner .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
  color: #4069FF;
  padding-right: 15px;
  content: var(--bs-breadcrumb-divider, "|");
}
.page-banner .breadcrumb .breadcrumb-item.active {
  color: #4069FF;
}
.page-banner__media {
  max-height: 450px;
  margin-bottom: 50px;
  margin-right: calc(-50vw + 50%) !important;
}
.page-banner__media:after {
  top: 0;
  width: 100%;
  left: -1px;
  content: "";
  z-index: 1;
  height: 100%;
  position: absolute;
  background-size: cover;
  background-image: url(assets/images/page-banner/page-banner-overly.png);
}
.page-banner__media:before {
  content: "";
  top: -395px;
  z-index: 1;
  left: 790px;
  width: 144.86px;
  height: 1194.97px;
  position: absolute;
  transform: rotate(-30.99deg);
  background: rgba(64, 105, 255, 0.5);
}
@media (max-width: 767px) {
  .page-banner__media:before {
    top: 0;
    height: 100%;
    left: -9999px;
    width: 9999px;
    transform: inherit;
    background-color: #0E1E36;
  }
}

@media (max-width: 1024px) {
  .page-banner__media:before {
    top: 0;
    height: 100%;
    left: -9999px;
    width: 9999px;
    transform: inherit;
    background-color: #0E1E36;
  }
}
.page-banner__media .start {
  z-index: 2;
  left: 86px;
  bottom: 67px;
  position: absolute;
}
@media (max-width: 1199px) {
  .page-banner__media .start {
    left: 72px;
  }
}
@media (max-width: 1199px) {
  .page-banner__media .start {
    left: 30px;
  }
}
@media (max-width: 767px) {
  .page-banner__media .start {
    left: -5px;
  }
}
@media (max-width: 575px) {
  .page-banner__media .start {
    bottom: 75px;
    max-width: 100px;
  }
}
@media (max-width: 767px) {
  .page-banner__media .start {
    bottom: 75px;
    padding-left: 50px;
    max-width: 150px;
  }
}
@media (max-width: 400px) {
  .page-banner__media .start {
    bottom: 40px;
    max-width: 150px;
  }
}


.our-team.our-team-home-3 .container:after {
  top: -460px;
  content: "";
  z-index: -1;
  left: inherit;
  right: -917px;
  width: 4030.94px;
  height: 2170.42px;
  position: absolute;
  background-size: auto;
  background-repeat: no-repeat;
  background-image: url(assets/img/home-3/our-team-home-3.png);
}
.our-team .mb-minus-30 {
  margin-bottom: -30px;
}
.our-team .container {
  position: relative;
}
.our-team .container:after {
  top: -345px;
  content: "";
  left: -592px;
  z-index: -1;
  width: 2523.97px;
  height: 1404.66px;
  position: absolute;
  background-size: auto;
  background-repeat: no-repeat;
  background-image: url(assets/images/about/bg-team.png);
}
@media (max-width: 1199px) {
  .our-team__content .title {
    font-size: 42px;
    line-height: 56px;
  }
}
@media (max-width: 991px) {
  .our-team__content .title {
    font-size: 36px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .our-team__content .title {
    font-size: 32px;
    line-height: 46px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .our-team__content .title {
    font-size: 28px;
    line-height: 42px;
  }
}
.our-team__content .title span {
  font-weight: 300;
}

.digital-area .mb-minus-30 {
  margin-bottom: -30px;
}
.digital-area .container {
  position: relative;
}

@keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.digital-area .container:after {
  top: -487px;
  content: "";
  left: -764px;
  z-index: -1;
  width: 2048.04px;
  height: 1285.06px;
  position: absolute;
  background-size: auto;
  background-repeat: no-repeat;
  animation: scale 3s linear infinite;
  background-image: url(assets/images/service/why-counter-overly-3.png);
}
.digital-area .why-choose__item {
  background: #FFF;
  margin-bottom: 30px;
  padding: 40px 30px 30px;
  height: calc(100% - 30px);
  box-shadow: 0px 10px 20px rgba(4, 33, 63, 0.05);
}
@media (max-width: 991px) {
  .digital-area .why-choose__item {
    padding: 25px 20px;
  }
}
.digital-area .why-choose__item a {
  display: block;
  font-size: 16px;
  margin-top: 20px;
  color: #4069FF;
  font-weight: 500;
  line-height: 24px;
}
.digital-area .why-choose__item a:hover, .digital-area .why-choose__item a:focus {
  color: #000;
}
.digital-area h5.title {
  color: #0E1E36;
  font-size: 20px;
  line-height: 26px;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.services-details .media {
  height: 450px;
  width: 100%;
}
@media (max-width: 575px) {
  .services-details .media {
    height: 400px;
  }
}
@media (max-width: 480px) {
  .services-details .media {
    height: 380px;
  }
}
@media (max-width: 380px) {
  .services-details .media {
    height: 350px;
  }
}
.services-details .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-details__content h1, .services-details__content h2, .services-details__content h3, .services-details__content h4, .services-details__content h5, .services-details__content h6 {
  color: #0E1E36;
  margin-bottom: 20px;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .services-details__content h1, .services-details__content h2, .services-details__content h3, .services-details__content h4, .services-details__content h5, .services-details__content h6 {
    margin-bottom: 10px;
  }
}
.services-details__content h2 {
  color: #f3b502;
}
.services-details__content h2 span {
  font-family: "Lato", sans-serif;
  margin-left: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: #243342;
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .services-details__content h2 {
    font-size: 42px;
    line-height: 56px;
  }
}
@media (max-width: 991px) {
  .services-details__content h2 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .services-details__content h2 {
    font-size: 32px;
    line-height: 46px;
  }
}
@media (max-width: 575px) {
  .services-details__content h2 {
    font-size: 28px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .services-details__content h4 {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 575px) {
  .services-details__content h4 {
    font-size: 20px;
    line-height: 30px;
  }
}
.services-details__content h6 {
  font-size: 16px;
  line-height: 24px;
}
.services-details__content p {
  font-family: "Lato", sans-serif;
  max-width: 840px;
  margin-bottom: 20px;
}
.services-details__content ul {
  gap: 30px 94px;
  column-count: 2;
  margin: 30px 0 30px 0;
  max-width: max-content;
}
@media (max-width: 991px) {
  .services-details__content ul {
    gap: 30px 40px;
  }
}
@media (max-width: 575px) {
  .services-details__content ul {
    column-count: 1;
    margin-bottom: 20px;
  }
}
.services-details__content ul li {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #0E1E36;
  padding-left: 50px;
  position: relative;
  margin-bottom: 20px;
}
.services-details__content ul li:after {
  left: 0;
  width: 30px;
  content: "\f00c";
  height: 30px;
  color: #4069FF;
  line-height: 30px;
  font-size: 12px;
  text-align: center;
  position: absolute;
  border-radius: 500px;
  top: calc(50% - 13px);
  background: #EFF0F6;
  font-family: "Font Awesome 5 Pro";
}
.services-details__content blockquote {
  margin-top: 30px;
  margin-bottom: 50px;
}
.services-details__content blockquote p {
  font-size: 20px;
  line-height: 32px;
  font-family: "Poppins", sans-serif;
  font-style: italic;
}
.services-details__content figure {
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.services-details__content figure ul {
  margin: 0;
  column-count: 1;
}
.services-details__content hr {
  height: 1px;
  margin-top: 50px;
  margin-bottom: 50px;
  border-color: #E2E9FF;
}
@media (max-width: 1199px) {
  .services-details__content hr {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .services-details__content hr {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .services-details__content hr {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.blog .mb-minus-30 {
  margin-bottom: -30px;
}
.blog-item {
  background: #FFF;
  position: relative;
  box-shadow: 0px 6px 30px rgba(4, 33, 63, 0.04);
}
.blog-item:hover .blog-featured-thumb img, .blog-item:focus .blog-featured-thumb img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.blog-item .blog-featured-thumb {
  height: 300px;
  position: relative;
}
@media (max-width: 480px) {
  .blog-item .blog-featured-thumb {
    height: 280px;
  }
}
.blog-item .blog-featured-thumb .media {
  width: 100%;
  height: 100%;
}
.blog-item .blog-featured-thumb .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.blog-item .blog-featured-thumb .date {
  color: #FFF;
  left: 30px;
  bottom: -20px;
  font-size: 16px;
  min-width: 80px;
  padding: 19px 12px;
  border-radius: 10px;
  position: absolute;
  line-height: 20px;
  text-align: center;
  display: inline-block;
  background-color: #4069FF;
}
@media (max-width: 575px) {
  .blog-item .blog-featured-thumb .date {
    min-width: 70px;
  }
}
.blog-item .blog-featured-thumb .date span {
  display: block;
}
.blog-item .blog-featured-thumb .date span:first-child {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 5px;
}
.blog-item .blog-featured-thumb .date span:nth-child(2) {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.blog-item .content .post-author a {
  font-size: 12px;
  color: #4069FF;
  line-height: 16px;
  font-weight: 500;
  text-transform: uppercase;
}
.blog-item .content .post-author a:hover, .blog-item .content .post-author a:focus {
  color: #FF9C00;
}
.blog-item .content .post-meta {
  gap: 5px 20px;
  display: flex;
  flex-wrap: wrap;
}
.blog-item .content .post-meta a {
  font-size: 14px;
  color: #1B3C54;
  line-height: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}
.blog-item .content .post-meta a i, .blog-item .content .post-meta a img {
  color: #4069FF;
  margin-right: 10px;
}
.blog-item .content .post-meta a:hover, .blog-item .content .post-meta a:focus {
  color: #4069FF;
}
.blog-item .content h4 {
  color: #0E0A01;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .blog-item .content h4 {
    font-size: 22px;
    line-height: 28px;
  }
}
@media (max-width: 575px) {
  .blog-item .content h4 {
    font-size: 20px;
    line-height: 26px;
  }
}
.blog-item .content h4 a:hover, .blog-item .content h4:focus {
  color: #4069FF;
}
.blog-item .content h3 {
  color: #243342;
  margin-bottom: 20px;
  text-transform: capitalize;
}
@media (max-width: 1199px) {
  .blog-item .content h3 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 991px) {
  .blog-item .content h3 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .blog-item .content h3 {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 575px) {
  .blog-item .content h3 {
    font-size: 22px;
    line-height: 28px;
  }
}
.blog-item .content h3 a:hover, .blog-item .content h3:focus {
  color: #4069FF;
}
.blog-item .content .btn-link-share .theme-btn.btn-border {
  color: #4069FF;
  font-size: 15px;
  line-height: 22px;
  padding: 9px 20px;
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1.5px solid #E2E9FF;
}
.blog-item .content .btn-link-share .theme-btn.btn-border:after {
  background: #4069FF;
}
.blog-item .content .btn-link-share .theme-btn.btn-border i {
  opacity: 0.9;
  font-size: 20px;
  font-weight: 500;
}
.blog-item .content .btn-link-share .theme-btn.btn-border:hover, .blog-item .content .btn-link-share .theme-btn.btn-border:focus {
  color: #FFF;
  background-color: #4069FF;
}
.blog-item .content .btn-link-share .theme-btn.btn-border.btn-fill {
  border: 0;
  color: #FFF;
  padding: 10.5px 21.4px;
  background-color: #4069FF;
}
.blog-item .content .btn-link-share .theme-btn.btn-border.btn-fill:hover, .blog-item .content .btn-link-share .theme-btn.btn-border.btn-fill:focus {
  color: #FFF;
  background-color: #FF9C00;
}
.blog-item.blog-standard {
  border: 1px solid #E2E9FF;
}
.blog-item.blog-standard .blog-featured-thumb {
  height: 450px;
}
@media (max-width: 767px) {
  .blog-item.blog-standard .blog-featured-thumb {
    height: 350px;
  }
}
@media (max-width: 575px) {
  .blog-item.blog-standard .blog-featured-thumb {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .blog-item.blog-standard .blog-featured-thumb {
    height: 250px;
  }
}
.blog-item.blog-standard .content {
  font-family: "Lato", sans-serif;
}
.blog-item.blog-standard .btn-link-share .theme-btn.btn-border:after {
  background: #FF9C00;
}
.blog-item.blog-item-two .blog-featured-thumb .date {
  top: 0;
  left: 10px;
  bottom: inherit;
  background-color: #FF9C00;
  border-radius: 0px 0px 10px 10px;
}
.blog-item.blog-item-two .content .post-author a {
  color: #FF9C00;
}
.blog-item.blog-item-two .content .post-author a:hover, .blog-item.blog-item-two .content .post-author a:focus {
  color: #4069FF;
}
.blog-item.blog-item-two .content h4 a:hover, .blog-item.blog-item-two .content h4 a:focus {
  color: #FF9C00;
}
.blog-item.blog-item-two .content .btn-link-share .theme-btn.btn-border {
  color: #FF9C00;
  border-color: #FF9C00;
}
.blog-item.blog-item-two .content .btn-link-share .theme-btn.btn-border:after {
  background: #FF9C00;
}
.blog-item.blog-item-two .content .btn-link-share .theme-btn.btn-border:hover, .blog-item.blog-item-two .content .btn-link-share .theme-btn.btn-border:focus {
  color: #FFF;
  background-color: #FF9C00;
}
.blog-item.blog-item-three .blog-featured-thumb .date {
  top: 0;
  left: 10px;
  bottom: inherit;
  background-color: #EF0548;
  border-radius: 0px 0px 10px 10px;
}
.blog-item.blog-item-three .content .post-author a {
  color: #EF0548;
}
.blog-item.blog-item-three .content .post-author a:hover, .blog-item.blog-item-three .content .post-author a:focus {
  color: #FF9C00;
}
.blog-item.blog-item-three .content a:hover, .blog-item.blog-item-three .content a:focus {
  color: #EF0548;
}
.blog-item.blog-item-three .content .btn-link-share .theme-btn.btn-border {
  color: #EF0548;
  border-color: transparent;
}
.blog-item.blog-item-three .content .btn-link-share .theme-btn.btn-border:after {
  background-color: #EF0548;
}
.blog-item.blog-item-three .content .btn-link-share .theme-btn.btn-border:hover, .blog-item.blog-item-three .content .btn-link-share .theme-btn.btn-border:focus {
  color: #FFF;
  background-color: #EF0548;
}

.page-nav-wrap ul {
  gap: 10px;
  display: flex;
  justify-content: center;
}
.page-nav-wrap ul li.arrow a {
  line-height: 32px;
}
.page-nav-wrap ul li a {
  width: 40px;
  height: 40px;
  color: #4069FF;
  font-size: 18px;
  font-weight: 600;
  line-height: 40px;
  display: inline-block;
  border: 1px solid #E2E9FF;
  transition: all 0.3s ease-in-out;
}
.page-nav-wrap ul li a i {
  font-size: 10px;
  font-weight: 600;
}
.page-nav-wrap ul li a:hover {
  color: #FFF;
  background: #4069FF;
}

.blog-post-details h1, .blog-post-details h2, .blog-post-details h3, .blog-post-details h4, .blog-post-details h5, .blog-post-details h6, .blog-post-details p {
  margin-bottom: 20px;
}
.blog-post-details blockquote {
  margin: 40px 0 40px;
}
.blog-post-details figure {
  gap: 30px;
  display: flex;
  margin: 30px 0;
  flex-direction: column;
}
@media (min-width: 991px) {
  .blog-post-details figure {
    flex-direction: row;
  }
}
.blog-post-details blockquote {
  padding-top: 50px;
  position: relative;
}
.blog-post-details blockquote:after {
  top: 0;
  left: 0;
  content: "\f10e";
  color: #4069FF;
  font-size: 40px;
  font-weight: 600;
  position: absolute;
  font-family: "Font Awesome 5 Pro";
}
.blog-post-details blockquote p {
  font-size: 20px;
  line-height: 30px;
  font-family: "Poppins", sans-serif;
  font-style: italic;
}
.blog-post-details blockquote h6 {
  margin: 0;
  color: #0E1E36;
}
.blog-post-details blockquote h6 span {
  font-size: 16px;
  margin-left: 5px;
  color: #243342;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  line-height: 26px;
  font-style: normal;
}
.blog-post-details:hover .media img, .blog-post-details:focus .media img {
  -webkit-transform: inherit;
  -moz-transform: inherit;
  -ms-transform: inherit;
  -o-transform: inherit;
  transform: inherit;
}

.tag-share_wrapper {
  gap: 20px 30px;
}
.tag-share_wrapper .tags ul li a {
  background: #EFF0F6;
}
.tag-share_wrapper .social-profile ul {
  gap: 5px;
  flex-wrap: wrap;
  display: inline-flex;
  flex-direction: inherit;
  justify-content: center;
}
.tag-share_wrapper .social-profile ul li a {
  padding: 0;
  width: 40px;
  height: 40px;
  color: #4069FF;
  display: block;
  font-size: 15px;
  line-height: 40px;
  text-align: center;
  font-weight: 500;
  background-color: #E2E9FF;
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  -ms-border-radius: 500px;
  border-radius: 500px;
}
.tag-share_wrapper .social-profile ul li a::before {
  content: inherit;
}
.tag-share_wrapper .social-profile ul li a:hover, .tag-share_wrapper .social-profile ul li a:focus {
  color: #FFF;
  background-color: #4069FF;
  -webkit-transform: translate(0, -5px);
  -moz-transform: translate(0, -5px);
  -ms-transform: translate(0, -5px);
  -o-transform: translate(0, -5px);
  transform: translate(0, -5px);
}

.comments-section-wrap h4 {
  font-weight: 500;
  color: #243342;
  padding-bottom: 25px;
  margin-bottom: 40px;
  border-bottom: 1px solid #E2E9FF;
}
.comments-section-wrap h4 span {
  font-size: 18px;
  line-height: 26px;
}

.comments-item-list li {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #E2E9FF;
}
@media (max-width: 767px) {
  .comments-item-list li {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
.comments-item-list li .author-img {
  float: left;
  width: 80px;
  height: 80px;
  overflow: hidden;
  margin-right: 15px;
  border-radius: 500px;
}
@media (max-width: 585px) {
  .comments-item-list li .author-img {
    float: none;
    margin-bottom: 20px;
  }
}
.comments-item-list li .author-info-comment {
  overflow: auto;
}
.comments-item-list li .author-info-comment .info h5 {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: #0E1E36;
  margin-bottom: 3px;
}
.comments-item-list li .author-info-comment .info span {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #243342;
}
.comments-item-list li .author-info-comment .comment-text {
  max-width: 715px;
}
.comments-item-list li .author-info-comment .comment-text p {
  margin-bottom: 17px;
}
.comments-item-list li .author-info-comment .comment-text a {
  color: #4069FF;
  font-size: 14px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  line-height: 20px;
}
.comments-item-list li .author-info-comment .comment-text a:hover, .comments-item-list li .author-info-comment .comment-text a:focus {
  color: #FF9C00;
}

.comment-form {
  width: 100%;
}
.comment-form input, .comment-form textarea {
  width: 100%;
  font-size: 16px;
  line-height: 26px;
  color: #243342;
  padding: 13px 29px;
  margin-bottom: 20px;
  background: #F8F9FB;
}
.comment-form input::placeholder, .comment-form textarea::placeholder {
  font-size: 16px;
  line-height: 26px;
  color: #243342;
}
.comment-form textarea {
  resize: none;
  height: 250px;
  border: 1px solid #E2E9FF;
}
@media (max-width: 767px) {
  .comment-form textarea {
    height: 120px;
  }
}
.comment-form .input__wrapper {
  gap: 0 20px;
}
.comment-form .single-form-input {
  width: 100%;
}
.comment-form .submit-btn {
  font-size: 15px;
  margin-top: 10px;
  line-height: 22px;
  display: inline-block;
  background: #4069FF;
  padding: 10.5px 20.1px;
  transition: all 0.3s ease-in-out;
}
.comment-form .submit-btn:hover, .comment-form .submit-btn:focus {
  background-color: #FF9C00;
}

@media (min-width: 1199px) {
  .main-sidebar {
    margin-left: 20px;
  }
}
@media (max-width: 1199px) {
  .main-sidebar {
    margin-top: 50px;
  }
}
.main-sidebar .single-sidebar-widget {
  box-sizing: border-box;
  background: #EFF0F6;
}
.main-sidebar .single-sidebar-widget:last-child {
  margin-bottom: 0;
}

.search_widget form {
  width: 100%;
  position: relative;
}
.search_widget form input {
  width: 100%;
  font-family: "Lato", sans-serif;
  color: #243342;
  padding: 17px 18px;
  background-color: #FFF;
}
.search_widget form input::placeholder {
  color: #243342;
}
.search_widget form button {
  top: 0;
  right: 0;
  width: 56px;
  height: 100%;
  font-size: 20px;
  color: #4069FF;
  text-align: center;
  position: absolute;
  background-color: #E2E9FF;
  transition: all 0.3s ease-in-out;
}
.search_widget form button:hover, .search_widget form button:focus {
  color: #FFF;
  background-color: #4069FF;
}

.widget_categories ul {
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.widget_categories ul li a {
  gap: 30px;
  display: flex;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  background: #FFF;
  color: #0E1E36;
  border-radius: 2px;
  overflow: hidden;
  padding: 18px 22px;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
.widget_categories ul li a i {
  color: #4069FF;
  font-size: 20px;
  font-weight: 400;
}
.widget_categories ul li a:hover, .widget_categories ul li a:focus {
  color: #FFF;
  background-color: #4069FF;
}
.widget_categories ul li a:hover i, .widget_categories ul li a:focus i {
  color: #FFF;
}

.resent-posts .single-post-item {
  z-index: 1;
  overflow: hidden;
  position: relative;
}
.resent-posts .single-post-item::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(14, 30, 54, 0) 0%, #0E1E36 100%);
}
.resent-posts .single-post-item:hover .thumb img, .resent-posts .single-post-item:focus .thumb img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.resent-posts .single-post-item .thumb {
  width: 100%;
  height: 250px;
}
.resent-posts .single-post-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.resent-posts .single-post-item .post-content {
  bottom: 0;
  z-index: 2;
  position: absolute;
  padding: 30px 24px;
}
.resent-posts .single-post-item .post-content .post-date {
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
}
.resent-posts .single-post-item .post-content .post-date i {
  font-size: 15px;
  margin-right: 5px;
}
.resent-posts .single-post-item .post-content .post-date:hover, .resent-posts .single-post-item .post-content .post-date:focus {
  color: #FF9C00;
}
.resent-posts .single-post-item .post-content h6 {
  color: #FFF;
}
.resent-posts .single-post-item .post-content h6:hover, .resent-posts .single-post-item .post-content h6:focus {
  color: #FF9C00;
}
.resent-posts .theme-btn {
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  padding: 15.5px 37.8px;
}
.resent-posts .theme-btn i {
  font-size: 14px;
  margin: 0 10px 0 0;
}

.widget__tags {
  padding-right: 29px;
}

.tags ul {
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
}
.tags ul li a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  color: #4069FF;
  background: #FFF;
  border-radius: 4px;
  padding: 8.5px 20.1px;
}
.tags ul li a:last-child {
  margin-right: 0;
}
.tags ul li a:hover, .tags ul li a:focus {
  color: #FFF;
  background-color: #4069FF;
}

.download-service-doc .theme-btn {
  gap: 10px;
  width: 100%;
  color: #0E1E36;
  background: #FFF;
  margin-bottom: 20px;
  padding: 17.5px 20px;
}
@media (max-width: 575px) {
  .download-service-doc .theme-btn {
    font-size: 14px;
  }
}
.download-service-doc .theme-btn:last-child {
  margin-bottom: 0;
}
.download-service-doc .theme-btn.btn-fdf {
  color: #FFF;
  background: #4069FF;
}
.download-service-doc .theme-btn.btn-fdf i {
  color: #FFF;
}
.download-service-doc .theme-btn img {
  height: auto;
  max-width: 32px;
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #E2E9FF;
}
@media (max-width: 575px) {
  .download-service-doc .theme-btn img {
    margin-right: 10px;
    padding-right: 10px;
  }
}
.download-service-doc .theme-btn i {
  color: #4069FF;
  font-size: 25px;
}
@media (max-width: 575px) {
  .download-service-doc .theme-btn i {
    font-size: 22px;
  }
}

.have-any {
  padding: 0 !important;
  background: transparent !important;
}
.have-any .media {
  height: 400px;
  border-radius: 2px;
}
.have-any .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.have-any__item {
  z-index: 1;
  max-width: 352px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 4px;
  position: relative;
  margin-top: -156px;
  padding: 43.5px 15px;
  background-size: cover;
  border: 15px solid #FFF;
  background-repeat: no-repeat;
}
@media (max-width: 380px) {
  .have-any__item {
    padding: 35px 10px;
    border-width: 10px;
  }
}
.have-any__item:after {
  left: 0;
  top: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 4px;
  background: rgba(8, 19, 7, 0.7);
}
.have-any__item .theme-btn {
  border-radius: 4px;
  padding: 11.5px 22.3px;
}
.have-any__item .theme-btn i {
  font-size: 19px;
}

.team .mb-minus-30 {
  margin-bottom: -30px;
}
.team__content .title a {
  color: #4069FF;
  margin-left: 5px;
  text-decoration: underline;
}
.team__content .title a i {
  margin-left: 5px;
}
.team__content .title a:hover, .team__content .title a:focus {
  color: #FF9C00;
}

.team-item {
  position: relative;
}
.team-item.team-about-item:hover .text, .team-item.team-about-item:focus .text {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.team-item.team-about-item .media {
  height: 360px;
}
.team-item.team-about-item .media:after {
  height: 20px;
}
.team-item.team-about-item .text {
  text-align: left;
  padding-left: 21px;
  padding-right: 21px;
  bottom: 0 !important;
  -webkit-transform: translate(0, 100%);
  -moz-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  -o-transform: translate(0, 100%);
  transform: translate(0, 100%);
  justify-content: space-between !important;
}
.team-item.team-about-item .text .icon {
  width: 50px;
  left: 527px;
  height: 50px;
  color: #4069FF;
  font-size: 13px;
  line-height: 50px;
  text-align: center;
  border-radius: 500px;
  transition: all 0.3s ease;
  background: rgba(64, 105, 255, 0.14);
}
.team-item.team-about-item .icons_team {
  border-radius: 6px;
  position: absolute !important;
  top: 5%;
  left: 5%;
  right: 5%;
  bottom: 5%;
  width: 90%;
  height: 90%;
  background-color: rgba(0, 44, 204, 0.6);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: rotateX(90deg);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.team-item.team-about-item .icons_team h5 {
  color: #FFF;
  margin-bottom: 10px;
}
.team-item.team-about-item .icons_team p {
  color: #FFF;
}
.team-item.team-about-item .icons_team .icon {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-item.team-about-item .icons_team a {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFF;
  margin: 0px 3px;
  border-radius: 999px;
}
.team-item.team-about-item .icons_team a i {
  color: #7892D4;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.team-item.team-about-item .icons_team a:hover {
  background-color: #4069FF;
}
.team-item.team-about-item .icons_team a:hover i {
  color: #FFF;
}
.team-item.team-about-item:hover .icons_team {
  transform: rotateX(0deg);
}
.team-item.team-item-two .media:after {
  height: 20px;
  background: #FF9C00;
}
.team-item.team-item-two .text {
  padding-top: 24px;
  padding-bottom: 24px;
}
.team-item.team-item-two .theme-btn {
  background: #FF9C00;
}
.team-item.team-item-two .theme-btn::after {
  background: #4069FF;
}
.team-item.team-item-two .theme-btn:hover, .team-item.team-item-two .theme-btn:focus {
  background: #FF9C00;
}
.team-item.team-item-three {
  position: relative;
}
.team-item.team-item-three .media {
  position: relative;
}
.team-item.team-item-three .media:after {
  height: 20px;
  background: #EF0548;
}
.team-item.team-item-three .media:before {
  left: 10px;
  top: 10px;
  content: "";
  position: absolute;
  width: calc(100% - 20px);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: calc(100% - 10px);
  background: rgba(4, 33, 63, 0);
}
.team-item.team-item-three .media .social-profile {
  opacity: 0;
  position: absolute;
  top: calc(50% - 15px);
  left: calc(50% - 87.5px);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translate(0, 50%);
  -moz-transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
  -o-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.team-item.team-item-three .media .social-profile ul {
  gap: 5px;
  display: flex;
  flex-wrap: wrap;
}
.team-item.team-item-three .media .social-profile ul li a {
  width: 40px;
  height: 40px;
  display: block;
  font-size: 15px;
  color: #04213F;
  background: #FFF;
  line-height: 40px;
  border-radius: 500px;
}
.team-item.team-item-three .media .social-profile ul li a:hover, .team-item.team-item-three .media .social-profile ul li a:focus {
  color: #FFF;
  background: #EF0548;
}
.team-item.team-item-three .text {
  bottom: 51px;
  padding: 22.5px 0;
  position: inherit;
  bottom: 0 !important;
  background: #ED5F6D;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.team-item.team-item-three .theme-btn {
  margin-top: 0;
  border-radius: 0;
  text-align: center;
  background: #ED5F6D;
}
.team-item.team-item-three .theme-btn::after {
  content: inherit;
}
.team-item.team-item-three .theme-btn i {
  font-size: 12px;
}
.team-item.team-item-three .theme-btn:hover, .team-item.team-item-three .theme-btn:focus {
  background: #EF0548;
}
.team-item.team-item-three:hover .media:before, .team-item.team-item-three:focus .media:before {
  background: rgba(4, 33, 63, 0.5);
}
.team-item.team-item-three:hover .media .social-profile, .team-item.team-item-three:focus .media .social-profile {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.team-item.team-item-three:hover .text, .team-item.team-item-three:focus .text {
  border-color: transparent;
}
@media (max-width: 767px) {
  .team-item {
    max-width: 318px;
    margin-left: auto;
    margin-right: auto;
  }
}
.team-item .media {
  z-index: 1;
  height: 277px;
  overflow: hidden;
  position: relative;
  padding: 10px 10px 0;
}
.team-item .media::after {
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: 10px;
  position: absolute;
  background: #4069FF;
  transition: height 1s;
}
.team-item .media.media_2 {
  padding: 10px;
}
.team-item .media.media_2::before {
  bottom: 0;
  left: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: 20px;
  position: absolute;
  background: #4069FF;
  transition: height 1s;
}
.team-item .media.media_2 img {
  border-radius: 10px;
}
.team-item .media img {
  width: 100%;
  height: 100%;
}
.team-item .text {
  bottom: 0;
  z-index: 2;
  width: 100%;
  padding: 24px 0;
  position: absolute;
  transition: all 0.3s ease;
  background-color: #0E1E36;
}
.team-item .text .position {
  font-size: 15px;
  line-height: 22px;
}
.team-item .theme-btn {
  width: 100%;
  display: flex;
  font-size: 15px;
  margin-top: 49px;
  font-weight: 600;
  line-height: 22px;
  align-items: center;
  padding-top: 14.5px;
  padding-bottom: 14.5px;
  justify-content: center;
}
.team-item .theme-btn i {
  font-size: 20px;
}
.team-item:hover .text, .team-item:focus .text {
  bottom: 51px;
}

.single_card_item {
  border-radius: 10px;
  background-color: #FFF;
}
.single_card_item .card_img {
  overflow: hidden;
  height: 220px;
  width: 100%;
  border-radius: 10px;
}
.single_card_item .card_img img {
  width: 100%;
  height: 100%;
}
.single_card_item .card_content {
  border-bottom: 1px solid rgba(64, 105, 255, 0.2);
  border-left: 1px solid rgba(64, 105, 255, 0.2);
  border-right: 1px solid rgba(64, 105, 255, 0.2);
}
.single_card_item .card_content.card_content_2 {
  border-bottom: 1px solid #FFF5E5;
  border-left: 1px solid #FFF5E5;
  border-right: 1px solid #FFF5E5;
}
.single_card_item .card_content .content {
  padding: 25px;
}
.single_card_item .card_content .content h4 {
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  text-transform: capitalize;
  color: #0E1E36;
  margin-bottom: 10px;
}
.single_card_item .card_content .content p {
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #1B3C54;
}
.single_card_item .card_content button {
  height: 50px;
  width: 100%;
  background: #E2E9FF;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #4069FF;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.single_card_item .card_content button:hover {
  background-color: #4069FF;
  color: #FFF;
}
.single_card_item .card_content button.btn_2 {
  background: #FFF5E5;
  color: #FF9C00;
}
.single_card_item .card_content button.btn_2:hover {
  background-color: #FF9C00;
  color: #FFF;
}

.team-details__media {
  position: relative;
}
@media (min-width: 1200px) {
  .team-details__media {
    padding-right: 16px;
  }
}
.team-details__media .social-profile {
  gap: 30px;
  left: 30px;
  bottom: 88px;
  position: absolute;
}
@media (max-width: 1300px) {
  .team-details__media .social-profile {
    bottom: 40px;
  }
}
@media (max-width: 1199px) {
  .team-details__media .social-profile {
    gap: 20px;
    left: 20px;
    bottom: 30px;
  }
}
@media (max-width: 380px) {
  .team-details__media .social-profile {
    bottom: 20px;
  }
}
.team-details__media .social-profile span {
  color: #4069FF;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  transform-origin: 77px -46px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media (max-width: 1199px) {
  .team-details__media .social-profile span {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.3em;
    transform-origin: 58px -29px;
  }
}
@media (max-width: 450px) {
  .team-details__media .social-profile span {
    font-size: 13px;
    line-height: 16px;
    transform-origin: 43px -23px;
  }
}
@media (max-width: 380px) {
  .team-details__media .social-profile span {
    font-size: 11px;
  }
}
.team-details__media .social-profile ul {
  gap: 10px;
  flex-wrap: wrap;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 380px) {
  .team-details__media .social-profile ul {
    gap: 5px;
  }
}
.team-details__media .social-profile ul li a {
  border: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  display: block;
  font-size: 15px;
  color: #04213F;
  line-height: 41px;
  text-align: center;
  transition: all 0.3s ease;
  background-color: #FFF;
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  -ms-border-radius: 500px;
  border-radius: 500px;
}
@media (max-width: 1199px) {
  .team-details__media .social-profile ul li a {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
}
@media (max-width: 450px) {
  .team-details__media .social-profile ul li a {
    width: 30px;
    height: 30px;
    font-size: 10px;
    line-height: 30px;
  }
}
@media (max-width: 380px) {
  .team-details__media .social-profile ul li a {
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
}
.team-details__media .social-profile ul li a::before {
  content: inherit;
}
.team-details__media .social-profile ul li a:hover, .team-details__media .social-profile ul li a:focus {
  color: #EFF0F6;
  background-color: #4069FF;
  -webkit-transform: translate(5px, 0);
  -moz-transform: translate(5px, 0);
  -ms-transform: translate(5px, 0);
  -o-transform: translate(5px, 0);
  transform: translate(5px, 0);
}
@media (max-width: 991px) {
  .team-details__media img {
    width: 100%;
  }
}
.team-details__content h6 {
  color: #4069FF;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .team-details__content h6 {
    margin-bottom: 10px;
  }
}
.team-details__content h2 {
  color: #0E1E36;
  margin-bottom: 20px;
}
.team-details__content h2 span {
  font-family: "Lato", sans-serif;
  margin-left: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: #243342;
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .team-details__content h2 {
    font-size: 42px;
    line-height: 56px;
  }
}
@media (max-width: 991px) {
  .team-details__content h2 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .team-details__content h2 {
    font-size: 32px;
    line-height: 46px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .team-details__content h2 {
    font-size: 28px;
    line-height: 42px;
  }
}
.team-details__content p {
  font-family: "Lato", sans-serif;
  margin-bottom: 30px;
}
.team-details__content ul {
  margin: 0 0 30px 0;
}
.team-details__content ul li {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: #0E1E36;
  padding-left: 35px;
  position: relative;
  margin-bottom: 15px;
}
.team-details__content ul li:last-child {
  margin-bottom: 0;
}
.team-details__content ul li:after {
  left: 0;
  width: 25px;
  content: "\f00c";
  height: 25px;
  color: #4069FF;
  line-height: 25px;
  font-size: 10px;
  text-align: center;
  position: absolute;
  border-radius: 500px;
  background: #EFF0F6;
  font-family: "Font Awesome 5 Pro";
}
.team-details__content .contact-info ul {
  margin: 0 0 -15px 0;
}
@media (min-width: 576px) {
  .team-details__content .contact-info ul {
    column-count: 2;
    column-gap: 30px;
  }
}
.team-details__content .contact-info ul li {
  padding-left: 0;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  color: #243342;
  line-height: 24px;
}
@media (min-width: 1441px) {
  .team-details__content .contact-info ul li {
    white-space: nowrap;
  }
}
@media (max-width: 1199px) {
  .team-details__content .contact-info ul li {
    font-size: 14px;
    line-height: 22px;
  }
}
.team-details__content .contact-info ul li:after {
  content: inherit;
}
.team-details__content .contact-info ul li span {
  font-weight: 700;
  color: #0E0A01;
  margin-right: 8px;
}
.team-details__content .contact-info ul li a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #243342;
}
@media (max-width: 1199px) {
  .team-details__content .contact-info ul li a {
    font-size: 14px;
    line-height: 22px;
  }
}
.team-details hr {
  height: 1px;
  background-color: #E2E9FF;
}
.team-details__block h3 {
  color: #000;
  margin-bottom: 7px;
}
@media (max-width: 991px) {
  .team-details__block h3 {
    font-size: 30px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .team-details__block h3 {
    font-size: 30px;
    line-height: 42px;
  }
}
@media (max-width: 575px) {
  .team-details__block h3 {
    font-size: 25px;
    line-height: 39px;
  }
}
@media (max-width: 480px) {
  .team-details__block h3 {
    font-size: 24px;
    line-height: 34px;
  }
}
.team-details__block img {
  height: auto;
  max-width: 100%;
  margin-bottom: 30px;
}
.team-details__block p {
  font-family: "Lato", sans-serif;
}
.team-details__block .educational-item {
  gap: 20px;
}
.team-details__block .educational-item__row {
  gap: 30px;
  border-bottom: 1px solid #E2E9FF;
}
.team-details__block .educational-item__row:last-child {
  border: inherit;
  margin-bottom: 0;
  padding-bottom: 0;
}
.team-details__block .educational-item .number {
  width: 66px;
  height: 66px;
  color: #4069FF;
  min-width: 66px;
  line-height: 66px;
  text-align: center;
  border-radius: 500px;
  background: #E2E9FF;
}
.team-details__block .educational-item .number span {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}
.team-details__block .educational-item .text p span {
  color: #4069FF;
}

.can-help ~ .cta-banner {
  z-index: 1;
  position: relative;
}
.can-help ~ .cta-banner:after {
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  content: "";
  position: absolute;
  background: #EFF0F6;
  height: calc(100% - 93px);
}
@media (max-width: 1199px) {
  .can-help ~ .cta-banner:after {
    height: calc(100% - 70px);
  }
}
@media (max-width: 991px) {
  .can-help ~ .cta-banner:after {
    height: calc(100% - 101px);
  }
}
@media (max-width: 767px) {
  .can-help ~ .cta-banner:after {
    height: calc(100% - 90px);
  }
}
@media (max-width: 506px) {
  .can-help ~ .cta-banner:after {
    height: calc(100% - 100px);
  }
}
@media (max-width: 365px) {
  .can-help ~ .cta-banner:after {
    height: calc(100% - 120px);
  }
}
.can-help.services-two {
  z-index: 1;
  position: relative;
  padding-bottom: 370px;
}
.can-help.services-two:after {
  left: -869px;
  z-index: -1;
  content: "";
  bottom: -323px;
  position: absolute;
  width: 2102.51px;
  height: 1068.22px;
  background-size: auto;
  animation: scale 3s linear infinite;
  background-image: url(assets/img/services/services-two-overly.png);
}
@media (max-width: 991px) {
  .can-help.services-two {
    padding-bottom: 320px;
  }
}
@media (max-width: 767px) {
  .can-help.services-two {
    padding-bottom: 250px;
  }
}
.can-help.services-two ~ .cta-banner:after {
  content: inherit;
}
@media (min-width: 1200px) {
  .can-help.services-two .can-help__content .title {
    max-width: 611px;
  }
}
@media (min-width: 1200px) {
  .can-help.services-two .can-help__content .description {
    max-width: 520px;
  }
}
.can-help.can-help-home-3 {
  padding-top: 375px;
}
.can-help.can-help-home-3 .contaner {
  z-index: 1;
  position: relative;
}
.can-help.can-help-home-3:after {
  z-index: -1;
  left: -857px;
  content: "";
  bottom: -283px;
  position: absolute;
  width: 2102.51px;
  height: 1068.22px;
  background-size: auto;
  animation: scale 3s linear infinite;
  background-image: url(assets/img/home-3/can-help-home-3-bg.png);
}
@media (max-width: 1300px) {
  .can-help.can-help-home-3 {
    padding-top: 320px;
  }
}
@media (max-width: 1199px) {
  .can-help.can-help-home-3 {
    padding-top: 240px;
  }
}
@media (max-width: 1199px) {
  .can-help.can-help-home-3 {
    padding-top: 180px;
  }
}
@media (max-width: 767px) {
  .can-help.can-help-home-3 {
    padding-top: 130px;
  }
}
@media (max-width: 480px) {
  .can-help.can-help-home-3 {
    padding-top: 80px;
  }
}
.can-help.can-help-home-3 ~ .cta-banner:after {
  content: inherit;
}
@media (min-width: 1200px) {
  .can-help.can-help-home-3 .can-help__content .title {
    max-width: 611px;
  }
}
@media (min-width: 1200px) {
  .can-help.can-help-home-3 .can-help__content .description {
    max-width: 520px;
  }
}
.can-help.can-help-home-1 {
  z-index: 1;
  position: relative;
}
.can-help.can-help-home-1 .can-help-background {
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  position: absolute;
  background-size: cover;
  height: calc(100% - 240px);
  background-position: center;
  background-repeat: no-repeat;
}
.can-help.can-help-home-1 .can-help-background:after {
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
  content: "";
  position: absolute;
  background: rgba(4, 33, 63, 0.8);
}
@media (min-width: 1200px) {
  .can-help.can-help-home-1 .can-help__content .title {
    max-width: 614px;
  }
}
@media (min-width: 1200px) {
  .can-help.can-help-home-1 .can-help__content .description {
    max-width: 550px;
  }
}
.can-help.can-help-home-1 .can-help__content .theme-btn:hover .color-white, .can-help.can-help-home-1 .can-help__content .theme-btn:focus .color-white {
  color: #EF0548 !important;
}
.can-help.can-help-home-1 .contact-form {
  box-shadow: 0px 10px 30px rgba(4, 33, 63, 0.05);
}
@media (min-width: 1200px) {
  .can-help__content {
    max-width: 696px;
  }
}
@media (max-width: 1199px) {
  .can-help__content .title {
    font-size: 42px;
    line-height: 56px;
  }
}
@media (max-width: 991px) {
  .can-help__content .title {
    font-size: 36px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .can-help__content .title {
    font-size: 32px;
    line-height: 46px;
  }
}
@media (max-width: 575px) {
  .can-help__content .title {
    font-size: 28px;
    line-height: 38px;
  }
}
@media (min-width: 1200px) {
  .can-help__content .description {
    max-width: 666px;
  }
}
.can-help__content .help-text a {
  display: block;
  color: #4069FF;
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
}
@media (max-width: 991px) {
  .can-help__content .help-text a {
    font-size: 18px;
    line-height: 24px;
  }
}
.can-help__content .help-text a span {
  font-weight: 400;
}
.can-help__content .help-text a:hover, .can-help__content .help-text a:focus {
  color: #FF9C00;
}
.can-help__content-btn-group {
  gap: 30px;
}
.can-help__content-btn-group .theme-btn {
  gap: 15px;
  width: 100%;
  border-radius: 4px;
  padding: 20.5px 22px;
  background: transparent;
  border: 1.5px solid rgba(64, 105, 255, 0.3);
}
.can-help__content-btn-group .theme-btn:after {
  content: inherit;
}
.can-help__content-btn-group .theme-btn .icon {
  color: #4069FF;
}
.can-help__content-btn-group .theme-btn .icon i {
  margin: 0;
  font-size: 50px;
}
.can-help__content-btn-group .theme-btn .text span {
  font-size: 15px;
  line-height: 20px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.can-help__content-btn-group .theme-btn .text h5 {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.can-help__content-btn-group .theme-btn:hover .text span, .can-help__content-btn-group .theme-btn:hover .text h5, .can-help__content-btn-group .theme-btn:focus .text span, .can-help__content-btn-group .theme-btn:focus .text h5 {
  color: #4069FF !important;
}
.can-help .contact-form {
  background: #FFF;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.can-help .contact-form__header .sub-title {
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 991px) {
  .can-help .contact-form__header .title {
    font-size: 30px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .can-help .contact-form__header .title {
    font-size: 30px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .can-help .contact-form__header .title {
    font-size: 26px;
    line-height: 38px;
  }
}
.can-help .contact-form .single-personal-info {
  margin-bottom: 20px;
}
.can-help .contact-form input, .can-help .contact-form textarea {
  width: 100%;
  outline: none;
  font-size: 15px;
  font-family: "Lato", sans-serif;
  max-width: 100%;
  font-weight: 400;
  line-height: 26px;
  border-radius: 4px;
  padding: 10.5px 20px;
  background-color: #FFF;
  box-sizing: border-box;
  border: 1.5px solid rgba(14, 30, 54, 0.2);
}
.can-help .contact-form input::placeholder, .can-help .contact-form textarea::placeholder {
  color: #243342;
  font-size: 15px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  line-height: 26px;
}
.can-help .contact-form textarea {
  resize: none;
  height: 120px;
}
.can-help .contact-form .theme-btn {
  margin-top: -8px;
}

.progress-bar__wrapper .single-progress-bar {
  position: relative;
}
.progress-bar__wrapper .single-progress-bar:last-child {
  margin-bottom: 0;
}
.progress-bar__wrapper .single-progress-bar .progress {
  height: 10px;
  border-radius: 30px;
}
.progress-bar__wrapper .single-progress-bar .progress-bar {
  width: 0;
  border-radius: 30px;
  animation: progress 1.5s ease-in-out forwards;
}
.progress-bar__wrapper .single-progress-bar .progress-bar .placeholder {
  z-index: 1;
  width: 40px;
  height: 40px;
  bottom: 6px;
  color: #4069FF;
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  margin-left: -40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(assets/img/team-details/comment.png);
  opacity: 0;
  animation: show 0.35s forwards ease-in-out 0.5s;
}
.progress-bar__wrapper .single-progress-bar .progress-bar .placeholder:after {
  top: 4px;
  right: 2px;
  z-index: -1;
  width: 36px;
  height: 20px;
  content: "";
  background: #FFF;
  position: absolute;
  border-radius: 7px;
}

.can-help-overly .container {
  z-index: 1;
  position: relative;
}
.can-help-overly .container:after {
  z-index: -1;
  content: "";
  top: 266px;
  left: -928px;
  height: 1117px;
  width: 2552.29px;
  position: absolute;
  background-size: auto;
  background-image: url(assets/img/home/can-overly-home.png);
}

.our-team-home-1 .container:after {
  content: inherit;
}

.our-portfolio-home {
  z-index: 1;
  position: relative;
}
.our-portfolio-home:after {
  z-index: -1;
  top: -190px;
  left: -497px;
  content: "";
  height: 702px;
  opacity: 0.4;
  width: 2479.27px;
  position: absolute;
  background-size: auto;
  background-image: url(assets/img/home/our-portfolio-home-overly.png);
}
.our-portfolio-home .mb-minus-30 {
  margin-bottom: -30px;
}
@media (max-width: 1199px) {
  .our-portfolio-home__content .title {
    font-size: 42px;
    line-height: 56px;
  }
}
@media (max-width: 991px) {
  .our-portfolio-home__content .title {
    font-size: 36px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .our-portfolio-home__content .title {
    font-size: 32px;
    line-height: 46px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .our-portfolio-home__content .title {
    font-size: 28px;
    line-height: 42px;
  }
}
.our-portfolio-home__item {
  box-shadow: 0px 10px 30px rgba(4, 33, 63, 0.05);
}
.our-portfolio-home__item .featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.our-portfolio-home__item .content .left {
  padding: 25.5px 30px;
}
.our-portfolio-home__item .content .left .post-author a {
  color: #EF0548;
  font-size: 12px;
  line-height: 18px;
}
.our-portfolio-home__item .content .btn-link-share .theme-btn {
  gap: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 17px 30.5px;
  background: #F8DDE4;
  flex-direction: column;
  background-size: cover;
  justify-content: center;
  background-repeat: no-repeat;
}
.our-portfolio-home__item .content .btn-link-share .theme-btn:hover, .our-portfolio-home__item .content .btn-link-share .theme-btn:focus {
  background-color: #EF0548;
  color: #FFF !important;
  background-image: url(assets/img/home/theme-btn-overly-hover.png) !important;
}
.our-portfolio-home__item .content .btn-link-share .theme-btn i {
  margin: 0;
  font-size: 19px;
}
.our-portfolio-home__item:hover .featured-thumb img, .our-portfolio-home__item:focus .featured-thumb img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.our-portfolio-home .theme-btn:after {
  content: inherit;
}

.planning-success {
  z-index: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.planning-success:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  position: absolute;
  background-color: rgba(4, 33, 63, 0.8);
}
.planning-success__content {
  max-width: 635px;
}
@media (max-width: 1199px) {
  .planning-success__content .title {
    font-size: 42px;
    line-height: 56px;
  }
}
@media (max-width: 991px) {
  .planning-success__content .title {
    font-size: 36px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .planning-success__content .title {
    font-size: 32px;
    line-height: 46px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .planning-success__content .title {
    font-size: 28px;
    line-height: 42px;
  }
}
.planning-success__video {
  position: relative;
}
.planning-success__video:after {
  padding: 0;
  width: 250px;
  z-index: -2;
  left: 25px;
  top: -306px;
  content: "";
  height: 687px;
  position: absolute;
  transform: rotate(-13.13deg);
  background: rgba(255, 255, 255, 0.5);
}
@media (max-width: 575px) {
  .planning-success__video:after {
    content: inherit;
  }
}
.planning-success__video .popup-video {
  width: 80px;
  height: 80px;
  display: flex;
  line-height: 80px;
  text-align: center;
  align-items: center;
  background: #FFF;
  border-radius: 500px;
  justify-content: center;
  box-shadow: 0 0 0px 20px rgba(255, 255, 255, 0.1);
  animation: playVideo5 3s linear infinite;
}
.planning-success__video .popup-video i {
  margin: 0;
  font-size: 27px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #EF0548 !important;
}
.planning-success__video .popup-video i:hover {
  background: transparent;
  -webkit-transform: scale(1.4);
  -moz-transform: scale(1.4);
  -ms-transform: scale(1.4);
  -o-transform: scale(1.4);
  transform: scale(1.4);
}
@media (max-width: 767px) {
  .planning-success__video .popup-video {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

.financial .mb-minus-30 {
  margin-bottom: -30px;
}
.financial__item {
  gap: 30px;
  background-size: cover;
  padding: 38.5px 30px 38.5px;
  background-repeat: no-repeat;
  box-shadow: 0px 10px 30px rgba(4, 33, 63, 0.05);
}
.financial__item .icon {
  font-size: 45px;
}
.financial__item .icon img {
  width: 50px;
  height: 50px;
  min-width: 50px;
}

.our-company-financial .overly .container {
  z-index: 1;
  position: relative;
}
.our-company-financial .overly .container:after {
  top: 259px;
  content: "";
  z-index: -1;
  left: -450px;
  height: 738px;
  width: 2314.14px;
  position: absolute;
  background-size: auto;
  background-repeat: no-repeat;
  background-image: url(assets/img/home/our-company-financial-overly.svg);
}
.our-company-financial .our-company .container:after {
  content: inherit;
}

.work-process .mb-minus-30 {
  margin-bottom: -30px;
}
.work-process.work-process-home {
  padding-top: 220px;
}
@media (max-width: 1199px) {
  .work-process.work-process-home {
    padding-top: 210px;
  }
}
@media (max-width: 991px) {
  .work-process.work-process-home {
    padding-top: 290px;
  }
}
@media (max-width: 575px) {
  .work-process.work-process-home {
    padding-top: 260px;
  }
}
.work-process.work-process-home .container:after {
  content: inherit;
}
.work-process .container {
  z-index: 1;
  position: relative;
}
.work-process .container:after {
  top: 64px;
  left: 35px;
  z-index: -1;
  content: "";
  width: 1200px;
  height: 411.79px;
  position: absolute;
  background-image: url(assets/img/home-2/work-process-bg.png);
}
.work-process .no_bullet .work-process__item-two:after {
  content: inherit;
}
.work-process__item {
  height: calc(100% - 70px);
}
.work-process__item.work-process__item-two {
  height: inherit;
  position: relative;
}
.work-process__item.work-process__item-two:after {
  right: -22px;
  color: #EF0548;
  font-size: 18px;
  content: "\f178";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  top: calc(50% - 13px);
}
.work-process__item.work-process__item-two .icon {
  width: 100px;
  height: 100px;
  background: #EF0548;
  position: inherit;
  margin-bottom: 0;
  line-height: 100px;
}
.work-process__item.work-process__item-two .text {
  padding: 40px 30px;
}
.work-process__item.work-process__item-two .theme-btn {
  margin-top: 0;
  background: #F8DDE4;
  width: calc(100% - 100px);
}
.work-process__item.work-process__item-two .theme-btn:hover, .work-process__item.work-process__item-two .theme-btn:focus {
  background: #F8DDE4;
}
.work-process__item .icon {
  width: 80px;
  height: 80px;
  color: #FFF;
  font-size: 50px;
  line-height: 80px;
  position: relative;
  background: #FF9C00;
  margin-bottom: -60px;
}
.work-process__item .text {
  height: 100%;
  background: #FFF;
  padding: 100px 28px 20px 28px;
  box-shadow: 0px 4px 25px rgba(14, 10, 1, 0.05);
}
.work-process__item .theme-btn {
  display: block;
  margin-top: -20px;
  margin-left: auto;
  margin-right: auto;
}
.work-process__item .theme-btn::after {
  content: inherit;
}
.work-process__item .theme-btn:hover, .work-process__item .theme-btn:focus {
  cursor: inherit;
  background: #0E0A01;
}

.our-team.our-team-home-2 {
  z-index: 1;
  position: relative;
}
.our-team.our-team-home-2:after {
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  z-index: -1;
  height: 100%;
  position: absolute;
  mix-blend-mode: screen;
  background-size: cover;
  background-position: center;
  background-image: url(assets/img/home-2/our-member-bg.png);
}
.our-team.our-team-home-2 .container:after {
  content: inherit;
}
.our-team.our-porfolio {
  z-index: 1;
  position: relative;
}
.our-team.our-porfolio:after {
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 638px;
  overflow: hidden;
  position: absolute;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #F3F3F2;
  background-image: url(assets/img/portfolio/our-portfolio-bg.png);
}
@media (max-width: 991px) {
  .our-team.our-porfolio:after {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .our-team.our-porfolio:after {
    height: 400px;
  }
}
@media (max-width: 575px) {
  .our-team.our-porfolio:after {
    height: 350px;
  }
}
.our-team.our-porfolio .container:after {
  content: inherit;
}
.our-team.our-porfolio .our-team__content {
  max-width: 737px;
}
.our-team.our-porfolio .our-project__item {
  height: 489px;
}
@media (max-width: 1199px) {
  .our-team.our-porfolio .our-project__item {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .our-team.our-porfolio .our-project__item {
    height: 360px;
  }
}
.our-team.our-porfolio .our-project__item .content {
  bottom: 0;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.our-team.our-porfolio .our-project__item .content .theme-btn {
  background: #FFF5E6;
}
.our-team.our-porfolio .our-project__item .content .theme-btn::after {
  background: #4069FF;
}
.our-team.our-porfolio .our-project__item .content .theme-btn i {
  width: 50px;
  height: 50px;
  font-size: 12px;
  color: #FF9C00;
  line-height: 50px;
  text-align: center;
  border-radius: 500px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(255, 156, 0, 0.1);
}
.our-team.our-porfolio .our-project__item .content .theme-btn:hover i, .our-team.our-porfolio .our-project__item .content .theme-btn:focus i {
  color: #FFF;
  background: #FF9C00;
}

.circle-chart__wrapper {
  gap: 15px;
  max-width: 516px;
}
.circle-chart__item .chart-wrapper {
  gap: 20px;
  width: 100%;
  height: 100%;
  width: 80px;
  height: 80px;
  color: #000;
  font-size: 18px;
  min-width: 80px;
  position: relative;
  text-align: center;
  line-height: 80px;
  font-family: "Poppins", sans-serif;
}
.circle-chart__item .title {
  max-width: 117px;
  margin-left: 20px;
}
.circle-chart__item canvas {
  top: 0;
  left: 0;
  position: absolute;
  width: 100% !important;
  height: 100% !important;
}

@media (min-width: 992px) {
  .about-us__content {
    max-width: 606px;
  }
}
@media (min-width: 992px) {
  .about-us__content .description {
    max-width: 570px;
  }
}
@media (max-width: 1199px) {
  .about-us__content .title:not(h6) {
    font-size: 42px;
    line-height: 56px;
  }
}
@media (max-width: 991px) {
  .about-us__content .title:not(h6) {
    font-size: 36px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .about-us__content .title:not(h6) {
    font-size: 32px;
    line-height: 46px;
  }
}
@media (max-width: 575px) {
  .about-us__content .title:not(h6) {
    font-size: 28px;
    line-height: 42px;
  }
}
.about-us__content .title:not(h6) span {
  font-weight: 300;
}
.about-us__media {
  max-width: 666px;
  margin-left: auto;
  position: relative;
  margin-right: auto;
  margin-bottom: 180px;
}
@media (max-width: 1399px) {
  .about-us__media {
    margin-bottom: 170px;
  }
}
@media (max-width: 550px) {
  .about-us__media {
    margin-bottom: 150px;
  }
}

.expert-team {
  right: 0;
  z-index: 1;
  overflow: hidden;
  max-width: 202px;
  position: absolute;
  padding: 40px 18px;
  background-repeat: no-repeat;
}
@media (max-width: 1399px) {
  .expert-team {
    padding: 30px 10px;
  }
}
@media (max-width: 550px) {
  .expert-team {
    padding: 25px 10px;
  }
}
.expert-team-one {
  animation: move-bottom 3s linear infinite;
}
.expert-team-two {
  left: 0;
  bottom: -126px;
  max-width: 318px;
  padding: 77px 45px;
  border-radius: 50px 0px 0px 50px;
}
@media (max-width: 1399px) {
  .expert-team-two {
    bottom: -60px;
    max-width: 270px;
    padding: 50px 10px;
  }
}
@media (max-width: 550px) {
  .expert-team-two {
    max-width: 240px;
    padding: 30px 10px;
  }
}
@media (max-width: 480px) {
  .expert-team-two {
    max-width: 150px;
    padding: 28px 10px;
  }
}
.expert-team-two:after {
  background: rgba(14, 10, 1, 0.8) !important;
}
.expert-team-three {
  z-index: -1;
  bottom: -180px;
  max-width: 318px;
  padding: 51px 75px 30px;
  border-radius: 0px 0px 50px 50px;
}
@media (max-width: 1399px) {
  .expert-team-three {
    max-width: 279px;
    bottom: -170px;
    padding: 50px 35px;
  }
}
@media (max-width: 550px) {
  .expert-team-three {
    bottom: -150px;
    max-width: 240px;
    padding: 30px 20px;
  }
}
@media (max-width: 480px) {
  .expert-team-three {
    max-width: 150px;
    padding: 28px 10px;
  }
}
.expert-team-three:after {
  background: rgba(14, 10, 1, 0.8) !important;
}
.expert-team:after {
  top: 0;
  left: 0;
  content: "";
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(255, 156, 0, 0.9);
}
.expert-team .number {
  font-size: 48px;
  line-height: 58px;
}
@media (max-width: 1399px) {
  .expert-team .number {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 1399px) {
  .expert-team .number {
    font-size: 35px;
  }
}
@media (max-width: 480px) {
  .expert-team .number {
    font-size: 25px;
  }
}
.expert-team .title {
  max-width: 168px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .expert-team .title {
    font-size: 14px;
    max-width: 138px;
  }
}

.global-country {
  z-index: 9999999999;
}

.blog-news {
  background-position: 41% 75%;
}
.blog-news .mb-minus-30 {
  margin-bottom: -30px;
}
@media (max-width: 1199px) {
  .blog-news__content .title {
    font-size: 42px;
    line-height: 56px;
  }
}
@media (max-width: 991px) {
  .blog-news__content .title {
    font-size: 36px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .blog-news__content .title {
    font-size: 32px;
    line-height: 46px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .blog-news__content .title {
    font-size: 28px;
    line-height: 42px;
  }
}
.blog-news__content .title span {
  font-weight: 300;
}

.delivery {
  z-index: 2;
  position: relative;
  margin-bottom: -255px;
}
@media (max-width: 1300px) {
  .delivery {
    margin-bottom: -230px;
  }
}
@media (max-width: 1199px) {
  .delivery {
    margin-bottom: -200px;
  }
}
@media (max-width: 991px) {
  .delivery {
    margin-bottom: -140px;
  }
}
@media (max-width: 767px) {
  .delivery {
    margin-bottom: -100px;
  }
}
@media (max-width: 480px) {
  .delivery {
    margin-bottom: -50px;
  }
}
.delivery__content {
  max-width: 617px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1199px) {
  .delivery__content .title {
    font-size: 42px;
    line-height: 56px;
  }
}
@media (max-width: 991px) {
  .delivery__content .title {
    font-size: 36px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .delivery__content .title {
    font-size: 32px;
    line-height: 46px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .delivery__content .title {
    font-size: 28px;
    line-height: 42px;
  }
}
.delivery__content .title span {
  font-weight: 300;
}
.delivery__media {
  position: relative;
}
.delivery__media-theme-btn-wrapper {
  bottom: 60px;
  z-index: 1;
  position: absolute;
  left: calc(50% - 50px);
}
@media (max-width: 991px) {
  .delivery__media-theme-btn-wrapper {
    bottom: 20px;
    left: calc(50% - 35px);
  }
}
@media (max-width: 575px) {
  .delivery__media-theme-btn-wrapper {
    bottom: 10px;
    left: calc(50% - 25px);
  }
}
.delivery__media-theme-btn-wrapper:after {
  z-index: -1;
  content: "";
  width: 433px;
  height: 433px;
  bottom: -380px;
  position: absolute;
  border-radius: 500px;
  left: calc(50% - 216px);
  background: rgba(64, 105, 255, 0.9);
}
@media (max-width: 575px) {
  .delivery__media-theme-btn-wrapper:after {
    width: 300px;
    height: 300px;
    bottom: -280px;
    left: calc(50% - 150px);
  }
}
.delivery__media-theme-btn-wrapper .popup-video {
  width: 85.71px;
  height: 85.71px;
  display: flex;
  color: #4069FF;
  font-size: 27px;
  line-height: 85px;
  display: block;
  text-align: center;
  background: #FFF;
  position: relative;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  animation: playscale 3s linear infinite;
}
@media (max-width: 991px) {
  .delivery__media-theme-btn-wrapper .popup-video {
    width: 60px;
    height: 60px;
    font-size: 22px;
    line-height: 60px;
  }
}
@media (max-width: 575px) {
  .delivery__media-theme-btn-wrapper .popup-video {
    width: 40px;
    height: 40px;
    font-size: 15px;
    line-height: 40px;
  }
}
@media (max-width: 575px) {
  .delivery__media-theme-btn-wrapper .popup-video img {
    max-width: 11px;
  }
}
.delivery__media-theme-btn-wrapper .popup-video:after {
  content: "";
  z-index: 1;
  top: -5px;
  width: 100px;
  height: 100px;
  position: absolute;
  border-radius: 500px;
  left: calc(50% - 50px);
  border: 1px solid #FFF;
}
@media (max-width: 991px) {
  .delivery__media-theme-btn-wrapper .popup-video:after {
    top: -5px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    left: calc(50% - 35px);
  }
}
@media (max-width: 575px) {
  .delivery__media-theme-btn-wrapper .popup-video:after {
    width: 50px;
    height: 50px;
    line-height: 50px;
    left: calc(50% - 25px);
  }
}
.delivery__media-theme-btn-wrapper-1:after {
  display: none;
}
.delivery__wrapper {
  z-index: 1;
  position: relative;
}
.delivery__wrapper:before {
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  background: rgba(64, 105, 255, 0.7);
  -webkit-transition: all all 0.3s ease ease-in-out;
  -moz-transition: all all 0.3s ease ease-in-out;
  -ms-transition: all all 0.3s ease ease-in-out;
  -o-transition: all all 0.3s ease ease-in-out;
  transition: all all 0.3s ease ease-in-out;
}

.company-skill-home-3 .container:after {
  content: inherit;
}
.company-skill-home-3 .popup-video {
  top: 17px;
  width: 85px;
  z-index: 1;
  left: 307px;
  height: 85px;
  display: flex;
  color: #4069FF;
  font-size: 27px;
  line-height: 85px;
  position: absolute;
  text-align: center;
  background: #FFF;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  box-shadow: 0 0 0px 17px #4069FF;
  animation: playVideo3 3s linear infinite;
}
@media (max-width: 1299px) {
  .company-skill-home-3 .popup-video {
    left: 235px;
  }
}
@media (max-width: 1199px) {
  .company-skill-home-3 .popup-video {
    left: 185px;
    width: 70px;
    height: 70px;
    font-size: 22px;
    line-height: 70px;
  }
}
@media (max-width: 991px) {
  .company-skill-home-3 .popup-video {
    left: 44%;
  }
}

.competitive-edge {
  margin-top: -130px;
}
.competitive-edge.competitive-edge_2 {
  margin-top: -100px;
}
@media (max-width: 1399px) {
  .competitive-edge {
    margin-top: -85px;
  }
}
.competitive-edge .mb-minus-30 {
  margin-bottom: -30px;
}
.competitive-edge__item {
  gap: 20px;
  margin-bottom: 30px;
  background: #F1F2F7;
  padding: 32.5px 10px 34px 30px;
  border: 1px solid rgba(64, 105, 255, 0.2);
}
@media (max-width: 480px) {
  .competitive-edge__item {
    flex-direction: column;
    align-items: start !important;
    padding: 25px;
  }
}
.competitive-edge__item.competitive-edge__item_2 {
  border: none;
  position: relative;
  padding: 35px;
  border-radius: 4px;
  z-index: 1;
}
.competitive-edge__item.competitive-edge__item_2 .icon {
  padding: 20px;
  border: 2px solid #E2E9FF;
  border-radius: 4px;
}
.competitive-edge__item.competitive-edge__item_2::after {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0%;
  height: 100%;
  width: 100%;
  content: "";
  clear: both;
  display: flex;
  background: linear-gradient(270deg, rgba(64, 105, 255, 0.96) 0%, rgba(64, 105, 255, 0.7) 190.8%);
  border-radius: 6px;
}
.competitive-edge__item-video {
  gap: 10px;
  border: none;
  padding: 33px 45px 39px 34px;
  background: linear-gradient(106.81deg, #4069FF 0%, #0125A9 100%);
}
@media (max-width: 480px) {
  .competitive-edge__item-video {
    padding: 25px 30px 25px 25px;
    align-items: inherit !important;
  }
}
.competitive-edge__item-video .left {
  max-width: 284px;
}
.competitive-edge__item-video .arrow-right {
  gap: 10px;
}
.competitive-edge__item-video .arrow-right span {
  color: #FFF;
  font-size: 15px;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  line-height: 26px;
}
.competitive-edge__item-video .arrow-right span i {
  width: auto;
  height: auto;
  color: #FFF;
  min-width: auto;
  margin-left: 15px;
  display: inline-block;
  background: transparent !important;
}
.competitive-edge__item-video .arrow-right span img {
  margin-left: 15px;
}
.competitive-edge__item-video .arrow-right .popup-video {
  width: 50px;
  height: 50px;
  display: flex;
  line-height: 50px;
  text-align: center;
  align-items: center;
  background: #FFF;
  border-radius: 500px;
  justify-content: center;
  box-shadow: 0 0 0px 10px rgba(64, 105, 255, 0.2);
  animation: playVideo4 3s linear infinite;
}
.competitive-edge__item-video .arrow-right .popup-video i {
  margin: 0;
  font-size: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #4069FF !important;
}
.competitive-edge__item-video .arrow-right .popup-video i:hover {
  background: transparent;
  -webkit-transform: scale(1.4);
  -moz-transform: scale(1.4);
  -ms-transform: scale(1.4);
  -o-transform: scale(1.4);
  transform: scale(1.4);
}
@media (max-width: 575px) {
  .competitive-edge__item-video .arrow-right .popup-video {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
.competitive-edge__item .left {
  gap: 20px;
}
.competitive-edge__item .icon {
  font-size: 50px;
}
.competitive-edge__item .arrow-right i {
  width: 50px;
  height: 50px;
  color: #4069FF;
  font-size: 12px;
  min-width: 50px;
  display: block;
  text-align: center;
  line-height: 50px;
  border-radius: 500px;
  background: rgba(64, 105, 255, 0.14);
}
.competitive-edge__item .arrow-right i:hover, .competitive-edge__item .arrow-right i:focus {
  color: #FFF;
  background: #4069FF;
}

/**competitive-edge**/
.fauture__element {
  padding: 100px;
}
@media (max-width: 1200px) {
  .fauture__element {
    padding: 40px;
  }
}
@media (max-width: 500px) {
  .fauture__element {
    padding: 20px;
  }
}
.fauture__element .fauture__widget {
  background-color: #FFF;
  padding: 6px;
  display: flex;
  align-items: center;
}
.fauture__element .fauture__widget .fauture__icons {
  background: #FFF5E6;
  padding: 15px;
}
.fauture__element .fauture__widget .fauture__icons .icon {
  padding-bottom: 15px;
  border-bottom: 1px solid #F0E8D7;
}
.fauture__element .fauture__widget .fauture__icons .icon i {
  font-size: 45px;
  color: #FF9C00 !important;
}
.fauture__element .fauture__widget .fauture__icons h4 {
  padding-top: 15px !important;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 60px;
  color: #F0E8D7;
}
.fauture__element .fauture__widget .fauture__content {
  padding-left: 20px;
}
.fauture__element .fauture__widget .fauture__content h4 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #0E1E36;
  margin-bottom: 10px;
}
.fauture__element .staff__widget {
  text-align: center;
  background-color: #FF9C00;
  padding: 20px 0px;
}
.fauture__element .staff__widget span {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #FFF;
}
.fauture__element .staff__widget span a {
  text-decoration: underline;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #FFF;
  margin-left: 10px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.fauture__element .staff__widget span a:hover {
  color: #04213F;
}

/**team-wrapper start**/
.single_team_widget {
  text-align: center;
  border-radius: 6px;
  padding: 40px 10px;
  background-color: #fff;
}
.single_team_widget .man_img img {
  height: 150px;
  width: auto;
  border-radius: 50%;
}
.single_team_widget .author_name {
  margin-top: 30px;
}
.single_team_widget .author_name h4 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 5px;
}
.single_team_widget .author_name p {
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  color: #1B3C54;
}
.single_team_widget .social_link {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.single_team_widget .social_link ul li {
  float: left;
  display: block;
}
.single_team_widget .social_link ul li a {
  margin: 0px 3px;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FF9C00;
  font-size: 15px;
  line-height: 32px;
  border-radius: 50%;
  background: rgba(255, 156, 0, 0.1);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.single_team_widget .social_link ul li a:hover {
  background: #FF9C00;
  color: #FFF;
}

/**Our Testimonials**/
.slingle_agent .agent_author {
  margin-right: 30px;
}
.slingle_agent .agent_author .author {
  height: 120px;
  width: 120px;
}
.slingle_agent .agent_author .author img {
  height: 120px;
}
.slingle_agent .agent_author .quote {
  text-align: center;
  margin-top: -20px;
}
.slingle_agent .agent_author .quote i {
  font-size: 30px;
  line-height: 45px;
  color: #FF9C00;
}
.slingle_agent .agent_author .company_logo img {
  text-align: center !important;
  width: auto;
  height: auto;
}
.slingle_agent .agent_content h4 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
  color: #0E1E36;
  margin-bottom: 5px;
}
.slingle_agent .agent_content h5 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: #FF9C00;
  margin-bottom: 15px;
}

.slick-dots {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
@media (max-width: 1199px) {
  .slick-dots {
    bottom: 30px;
  }
}
.slick-dots li {
  margin: 3px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: relative;
  flex-direction: row;
  border-radius: 500px;
  background: transparent;
  border: 2px solid #FF9C00;
}
@media (max-width: 1199px) {
  .slick-dots li {
    width: 16px;
    height: 16px;
  }
}
.slick-dots li.slick-active:after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.slick-dots li:after {
  content: "";
  width: 8px;
  height: 8px;
  line-height: 20px;
  position: absolute;
  background: #FF9C00;
  left: calc(50% - 4px);
  border-radius: 500px;
  top: calc(50% - 4px);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
@media (max-width: 1199px) {
  .slick-dots li:after {
    width: 6px;
    height: 6px;
    top: calc(50% - 3px);
    left: calc(50% - 3px);
  }
}
.slick-dots li button {
  display: none;
}

/**Our Blog start**/
.blog_wrapper {
  position: relative;
  z-index: -1;
}
.blog_wrapper::after {
  z-index: -1;
  content: "";
  width: 100%;
  height: 50%;
  background-image: url(assets/img/home-5/bg_04.png);
  background-position: 0 0;
  top: 0;
  left: 0;
  position: absolute;
  display: inline-block;
}
.blog_wrapper .single_blog {
  padding: 30px;
  background-color: #fff;
  box-shadow: 0px 2px 32px rgba(14, 10, 1, 0.05);
}
.blog_wrapper .single_blog .author_info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.blog_wrapper .single_blog .author_info .author_con {
  margin-left: 20px;
}
.blog_wrapper .single_blog .author_info .author_con li {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  text-transform: uppercase;
  color: #1B3C54;
  margin: 5px 0px;
}
.blog_wrapper .single_blog .author_info .author_con li i {
  color: #FF9C00;
  margin-right: 10px;
}
.blog_wrapper .single_blog h4 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  text-transform: capitalize;
  color: #0E0A01;
  margin-bottom: 10px;
}
.blog_wrapper .single_blog p {
  color: #243342;
}
.blog_wrapper .single_blog .theme-btn.btn-transparent::after {
  background: #FF9C00 !important;
}
.blog_wrapper .single_blog .theme-btn.btn-transparent:hover {
  color: #FFF;
  border: 1px solid #FF9C00;
}

/**portfolio_wrapper  start**/
.portfolio_wrapper {
  margin-bottom: -100px;
  z-index: 5;
}

.single_portfolio {
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.single_portfolio .single_img {
  overflow: hidden;
  position: relative;
}
.single_portfolio .single_img .cta_btn a {
  position: absolute;
  margin-top: -21%;
  left: -45%;
  bottom: 0%;
  padding: 20px;
  background: #FF9C00;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
  z-index: 1;
  color: #FFFFFF;
}
.single_portfolio .single_img .cta_btn a i {
  margin-left: 15px;
}
@media (max-width: 900px) {
  .single_portfolio .single_img .cta_btn a {
    padding: 10px 20px;
  }
}
.single_portfolio .single_img img {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 100%;
}
.single_portfolio .content h5 {
  margin-top: 30px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  text-transform: uppercase;
  color: #FF9C00;
  margin-bottom: 10px;
}
.single_portfolio .content h3 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  color: #0E0A01;
  position: relative;
  padding-bottom: 20px;
}
.single_portfolio .content h3::after {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 1;
  content: "";
  clear: both;
  height: 3px;
  width: 60%;
  background-color: #FF9C00;
  bottom: 0;
  left: 0;
  position: absolute;
}
.single_portfolio:hover img {
  transform: scale(1.2);
}
.single_portfolio:hover a {
  left: 0% !important;
}
.single_portfolio:hover h3::after {
  width: 30%;
}

/**fun-fact_wrapper start**/
.fun-fact_wrapper {
  position: relative;
  z-index: -1;
  padding-top: 200px;
  z-index: 1;
  position: relative;
}
.fun-fact_wrapper:before {
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  -webkit-transition: all all 0.3s ease ease-in-out;
  -moz-transition: all all 0.3s ease ease-in-out;
  -ms-transition: all all 0.3s ease ease-in-out;
  -o-transition: all all 0.3s ease ease-in-out;
  transition: all all 0.3s ease ease-in-out;
}
.error__content .text h1 {
  font-size: 48px;
  line-height: 60px;
}
@media (max-width: 991px) {
  .error__content .text h1 {
    font-size: 40px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .error__content .text h1 {
    font-size: 30px;
    line-height: 42px;
  }
}
@media (max-width: 575px) {
  .error__content .text h1 {
    font-size: 28px;
    line-height: 40px;
  }
}
.error__content .text .description {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.error__content .text .theme-btn:hover, .error__content .text .theme-btn:focus {
  background: #4069FF;
}

.cta-banner {
  margin-bottom: -93px;
}
@media (max-width: 1199px) {
  .cta-banner {
    margin-bottom: -70px;
  }
}
@media (max-width: 991px) {
  .cta-banner {
    margin-bottom: -110px;
  }
}
@media (max-width: 767px) {
  .cta-banner {
    margin-bottom: -90px;
  }
}
@media (max-width: 506px) {
  .cta-banner {
    margin-bottom: -100px;
  }
}
@media (max-width: 365px) {
  .cta-banner {
    margin-bottom: -120px;
  }
}
.cta-banner__content {
  gap: 30px;
  z-index: 1;
  padding-top: 52px;
  position: relative;
  padding-bottom: 52px;
  background-color: #4069FF;
}
@media (max-width: 1199px) {
  .cta-banner__content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.cta-banner__content:after {
  top: 110px;
  z-index: -1;
  content: "";
  right: 497px;
  width: 208.67px;
  height: 187.32px;
  position: absolute;
  background-repeat: no-repeat;
  background-image: url(assets/img/cta/cta-arrow.png);
  animation-duration: 3s;
  animation-name: movebounce;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.cta-banner__content-text {
  max-width: 558px;
}
@media (max-width: 991px) {
  .cta-banner__content-text .title {
    font-size: 30px;
    line-height: 42px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cta-banner__content-text .title {
    font-size: 30px;
    line-height: 42px;
    text-align: center;
  }
}
@media (max-width: 1199px) {
  .cta-banner__content .theme-btn {
    padding: 16px 32px;
  }
}

.why-choose-cta-banner {
  margin-bottom: -93px;
}
@media (max-width: 1199px) {
  .why-choose-cta-banner {
    margin-bottom: -70px;
  }
}
@media (max-width: 991px) {
  .why-choose-cta-banner {
    margin-bottom: -110px;
  }
}
@media (max-width: 767px) {
  .why-choose-cta-banner {
    margin-bottom: -90px;
  }
}
@media (max-width: 506px) {
  .why-choose-cta-banner {
    margin-bottom: -100px;
  }
}
@media (max-width: 365px) {
  .why-choose-cta-banner {
    margin-bottom: -120px;
  }
}
.why-choose-cta-banner .overly .container {
  z-index: 1;
  position: relative;
}
.why-choose-cta-banner .overly .container:after {
  top: -907px;
  content: "";
  z-index: -1;
  left: -1544px;
  width: 2751.74px;
  height: 1725.79px;
  position: absolute;
  background-size: auto;
  background-repeat: no-repeat;
  background-image: url(assets/img/table/why-choose-cta-banner-overly.png);
}
.why-choose-cta-banner .cta-banner {
  z-index: 2;
  margin-bottom: 0;
}
.why-choose-cta-banner .cta-banner:after {
  content: inherit;
}
.why-choose-cta-banner ~ .footer-1 {
  z-index: 1;
  position: relative;
}

.why-choose ~ .cta-banner {
  z-index: 1;
  position: relative;
}
.why-choose ~ .cta-banner:after {
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  content: "";
  position: absolute;
  background: #EFF0F6;
  height: calc(100% - 93px);
}
@media (max-width: 1199px) {
  .why-choose ~ .cta-banner:after {
    height: calc(100% - 70px);
  }
}
@media (max-width: 991px) {
  .why-choose ~ .cta-banner:after {
    height: calc(100% - 101px);
  }
}
@media (max-width: 767px) {
  .why-choose ~ .cta-banner:after {
    height: calc(100% - 90px);
  }
}
@media (max-width: 506px) {
  .why-choose ~ .cta-banner:after {
    height: calc(100% - 100px);
  }
}
@media (max-width: 365px) {
  .why-choose ~ .cta-banner:after {
    height: calc(100% - 120px);
  }
}
.why-choose__media {
  max-width: 580px;
  margin-top: 100px;
}
@media (max-width: 1199px) {
  .why-choose__media {
    width: 100%;
    max-width: 100%;
  }
  .why-choose__media img {
    width: 100%;
  }
}
.why-choose__media-wrapper {
  position: relative;
}
@media (min-width: 1200px) {
  .why-choose__media-wrapper {
    margin-right: -30px;
  }
}
.why-choose__media-wrapper .global-country {
  margin-left: auto;
  margin-top: -210px;
  display: inline-block;
  background-size: auto;
  padding: 59.8px 68.5px;
  background-color: #4069FF;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0px 0px 20px 0px;
  background-image: url(assets/img/services/map.png);
}
@media (max-width: 767px) {
  .why-choose__media-wrapper .global-country {
    padding: 40px 50px;
    margin-top: -145px;
  }
}
@media (max-width: 575px) {
  .why-choose__media-wrapper .global-country {
    padding: 30px 35px;
    margin-top: -130px;
  }
}
@media (max-width: 480px) {
  .why-choose__media-wrapper .global-country {
    padding: 25px 30px;
    margin-top: -100px;
  }
}
.why-choose__media-wrapper .global-country .number {
  font-size: 48px;
  font-weight: 600;
  line-height: 120%;
}
@media (max-width: 767px) {
  .why-choose__media-wrapper .global-country .number {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .why-choose__media-wrapper .global-country .number {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .why-choose__media-wrapper .global-country .number {
    font-size: 26px;
  }
}
.why-choose__media-wrapper .global-country .title {
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .why-choose__media-wrapper .global-country .title {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .why-choose__content:not(.why-choose__content-home) {
    padding-left: 85px;
  }
}
.why-choose__content-home {
  max-width: 635px;
}
@media (max-width: 1199px) {
  .why-choose__text .title {
    font-size: 42px;
    line-height: 56px;
  }
}
@media (max-width: 991px) {
  .why-choose__text .title {
    font-size: 36px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .why-choose__text .title {
    font-size: 32px;
    line-height: 46px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .why-choose__text .title {
    font-size: 28px;
    line-height: 42px;
  }
}
.why-choose.why-choose__home .container {
  z-index: 1;
  position: relative;
}
.why-choose.why-choose__home .container:after {
  top: -43px;
  left: -25px;
  content: "";
  width: 291px;
  height: 279px;
  position: absolute;
  background-size: auto;
  background-repeat: no-repeat;
  background-image: url(assets/img/home/why-choose__home-overly.png);
}
.why-choose .why-choose__item-two-wrapper {
  gap: 30px 30px;
  grid-template-columns: minmax(210px, 318px) minmax(210px, 318px) minmax(210px, 318px) minmax(210px, 318px);
}
@media (max-width: 1199px) {
  .why-choose .why-choose__item-two-wrapper {
    grid-template-columns: minmax(210px, 318px) minmax(210px, 318px) minmax(210px, 318px);
  }
}
@media (max-width: 991px) {
  .why-choose .why-choose__item-two-wrapper {
    grid-template-columns: minmax(210px, 318px) minmax(210px, 318px);
  }
}
@media (max-width: 575px) {
  .why-choose .why-choose__item-two-wrapper {
    grid-template-columns: minmax(210px, 318px);
  }
}
.why-choose__item.why-choose__item-two {
  position: relative;
  padding: 40px 30px 30px;
  background-size: cover;
  background-position: right;
  box-shadow: 0px 10px 20px rgba(4, 33, 63, 0.05);
}
.why-choose__item.why-choose__item-two a {
  font-size: 16px;
  line-height: 24px;
}
.why-choose__item.why-choose__item-two a:hover, .why-choose__item.why-choose__item-two a:focus {
  color: #04213F !important;
}
.why-choose__item.why-choose__item-two a i {
  font-size: 12px;
  margin-left: 8px;
}
.why-choose__item-wrapper {
  gap: 50px 30px;
  grid-template-columns: minmax(210px, 262px) minmax(210px, 262px);
}
@media (max-width: 480px) {
  .why-choose__item-wrapper {
    grid-template-columns: 1fr;
  }
}
.why-choose__item .icon {
  font-size: 50px;
}
.why-choose__item .description {
  max-width: 262px;
}
.why-choose .video_btn {
  border-radius: 0px;
  position: absolute;
  border: none;
  top: 5%;
  left: -10%;
  width: 150px;
  height: 150px;
  background-color: #FF9C00;
}
.why-choose .video_btn i {
  color: #FF9C00 !important;
}
@media (max-width: 768px) {
  .why-choose .video_btn {
    left: 0%;
    top: 0%;
  }
}

/* hero section */
.hero_wrapper {
  padding: 150px 0px 100px 0px;
}
.hero_wrapper .hero_content {
  max-width: 630px;
  margin-left: auto;
}

.dark {
  background: #000 !important;
}
.dark .header-1 .stop .main-header-wraper {
  background: #000 !important;
}
.dark .header-1 .main-header-wraper {
  background: #000 !important;
}
.dark .header-1 .main-header-wraper ul > li > a {
  color: #FFF !important;
}
.dark .header-1 .main-header-wraper ul > li ul {
  background: #000 !important;
}
.dark header.header-1 .main-header-wraper .header-right .header-search .search-toggle {
  color: #FFF !important;
}
.dark header.header-1 .main-header-wraper .header-right .header-contact {
  color: #FFF !important;
}
.dark header.header-1 .main-header-wraper .header-right .header-contact h5 {
  color: #FFF !important;
}
.dark header.header-3 .top-header {
  background: #000 !important;
}
.dark header .header-1 .top-header, .dark header .header-2 .top-header, .dark header .header-3 .top-header, .dark header .header-4 .top-header, .dark header .header-5 .top-header {
  background: #000 !important;
}
.dark .title {
  color: #FFF !important;
}
.dark .banner-home {
  background: #000 !important;
}
.dark .banner-home__media:after {
  top: 42px;
  content: "";
  z-index: -1;
  width: 841px;
  right: 747px;
  height: 208px;
  position: absolute;
  background-repeat: no-repeat;
  background-image: none !important;
}
.dark .financial .financial__item .icon svg {
  fill: #FFF !important;
}
.dark .financial .financial__item h6, .dark .financial .financial__item p {
  color: #FFF !important;
}
.dark .our-company span, .dark .our-company h5, .dark .our-company h2, .dark .our-company p {
  color: #FFF !important;
}
.dark .our-company .number {
  color: #FFF !important;
}
.dark .our-company .client-feedback__item-header span {
  color: #EF0548 !important;
}
.dark .planning-success .popup-video {
  background: #000 !important;
}
.dark .planning-success::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8) !important;
}
.dark .why-choose p, .dark .why-choose i, .dark .why-choose a {
  color: #FFF !important;
}
.dark .work-process.bg-dark_red {
  background: #000 !important;
}
.dark .work-process .work-process__item::after {
  right: -22px;
  color: #ffffff;
  font-size: 18px;
  content: "\f178";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  top: calc(50% - 13px);
}
.dark .work-process .work-process__item button {
  color: #000 !important;
}
.dark .work-process .work-process__item .text h6, .dark .work-process .work-process__item .text p {
  color: #000 !important;
}
.dark .our-portfolio-home .content a, .dark .our-portfolio-home .content p {
  color: #FFF !important;
}
.dark .our-portfolio-home .content .btn-link-share a {
  color: #000 !important;
}
.dark .our-portfolio-home .our-portfolio-home__read-more a {
  border: 1px solid #FFF !important;
  color: #FFF;
}
.dark .our-team.bg-dark_red {
  background: #000 !important;
}
.dark .testimonial-item-three {
  background: #EF0548;
}
.dark .testimonial-item-three .testimonial__item-header .right i {
  color: rgba(255, 255, 255, 0.2);
}
.dark .testimonial-item-three .testimonial__item-header .left .meta .name, .dark .testimonial-item-three .testimonial__item-header .left .meta .position {
  color: #FFF !important;
}
.dark .testimonial-item-three .testimonial__item-footer .socail-link span {
  color: #FFF !important;
}
.dark .testimonial-item-three .starts ul li span {
  filter: brightness(0) invert(1);
}
.dark .testimonial-item-three .description {
  color: #FFF !important;
}
.dark .can-help-overly-home .can-help-background::after {
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.8) !important;
}
.dark .can-help-overly-home .contact-form {
  background: #000 !important;
}
.dark .can-help-overly-home .contact-form input, .dark .can-help-overly-home .contact-form textarea {
  color: #FFF !important;
  border: 1px solid #FFF;
  background: transparent !important;
}
.dark .can-help-overly-home .contact-form input::placeholder, .dark .can-help-overly-home .contact-form textarea::placeholder {
  color: #666666;
}
.dark .footer-1 {
  background-image: none !important;
  background: #000 !important;
}
.dark .footer-1::after {
  display: none !important;
}
.dark .footer-1 .footer-top__box-wrapper::after {
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
}
.dark .about-us p {
  color: #FFF !important;
}
.dark .similar-work {
  background: #000;
}
.dark .similar-work .similar-work__item .title {
  color: #4069FF !important;
}
.dark .number, .dark .description {
  color: #FFF !important;
}
.dark .our-team.our-porfolio .content::after {
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 638px;
  overflow: hidden;
  position: absolute;
  background: #ffffff;
}
.dark .our-team.our-porfolio .text h5 {
  color: #000 !important;
}
.dark .our-team.our-porfolio::after {
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 638px;
  overflow: hidden;
  position: absolute;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
  background: #000;
  background-image: url(assets/img/portfolio/our-portfolio-bg.png);
}
.dark .our-team {
  background: #000 !important;
}
.dark .work-process .work-process__item button {
  color: #ffffff !important;
}
.dark .testimonial {
  background: #000 !important;
}
.dark .testimonial .testimonial__item {
  background: #EF0548 !important;
}
.dark .testimonial .testimonial__item .description p {
  color: #fff !important;
}
.dark .testimonial .testimonial-item-two {
  background: #FF9C00;
}
.dark .testimonial .testimonial-item-two .testimonial__item-header .right i {
  color: rgba(255, 255, 255, 0.2);
}
.dark .testimonial .testimonial-item-two .testimonial__item-header .left .meta .name, .dark .testimonial .testimonial-item-two .testimonial__item-header .left .meta .position {
  color: #FFF !important;
}
.dark .testimonial .testimonial-item-two .description {
  color: #FFF !important;
}
.dark .chart {
  color: #ffffff !important;
}
.dark .banner p {
  color: #ffffff !important;
}
.dark .banner::after {
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  height: 100%;
  z-index: -1;
  position: absolute;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.85) 0%, rgba(63, 56, 56, 0) 61.17%);
}
.dark .counter-area__item {
  background: #000 !important;
}
.dark .competitive-edge__item {
  background: #000 !important;
}
.dark .bg-dark_white {
  background: #000 !important;
}
.dark .bg-dark_white .our-project__item .content, .dark .bg-dark_white .our-project__item .text {
  background: #000 !important;
}
.dark .dark_header .main_wrapper {
  background: #000 !important;
}
.dark .section-title p, .dark .section-title h2, .dark .section-title h3, .dark .section-title h1 {
  color: #FFF !important;
}
.dark .banner__2::after {
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  height: 100%;
  z-index: -1;
  position: absolute;
  background: rgba(0, 0, 0, 0.6) !important;
}
.dark .competitive-edge__item.competitive-edge__item_2::after {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0%;
  height: 100%;
  width: 100%;
  content: "";
  clear: both;
  display: flex;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.96) 0%, rgba(64, 105, 255, 0.7) 190.8%);
  border-radius: 6px;
}
.dark .service_info > li {
  color: #FFF !important;
}
.dark .service_info > li::after {
  content: "\f14a";
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
  clear: both;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  color: #FFF !important;
}
.dark .area__item {
  background: #ffffff;
}
.dark .area__item .number, .dark .area__item .description {
  color: #000000 !important;
}
.dark .author_name h5, .dark .author_name p {
  color: #FFF !important;
}
.dark .protfolio_wrapper {
  background: #000 !important;
}
.dark .protfolio_wrapper h4, .dark .protfolio_wrapper p {
  color: #FFF !important;
}
.dark .slider-item .testimonial-slider, .dark .slider-item .testimonial__item {
  background: #ffffff;
}
.dark .slider-item .testimonial-slider h5, .dark .slider-item .testimonial-slider p, .dark .slider-item .testimonial__item h5, .dark .slider-item .testimonial__item p {
  color: #000 !important;
}
.dark .client-brand {
  background: #000 !important;
}
.dark .delivery__wrapper::before {
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  background: rgba(9, 9, 9, 0.7);
}
.dark .delivery__wrapper .counter-area__item.counter-area__item-three {
  background-color: #000 !important;
}
.dark .delivery__wrapper .theme-btn {
  color: #000 !important;
}
.dark .can-help {
  background: #000 !important;
}
.dark .can-help .text span, .dark .can-help .text h5 {
  color: #FFF !important;
}
.dark .our-porfolio__slider__2 .our-project__item .content, .dark .our-porfolio__slider__2 .our-project__item .text {
  background: #000 !important;
}
.dark .fauture__widget {
  background: #000 !important;
}
.dark .fauture__widget .fauture__content h4, .dark .fauture__widget .fauture__content p {
  color: #FFF !important;
}
.dark .fauture__widget .fauture__icons h4 {
  color: #000 !important;
}
.dark .about__wrapper h5, .dark .about__wrapper p {
  color: #ffffff !important;
}
.dark .about__wrapper .number span, .dark .about__wrapper .number h5 {
  color: #000 !important;
}
.dark .process__widget h4, .dark .process__widget p {
  color: #ffffff !important;
}
.dark .portfolio_wrapper .section-title h2 {
  color: #000 !important;
}
.dark .fun-fact_wrapper .counter-area__item {
  background: transparent !important;
}
.dark .why-choose .accordion-item {
  color: #FFF !important;
}
.dark .why-choose .accordion-item button {
  background-color: #FF9C00 !important;
}
.dark .team_wrapper {
  background-image: none !important;
}
.dark .testimonial_wrapper .slingle_agent h4, .dark .testimonial_wrapper .slingle_agent h5, .dark .testimonial_wrapper .slingle_agent p {
  color: #FFF !important;
}

.footer-1 {
  padding-top: 213px;
  background-size: cover;
  background-position: center;
  background-color: #0E1E36;
  background-image: url("assets/img/footer/footer-bg.png");
}
.footer-1.footer_wrapper {
  z-index: -1;
  padding-top: 0px;
  background-size: cover;
  background-position: center;
  background-color: #0E1E36;
  background-image: url("assets/img/home-5/footer_bg.png");
  position: relative;
}
.footer-1.footer_wrapper:before {
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(14, 10, 1, 0) -29.09%, #0E0A01 42.92%);
}
.footer-1.footer_wrapper .footer_top_content {
  padding: 100px 0px 80px 0px;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
}
.footer-1.footer_wrapper .footer_top_content h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 55px;
  line-height: 120%;
  color: #FFF;
  margin-bottom: 15px;
}
.footer-1.footer_wrapper .footer_top_content p {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  font-family: "Lato", sans-serif;
  color: #FFF;
  max-width: 100%;
  width: 656px;
  margin: 0 auto;
}
.footer-1.footer_wrapper .footer_top_content a {
  margin-top: 40px;
}
.footer-1.footer_wrapper .contact-wrapper {
  background: #1E1B15;
}
.footer-1.footer_wrapper .contact-wrapper .wid-contact .icon i {
  color: #FF9C00;
}
.footer-1.footer_wrapper .contact-wrapper .social-profile li a {
  border: 1.5px solid rgba(255, 156, 0, 0.3);
  color: #FFF;
}
.footer-1.footer_wrapper .contact-wrapper .social-profile li a:hover {
  background-color: #FF9C00;
}
.footer-1.footer_wrapper .single-footer-wid {
  padding-top: 80px;
}
.footer-1.footer_wrapper .single-footer-wid ul li:hover a {
  color: #FF9C00 !important;
}
@media (max-width: 991px) {
  .footer-1 {
    padding-top: 200px;
  }
}
@media (max-width: 767px) {
  .footer-1 {
    padding-top: 170px;
  }
}
.footer-1 .single-footer-wid {
  margin-bottom: 40px;
}
@media (min-width: 1381px) {
  .footer-1 .single-footer-wid.pl-50 {
    margin-right: -16px;
  }
}
@media (max-width: 1199px) {
  .footer-1 .single-footer-wid.pl-50, .footer-1 .single-footer-wid.pl-65 {
    padding: 0;
  }
}
.footer-1 .single-footer-wid ul {
  gap: 20px;
  display: flex;
  flex-direction: column;
}
.footer-1 .single-footer-wid ul li a {
  color: #FFF;
  display: block;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 16px;
  position: relative;
  padding-left: 15px;
}
.footer-1 .single-footer-wid ul li a:before {
  left: 0;
  content: "\f101";
  font-size: 12px;
  position: absolute;
  top: calc(50% - 7px);
  font-family: "Font Awesome 5 Pro";
}
.footer-1 .single-footer-wid ul li:hover a, .footer-1 .single-footer-wid ul li:focus a {
  color: #4069FF;
}
.footer-1 .site_info_box {
  max-width: 432px;
}
.footer-1 .recent_post_widget .recent-post-list .single-recent-post {
  gap: 20px;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}
.footer-1 .recent_post_widget .recent-post-list .single-recent-post.single-footer-wid_2 .post-data span i {
  color: #FF9C00 !important;
}
.footer-1 .recent_post_widget .recent-post-list .single-recent-post.single-footer-wid_2:hover .post-data h5, .footer-1 .recent_post_widget .recent-post-list .single-recent-post.single-footer-wid_2:hover .post-data span, .footer-1 .recent_post_widget .recent-post-list .single-recent-post.single-footer-wid_2:hover .post-data i, .footer-1 .recent_post_widget .recent-post-list .single-recent-post.single-footer-wid_2:focus .post-data h5, .footer-1 .recent_post_widget .recent-post-list .single-recent-post.single-footer-wid_2:focus .post-data span, .footer-1 .recent_post_widget .recent-post-list .single-recent-post.single-footer-wid_2:focus .post-data i {
  color: #FF9C00 !important;
}
.footer-1 .recent_post_widget .recent-post-list .single-recent-post:after {
  bottom: 0;
  width: 100%;
  height: 2px;
  content: "";
  border-radius: 5px;
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
}
.footer-1 .recent_post_widget .recent-post-list .single-recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.footer-1 .recent_post_widget .recent-post-list .single-recent-post:last-child:after {
  content: inherit;
}
.footer-1 .recent_post_widget .recent-post-list .single-recent-post .thumb {
  width: 80.7px;
  height: 80.7px;
  overflow: hidden;
  min-width: 80.7px;
  background-color: #FFF;
}
.footer-1 .recent_post_widget .recent-post-list .single-recent-post .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .footer-1 .recent_post_widget .recent-post-list .single-recent-post .post-data {
    max-width: 186px;
  }
}
.footer-1 .recent_post_widget .recent-post-list .single-recent-post .post-data h5 {
  transition: all 0.3s ease;
}
.footer-1 .recent_post_widget .recent-post-list .single-recent-post .post-data span {
  font-size: 14px;
  line-height: 15px;
  transition: all 0.3s ease;
}
.footer-1 .recent_post_widget .recent-post-list .single-recent-post .post-data span i {
  color: #4069FF;
  font-size: 15px;
  margin-right: 5px;
  transition: all 0.3s ease;
}
.footer-1 .recent_post_widget .recent-post-list .single-recent-post .post-data h5 {
  font-size: 16px;
  line-height: 24px;
}
.footer-1 .recent_post_widget .recent-post-list .single-recent-post .post-data h5:hover {
  color: #4069FF;
}
.footer-1 .recent_post_widget .recent-post-list .single-recent-post:hover .thumb img, .footer-1 .recent_post_widget .recent-post-list .single-recent-post:focus .thumb img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.footer-1 .recent_post_widget .recent-post-list .single-recent-post:hover .post-data h5, .footer-1 .recent_post_widget .recent-post-list .single-recent-post:hover .post-data span, .footer-1 .recent_post_widget .recent-post-list .single-recent-post:hover .post-data i, .footer-1 .recent_post_widget .recent-post-list .single-recent-post:focus .post-data h5, .footer-1 .recent_post_widget .recent-post-list .single-recent-post:focus .post-data span, .footer-1 .recent_post_widget .recent-post-list .single-recent-post:focus .post-data i {
  color: #4069FF !important;
}
@media (min-width: 992px) {
  .footer-1 .newsletter_widget {
    max-width: 550px;
    margin-left: auto;
  }
}
.footer-1 .newsletter_widget .title img {
  padding-right: 10px;
}
.footer-1 .newsletter_widget .newsletter_box form {
  height: 61px;
  display: flex;
  position: relative;
}
@media (max-width: 480px) {
  .footer-1 .newsletter_widget .newsletter_box form {
    height: 50px;
  }
}
.footer-1 .newsletter_widget .newsletter_box form input {
  width: 100%;
  color: #FFF;
  font-size: 16px;
  line-height: 19px;
  border-radius: 2px;
  background: transparent;
  padding: 21px 200px 21px 20px;
  border: 1px solid rgba(64, 105, 255, 0.3);
}
@media (max-width: 480px) {
  .footer-1 .newsletter_widget .newsletter_box form input {
    font-size: 14px;
    padding: 16px 148px 16px 15px;
  }
}
.footer-1 .newsletter_widget .newsletter_box form input::placeholder {
  color: #FFF;
}
.footer-1 .newsletter_widget .newsletter_box form button {
  border: 0;
  right: 9px;
  color: #FFF;
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  position: absolute;
  font-family: "Poppins", sans-serif;
  border-radius: 2px;
  display: inline-block;
  box-sizing: border-box;
  padding: 9.5px 18px;
  top: calc(50% - 21.5px);
  background-color: #4069FF;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 480px) {
  .footer-1 .newsletter_widget .newsletter_box form button {
    right: 5px;
    font-size: 13px;
    line-height: 20px;
    padding: 6px 10px;
    top: calc(50% - 16px);
  }
}
.footer-1 .newsletter_widget .newsletter_box form button i {
  font-size: 21px;
}
@media (max-width: 480px) {
  .footer-1 .newsletter_widget .newsletter_box form button i {
    font-size: 13px;
    margin-left: 5px;
  }
}
.footer-1 .newsletter_widget .newsletter_box form button:hover {
  color: #FFF;
  background-color: #FF9C00;
}
.footer-1 .social-profile ul {
  gap: 10px;
  flex-wrap: wrap;
  display: inline-flex;
  flex-direction: inherit;
  justify-content: center;
}
@media screen and (max-width: 575px) {
  .footer-1 .social-profile ul {
    padding: 5px 0;
  }
}
.footer-1 .social-profile ul li a {
  padding: 0;
  width: 36px;
  height: 36px;
  color: #FFF;
  display: block;
  font-size: 15px;
  line-height: 32px;
  text-align: center;
  background-color: transparent;
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  -ms-border-radius: 500px;
  border-radius: 500px;
  -webkit-transition: all all 0.3s ease ease-in-out;
  -moz-transition: all all 0.3s ease ease-in-out;
  -ms-transition: all all 0.3s ease ease-in-out;
  -o-transition: all all 0.3s ease ease-in-out;
  transition: all all 0.3s ease ease-in-out;
  border: 1.5px solid rgba(226, 233, 255, 0.15);
}
.footer-1 .social-profile ul li a::before {
  content: inherit;
}
.footer-1 .social-profile ul li a:hover, .footer-1 .social-profile ul li a:focus {
  color: #FFF;
  background-color: #4069FF;
  -webkit-transform: translate(0, -5px);
  -moz-transform: translate(0, -5px);
  -ms-transform: translate(0, -5px);
  -o-transform: translate(0, -5px);
  transform: translate(0, -5px);
}
.footer-1 .contact-wrapper {
  background-color: #112441;
}
.footer-1 .wid-contact {
  position: relative;
}
.footer-1 .wid-contact:after {
  bottom: 0;
  width: 100%;
  height: 2px;
  content: "";
  border-radius: 5px;
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
}
.footer-1 .wid-contact ul {
  gap: 9px;
  display: flex;
}
.footer-1 .wid-contact ul li {
  gap: 10px;
  display: flex;
}
.footer-1 .wid-contact ul li .icon i {
  color: #4069FF;
  font-size: 15px;
}
.footer-1 .footer-bottom-content {
  gap: 15px;
  padding: 27px 0;
  position: relative;
}
.footer-1 .footer-bottom-content:after {
  top: 0;
  width: 100%;
  height: 2px;
  content: "";
  border-radius: 5px;
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
}
.footer-1 .footer-bottom-content .coppyright {
  color: #FFF;
  font-size: 14px;
  line-height: 21px;
}
.footer-1 .footer-bottom-content .coppyright.coppyright-2 a {
  color: #FF9C00;
  font-weight: 500;
}
.footer-1 .footer-bottom-content .coppyright.coppyright-2 a + a {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}
.footer-1 .footer-bottom-content .coppyright.coppyright-2 a:hover, .footer-1 .footer-bottom-content .coppyright.coppyright-2 a:focus {
  color: #4069FF;
}
.footer-1 .footer-bottom-content .coppyright a {
  color: #4069FF;
  font-weight: 500;
}
.footer-1 .footer-bottom-content .coppyright a + a {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}
.footer-1 .footer-bottom-content .coppyright a:hover, .footer-1 .footer-bottom-content .coppyright a:focus {
  color: #FF9C00;
}
.footer-1 .footer-bottom-list.footer-bottom-list_2 li a {
  color: #FF9C00;
}
.footer-1 .footer-bottom-list.footer-bottom-list_2 li:hover a, .footer-1 .footer-bottom-list.footer-bottom-list_2 li:focus a {
  color: #4069FF;
}
.footer-1 .footer-bottom-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 41.5px;
  justify-content: center;
}
.footer-1 .footer-bottom-list ul li.no_bullet a:before {
  content: inherit;
}
.footer-1 .footer-bottom-list ul li a {
  color: #FFF;
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  position: relative;
}
.footer-1 .footer-bottom-list ul li a:before {
  content: "";
  width: 1.5px;
  height: 100%;
  right: -21.75px;
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
}
.footer-1 .footer-bottom-list ul li:hover a, .footer-1 .footer-bottom-list ul li:focus a {
  color: #4069FF;
}
.footer-1 #map {
  width: 100%;
  height: 245px;
}

.footer-2 {
  z-index: 1;
  position: relative;
  padding-top: 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1199px) {
  .footer-2 {
    padding-top: 80px;
  }
}
@media (max-width: 991px) {
  .footer-2 {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .footer-2 {
    padding-top: 50px;
  }
}
.footer-2:after {
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  z-index: -1;
  height: 100%;
  position: absolute;
  background: linear-gradient(180deg, rgba(14, 10, 1, 0) -29.09%, #0E0A01 42.92%);
}
.footer-2 .footer-top__cta-content {
  max-width: 781px;
}
.footer-2 .footer-top__cta-content-wrapper {
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
}
.footer-2 .footer-top__cta-content h2 {
  font-size: 64px;
  line-height: 78px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .footer-2 .footer-top__cta-content h2 {
    font-size: 54px;
    line-height: 68px;
  }
}
@media (max-width: 991px) {
  .footer-2 .footer-top__cta-content h2 {
    font-size: 40px;
    line-height: 54px;
  }
}
@media (max-width: 380px) {
  .footer-2 .footer-top__cta-content h2 {
    font-size: 35px;
    line-height: 49px;
  }
}
.footer-2 .footer-top__cta-content .description {
  max-width: 694px;
}
.footer-2 .footer-top__cta-content .description p {
  font-size: 18px;
  line-height: 30px;
}
.footer-2 .newsletter_widget .newsletter_box.newsletter_box_2 {
  border: none !important;
  background: #1E1B15 !important;
  border-radius: 2px !important;
}
.footer-2 .newsletter_widget .newsletter_box form input {
  border: none;
  background: #1E1B15;
}
.footer-2 .newsletter_widget .newsletter_box form button.btn-yellow {
  background-color: #FF9C00;
}
.footer-2 .newsletter_widget .newsletter_box form button.btn-yellow:hover {
  background: #4069FF;
}
.footer-2 .contact-wrapper {
  background: #1E1B15;
}
.footer-2 .contact-wrapper .wid-contact ul li .icon i {
  color: #FF9C00;
}
.footer-2 .contact-wrapper .wid-contact ul li .icon i:hover, .footer-2 .contact-wrapper .wid-contact ul li .icon i:focus {
  background: #4069FF;
}
.footer-2 .social-profile ul li a {
  border-color: #FF9C00;
}
.footer-2 .social-profile ul li a:hover, .footer-2 .social-profile ul li a:focus {
  background: #FF9C00;
  border-color: #FF9C00;
  color: #FFF !important;
}
.footer-2 .single-footer-wid ul li:hover a, .footer-2 .single-footer-wid ul li:focus a {
  color: #4069FF;
}
.footer-2 .recent_post_widget .recent-post-list .single-recent-post:hover .post-data h5, .footer-2 .recent_post_widget .recent-post-list .single-recent-post:hover .post-data span, .footer-2 .recent_post_widget .recent-post-list .single-recent-post:hover .post-data i, .footer-2 .recent_post_widget .recent-post-list .single-recent-post:focus .post-data h5, .footer-2 .recent_post_widget .recent-post-list .single-recent-post:focus .post-data span, .footer-2 .recent_post_widget .recent-post-list .single-recent-post:focus .post-data i {
  color: #4069FF !important;
}
.footer-2 .recent_post_widget .recent-post-list .single-recent-post .post-data span i {
  color: #FF9C00;
}
.footer-2 .footer-bottom-content .coppyright a {
  color: #FF9C00;
}
.footer-2 .footer-bottom-content .coppyright a:hover, .footer-2 .footer-bottom-content .coppyright a:focus {
  color: #4069FF;
}

.footer-3 {
  z-index: 1;
  position: relative;
  padding-top: 100px;
}
@media (max-width: 1199px) {
  .footer-3 {
    padding-top: 80px;
  }
}
@media (max-width: 991px) {
  .footer-3 {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .footer-3 {
    padding-top: 50px;
  }
}
.footer-3:after {
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  z-index: -1;
  height: 100%;
  position: absolute;
  background: rgba(4, 33, 63, 0.95);
}
.footer-3 .footer-top__box-wrapper {
  gap: 30px;
  z-index: 1;
  overflow: hidden;
  position: relative;
  padding: 45px 116px;
  border-radius: 147px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1199px) {
  .footer-3 .footer-top__box-wrapper {
    padding: 40px 80px;
  }
}
@media (max-width: 991px) {
  .footer-3 .footer-top__box-wrapper {
    padding: 30px 50px;
    border-radius: 90px;
  }
}
@media (max-width: 767px) {
  .footer-3 .footer-top__box-wrapper {
    padding: 30px 40px;
    border-radius: 85px;
  }
}
.footer-3 .footer-top__box-wrapper:after {
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(239, 5, 72, 0.8);
}
.footer-3 .footer-top__box .text {
  max-width: 461px;
}
@media (max-width: 1199px) {
  .footer-3 .footer-top__box .text h3 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 991px) {
  .footer-3 .footer-top__box .text h3 {
    font-size: 26px;
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .footer-3 .footer-top__box .text h3 {
    font-size: 20px;
    line-height: 28px;
  }
}
.footer-3 .footer-top__box .theme-btn {
  width: 100%;
  max-width: 100%;
  font-size: 15px;
  font-weight: 400;
  color: #243342;
  line-height: 26px;
  text-align: center;
  background: #FFF;
  border-radius: 4px;
  padding: 12px 15px;
}
.footer-3 .footer-top__box .theme-btn:nth-child(even) {
  color: #FFF;
  background: #04213F;
}
.footer-3 .footer-top__box .theme-btn:nth-child(even):hover, .footer-3 .footer-top__box .theme-btn:nth-child(even):focus {
  color: #243342;
  background: #FFF;
}
.footer-3 .footer-top__box .theme-btn:hover, .footer-3 .footer-top__box .theme-btn:focus {
  color: #FFF;
  background: #04213F;
}
.footer-3 .footer-top__box .theme-btn__wrapper {
  gap: 10px;
  width: 348px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .footer-3 .footer-top__box .theme-btn__wrapper {
    width: 320px;
  }
}
.footer-3 .footer-top__box input:hover, .footer-3 .footer-top__box input:focus {
  color: #243342 !important;
  background: #FFF !important;
}
.footer-3 .single-footer-wid ul li:hover a, .footer-3 .single-footer-wid ul li:focus a {
  color: #FF9C00;
}
@media (min-width: 1199px) {
  .footer-3 .widget-description {
    max-width: 298px;
  }
}
.footer-3 .recent_post_widget .recent-post-list .single-recent-post:hover .post-data h5, .footer-3 .recent_post_widget .recent-post-list .single-recent-post:hover .post-data span, .footer-3 .recent_post_widget .recent-post-list .single-recent-post:hover .post-data i, .footer-3 .recent_post_widget .recent-post-list .single-recent-post:focus .post-data h5, .footer-3 .recent_post_widget .recent-post-list .single-recent-post:focus .post-data span, .footer-3 .recent_post_widget .recent-post-list .single-recent-post:focus .post-data i {
  color: #FF9C00 !important;
}
.footer-3 .recent_post_widget .recent-post-list .single-recent-post .post-data span i {
  color: #EF0548;
}
.footer-3 .footer-bottom-list ul li:hover a, .footer-3 .footer-bottom-list ul li:focus a {
  color: #FF9C00;
}
.footer-3 .footer-bottom-content .coppyright a {
  color: #EF0548;
}
.footer-3 .footer-bottom-content .coppyright a:hover, .footer-3 .footer-bottom-content .coppyright a:focus {
  color: #FF9C00;
}
.footer-3 .overly .container {
  z-index: 1;
  position: relative;
}
.footer-3 .overly .container:after, .footer-3 .overly .container:before {
  z-index: -1;
  content: "";
  position: absolute;
  background-size: auto;
  background-repeat: no-repeat;
}
.footer-3 .overly .container:after {
  left: -268px;
  width: 228px;
  height: 229px;
  bottom: -835px;
  background-image: url(assets/img/footer/spot-1.png);
}
.footer-3 .overly .container:before {
  top: -66px;
  height: 270px;
  right: -268px;
  width: 264.01px;
  background-image: url(assets/img/footer/spot-2.png);
}

.footer-1 .newsletter_widget .newsletter_box_2 form input {
  width: 100%;
  color: rgb(255, 255, 255);
  font-size: 16px;
  line-height: 19px;
  border-radius: 2px;
  background: #1E1B15 !important;
  padding: 21px 200px 21px 20px;
  border: none !important;
}

.footer-1 .footer-bottom-list ul li:last-child a:before {
  display: none;
}

/*# sourceMappingURL=style.css.map */



.can-help.services-two {
  z-index: 1;
  position: relative;
  padding-bottom: 370px;
}
.can-help.services-two:after {
  left: -869px;
  z-index: -1;
  content: "";
  bottom: -323px;
  position: absolute;
  width: 2102.51px;
  height: 1068.22px;
  background-size: auto;
  animation: scale 3s linear infinite;
  background-image: url(assets/img/services/services-two-overly.png);
}
@media (max-width: 991px) {
  .can-help.services-two {
    padding-bottom: 320px;
  }
}
@media (max-width: 767px) {
  .can-help.services-two {
    padding-bottom: 250px;
  }
}
.can-help.services-two ~ .cta-banner:after {
  content: inherit;
}
@media (min-width: 1200px) {
  .can-help.services-two .can-help__content .title {
    max-width: 611px;
  }
}
@media (min-width: 1200px) {
  .can-help.services-two .can-help__content .description {
    max-width: 520px;
  }
}


.get-free {
  z-index: 2;
  position: relative;
  margin-bottom: -100px;
  margin-top: 50px;
}
.get-free h2.title {
  color: #ffffff; /* Blanc */
}
.get-free .description {
  color: #ffffff; /* Blanc */
}

@media (max-width: 1300px) {
  .get-free {
    margin-bottom: -138.5px;
  }
}
@media (max-width: 991px) {
  .get-free {
    margin-bottom: -207.5px;
  }
}
.get-free.get-free-home .get-free__content-wrapper {
  background: #EF0548;
}
.get-free__content {
  gap: 30px;
  max-width: 1377px;
  margin-left: auto;
  padding: 52px 116px 52px 15px;
}
@media (max-width: 1300px) {
  .get-free__content {
    max-width: 1131px;
    padding-right: 30px;
    flex-direction: column;
  }
}
@media (max-width: 1199px) {
  .get-free__content {
    max-width: 951px;
  }
}
@media (max-width: 991px) {
  .get-free__content {
    max-width: 711px;
  }
}
@media (max-width: 767px) {
  .get-free__content {
    max-width: 531px;
  }
}
@media (max-width: 575px) {
  .get-free__content {
    padding-right: 15px;
  }
}
.get-free__content-wrapper {
  background: #4069FF;
  background-position: 89% -1%;
  margin-left: calc(-50vw + 50%) !important;
}
.get-free__content-text {
  font-size: 20px;
  line-height: 26px;
}
@media (min-width: 1300px) {
  .get-free__content-text {
    max-width: 361px;
  }
}
@media (max-width: 1300px) {
  .get-free__content-text .title {
    font-size: 46px;
    line-height: 54px;
  }
}
@media (max-width: 1199px) {
  .get-free__content-text .title {
    font-size: 42px;
    line-height: 56px;
  }
}
@media (max-width: 991px) {
  .get-free__content-text .title {
    font-size: 36px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .get-free__content-text .title {
    font-size: 32px;
    line-height: 46px;
  }
}
@media (max-width: 575px) {
  .get-free__content-text .title {
    font-size: 28px;
    line-height: 42px;
  }
}
@media (max-width: 991px) {
  .get-free__content-form {
    width: 100%;
  }
}
.get-free__content-form form {
  gap: 20px;
}
.get-free__content-form form .single-personal-info input {
  width: 263px;
  max-width: 100%;
  font-size: 14px;
  line-height: 21px;
  color: #243342;
  padding: 15px 30px;
  border-radius: 2px;
}
@media (max-width: 991px) {
  .get-free__content-form form .single-personal-info input {
    width: 100%;
  }
}
.get-free__content-form form .single-personal-info input::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #243342;
}
.get-free__content-form form .theme-btn {
  font-size: 15px;
  line-height: 23px;
  background: #0E1E36;
}
.get-free__content-form form .theme-btn:hover, .get-free__content-form form .theme-btn:focus {
  background: #FF9C00;
}


.why-choose ~ .cta-banner {
  z-index: 1;
  position: relative;
}
.why-choose ~ .cta-banner:after {
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  content: "";
  position: absolute;
  background: #EFF0F6;
  height: calc(100% - 93px);
}
@media (max-width: 1199px) {
  .why-choose ~ .cta-banner:after {
    height: calc(100% - 70px);
  }
}
@media (max-width: 991px) {
  .why-choose ~ .cta-banner:after {
    height: calc(100% - 101px);
  }
}
@media (max-width: 767px) {
  .why-choose ~ .cta-banner:after {
    height: calc(100% - 90px);
  }
}
@media (max-width: 506px) {
  .why-choose ~ .cta-banner:after {
    height: calc(100% - 100px);
  }
}
@media (max-width: 365px) {
  .why-choose ~ .cta-banner:after {
    height: calc(100% - 120px);
  }
}
.why-choose__media {
  max-width: 580px;
}
@media (max-width: 1199px) {
  .why-choose__media {
    width: 100%;
    max-width: 100%;
  }
  .why-choose__media img {
    width: 100%;
  }
}
.why-choose__media-wrapper {
  position: relative;
}
@media (min-width: 1200px) {
  .why-choose__media-wrapper {
    margin-right: -30px;
  }
}
.why-choose__media-wrapper .global-country {
  margin-left: auto;
  margin-top: -210px;
  display: inline-block;
  background-size: auto;
  padding: 59.8px 68.5px;
  background-color: #4069FF;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0px 0px 20px 0px;
  background-image: url(assets/img/services/map.png);
}
@media (max-width: 767px) {
  .why-choose__media-wrapper .global-country {
    padding: 40px 50px;
    margin-top: -145px;
  }
}
@media (max-width: 575px) {
  .why-choose__media-wrapper .global-country {
    padding: 30px 35px;
    margin-top: -130px;
  }
}
@media (max-width: 480px) {
  .why-choose__media-wrapper .global-country {
    padding: 25px 30px;
    margin-top: -100px;
  }
}
.why-choose__media-wrapper .global-country .number {
  font-size: 48px;
  font-weight: 600;
  line-height: 120%;
}
@media (max-width: 767px) {
  .why-choose__media-wrapper .global-country .number {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .why-choose__media-wrapper .global-country .number {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .why-choose__media-wrapper .global-country .number {
    font-size: 26px;
  }
}
.why-choose__media-wrapper .global-country .title {
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .why-choose__media-wrapper .global-country .title {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .why-choose__content:not(.why-choose__content-home) {
    padding-left: 85px;
  }
}
.why-choose__content-home {
  max-width: 635px;
}
@media (max-width: 1199px) {
  .why-choose__text .title {
    font-size: 42px;
    line-height: 56px;
  }
}
@media (max-width: 991px) {
  .why-choose__text .title {
    font-size: 36px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .why-choose__text .title {
    font-size: 32px;
    line-height: 46px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .why-choose__text .title {
    font-size: 28px;
    line-height: 42px;
  }
}
.why-choose.why-choose__home .container {
  z-index: 1;
  position: relative;
}
.why-choose.why-choose__home .container:after {
  top: -43px;
  left: -25px;
  content: "";
  width: 291px;
  height: 279px;
  position: absolute;
  background-size: auto;
  background-repeat: no-repeat;
  background-image: url(assets/img/home/why-choose__home-overly.png);
}
.why-choose .why-choose__item-two-wrapper {
  gap: 30px 30px;
  grid-template-columns: minmax(210px, 318px) minmax(210px, 318px) minmax(210px, 318px) minmax(210px, 318px);
}
@media (max-width: 1199px) {
  .why-choose .why-choose__item-two-wrapper {
    grid-template-columns: minmax(210px, 318px) minmax(210px, 318px) minmax(210px, 318px);
  }
}
@media (max-width: 991px) {
  .why-choose .why-choose__item-two-wrapper {
    grid-template-columns: minmax(210px, 318px) minmax(210px, 318px);
  }
}
@media (max-width: 575px) {
  .why-choose .why-choose__item-two-wrapper {
    grid-template-columns: minmax(210px, 318px);
  }
}
.why-choose__item.why-choose__item-two {
  position: relative;
  padding: 40px 30px 30px;
  background-size: cover;
  background-position: right;
  box-shadow: 0px 10px 20px rgba(4, 33, 63, 0.05);
}
.why-choose__item.why-choose__item-two a {
  font-size: 16px;
  line-height: 24px;
}
.why-choose__item.why-choose__item-two a:hover, .why-choose__item.why-choose__item-two a:focus {
  color: #04213F !important;
}
.why-choose__item.why-choose__item-two a i {
  font-size: 12px;
  margin-left: 8px;
}
.why-choose__item-wrapper {
  gap: 50px 30px;
  grid-template-columns: minmax(210px, 262px) minmax(210px, 262px);
}
@media (max-width: 480px) {
  .why-choose__item-wrapper {
    grid-template-columns: 1fr;
  }
}
.why-choose__item .icon {
  font-size: 50px;
}
.why-choose__item .description {
  max-width: 262px;
}
.why-choose .video_btn {
  border-radius: 0px;
  position: absolute;
  border: none;
  top: 5%;
  left: -10%;
  width: 150px;
  height: 150px;
  background-color: #FF9C00;
}
.why-choose .video_btn i {
  color: #FF9C00 !important;
}
@media (max-width: 768px) {
  .why-choose .video_btn {
    left: 0%;
    top: 0%;
  }
}

.faq.faq_2 button {
  background: rgba(255, 156, 0, 0.1019607843) !important;
  color: #0E0A01 !important;
}
.faq.faq_2 button:hover, .faq.faq_2 button:focus {
  background-color: #FF9C00 !important;
  color: #FFF !important;
}
.faq .accordion-item {
  margin-bottom: 20px;
  border: 0 !important;
  background: transparent;
  border-radius: 0 !important;
}
.faq .accordion-item:last-child {
  margin-bottom: 0 !important;
}
.faq .accordion-item .accordion-header button {
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  background: #4069FF;
  border-radius: 0;
  padding: 12px 20px;
}
@media (max-width: 575px) {
  .faq .accordion-item .accordion-header button {
    font-size: 16px;
    line-height: 26px;
  }
}
.faq .accordion-item .accordion-header button:after {
  content: "\f067" !important;
  background-image: inherit;
  font-family: "Font Awesome 5 Pro";
}
.faq .accordion-item .accordion-header button[aria-expanded=true]:after {
  content: "\f068" !important;
}
.faq .accordion-item .accordion-header button span {
  margin-right: 8px;
  color: #0E1E36;
}
.faq .accordion-item .accordion-header button i {
  font-size: 20px;
  margin-right: 8px;
}
.faq .accordion-item .accordion-header button:hover, .faq .accordion-item .accordion-header button:focus {
  box-shadow: none !important;
  outline: none !important;
}
.faq .accordion-item .accordion-body {
  font-family: "Lato", sans-serif;
  padding: 20px 17px 5px;
}
@media (max-width: 575px) {
  .faq .accordion-item .accordion-body p {
    font-size: 16px;
    line-height: 26px;
  }
}

.video-play-btn {
  z-index: 1;
  top: 60px;
  left: -74px;
  width: 160px;
  height: 160px;
  display: flex;
  position: absolute;
  align-items: center;
  background: #4069FF;
  justify-content: center;
  animation: move-bottom 3s linear infinite;
}
@media (max-width: 1550px) {
  .video-play-btn {
    top: 50px;
    left: -20px;
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 767px) {
  .video-play-btn {
    top: 30px;
    width: 100px;
    height: 100px;
  }
}
.video-play-btn a {
  width: 60px;
  height: 60px;
  display: flex;
  color: #4069FF;
  font-size: 22px;
  line-height: 60px;
  text-align: center;
  background: #FFF;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  box-shadow: 0 0 0px 20px rgba(255, 255, 255, 0.2);
  animation: playVideo1 3s linear infinite;
}
@media (max-width: 1550px) {
  .video-play-btn a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

.mfp-move-from-top {
  transition: initial;
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-move-from-top.mfp-bg {
  opacity: 0.7 !important;
  background-color: #000;
}
.mfp-move-from-top .mfp-container {
  padding: 0;
}
.mfp-move-from-top .mfp-container .mfp-content {
  height: 100%;
  vertical-align: middle;
}
.mfp-move-from-top .mfp-with-anim {
  opacity: 0;
  transition: all 0.5s;
  -webkit-transform: translateY(300px);
  -moz-transform: translateY(300px);
  -ms-transform: translateY(300px);
  -o-transform: translateY(300px);
  transform: translateY(300px);
}
.mfp-move-from-top.mfp-bg {
  opacity: 0;
  transition: all 0.5s;
}
.mfp-move-from-top.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.mfp-move-from-top.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-move-from-top.mfp-removing .mfp-with-anim {
  transform: translateY(100px);
  opacity: 0;
}
.mfp-move-from-top.mfp-removing.mfp-bg {
  opacity: 0;
}
.mfp-move-from-top .mfp-container {
  right: 0;
  width: 100%;
  max-width: 1212px;
  margin-left: auto;
  margin-right: auto;
}
.mfp-move-from-top .mfp-container .mfp-content {
  height: auto;
  padding: 0 15px;
}
.mfp-move-from-top .mfp-container .mfp-content .mfp-figure:after {
  box-shadow: none;
  background: transparent;
}
.mfp-move-from-top .mfp-container .mfp-content .mfp-figure .mfp-close {
  opacity: 1;
  color: #FFF;
  font-size: 16px;
  cursor: pointer;
  line-height: 20px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.mfp-move-from-top .mfp-container .mfp-content .mfp-figure .mfp-close span {
  font-size: 13px;
  margin-left: 7px;
  vertical-align: 1px;
  display: inline-block;
}
.mfp-move-from-top .mfp-container .mfp-content .mfp-figure .mfp-close:hover, .mfp-move-from-top .mfp-container .mfp-content .mfp-figure .mfp-close:focus {
  color: #e6e6e6;
}
.mfp-move-from-top .mfp-container .mfp-content .mfp-figure .mfp-bottom-bar .mfp-title {
  color: red;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.mfp-move-from-top .mfp-container .mfp-content .mfp-figure .mfp-bottom-bar .mfp-counter {
  color: red;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.mfp-move-from-top .mfp-container .mfp-arrow {
  opacity: 1;
  font-size: 18px;
}
.mfp-move-from-top .mfp-container .mfp-arrow:before {
  border: 0;
  color: red;
  transition: all 0.3s;
  font-family: "consulter";
}
.mfp-move-from-top .mfp-container .mfp-arrow:after {
  content: none;
}
.mfp-move-from-top .mfp-container .mfp-arrow.mfp-arrow-left:before {
  content: "\e809";
}
.mfp-move-from-top .mfp-container .mfp-arrow.mfp-arrow-left:hover:before {
  color: #4069FF;
  -webkit-transform: translateX(-10px);
  -moz-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  -o-transform: translateX(-10px);
  transform: translateX(-10px);
}
.mfp-move-from-top .mfp-container .mfp-arrow.mfp-arrow-right:before {
  content: "î Ÿ";
}
.mfp-move-from-top .mfp-container .mfp-arrow.mfp-arrow-right:hover:before {
  color: #4069FF;
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  transform: translateX(10px);
}
.mfp-move-from-top .mfp-container .mfp-bottom-bar {
  margin-top: -20px;
}
.mfp-move-from-top .mfp-container .mfp-bottom-bar .mfp-title {
  color: #4069FF;
}
.mfp-move-from-top .mfp-container .mfp-bottom-bar .mfp-counter {
  color: #4069FF;
}
.mfp-move-from-top .mfp-iframe-scaler {
  overflow: inherit;
  vertical-align: middle;
}
.mfp-move-from-top .mfp-iframe-scaler .mfp-iframe {
  padding: 0;
  margin: 0;
  background: #FFF;
}
.mfp-move-from-top .mfp-iframe-scaler .mfp-close {
  opacity: 1;
  color: #FFF;
  font-size: 35px;
  cursor: pointer;
  line-height: 20px;
  text-transform: uppercase;
  font-family: "consulter";
  transition: all 0.3s ease;
}
.mfp-move-from-top .mfp-iframe-scaler .mfp-close:hover, .mfp-move-from-top .mfp-iframe-scaler .mfp-close:focus {
  color: #e6e6e6;
}

.gallery-bar {
  top: 10px;
  width: 30px;
  left: -15px;
  height: 300px;
  position: absolute;
  background: #4069FF;
  animation: move-bottom 3s linear infinite;
}
@media (max-width: 767px) {
  .gallery-bar {
    width: 20px;
    left: -10px;
    height: 200px;
  }
}
@media (max-width: 480px) {
  .gallery-bar {
    width: 15px;
    left: -7.5px;
    height: 150px;
  }
}

.services-map {
  margin-top: -250px;
}
@media (max-width: 991px) {
  .services-map {
    margin-top: -200px;
  }
}
@media (max-width: 991px) {
  .services-map {
    margin-top: -190px;
  }
}
.services-map__map {
  width: 100%;
  height: 500px;
}
@media (max-width: 991px) {
  .services-map__map {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .services-map__map {
    height: 380px;
  }
}

.counter-area .mb-minus-30 {
  margin-bottom: -30px;
}
.counter-area__item {
  margin-bottom: 30px;
  background: #E2E9FF;
  height: calc(100% - 30px);
}
.counter-area__item.counter-area__item-two {
  background: rgba(255, 156, 0, 0.1);
}
.counter-area__item.counter-area__item-two .icon {
  background: rgba(255, 156, 0, 0.1);
}
.counter-area__item.counter-area__item-three {
  background-color: #FFF;
  border-radius: 6px !important;
}
.counter-area__item.counter-area__item-three .icon {
  background: rgba(64, 105, 255, 0.1);
}
.counter-area__item.counter-area__item-fore {
  background-color: transparent;
  margin-bottom: 0;
  border-radius: 6px !important;
}
.counter-area__item.counter-area__item-fore .text {
  padding-left: 15px;
}
.counter-area__item.counter-area__item-fore .number {
  border-bottom: none !important;
  padding-bottom: 0;
}
.counter-area__item.counter-area__item-fore .icon {
  background: transparent;
}
.counter-area__item.counter-area__item-fore .icon i {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0px 28px;
}
.counter-area__item .icon {
  font-size: 60px;
  min-height: 100%;
  line-height: 120px;
  background: rgba(64, 105, 255, 0.1);
}
@media (max-width: 1299px) {
  .counter-area__item .icon {
    font-size: 50px;
  }
}
.counter-area__item .icon i {
  padding: 30px 28px;
}
@media (max-width: 1299px) {
  .counter-area__item .icon i {
    padding: 20px;
  }
}
.counter-area__item .text {
  width: 100%;
  padding: 17px 0 14px;
}
.counter-area__item .text .number {
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(64, 105, 255, 0.1);
}
@media (max-width: 1299px) {
  .counter-area__item .text .number {
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 5px;
    padding-bottom: 5px;
  }
}

.why-counter__overly .container {
  position: relative;
}
.why-counter__overly .overly:after {
  top: -411px;
  content: "";
  right: -1529px;
  width: 2622.94px;
  height: 1343.56px;
  position: absolute;
  position: absolute;
  background-size: auto;
  background-repeat: no-repeat;
  animation: scale 3s linear infinite;
  background-image: url(assets/images/service/why-counter-overly-1.png);
}
.why-counter__overly .overly:before {
  top: 493px;
  content: "";
  left: -1388px;
  height: 1117px;
  width: 2552.29px;
  position: absolute;
  background-size: auto;
  background-repeat: no-repeat;
  animation: move-bottom 3s linear infinite;
  background-image: url(assets/images/service/why-counter-overly-2.png);
}
@media (max-width: 1199px) {
  .why-counter__overly .overly:before {
    top: 1602px;
  }
}

.qr-code-container {
  position: absolute;
  top: 20px; /* Ajustez selon l'espacement souhaité */
  right: 20px; /* Ajustez selon l'espacement souhaité */
}

.qr-code {
  max-width: 200px; /* Ajustez la taille de l'image selon vos besoins */
}

/* Assurez-vous que le conteneur parent a une position relative */
.contact-wrapper {
  position: relative;
}

@media (max-width: 768px) {
  .qr-code-container {
      display: none;
  }
}

.form-control::placeholder {
  color: black; /* Change la couleur du placeholder à noir */
  opacity: 1; /* Assure que l'opacité est à 100% pour bien voir la couleur */
}


.abeille {
  position: absolute;
  z-index: 10;
}

.haut-gauche {
  top: 104vh;
  left: -60vh;
}

.bas-droite {
  bottom: -23vh;
  right: 5vh;
}

.bas-milieu {
  bottom: -152vh;
  left: 50%;
  transform: translateX(-50%);
}


@media (max-width: 2560px) {
  .haut-gauche {
    top: 90vh;
    left: -5vh;
  }
  
  .bas-droite {
    bottom: 5vh;
    right: 30vh;
  }
  
  .bas-milieu {
    bottom: -180vh;
    left: 50%;
    transform: translateX(-50%);
  }
} 


@media (max-width: 2048px) {
  .haut-gauche {
    top: 90vh;
    left: -15vh;
  }
  
  .bas-droite {
    bottom: -2vh;
    right: 15vh;
  }
  
  .bas-milieu {
    bottom: -200vh;
    left: 50%;
    transform: translateX(-50%);
  }
} 


@media (max-width: 1920px) {
  .haut-gauche {
    top: 110vh;
    left: -15vh;
  }
  
  .bas-droite {
    bottom: -25vh;
    right: 10vh;
  }
  
  .bas-milieu {
    bottom: -261vh;
    left: 50%;
    transform: translateX(-50%);
  }
} 

@media (max-width: 1440px) {
  .haut-gauche {
    top: 120vh;
    left: -45vh;
  }
  
  .bas-droite {
    bottom: -35vh;
    right: -15vh;
  }
  
  .bas-milieu {
    bottom: -300vh;
    left: 50%;
    transform: translateX(-50%);
  }
} 


@media (max-width: 1024px) {
  .haut-gauche {
    display: none;
  }
  .bas-droite {
    bottom: -25vh;
    right: 50vw;
  }
  .bas-milieu {
    bottom: -298vh;
    left: 50%;
    transform: translateX(-50%);
  }
}  

@media (max-width: 768px) {
  .abeille {
    position: absolute;
    z-index: 10;
    width: 65vw; /* Ajuste la taille selon tes besoins */
    height: auto; /* Maintient les proportions de l'image */
  }
  .haut-gauche {
    display: none;
  }
  .bas-droite {
    bottom: 14vh; /* Ajuste pour la visibilité */
    right: 58vw; /* Ajuste pour le centrage */
  }
  .bas-milieu {
    bottom: -266vh;
    left: 50%;
    transform: translateX(-50%);
  }
}  

@media (max-width: 425px) {
  .abeille {
    position: absolute;
    z-index: 10;
    width: 65vw; /* Ajuste la taille selon tes besoins */
    height: auto; /* Maintient les proportions de l'image */
  }
  .haut-gauche {
    display: none;
  }
  .bas-droite {
    bottom: 39vh; /* Ajuste pour la visibilité */
    right: 58vw; /* Ajuste pour le centrage */
  }
  .bas-milieu {
    bottom: -359vh;
    left: 50%;
    transform: translateX(-50%);
  }
} 

@media (max-width: 375px) {
  .abeille {
    position: absolute;
    z-index: 10;
    width: 65vw; /* Ajuste la taille selon tes besoins */
    height: auto; /* Maintient les proportions de l'image */
  }
  .haut-gauche {
    display: none;
  }
  .bas-droite {
    bottom: 43vh; /* Ajuste pour la visibilité */
    right: 58vw; /* Ajuste pour le centrage */
  }
  .bas-milieu {
    bottom: -361vh;
    left: 50%;
    transform: translateX(-50%);
  }
} 

@media (max-width: 320px) {
  .abeille {
    position: absolute;
    z-index: 10;
    width: 65vw; /* Ajuste la taille selon tes besoins */
    height: auto; /* Maintient les proportions de l'image */
  }
  .haut-gauche {
    display: none;
  }
  .bas-droite {
    bottom: 48vh; /* Ajuste pour la visibilité */
    right: 58vw; /* Ajuste pour le centrage */
  }
  .bas-milieu {
    bottom: -360.5vh;
    left: 50%;
    transform: translateX(-50%);
  }
} 

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000; /* Couleur de fond pendant le chargement */
  z-index: 9999;
}

#loader video {
  max-width: 100%;
  max-height: 100%;
}