@import url('https://fonts.googleapis.com/css2?family=Courgette&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

html,
body {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #9b9b9b;
  overflow-x: hidden;
}

::-moz-selection {
  background-color: #53b6bc;
  color: #ffffff;
}

::selection {
  background-color: #53b6bc;
  color: #ffffff;
}

a {
  color: #53b6bc;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

a:hover {
  color: #193a15;
  text-decoration: none;
}

section {
  position: relative;
}

img {
  max-width: 100%;
}

/*-------------------------
     RESET Default Styles
 --------------------------*/
* {
  outline: none;
}

button {
  border: none;
  padding: 0;
}

button,
button:focus,
.form-control,
.form-control:focus {
  outline: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

textarea {
  resize: none;
}

select {
  background-color: transparent;
}


/*-------------------------
   Typography
--------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #282828;
  font-family: "Roboto", sans-serif;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 20px;
}

p {
  line-height: 1.7;
  margin-bottom: 15px;
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 38px;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 18px;
}


/*--------------------
   Buttons
---------------------*/
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 700;
  min-width: 170px;
  height: 60px;
  padding: 0 15px;
  letter-spacing: .3px;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

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

.btn span,
.btn i {
  margin: 0 4px;
}

.btn .icon-arrow-right,
.btn .icon-arrow-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.btn:not(.btn__link):before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #1b1a1a;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-transition: transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
  -webkit-transition: -webkit-transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
  transition: -webkit-transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
  transition: transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
  transition: transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9), -webkit-transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
}

.btn:not(.btn__link):hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.btn__primary {
  background-color: #53b6bc;
  color: #ffffff;
}

.btn__primary:active, .btn__primary:focus {
  background-color: #53b6bc;
  color: #ffffff;
}

.btn__primary.btn__outlined {
  color: #53b6bc;
  background-color: transparent;
  border: 2px solid #53b6bc;
}

.btn__primary.btn__outlined:before {
  background-color: #53b6bc;
}

.btn__primary.btn__outlined .icon-arrow-right,
.btn__primary.btn__outlined .icon-arrow-left {
  color: #ffffff;
  background-color: #53b6bc;
}

.btn__primary.btn__outlined:hover {
  color: #ffffff;
}

.btn__primary.btn__outlined:hover .icon-arrow-right,
.btn__primary.btn__outlined:hover .icon-arrow-left {
  color: #53b6bc;
  background-color: #ffffff;
}

.btn__primary .icon-arrow-right,
.btn__primary .icon-arrow-left {
  color: #53b6bc;
  background-color: #ffffff;
}

.btn__primary:hover {
  color: #ffffff;
}

.btn__primary:hover .icon-arrow-right,
.btn__primary:hover .icon-arrow-left {
  color: #1b1a1a;
}

.btn__primary-style2:before {
  background-color: #ffffff !important;
}

.btn__primary-style2:hover {
  color: #1b1a1a;
}

.btn__primary-style2:hover .icon-arrow-right,
.btn__primary-style2:hover .icon-arrow-left {
  color: #ffffff;
  background-color: #1b1a1a;
}

.btn__secondary {
  background-color: #1b1a1a;
  color: #ffffff;
}

.btn__secondary:before {
  background-color: #53b6bc !important;
}

.btn__secondary .icon-arrow-right,
.btn__secondary .icon-arrow-left {
  color: #1b1a1a;
  background-color: #ffffff;
}

.btn__secondary:hover {
  color: #ffffff;
}

.btn__secondary:hover .icon-arrow-right,
.btn__secondary:hover .icon-arrow-left {
  color: #53b6bc;
}

.btn__secondary:active, .btn__secondary:focus {
  background-color: #1b1a1a;
  color: #ffffff;
}

.btn__secondary-style2:before {
  background-color: #ffffff !important;
}

.btn__secondary-style2:hover {
  color: #1b1a1a;
}

.btn__secondary.btn__outlined {
  background-color: transparent;
  border: 2px solid #1b1a1a;
  color: #1b1a1a;
}

.btn__secondary.btn__outlined:before {
  display: none;
}

.btn__secondary.btn__outlined .icon-arrow-right,
.btn__secondary.btn__outlined .icon-arrow-left {
  color: #ffffff;
  background-color: #1b1a1a;
}

.btn__secondary.btn__outlined:hover {
  color: #ffffff;
  background-color: #1b1a1a;
}

.btn__secondary.btn__outlined:hover .icon-arrow-right,
.btn__secondary.btn__outlined:hover .icon-arrow-left {
  color: #1b1a1a;
  background-color: #ffffff;
}

.btn__white {
  background-color: #ffffff;
  color: #53b6bc;
}

.btn__white:before {
  background-color: #53b6bc !important;
}

.btn__white .icon-arrow-right,
.btn__white .icon-arrow-left {
  color: #ffffff;
  background-color: #53b6bc;
}

.btn__white:hover {
  color: #ffffff;
}

.btn__white:hover .icon-arrow-right,
.btn__white:hover .icon-arrow-left {
  color: #53b6bc;
  background-color: #ffffff;
}

.btn__white:active, .btn__white:focus {
  background-color: #ffffff;
  color: #53b6bc;
}
.header-area{
    background-color: #d4ccf3;
}
/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .btn:not(.btn__link) {
    font-size: 13px;
    min-width: 120px;
    height: 40px;
  }
}



.nice-select {
  width: 100%;
  margin-bottom: 30px;
}

.nice-select .current {
  line-height: 50px;
  color: #9b9b9b;
}

/* Extra Small Devices */
@media (min-width: 320px) and (max-width: 767px) {
  .form-group,
  .nice-select {
    margin-bottom: 20px;
  }
}

#back-top {
    position: fixed;
    bottom: 15px;
    right: 20px;
    z-index: 1000;
    display: none;
    margin-left: 500px;
    width: 35px;
    height: 35px;
    background: #53b6bc;
    border-radius: 50%;
    border: 1px solid #53b6bc;
    color: #FFF;
    text-align: center;
    cursor: pointer;
    -webkit-animation: movebounce 3.6s linear infinite;
    animation: movebounce 3.6s linear infinite;
    line-height: 31px;
}

/*----------------------------
      Navbar & Header
-----------------------------*/
@media screen and (min-width: 992px){
/*header.sticky .wpo-site-header .navbar-header .navbar-brand img {
    max-width: 121px;
}*/
header.sticky .navbar{
    position: fixed;
    top: 0;
    z-index: 999;
    margin: 0;
    -webkit-animation: fadeInDown 0.8s ease-in-out;
    -moz-animation: fadeInDown 0.8s ease-in-out;
    -ms-animation: fadeInDown 0.8s ease-in-out;
    -o-animation: fadeInDown 0.8s ease-in-out;
    animation: fadeInDown 0.8s ease-in-out;
    -webkit-box-shadow: 0px 3px 14px 0px rgb(0 0 0 / 22%);
    -moz-box-shadow: 0px 3px 14px 0px rgb(0 0 0 / 22%);
    box-shadow: 0px 3px 14px 0px rgb(0 0 0 / 22%);
    border-bottom: none;
    width: 100%;
    left: 0;
    right: 0;
    height: 74px;}
}



.header {
  position: relative;
  z-index: 1000;
}

/* Navbar */
.navbar {
  padding: 0;
    height: 56px;
    max-height: 56px;
    background-color: #53b6bc;
  /*  dropdown-menu  */
}

.navbar > .container,
.navbar > .container-fluid {
  position: relative;
  height: 60px;
}

.navbar .navbar-brand {
  padding: 0;
  margin: 0;
  line-height: 90px;
}

.navbar .logo-light {
  display: none;
}

.navbar .navbar-toggler {
  padding: 0;
  border: none;
  border-radius: 0;
  width: 23px;
  position: relative;
}

.navbar .navbar-toggler .menu-lines {
  display: inline-block;
}

.navbar .navbar-toggler .menu-lines:before, .navbar .navbar-toggler .menu-lines:after {
  content: '';
  position: absolute;
  left: 0;
  width: 23px;
  height: 1px;
  display: inline-block;
  background-color: #1b1a1a;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.navbar .navbar-toggler .menu-lines:before {
  top: 0;
}

.navbar .navbar-toggler .menu-lines:after {
  top: 12px;
}

.navbar .navbar-toggler .menu-lines span {
  position: absolute;
  top: 6px;
  left: 0;
  width: 18px;
  height: 1px;
  background-color: #1b1a1a;
}

.navbar .navbar-toggler.actived .menu-lines > span {
  opacity: 0;
}

.navbar .navbar-toggler.actived .menu-lines:before {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navbar .navbar-toggler.actived .menu-lines:after {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar .nav__item {
  position: relative;
}

.navbar .nav__item:last-child {
  margin-right: 0;
}
.navbar-nav{width: 100%;
    justify-content: space-between;}
.navbar .nav__item .nav__item-link {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  position: relative;
  color: #ffffff;
  line-height: 56px;
  letter-spacing: .4px;
  padding-right: 13px;
  padding-left: 9px;
}

.navbar .nav__item .nav__item-link .dropdown-menu .nav__item-link{text-transform:capitalize !important;}
.navbar .nav__item .nav__item-link:before {
  content: '';
  position: absolute;
  left: 0;
  width: 0;
  bottom: 0;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.navbar .nav__item .nav__item-link.active, .navbar .nav__item .nav__item-link:hover {
  color:#e7feff;
}

.navbar .nav__item .nav__item-link.active:before, .navbar .nav__item .nav__item-link.active:before, .navbar .nav__item .nav__item-link:hover:before, .navbar .nav__item .nav__item-link:hover:before {
  width: 100%;
}

.navbar button.dropdown-toggle:not(.lang-dropdown-toggle) {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 3;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.navbar .dropdown-toggle:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  border: none;
  vertical-align: middle;
  margin-left: 0;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);color: #FFF;
}

.navbar .dropdown-menu {
  border-radius: 0;
  border: none;
  margin: 0;
  background-color: #ffffff;
}

.navbar .dropdown-menu .nav__item {
  padding: 0 26px;
  margin-right: 0;
}

.navbar .dropdown-menu .nav__item .nav__item-link {
  font-size: 14px;
  color: #9b9b9b;
  font-weight: 400;
  white-space: nowrap;
  line-height: 36px !important;
  border-bottom: 1px solid #eaeaea;
  text-transform: capitalize;
}

.navbar .dropdown-menu .nav__item .nav__item-link:after {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  width: 10px;
  height: 2px;
  opacity: 0;
  background-color: #53b6bc;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.navbar .dropdown-menu .nav__item .nav__item-link:hover {
  color: #53b6bc;
}

.navbar .dropdown-menu .nav__item .nav__item-link:hover:after {
  opacity: 1;
  left: -15px;
}

.navbar .dropdown-menu .nav__item:last-child .nav__item-link {
  border-bottom: 0;
}

.navbar .dropdown-menu .dropdown-toggle:after {
  right: 0;
}




/* Mobile and Tablets */
@media (max-width: 991px) {
  .navbar .navbar-toggler {
    position: absolute;
    right: 15px;
    height: 13px;
  }
  .navbar .collapse:not(.show) {
    display: block;
  }
  .navbar .navbar-nav {
    margin: 0 !important;
  }
  .navbar .nav__item {
    margin-right: 0;
  }
  .navbar .nav__item .nav__item-link {
    color: #282828;
    line-height: 35px !important;
    padding-left: 15px;
  }
  .navbar .nav__item .nav__item-link:hover {
    color: #53b6bc;
  }
  .navbar .nav__item .nav__item-link:before {
    display: none;
  }
  .navbar .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    padding: 0;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  .navbar .navbar-collapse .navbar-nav {
    opacity: 0;
    width: 240px;
    height: 100%;
    overflow-y: auto;
    padding: 50px 0 20px;
    background-color: #ffffff;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
  }
  .navbar .navbar-collapse.menu-opened {
    opacity: 1;
    visibility: visible;
  }
  .navbar .navbar-collapse.menu-opened .navbar-nav {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .navbar .navbar-collapse.menu-opened .close-mobile-menu {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .navbar .close-mobile-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1100;
    width: 35px;
    height: 35px;
    line-height: 33px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  .navbar button.dropdown-toggle:not(.lang-dropdown-toggle) {
    top: 16px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .navbar .nav__item [data-toggle="dropdown"]:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    width: 50%;
    text-align: right;
    z-index: 2;
    padding-right: 15px;
    line-height: 35px;
    display: block !important;
  }
  .navbar .dropdown-toggle:after {
    display: none;
  }
  .navbar .dropdown-toggle:after{color: #53b6bc;}
  .navbar .nav__item.opened > [data-toggle="dropdown"]:after,
  .navbar .nav__item.show > [data-toggle="dropdown"]:after {
    content: "\f106";
  }
  .navbar .dropdown-menu {
    background-color: white;
  }
  .navbar .dropdown-menu .nav__item {
    padding: 0 15px 0 30px;
  }
  .navbar .dropdown-menu .nav__item .nav__item-link {
    padding-left: 0;
    border-bottom: none;
  }
  .navbar .dropdown-menu .dropdown-menu-col .nav__item {
    padding: 0;
  }
  .navbar .nav__item.dropdown-submenu > .dropdown-menu.show {
    padding-left: 10px;
  }
  .navbar .dropdown-submenu .dropdown-menu .nav__item {
    padding: 0 0 0 15px;
  }
  .navbar .navbar-nav .dropdown-menu.show {
    padding: 0;
  }
  .navbar .mega-dropdown-menu .container {
    max-width: none;
  }
  .navbar .mega-dropdown-menu > .nav__item {
    padding: 0 10px;
  }
  .navbar .mega-dropdown-menu .nav__item {
    padding: 0;
  }
  .header .navbar,
  .header-transparent .navbar {
    background-color: #ffffff;
  }
  .header .logo-dark,
  .header-transparent .logo-dark {
    display: inline-block;
  }
  .header .logo-light,
  .header-transparent .logo-light {
    display: none;
  }
  .header .module__btn,
  .header-transparent .module__btn {
    color: #1b1a1a;
    margin: 0 60px 0 0;
  }
  .header .navbar .navbar-toggler .menu-lines:before,
  .header .navbar .navbar-toggler .menu-lines:after,
  .header .navbar .navbar-toggler .menu-lines span,
  .header-transparent .navbar .navbar-toggler .menu-lines:before,
  .header-transparent .navbar .navbar-toggler .menu-lines:after,
  .header-transparent .navbar .navbar-toggler .menu-lines span {
    background-color: #1b1a1a;
  }
  .header .navbar-expand-lg > .container,
  .header .navbar-expand-lg > .container-fluid,
  .header-transparent .navbar-expand-lg > .container,
  .header-transparent .navbar-expand-lg > .container-fluid {
    width: 100%;
    max-width: none;
  }
  .header .navbar,
  .header .navbar > .container,
  .header .navbar > .container-fluid,
  .header-transparent .navbar,
  .header-transparent .navbar > .container,
  .header-transparent .navbar > .container-fluid {
    height: 116px;
  }
  .header .header-full .navbar,
  .header .header-full .navbar .navbar-brand,
  .header .navbar-brand,
  .header-transparent .header-full .navbar,
  .header-transparent .header-full .navbar .navbar-brand,
  .header-transparent .navbar-brand {
    margin-left: 15px;
    line-height: 70px !important;
  }
  .header .header-full .navbar,
  .header .header-full .navbar .navbar-brand,
  .header-transparent .header-full .navbar,
  .header-transparent .header-full .navbar .navbar-brand {
    line-height: 70px;
  }
  .header-topbar > .container {
    max-width: none;
  }
  .lang-dropdown .lang-dropdown-toggle,
  .header-transparent .action__btn {
    color: #1b1a1a;
  }
  .action__btn-search {
    position: absolute;
    top: 50%;
    right: 80px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

/* Medium and large Screens */
@media (min-width: 992px) {
  .navbar .dropdown-menu {
    width: auto;
    min-width: 235px;
    -webkit-box-shadow: 0px 2px 6px 0px rgba(40, 40, 40, 0.1);
            box-shadow: 0px 2px 6px 0px rgba(40, 40, 40, 0.1);
    padding: 25px 0 23px;
    border-radius: 0 0 6px 6px;
  }
  .navbar .dropdown-menu .nav__item .nav__item-link:before {
    display: none;
  }
  .navbar .dropdown-menu.wide-dropdown-menu {
    padding: 0;
    min-width: 500px;
    overflow: hidden;
  }
  .navbar .dropdown-menu.wide-dropdown-menu > .nav__item {
    padding: 0;
  }
  .navbar .dropdown-menu.wide-dropdown-menu .dropdown-menu-title {
    color: #282828;
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 1;
    margin: 0 0 13px 40px;
  }
  .navbar .dropdown-menu.wide-dropdown-menu .dropdown-menu-col {
    padding: 40px 0 27px;
  }
  .navbar .dropdown-menu.wide-dropdown-menu .dropdown-menu-col:first-child {
    position: relative;
  }
  .navbar .dropdown-menu.wide-dropdown-menu .dropdown-menu-col:first-child:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #e9e9e9;
  }
  .navbar .nav__item.has-dropdown > .dropdown-menu,
  .navbar .nav__item.dropdown-submenu > .mega-menu,
  .navbar .nav__item.has-dropdown > .mega-menu,
  .navbar .nav__item.has-dropdown > .dropdown-menu > .nav__item.dropdown-submenu > .dropdown-menu {
    display: block;
    position: absolute;
    left: 0;
    right: auto;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  .navbar .nav__item.has-dropdown > .dropdown-menu > .nav__item.dropdown-submenu > .dropdown-menu,
  .navbar .nav__item.dropdown-submenu > .dropdown-menu > .nav__item.has-dropdown > .dropdown-menu {
    top: 0;
    left: 100%;
  }
  .navbar .nav__item.has-dropdown:hover > .dropdown-menu,
  .navbar .nav__item.dropdown-submenu:hover > .mega-menu,
  .navbar .nav__item.has-dropdown:hover > .mega-menu,
  .navbar .nav__item.has-dropdown > .dropdown-menu > .nav__item.dropdown-submenu:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .navbar .nav__item.has-dropdown.mega-dropdown {
    position: static;
  }
  .navbar .nav__item.has-dropdown .mega-dropdown-menu {
    width: 100%;
  }
  .navbar .dropdown-menu.mega-dropdown-menu .nav__item {
    padding: 0;
  }
  .navbar .dropdown-menu.mega-dropdown-menu .nav__item .nav__item-link {
    overflow: hidden;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .navbar .dropdown-menu.mega-dropdown-menu .nav__item .nav__item-link:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f111";
    position: absolute;
    top: auto;
    left: -7px;
    font-size: 7px;
    opacity: 0;
    color: #53b6bc;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .navbar .dropdown-menu.mega-dropdown-menu .nav__item .nav__item-link:hover {
    padding-left: 15px;
  }
  .navbar .dropdown-menu.mega-dropdown-menu .nav__item .nav__item-link:hover:after {
    opacity: 1;
    left: 4px;
  }
  .nav__item i[data-toggle="dropdown"] {
    display: none;
  }
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .dropdown-menu.mega-dropdown-menu > .nav__item {
    padding: 0 15px;
  }
  .dropdown-menu.mega-dropdown-menu .nav__item:last-child > .nav__item-link {
    border-bottom: 1px solid #f2f2f2;
  }
  .dropdown-menu.mega-dropdown-menu [class^="col-"]:last-child .nav__item:last-child > .nav__item-link {
    border-bottom: none;
  }
}

/* Header Animation */
@-webkit-keyframes translateHeader {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes translateHeader {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

       /*sLIDER_START*/




@media (min-width: 992px) {
.owl-nav.disabled{display: none !important;}
.dektopview{display: block;}
.mobileview{display: none;}
.swiper-container {
  height: calc(89vh );margin: 0px;}
}
@media (max-width: 991px) {
.dektopview{display: none;}
.mobileview{display: block;}
.swiper-container {
  height: calc(58vh );margin: 0px;}
}
/*@media (max-width: 767px) {
.swiper-container {
  height: calc(29vh );margin: 0px;}
}*/
@media (max-width: 480px) {
.swiper-container {
  height: calc(25vh );margin: 0px;}
}
.swiper-slide {
    overflow: hidden;}
.slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
  }
.swiper-wrapper img{
  display:block;
  width:100%;
  height: 100%;object-fit: cover;}
.content_text{
    position: relative;
    left: 0;
    right: 0;
    z-index: 9;
    text-align: left;
    display: flex;
    height: 75vh;
    flex-direction: column;
    justify-content: center;}
@media (min-width: 992px){
.content_text {
    width: 800px;}
}
.slider-sub-title{color:#FFF;}
.swiper-slide:before{content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgb(27 26 26 / 12%);}

.swiper-slide-active .slider-sub-title {
    animation: rollIn 1s;
}

.swiper-slide-active .content_text p{
    animation: fadeInRight 1.5s;
}
.swiper-slide-active .content_text h2 {
    animation: fadeInRight 1.5s;
}
.swiper-slide-active .content_text h3 {
    animation: fadeInRight 1.5s;
}


.swiper-slide-active .slider-buttton {
    animation: zoomIn 2s;
}

.header-wrapper{display: flex;
    justify-content: flex-end;height: 100%;
    align-items: center;}
.header_text{display: flex;}
.header_right{display: flex;margin-right: 69px;align-items: center;}
.header-right-text{display: flex;
    flex-direction: column;}
.iconsize{font-size: 41px;
    color: #53b6bc;
    margin-right: 9px;}
.btn.btn__primary.tpobtn{height: 53px !important;background-color: #53b6bc !important;}
.btn.btn__primary.tpobtn .icon-next.icon-arrow-right{color: #53b6bc;}

.text{
    color: #9f3c3c;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Courgette', cursive;}
.phone {
    color: #595959;
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
}
.header-logo{
    width: 95px;
    padding: 5px 0 4px;
    margin-left: 29px;
}

.swiper-slide .content_text p{display: block;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 13px;}
.swiper-slide .content_text h2{font-size: 75px;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 20px;text-transform: uppercase;}
.swiper-slide .content_text h3{font-size: 17px;
    line-height: 1.5;
    font-weight: 700;
    color: #ffffff;
    max-width: 580px;
    margin-bottom: 34px;}
.mr-30 {
    margin-right: 30px !important;}

/****feature-area****/
.cm-features-area {
  -webkit-transform: translate(0, -32%);
          transform: translate(0, -32%);
  margin-bottom: -29px;
  z-index: 1;
  position: relative;
}

.single-features-wrap {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 5px rgba(0, 6, 18, 0.1);
          box-shadow: 0px 2px 5px rgba(0, 6, 18, 0.1);
  text-align: center;
  padding: 40px 40px 36px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single-features-wrap.single-features-wrap-active {
  background: #53b6bc;
}
.single-features-wrap.single-features-wrap-active .icon {
  background: rgba(255, 255, 255, 0.2);
}
.single-features-wrap.single-features-wrap-active .icon i {
  -webkit-filter: brightness(222);
          filter: brightness(222);
  -webkit-transition: 0.7s;
  transition: 0.7s;
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}
.single-features-wrap.single-features-wrap-active p,
.single-features-wrap.single-features-wrap-active h4 {
  color: #fff;
}
.single-features-wrap .icon {
  background: #cfebec;
  display: inline-block;
  border-radius: 50%;
  height: 70px;
  width: 70px;
  line-height: 70px;
  margin-bottom: 20px;
  color: #1d4a4d;
}
.single-features-wrap h4 {
  color: #000C22;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
}
.single-features-wrap p {
  color: #4F576D;
  margin-top: 10px;
  margin-bottom: 0;
}

.fonticon{line-height: 72px;font-size: 40px;}

/*
* 10. about styles
*/
.about-one {
  padding-top: 100px;
  padding-bottom: 80px;
  background-color: #fff;
  background-image: url(../images/about-bg-1-1.png);
  background-position: bottom;
  background-repeat: no-repeat;
}
.about-one .container {
  position: relative;
}
.about-one__content {
  -webkit-box-shadow: 0 0 13px rgba(0, 0, 0, 0.24);
          box-shadow: 0 0 13px rgba(0, 0, 0, 0.24);
  padding: 70px 35px;
  padding-bottom: 85px;
  margin-left: 85px;
  position: relative;
  z-index: 10;
  background-color: #fff;
}
.about-one__content:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 140px);
  height: 6px;
  background-color: #53b6bc;
}
.about-one .block-title {
  margin-bottom: 30px;
}
.about-one .block-title h3 span {
  color: #53b6bc;
}
.about-one .block-title__line {
  width: 80px;
  margin: 0;
  margin-top: 10px;
}

.about-one__images {
  position: absolute;
  top: -75px;
  left: 17px;
}

.about-one__image-2 {
  border: 9px solid #ffffff;
  position: absolute;
  bottom: -100px;
  left: 0;
}

.about-one__text p {
  margin: 0;
  color: #262727;
  font-size: 16px;
  line-height: 26px;
}

.about-one__btn {
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 65px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.about-one__btn:hover {
  background-color: #196cbf;
  color: #fff;
}

.about-one__counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 80px;
}
@media (min-width: 1200px) {
  .about-one__counter {
    text-align: right;
  }
}

.about-one__counter-single {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 5px;
  margin-bottom: 30px;
}
.about-one__counter-single h3 {
  color: #53b6bc;
  margin: 0;
  font-size: 45px;
  font-weight: bold;
  line-height: 1em;
  margin-bottom: 5px;
}
.about-one__counter-single p {
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
  color: #2b3036;
  font-size: 16px;
  font-weight: 500;
}

.about-one__counter-single + .about-one__counter-single {
  border-left: 1px solid #DDDDDD;
  padding-left: 40px;
  margin-left: 40px;
}
.about-one .block-title__line {
    width: 80px;
    margin: 0;
    margin-top: 10px;
}
.block-title__line {
    display: block;
    background-color: #53b6bc;
    width: 123px;
    height: 3px;}



.single-service-style-one {
    margin-bottom: 70px;
    position: relative;
}

.single-service-style-one .image-block {
    position: relative;
}

.single-service-style-one .image-block .overlay-block {
    position: absolute;
    left: 0px;
    bottom: 0px;
    right: 0px;
    top: 0px;
    z-index: 2;
    opacity: 0;
    transition: all 900ms ease;
}

.single-service-style-one .image-block .overlay-block:before {
    position: absolute;
    content: '';
    top: 0px;
    left: 0px;
    width: 100%;
    height: 50%;
    display: block;
    opacity: 0;
    text-align: center;
    -webkit-transform: perspective(400px) rotateX(-90deg);
    transform: perspective(400px) rotateX(-90deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    transition: all 0.5s;
    background-color: rgb(83 182 188 / 73%);
}

.single-service-style-one .image-block .overlay-block:after {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 50%;
    display: block;
    opacity: 0;
    text-align: center;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    transition: all 0.5s;
    background-color: rgb(83 182 188 / 73%);
}

.single-service-style-one .main-content {
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    opacity: 1;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    width: calc(100% - 60px);
    box-shadow: 0px 0px 21px rgba(0, 0, 0, 0.1);
    transition: all .4s ease;
}

.single-service-style-one .main-content .icon-block,
.single-service-style-one .main-content .text-block {
    display: table-cell;
    vertical-align: middle;
}

.single-service-style-one .main-content .icon-block .inner-box {
    width: 65px;
    height: 65px;
    background: #53b6bc;
    text-align: center;
}

.single-service-style-one .main-content .icon-block .inner-box i {
    font-size: 28px;
    color: #fff;
    line-height: 65px;
}

.single-service-style-one .main-content .text-block {
    padding-left: 19px;
}

.single-service-style-one .main-content .text-block h3 {
    margin: 0;
    font-size: 15px;
    font-weight: bold;
}

.single-service-style-one .main-content .text-block h3 a {
    color: #2E2E2E;
    transition: all .4s ease .2s;
}

.single-service-style-one .hover-content {
    position: absolute;
    background: #fff;
    position: absolute;
    bottom: -32.5px;
    left: 50%;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-30%);
    transform: translateX(-50%) translateY(-30%);
    width: calc(100% - 60px);
    text-align: center;
    z-index: 10;
    padding: 33px 25px;
    box-shadow: 0px 0px 21px rgba(0, 0, 0, 0.1);
    transition: all .4s ease;
}

.single-service-style-one .hover-content p {
    margin: 0;
    font-size: 16px;
    line-height: 26px;
    color: #83888D;
    margin-bottom: 15px;
}

.single-service-style-one .hover-content a.read-more {
    text-transform: uppercase;
    color: #53b5bb;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    line-height: 21px;
    position: relative;
    z-index: 11;
    transition: all .4s ease;
}

.single-service-style-one .hover-content a.read-more i {
    font-size: 21px;
    line-height: 26px;
    vertical-align: -4px;
    margin-left: 6px;
}

.single-service-style-one .hover-content a.read-more:hover {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
    color: #2E2E2E;
}

.single-service-style-one .hover-content .box-icon {
    color: #000000;
    opacity: .04;
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 160px;
    z-index: 1;
}

.single-service-style-one:hover .main-content {
    opacity: 0;
    -webkit-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
}

.single-service-style-one:hover .hover-content {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
}

.single-service-style-one:hover .overlay-block {
    opacity: 1;
}

.single-service-style-one:hover .image-block .overlay-block:before {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    transition: all 700ms ease 100ms;
}

.single-service-style-one:hover .image-block .overlay-block:after {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    transition: all 700ms ease 300ms;
}

.sec-pad-with-content-margin-70 {
    padding: 50px 0;
    padding-bottom: 30px;
}
.sec-title-two {
    margin-bottom: 40px;
    position: relative;
}
.sec-title-two span.tag-line {
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    display: block;
    font-size: 14px;
}
.sec-title-two h2 {
    margin: 0;
    color: #2E2E2E;
    font-size: 40px;
    line-height: 50px;
    font-weight: 400;
    margin-top: 5px;
    font-weight: bold;
}
.sec-title-two h2+p {
    margin-top: 14px;
}
.sec-title-two p {
    color: #83888D;
    font-size: 18px;
    line-height: 28px;
}
.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.cm-cta h2{color:#FFF;}
.overlay-dark{position: relative;
    z-index: 1;}
.cm-cta:after {
    background-color: #2a8186db;
    opacity: 0.85;
}
.overlay-dark::after{position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    }
.cm-cta{padding: 100px 0;}

====================================================================
  Services Section One
====================================================================

***/

.services-section-one{
  position:relative;
  padding: 110px 0px 50px;
  overflow: hidden;
}

.services-section-one .pattern-image-left{
  position: absolute;
  left: 0;
  bottom: 50px;
  width: auto;
  height: auto;
}

.services-section-one .pattern-image-right{
  position: absolute;
  right: 0;
  bottom: 30px;
  width: auto;
  height: auto;
}

.service-block{
  position: relative;
  margin-bottom: 30px;
}

.service-block .image-column{
  position: relative;
  margin-bottom: 30px;
}

.service-block .image-column .inner{
  position: relative;
  display: block;
  padding-right: 80px;
}

.service-block .image-column .image,
.service-block .image-column .image img{
  display: block;
  width: 100%;
}

.service-block .image-column .icon-box{
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -60px;
  width: 120px;
  height: 120px;
  font-size: 54px;
  line-height: 120px;
  color: #53b6bc;
  background: #ffffff;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
}

.service-block.now-in-view .image-column .icon-box{
  -ms-transform: scale(1.2) rotate(360deg);
  transform: scale(1.2) rotate(360deg);
    -webkit-transition: all 2000ms ease 500ms;
    -ms-transition: all 2000ms ease 500ms;
    -o-transition: all 2000ms ease 500ms;
    -moz-transition: all 2000ms ease 500ms;
    transition: all 2000ms ease 500ms;
}

.service-block .text-column{
  position: relative;
  margin-bottom: 30px;
}

.service-block .text-column .inner{
  position: relative;
  display: block;
  padding-left: 20px;
  padding-top: 30px;
  padding-right: 150px;
}

.service-block .text-column .title{
  position: relative;
  margin-bottom: 26px;
}

.service-block .text-column .title h2{
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 3px;
}

.service-block .text-column .title .sub-text{
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4em;
  text-transform: uppercase;
  margin: 0;
  color: #aaaaaa;
}

.service-block .text-column .text{
  position: relative;
  margin-bottom: 30px;
}

.service-block .text-column .link-box{
  position: relative;
}

.service-block .text-column .link-box a{
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  text-transform: uppercase;
}

.service-block .text-column .link-box a .txt{
  position: relative;
  display: inline-block;
  border-bottom: 1px solid;
}

.service-block .text-column .link-box a .icon{
  position: relative;
  font-size: 16px;
  padding-left: 7px;
  color: #53b6bc;
}

.service-block .text-column .link-box a:hover{
  color: #53b6bc;
}

.services .service-block:nth-child(even) .text-column{
  order: 0;
}

.services .service-block:nth-child(even) .image-column .icon-box{
  right: auto;
  left: 20px;
}

.services .service-block:nth-child(even) .image-column{
  order: 12;
}

.services .service-block:nth-child(even) .image-column .inner{
  padding-right: 0;
  padding-left: 80px;
}

.services .service-block:nth-child(even) .text-column .inner{
  padding-right: 20px;
  padding-left: 150px;
  text-align: right;
}

.textt {
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 400;
    margin: 0 0;
}
.service-block .text-column .textt {
    position: relative;
    margin-bottom: 30px;
}
.gallery-item {
    margin-bottom: 15px;
}

/*** 
=============================================
    Testimonial Area Style      
=============================================
***/
.testimonial-area {
    position: relative;
    display: block;
    padding: 100px 0 100px;
    background: #203260;
}
.testimonial-area.home-two {
    position: relative;
    background: #53b6bcba url(../images/testi-bg-1-1.png) center right no-repeat fixed;
    background-size: cover;
}
.testimonial-area.home-two:before {
    content: '';
    background: #53b6bc;
    width: 100%;
    height: 100%;
    opacity: .97;
    position: absolute;
    top: 0;
    left: 0;
}
.testimonial-area .sec-title p{
    color: #5b6c9a;    
}
.single-testimonial-item{
    position: relative;
    display: block;
    background: transparent;
    padding-top: 50px;
    z-index: 1;
}
.single-testimonial-item:before {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: -10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.20);
    content: "";
    z-index: 3;
}
.single-testimonial-item .img-box{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    z-index: 2;
}
.single-testimonial-item .img-box img{
    border-radius: 50%;
}
.single-testimonial-item .inner-content{
    position: relative;
    display: block;
    padding: 73px 90px 45px;
    background: #ffffff;
}
.single-testimonial-item .inner-content:before {
    position: absolute;
    top: 43px;
    left: 40px;
    font-family: 'icomoon';
    content: "\e920";
    font-size: 56px;
    line-height: 56px;
    color: #f3f7fa;
    transform: perspective(0) rotateY(180deg);
}
.single-testimonial-item .inner-content:after {
    position: absolute;
    right: 40px;
    bottom: 43px;
    font-family: 'icomoon';
    content: "\e920";
    font-size: 56px;
    line-height: 56px;
    color: #f3f7fa;
}

.single-testimonial-item .inner-content .text-box{
    position: relative;
    display: block;
    padding-bottom: 17px;
}
.single-testimonial-item .inner-content .text-box p{
    color: #83888d;
    font-size: 17px;
    line-height: 30px;
    margin: 0;
}
.single-testimonial-item .inner-content .client-info{
    position: relative;
    display: block;    
}
.single-testimonial-item .inner-content .client-info h3{
    margin: 0 0 6px;
    font-size: 16px;
}
.single-testimonial-item .inner-content .client-info p{
    color: #3398fd;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
}
.single-testimonial-item .inner-content .client-info p span:before {
    position: relative;
    top: 0px;
    display: inline-block;
    padding-right: 3px;
    font-size: 13px;
    line-height: 13px;
}
.brand-carousel img {
    width: auto;
   /* -webkit-filter: contrast(0.01);
    filter: contrast(0.01);
    -webkit-transition: 0.3s;
    transition: 0.3s;*/
    margin: auto;
}

/*.brand-carousel img:hover {
    -webkit-filter: contrast(1);
    filter: contrast(1);
}*/
.bg-light-gray {
    background-color: #f3f3f5 !important;padding-top: 100px;
    padding-bottom: 100px;
}

.owl-carousel.brand-carousel .owl-item img{width: initial !important;}


.footer-links a {
  position: relative;
  color: #cecece;
  margin-top: 15px;
    display: block;
}
.footer-links a:hover {
  text-decoration: none;
  color:#53b6bc;
}
.footer-links a::before {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900;
  margin-right: 8px;
  font-size: 14px;
}
.footer h4{font-size: 20px;line-height: 1.2;}
.social-links li {
    display: inline-block;
    margin-right: 10px;
}
.social-links li a {
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #728199;
    color: #53b6bc;
    border-radius: 50px;
}
.text-gray {
    color: #cecece !important;
}
.mt-20 {
    margin-top: 20px;
}
.text-primary {
    color: #53b6bc !important;
}
.ml-30 {
    margin-left: 30px;
}
.mt-10 {
    margin-top: 10px;
}
.mt-25 {
    margin-top: 25px;
}
.input-group-primary {
    height: 45px;
    border: 1px solid #7988a1;
    border-radius: 50px;
    max-width: 250px;
}
.input-group-primary .form-control {
    height: 44px;
}
.input-group-primary .btn {
    color: #ffffff !important;min-width: initial !important;
    padding: 0;
    line-height: 39px;
    height: 39px;
    width: 39px;
    font-size: 13px;
    margin-top: 2px;
    margin-right: 2px;
}
.btn-primary{background-color: #53b6bc;
    border-color: #53b6bc;}
.home-4 .btn {
    padding: 18px 25px;
    text-transform: capitalize;
    border-radius: 5px;
}
.ptpb{padding: 80px 0;}

@media screen and (min-width: 992px){
.d_bilenone{display: none;}


  }
@media only screen and (max-width: 1139px){
.services .service-block:nth-child(even) .text-column .inner, .service-block .text-column .inner {
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;}
}
@media screen and (max-width: 991px){
.m_bilenone{display: none;}
.m_logodivice img{width: 100px;}
.navbar {
    padding: 0;
    height: initial;
    max-height: initial;}
.content_text{display: none;}
.single-features-wrap{margin-bottom: 25px;}
.about-one__images {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 150px;}
.about-one__content {
    margin: 0;}
.about-one__counter {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;}   
.about-one__counter-single + .about-one__counter-single {
    padding-left: 20px;
    margin-left: 20px;} 
.about-one {
    padding-top: 47px;
    padding-bottom: 40px;}   
.service-block .image-column .inner, .services .service-block:nth-child(even) .image-column .inner {
    padding-right: 0;
    padding-left: 0;}
.gallery-item img{object-fit: cover;
    width: 100%;}
.service-block .image-column .icon-box {
    right: 50%;
    top: 50%;
    margin: -60px -60px 0px 0px;}
.services .service-block:nth-child(even) .image-column {
    order: 0;}
.services .service-block:nth-child(even) .image-column .icon-box {
    right: auto;
    left: 50%;
    top: 50%;
    margin: -60px 0px 0px -60px;}
.service-block .text-column .title h2, .pricing-block .plan-header .plan-title h2 {
    font-size: 24px;}
}
@media (max-width: 767px){
.cm-features-area {
    transform: none;
    margin: 30px 0 0;}
.services .service-block:nth-child(even) .text-column .inner {
    text-align: left;}
}
@media (max-width: 480px){
.about-one__counter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;}
.about-one__counter-single + .about-one__counter-single {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #DDDDDD;
    padding-top: 30px;
    margin-top: 0px;}
.single-testimonial-item .inner-content{padding: 73px 10px 45px;}
h3 {font-size: 18px;}
.about-one__counter-single h3{font-size: 31px;}
.sec-title-two h2{font-size: 31px;}
.sec-title-two p{font-size: 12px;
    line-height: 21px;}
.sec-pad-with-content-margin-70{padding: 20px 0;}
.single-service-style-one .hover-content p{font-size: 12px;
    line-height: 21px;}
h2 {font-size: 24px;}
.service-block .text-column .title h2, .pricing-block .plan-header .plan-title h2 {
    font-size: 19px;}
}

        /*About_us_page*/

.page_content{padding-top: 60px;
    padding-bottom: 60px;}
.cm-page-header {
    padding-top: 100px;
    padding-bottom: 100px;
}
.overlay-dark{position: relative;
    z-index: 1;}
.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.cm-page-header.overlay-dark::after {
    background: linear-gradient(85deg, rgba(3, 109, 154, 0.8 ) 30%, rgba(247, 136, 3, 0.9 ) 100%) !important;
    
}
.overlay-dark::after{position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;}
.breadcrumb a.text-primary:hover {
    color: #ffaa19 !important;
    opacity: 0.7;
}
.cm-services .nav-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px 35px;
  color: #cecece !important;
  text-transform: uppercase;
  font-weight: 600;
}
.cm-services .nav-link:last-child {
  border-bottom: 0;
}
.cm-services .nav-link:hover, .cm-services .nav-link.active {
  background-color: #ffaa19;
  color: #35382f !important;
}
.cm-services.cm-services-02 .nav-link {
  border-bottom: 1px solid rgba(53, 56, 47, 0.1);
  background-color: rgba(53, 56, 47, 0.05);
  padding: 20px 35px;
  color: #35382f !important;
  text-transform: uppercase;
  font-weight: 600;
}
.cm-services.cm-services-02 .nav-link:last-child {
  border-bottom: 0;
}
.cm-services.cm-services-02 .nav-link:hover, .cm-services.cm-services-02 .nav-link.active {
  background-color: #53b6bc;
    color: #ffffff !important;
}

      /*contact_us*/

.single-contact-info {
    margin-bottom: 20px;
}
.single-contact-info .thumb {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: #53b6bc;
    line-height: 51px;
    text-align: center;
    font-size: 20px;
    color: #fff;
    margin-right: 20px;
}
.single-contact-info .media-body p, .single-contact-info .media-body h4 {
    color: #000612;
    margin-bottom: 10px;
}
.social-links li a {
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #728199;
    color: #ffaa19;
    border-radius: 50px;
}
.social-links li a:hover {
    background-color: #ffaa19;
    color: #ffffff;
    border-color: transparent;
}
.social-links li {
    display: inline-block;
    margin-right: 10px;
}
.single-contact-info .media-body h4{font-size: 20px;}
.comments-form h4{font-size: 20px;}
.contact-form-inner .section-title h3{font-weight: 700;
    line-height: 1.39;
    font-size: 25px;margin-top: 0.5rem;}
.contact-form-inner .section-title h6{margin-bottom: 5px;
  color: #53b6bc;font-size: 18px;}


        /*gallery*/
.row.no-gutter > [class^="col-"], .row.no-gutter > [class*=" col-"] {
    padding-right: 6px;
    padding-left: 6px;
}
.card {
    position: relative;
}
[class*="shadow"] {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.border-variant-soft {
    border-color: #e8e8e8 !important;
}
.shadow-sm {
    -webkit-box-shadow: 0 0.125rem 0.25rem rgb(24 28 50 / 7%) !important;
    box-shadow: 0 0.125rem 0.25rem rgb(24 28 50 / 7%) !important;
}
.bg-soft {
    background-color: #f5f5f5 !important;
}
.profile-card .profile-image-small {
    width: 8rem;
    height: 8rem;
    margin: 0 auto;
}
.profile-card .profile-image-small img {
    border: 0.25rem solid #ffffff;
}
.card.bg-soft .text-gray {
    color: #181C32 !important;
}

/* ROAD MAP SECTION */
.road-map{
    padding: 37px 18px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;}
.road-map h6{
    letter-spacing: 3.2px;}
.road-map .roadmap_content{
    padding: 120px 0;}
.road-map .roadmap_box_wrapper .box-outer{
    margin: 26px 1px 14px 16px;}
.road-map .roadmap_box_wrapper .box-outer span{
    display: block;
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
}
.road-map .roadmap_box_wrapper .box-outer i{
    color: #f5bc37;
    font-size: 22px;
    line-height: 22px;
    background: #ffffff;
    border-radius: 100px;
}
.roadmap_box_wrapper .box {
    background-color: #FFF;
    padding: 22px 23px 22px;
    width: 100%;
    text-align: center;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    min-height: 176px;
}
.roadmap_box_wrapper .roadmap_box_heading{
    font-size: 17px;
    line-height: 27px;
    font-weight: 500;
    color: #53b6bc;
    text-align: left;
    margin-bottom: 6px;
}
.roadmap_box_wrapper .roadmap_box_content{
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #717171;
    text-align: left;
}
.road-map .owl-carousel .owl-nav{
    display: block !important;
    margin-top: 0px;
}

.road-map .owl-carousel .owl-stage-outer::after {
    content: "";
    height: 2px;
    width: 100%;
    background-color: #e6e6e6;
    position: absolute;
    top: 74px;
    left: 0;
    z-index: -1;
}
.road-map .owl-carousel .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
    line-height: 19px;
    border-radius: 100px;
    margin: 0 10px;
    background: #53b6bc;
    border: 1px solid #53b6bc;
    transition: all 0.3s ease-in-out;
}
.road-map .owl-carousel .owl-nav button.owl-prev:hover {
    background-color: #ffc107;
    border: 1px solid #ffc107;
}
.road-map .owl-carousel .owl-nav button.owl-prev span {
    font-size: 42px;
    line-height: 34px;
    color: #FFF;
}
.road-map .owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    line-height: 19px;
    border-radius: 100px;
    margin: 0 10px;
    background: #53b6bc;
    border: 1px solid #53b6bc;
    transition: all 0.3s ease-in-out;
}
.road-map .owl-carousel .owl-nav button.owl-next:hover {
    background-color: #ffc107;
    border: 1px solid #ffc107;
}
.road-map .owl-carousel .owl-nav button.owl-next span {
    font-size: 42px;
    line-height: 34px;
    color: #FFF;
}
.road-map .owl-carousel .owl-nav button:focus{
    outline: none;
}


      /*why_chose_us*/

.features-content-wrap .single-item {
    border: 1px solid #ebebeb;
    padding: 8px;
    padding-top: 30px;
    border-radius: 10px;
    margin-bottom: 25px;
    min-height: 180px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.features-content-wrap .single-item .features-content .title {
    padding-top: 10px;
    border-radius: 10px;
    margin-bottom: 0;
    font-size: 15px;
    color: #19666b;
}
.features-content-wrap .single-item .features-icon span{font-size: 60px;color: #19666b;}


/*========================================*/
.accordion .accordion-item {
  margin-bottom: 15px;
  float: left;
  width: 100%;
}
.accordion .accordion-item .accordion-header {
  position: relative;
}
.accordion .accordion-item .accordion-header.active .title {
  background: linear-gradient(-20deg, #0E90D5, #53b6bc) !important;
  color: #fff;
}
.accordion .accordion-item .accordion-header.active span {
  background: #fff !important;
}
.accordion .accordion-item .accordion-header.active span:before {
  content: "\f063";
  color: #0c59db;
}
.accordion .accordion-item .accordion-header .title {
  cursor: pointer;
  color: #253c61;
  position: relative;
  background: #edf0fa;
  margin: 0;
  padding: 24px 20px 20px 70px;
  font-size: 18px;
}
.accordion .accordion-item .accordion-header span {
  position: absolute;
  left: 20px;
  top: 20px;
  height: 30px;
  width: 30px;
  color: #ffffff;
  background: linear-gradient(-20deg, #0E90D5, #00bcd4) !important;
  text-align: center;
  line-height: 30px;
  font-size: 13px;
  border-radius: 80%;
}
.accordion .accordion-item .accordion-body {
  padding: 20px;
  background: #edf0fa;
  display: none;
}
.accordion .accordion-item .accordion-body p {
  font-size: 15px;
  color: #444444;
  margin: 0px;
}
.accordion .accordion-item:nth-child(1) .accordion-body {
  display: block;
}
.faq-block .faq-title{font-size: 25px;
    margin-top: 25px;}

        /*client_list*/

.team-two-area .single-team-two {
    text-align: center;
    margin-bottom: 30px;
}
.team-two-area .single-team-two .team-image {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    width: 180px;
    height: 180px;
}
.team-two-area .single-team-two .team-image a {
    display: block;
}
.team-two-area .single-team-two .team-image a img {
    width: 100%;
}
.team-two-area .single-team-two .team-image .overley2 {
    background: rgba(28, 185, 200, 0.8) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    margin: auto;
    opacity: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    transform: scaleY(0);
    transform: translate3d(0px, 0px, 0px);
    transition: all 0.5s ease 0s;
    width: 100%;
    visibility: hidden;
    border-radius: 50%;
}
.team-two-area .single-team-two:hover .team-image .overley2 {
    opacity: 1;
    transform: scaleY(1);
    visibility: visible;
}
.team-two-area .single-team-two .team-image .overley2 ul {
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
}
.team-two-area .single-team-two .team-image .overley2 ul li {
    display: inline-block;
    margin: 0 5px;
}
.team-two-area .single-team-two .team-image .overley2 ul li a {
    border: 1px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    display: block;
    font-size: 20px;
    height: 40px;
    line-height: 38px;
    transition: all 0.5s ease 0s;
    width: 40px;
}
.team-two-area .single-team-two .content {
    margin-top: 20px;
    text-align: center;
}
.team-two-area .single-team-two .content h3 {
    margin-bottom: 8px;font-size: 15px;color: #282828;
}


        /*our_mission&_vission*/

.misson{display: flex;
    padding: 23px;}

.misson .faicon{width: 120px;
    height: 120px;
    font-size: 54px;
    line-height: 120px;
    color: #53b6bc;
    background: #ffffff;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 15%);
    margin-right: 23px;}
.misson_content{width: 86%;}
.misson_content h2{font-size: 25px;
    margin-bottom: 9px;
    color: #236468;}
.misson_content p{font-size: 16px;
    color: #393838;}

.visson{display: flex;
    padding: 23px;}

.visson .faicon{width: 120px;
    height: 120px;
    font-size: 54px;
    line-height: 120px;
    color: #53b6bc;
    background: #ffffff;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 15%);
    margin-right: 23px;}
.visson_content{width: 86%;}
.visson_content h2{font-size: 25px;
    margin-bottom: 9px;
    color: #236468;}
.visson_content p{font-size: 16px;
    color: #393838;}
.visson_pic img, .misson_pic img{width: 100%;}
@media screen and (max-width: 480px){
.misson, .visson {
    display: flex;
    padding: 23px;
    flex-direction: column;
    align-items: center;}
.misson .faicon, .visson .faicon{margin-right: 0;}
.misson_content, .visson_content {
    width: 100%;
    text-align: center;
    margin-top: 15px;}
}
.abut_iinerhedtitle h2{font-size: 28px;}
.check-list li {
    line-height: 30px;
    color: #19494c;
    font-size: 16px;
}
.cm-page-header h2{color: #FFF;}


          /*carrer_page*/

.careers .career-item-wrap {
    -webkit-box-shadow: 0 5px 83px 0 rgb(40 40 40 / 6%);
    box-shadow: 0 5px 83px 0rgba(40,40,40,.06);
    border-radius: 8px;
    background-color: #f3f3f5;
    padding: 39px 40px 40px;
    position: relative;
}
.careers .career-item-wrap .career-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 33px;
}
.careers .career-item-wrap .career-meta .career-type {
    color: #00bcd4;
    border: 2px solid #00bcd4;
    padding: 0 9px;
    border-radius: 4px;
    margin-right: 15px;
}
.careers .career-item-wrap .career-meta .career-place {
    color: #535353;
}
.careers .career-item-wrap .career-meta .career-type, .careers .career-item-wrap .career-meta .career-place {
    font-size: 13px;
    line-height: 28px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 0;
}
.careers .career-item-wrap .career-content .career-title {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: #16303b;
    margin-bottom: 17px;
    text-transform: capitalize;
}
.careers .career-item-wrap .career-content .career-desc {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    color: #383838;
    margin-bottom: 32px;
}
.careers .career-item-wrap .career-content .career-more {
    width: 140px;
    height: 42px;
    padding: 0 20px;
}
.btn--secondary {
    background-color: #00bcd4;
    color: #ffffff;
}
.btn--secondary:hover{color: #ffffff;}


/** pricing-section **/

.pricing-section{
  overflow: hidden;
}

.pricing-block-one .pricing-table{
  padding: 0px 30px 30px 30px;
}

.pricing-block-one .pricing-table:before{
  position: absolute;
  content: '';
  border: 1px solid #e4e4e4;
  width: 100%;
  height: 50%;
  left: 0px;
  bottom: 0px;
  transition: all 500ms ease;
}

.pricing-block-one .pricing-table:after{
  position: absolute;
  content: '';
  width: 100%;
  height: 0%;
  left: 0px;
  bottom: 0px;
  z-index: -1;
  transition: all 500ms ease;
}

.pricing-block-one .pricing-table:hover:after{
  height: 50%;
}

.pricing-block-one .inner-box{
  background: #fff;
  padding: 0px 20px 50px 20px;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
}

.pricing-block-one .inner-box .table-header .icon-box{
  position: relative;
  display: inline-block;
  width: 110px;
  height: 110px;
  line-height: 110px;
  text-align: center;
  font-size: 60px;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
  margin-bottom: 33px;
  margin-top: -55px;
}

.pricing-block-one .inner-box .table-header h2{
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 14px;
}

.pricing-block-one .inner-box .table-header{
  margin-bottom: 35px;
}

.pricing-block-one .inner-box .feature-list li{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
  color: #141417;
}

.pricing-block-one .inner-box .feature-list li:last-child{
  margin-bottom: 10px;
}

.pricing-block-one .inner-box .table-content{
  margin-bottom: 45px;
}

.pricing-block-one .inner-box .feature-list li span{
  position: relative;
  display: inline-block;
  padding-left: 25px;
}

.pricing-block-one .inner-box .feature-list li span:before{
  position: absolute;
  content: "\f058";
  font-family: 'Font Awesome 5 Free';
  font-size: 16px;
  left: 0px;
  top: 0px;
}

.pricing-block-one .inner-box .table-footer a{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 26px;
  font-weight: 600;
  color: #141417;
  text-align: center;
  padding: 17px 30px 15px 30px;
  border: 1px solid #e7e7e7;
  text-transform: uppercase;
  z-index: 1;
  transition: all 0ms ease;
  -moz-transition: all 0ms ease;
  -webkit-transition: all 0ms ease;
  -ms-transition: all 0ms ease;
  -o-transition: all 0ms ease;
}

.pricing-block-one .inner-box .table-footer a:before{
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: -1;
  transition: all 500ms ease;
}

.pricing-block-one .inner-box .table-footer a:hover:before{
  width: 100%;
}

.pricing-block-one .inner-box .table-footer a:hover{
  color: #fff;
}

.pricing-block-one .inner-box .table-footer a span{
  position: relative;
  transition: all 500ms ease;
}

.pricing-block-one .inner-box .table-footer a:hover span{
  padding-right: 20px;
}

.pricing-block-one .inner-box .table-footer a span:before{
  position: absolute;
  content: "\e90d";
  font-family: 'icomoon';
  font-size: 14px;
  top: -2px;
  right: 0px;
  opacity: 0;
  color: #fff;
  font-weight: 400;
  transition: all 500ms ease;
}

.pricing-block-one .inner-box .table-footer a:hover span:before{
  opacity: 1;
}

.pricing-block-one .inner-box .light-icon{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.pricing-section .pattern-layer .pattern-1{
  position: absolute;
  left: 70px;
  top: -30px;
  width: 281px;
  height: 271px;
  background-repeat: no-repeat;
}

.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-y;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-y;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-y;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.float-bob-x{
  animation-name: float-bob-x;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-x;
  -webkit-animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-x;
  -moz-animation-duration: 15s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-x;
  -ms-animation-duration: 15s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-x;
  -o-animation-duration: 15s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.pricing-section .pattern-layer .pattern-2{
  position: absolute;
  right: 65px;
  bottom: 0px;
  width: 231px;
  height: 454px;
  background-repeat: no-repeat;
}

.bg-color-1{
  background: #f2efeb;
}
.pricing-block-one .inner-box .table-header .icon-box{
  background: #eb7328;
}

.pricing-block-one .inner-box .feature-list li span:before{
  color: #eb7328;
}

.pricing-block-one .inner-box .table-footer a:hover{
  border-color: #eb7328;
}

.pricing-block-one .inner-box .table-footer a:before{
  background: #eb7328;
}

.pricing-block-one .pricing-table:after{
  background: #eb7328;
}
.p_relative {
    position: relative;
}
.d_block {
    display: block;
}
.feature-list{padding: 0;}
.sec-pad{padding-top: 130px;}


      /*solar_system*/



.about-style-three .image-box img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}
.about-style-three .image-box .image {
    position: relative;
    display: block;
    overflow: hidden;
}

.content_block_7 .content-box .inner-box .single-item {
    position: relative;
    display: block;
}
.content_block_7 .content-box .inner-box .single-item .icon-box {
    position: relative;
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 19px;
}
.content_block_7 .content-box .inner-box .single-item .icon-box {
    color: #56b13d;
}
.content_block_7 .content-box .inner-box .single-item h5 {
    display: inline-block;
    line-height: 22px;
    border-bottom: 3px solid #e1e8e4;
    margin-bottom: 22px;
}
.content_block_7 .content-box h5 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-transform: uppercase;
}
/** working-style-three **/

.working-style-three{
  position: relative;
  padding: 90px 0px 90px 0px;
  background-color: #1e2434;
}

.working-style-three .content-box{
  position: relative;
  display: block;
}

.working-style-three .content-box .image-box{
  position: relative;
  display: block;
}

.working-style-three .content-box .image-box img{
  width: 100%;
}

.working-style-three .content-box .text{
  position: relative;
  display: block;
  padding: 32px 40px 33px 30px;
}

.working-style-three .content-box .text h6{
  display: block;
  font-size: 14px;
  line-height: 26px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}

.working-style-three .content-box .text h6:before{
  position: absolute;
  content: '//';
  font-size: 12px;
  left: 0px;
  top: 0px;
}

.working-style-three .content-box .text h3{
  display: block;
  font-size: 30px;
  line-height: 36px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

.working-block-three{
  position: relative;
  padding-top: 10px;
}

.working-block-three:before{
  position: absolute;
  content: '';
  background-color: #313b56;
  width: 100%;
  height: 5px;
  left: 0px;
  top: 0px;
}

.working-block-three:after{
  position: absolute;
  content: '';
  width: 100%;
  height: 5px;
  left: 0px;
  top: 0px;
  transform: scaleX(0);
  transition: all 500ms ease;
}

.working-block-three:hover:after{
  transform: scaleX(1);
}

.working-block-three .inner-box{
  position: relative;
  display: block;
  background-color: #232a3c;
  padding: 40px 30px 34px 40px;
  margin-bottom: 30px;
}

.working-block-three .inner-box .big-text{
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 70px;
  line-height: 70px;
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #323d58;
}

.working-block-three .inner-box .icon-box{
  position: relative;
  display: block;
  margin-bottom: 18px;
}

.working-block-three .inner-box h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 13px;
  margin-bottom: 23px;
}

.working-block-three .inner-box h5:before{
  position: absolute;
  content: '';
  width: 11px;
  height: 1px;
  left: 0px;
  bottom: 0px;
}

.working-block-three .inner-box h5:after{
  position: absolute;
  content: '';
  width: 50px;
  height: 1px;
  left: 19px;
  bottom: 0px;
}

.working-block-three .inner-box p{
  color: #aab0bf;
}

.project-section .btn-box{
  margin-top: 20px;
}
.working-style-three .content-box {
    position: relative;
    display: block;
}
.working-style-three .content-box {
    background-color: #53b6bc;
}
.working-block-three:hover:after {
    transform: scaleX(1);
}
.working-block-three:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 5px;
    left: 0px;
    top: 0px;
    transform: scaleX(0);
    transition: all 500ms ease;
}
.working-block-three:after {
    background-color: #53b6bc;
}

.resources {
    background: url(../images/resources.jpg) top center no-repeat;
    min-height: 409px;
}
.resources h2{color: #FFF !important;}
.resources ul li{color: #FFF !important;line-height: 34px;}
.wimg_100 img{width: 100%;}
.public-title .name {
    font-size: 28px;
    line-height: 38px;
    font-weight: bold;
    color: #004b7b;margin-bottom: 0;
}
.public-title {
    width: 50%;
    max-width: 710px;
    padding: 4px 45px;
    background-image: linear-gradient(to right, #d2e0ef, #ffffff);
    margin: 45px 0 25px 0;
}
.business-list .business-item {
    box-shadow: 0px 0px 8px 2px rgb(153 153 153 / 15%);
    display: flex;
    align-items: center;
    padding: 25px 20px;
    margin-bottom: 24px;
}
.business-list .business-item .img-box {
    margin-right: 20px;
    padding: 16px;
}
.business-list .business-item .text-box {
    font-size: 14px;
    line-height: 24px;
}
ul.public-container{padding: 0;}
.offer-model .offer-ul {
    display: flex;
    flex-wrap: wrap;
}
.public-container {
    width: 100%;
    margin: 0 auto;
}
.offer-model .offer-ul .offer-item {
    width: calc(65% - 30px);
    margin-right: 30px;
    margin-bottom: 24px;
    padding: 20px 16px 0 16px;
    border: 1px dashed #848484;list-style-type: none;
}
.offer-model .offer-ul .offer-item:nth-child(2n) {
    width: 35%;
    margin-right: 0;
}
.offer-model .offer-ul .offer-item .text-box .offer-child-ul .offer-child-item {
    width: calc(50% - 12px);
    display: flex;
    align-items: center;
    margin: 0 24px 24px 0;
}
.offer-model .offer-ul .offer-item .text-box .offer-child-ul .offer-child-item .offer-child-img {
    margin-right: 16px;
}
.offer-model .offer-ul .offer-item .text-box .offer-child-ul .offer-child-item .offer-child-text {
    font-size: 14px;
    line-height: 24px;
}
.offer-model .offer-ul .offer-item .text-box .offer-child-ul {
    display: flex;
    flex-wrap: wrap;
}
.offer-model .offer-ul .offer-item .text-box .offer-child-ul .offer-child-item:nth-child(2n) {
    margin-right: 0;
}

.model .public-subtitle {
    font-size: 18px;
    line-height: 26px;
    font-weight: bold;
    color: #868687;
    margin-bottom: 12px;
}
.offer-ul .offer-item .img-box {
    text-align: center;
    margin-bottom: 30px;
}

.offer-model .offer-ul .offer-item:nth-child(2n) .text-box .offer-child-ul .offer-child-item {
    width: 100%;
    margin: 0 0 24px 0;
}
.offer-model .offer-ul .offer-item .text-box .offer-child-ul .offer-child-item {
    width: calc(50% - 12px);
    display: flex;
    align-items: center;
    margin: 0 24px 24px 0;
}

.model ul{padding: 0;}


@media screen and (max-width: 768px){
.offer-model .offer-ul .offer-item {
    width: 100%;
    margin-right: 0;
}
.offer-model .offer-ul .offer-item:nth-child(2n) {
    width: 100%;
}
.offer-model .offer-ul .offer-item .text-box .offer-child-ul .offer-child-item {
    width: 100%;
    margin: 0 0 16px 0;
}
.public-title {
    width: 100%;
    max-width: 710px;
    padding: 4px 25px;}
.business-list .business-item {
    flex-wrap: wrap;
    padding: 16px;
    margin-bottom: 16px;}
}