





/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1. Common
2. Top Bar
3. Upper Header
4. Main Menu
5. Mobile Sidebar
6. Main Footer
7. Search Popup
8. Subscribe Box
9. Blog One
10. Pricing One
11. Contact One
12. Team One
13. Service One
14. Progress One
15. Project One
16. About One
17. Main Slider
18. Page Header
19. Brand
--------------------------------------------------------------*/

/*------------------------------------------------
--------------------------
1. Common
--------------------------
------------------------------------------------*/

/* font-family: 'Heebo', sans-serif;
font-family: 'Roboto', sans-serif; */

:root {
  --thm-font: "Heebo", sans-serif;
  --heading-font: "Roboto", sans-serif;
  --special-font: "Poppins", sans-serif;
  --primary: #fe0040;
  --primary-rgb: 254, 0, 64;
  --black: #182c44;
  --black-rgb: 24, 44, 68;
  --text: #888888;
  --black-bg: #0a1829;
}
body {
  font-size: 16px;
  line-height: 1.87;
  color: var(--text);
  font-family: var(--thm-font);
}

a:hover,
a:active,
a:focus {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

.page-wrapper {
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* preloader */

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* thm btn */

.thm-btn {
  border: none;
  outline: none;
  display: inline-block;
  vertical-align: middle;
  background-color: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  font-family: var(--heading-font);
  transition: 500ms;
  padding: 22.5px 44px;
}
.thm-btn i {
  margin-left: 10px;
}
.thm-btn:hover {
  background-color: var(--black);
  color: #fff;
  box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
}

/* block title */

.block-title {
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .block-title {
    margin-bottom: 55px;
  }
}
.block-title p {
  margin: 0;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-title p span {
  position: relative;
  width: 35px;
  height: 5px;
  display: flex;
  margin-right: 10px;
}

@media (min-width: 576px) {
  .block-title p {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .block-title p {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .block-title p {
    font-size: 20px;
  }
}
.block-title p span::after,
.block-title p span::before {
  content: "";
  height: 1px;
  width: 25px;
  background-color: var(--primary);
  position: absolute;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: lineAnim;
}
.block-title p span::before {
  top: 0;
  left: 0;
}
.block-title p span::after {
  bottom: 0;
  animation-name: lineAnimReverse;
  right: 0;
}

@keyframes lineAnim {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(20%);
  }
  50% {
    transform: translateX(60%);
  }
  75% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes lineAnimReverse {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-20%);
  }
  50% {
    transform: translateX(-60%);
  }
  75% {
    transform: translateX(-20%);
  }
  100% {
    transform: translateX(0%);
  }
}

.text-left.block-title p {
  justify-content: flex-start;
}
.block-title h3 {
  margin: 0;
  color: var(--black);
  font-size: 28px;
  line-height: 1.2;
  font-weight: bold;
}
@media (min-width: 576px) {
  .block-title h3 {
    font-size: 30px;
  }
}

@media (min-width: 992px) {
  .block-title h3 {
    font-size: 36px;
  }
}
@media (min-width: 1200px) {
  .block-title h3 {
    font-size: 40px;
    line-height: 1.325;
  }
}
.block-title h3 span {
  color: var(--primary);
  font-weight: 400;
}

.block-title h3 br {
  display: none;
}

@media (min-width: 576px) {
  .block-title h3 br {
    display: inherit;
  }
}

/* scroll to top */

.scroll-to-top {
  width: 45px;
  height: 45px;
  background: var(--primary);
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  text-align: center;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.scroll-to-top i {
  color: #ffffff;
  font-size: 18px;
  line-height: 45px;
}

.scroll-to-top:hover {
  background-color: var(--black);
}

.scroll-to-top:hover i {
  color: #fff;
}

/*------------------------------------------------
--------------------------
2. Top Bar
--------------------------
------------------------------------------------*/

.topbar {
  background-color: #b9d9ff;
}

.topbar .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 17px;
  text-align: center;
}

@media (min-width: 768px) {
  .topbar .container {
    padding-top: 17px;
    padding-bottom: 17px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}
.topbar p {
  margin: 0;
  color: var(--black);
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .topbar p {
    margin-bottom: 0;
  }
}
.topbar p i {
  margin-right: 10px;
  color: var(--primary);
}

.topbar-social {
  display: flex;
  align-items: center;
}
.topbar-social a {
  color: var(--black);
  font-size: 16px;
  transition: 500ms;
}
.topbar-social a:hover {
  color: var(--primary);
}
.topbar-social a + a {
  margin-left: 25px;
}

/*------------------------------------------------
--------------------------
3. Upper Header
--------------------------
------------------------------------------------*/

.upper-header .logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.upper-header {
  box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .upper-header {
    box-shadow: none;
  }
}

@media (min-width: 768px) {
  .upper-header .container {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 992px) {
  .upper-header .container {
    padding-top: 17.5px;
    padding-bottom: 17.5px;
  }
}

.upper-header .side-menu-toggler {
  font-size: 20px;
  cursor: pointer;
  color: var(--black);
}

@media (min-width: 768px) {
  .upper-header .side-menu-toggler {
    margin-left: 15px;
  }
}

@media (min-width: 1200px) {
  .upper-header .side-menu-toggler {
    display: none;
  }
}

.upper-header .header-infos {
  display: none;
}

@media (min-width: 768px) {
  .upper-header .header-infos {
    display: flex;
    align-items: center;
  }
}

.upper-header .header-info {
  padding-left: 41px;
  position: relative;
}
.upper-header .header-info + .header-info {
  margin-left: 30px;
}

@media (min-width: 992px) {
  .upper-header .header-info + .header-info {
    margin-left: 50px;
  }
}
.upper-header .header-info > i {
  font-size: 28px;
  color: var(--primary);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
}

.upper-header .header-info h3 {
  margin: 0;
  color: var(--black);
  font-size: 16px;
  font-weight: bold;
  font-family: var(--special-font);
  margin-bottom: 3px;
}
.upper-header .header-info p {
  margin: 0;
  color: var(--black);
  font-size: 14px;
  font-family: var(--special-font);
}
.upper-header .header-info h3 a {
  color: inherit;
  transition: 500ms;
}
.upper-header .header-info h3 a:hover {
  color: var(--primary);
}

/*------------------------------------------------
--------------------------
4. Main Menu
--------------------------
------------------------------------------------*/

.main-menu .container {
  background-color: var(--black);
  position: relative;
  display: none;
  box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
  z-index: 11;
}

@media (min-width: 1200px) {
  .main-menu .container {
    display: flex;
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 1260px) {
  .main-menu .container {
    max-width: 1250px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
}
.main-menu .main-menu__list > li {
  padding-top: 22.5px;
  padding-bottom: 22.5px;
}
.main-menu .main-menu__list > li + li {
  margin-left: 55px;
}
.main-menu .main-menu__list > li > a {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  color: #fff;
  transition: 500ms;
}
.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a {
  color: var(--primary);
}
.main-menu .main-menu__list > li > a::after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  margin-left: 5px;
}
.main-menu .main-menu__list > li > a:only-child::after {
  display: none;
}
.main-menu .main-menu__list li.search-btn i {
  font-size: 17px;
}
.main-menu__list li.cart-btn a {
  position: relative;
}
.main-menu__list li.cart-btn span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 10px;
  font-family: var(--thm-font);
  background-color: var(--primary);
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-50%) translateX(50%);
  transition: background-color 500ms, color 500ms;
}
.main-menu__list li.cart-btn:hover span {
  background-color: #fff;
  color: var(--black);
}
.main-menu__list li.cart-btn i {
  font-size: 23px;
}

.main-menu .thm-btn {
  position: absolute;
  top: 0;
  right: 0;
}
.main-menu .thm-btn:hover {
  background-color: #fff;
  color: var(--black);
}

.main-menu .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transition: 500ms ease;
  box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
}
.main-menu .main-menu__list li:hover > ul {
  opacity: 1;
  visibility: visible;
}
.main-menu .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}
.main-menu .main-menu__list li ul li + li {
  border-top: 1px solid rgba(var(--black-rgb), 0.1);
}
.main-menu .main-menu__list li ul li a {
  font-size: 16px;
  line-height: 30px;
  color: var(--black);
  display: flex;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: 500ms;
}
.main-menu .main-menu__list li ul li:hover > a {
  color: var(--primary);
}
.main-menu .main-menu__list li ul li > ul {
  top: 0;
  left: 100%;
}
.main-menu .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}
/* after third level no menu */
.main-menu .main-menu__list li ul li > ul ul {
  display: none;
}

/* stricked menu */
.stricked-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: var(--black);
  box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(-110%);
  transition: all 0.4s ease;
}

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

.stricked-menu.stricky-fixed {
  opacity: 1;
  transform: translateY(0%);
}

/* main menu two */
.main-menu__two:not(.stricked-menu) {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  z-index: 100;
}

@media (max-width: 767px) {
  .main-menu__two:not(.stricked-menu) {
    position: relative;
    top: 0;
    left: 0;
  }
}

.main-menu__two.stricked-menu {
  background-color: #fff;
}

.main-menu__two.stricked-menu .container {
  box-shadow: none;
}
.main-menu__two .container {
  background-color: #fff;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.05);
}
.main-menu__two .logo .mobile-nav__toggler {
  display: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--black);
}
@media (max-width: 1199px) {
  .main-menu__two .logo .mobile-nav__toggler {
    display: flex;
    margin-left: 20px;
  }
  .main-menu__two .logo {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 575px) {
  .main-menu__two .logo {
    padding-top: 30px;
    padding-bottom: 30px;
    justify-content: space-between;
    flex: 0 0 100%;
  }
}
.main-menu__two .main-menu__list {
  margin-left: auto;
  margin-right: 40px;
}
@media (max-width: 1199px) {
  .main-menu__two .main-menu__list {
    display: none;
  }
}
.main-menu__two .main-menu__list > li > a {
  color: var(--black);
}
.main-menu__two .thm-btn {
  position: relative;
  top: auto;
  right: auto;
  padding: 15.5px 32px;
  border-radius: 5px;
}

.main-menu__two .thm-btn:hover {
  background-color: var(--black);
  color: #fff;
}

.main-menu__two-btn-box {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (max-width: 575px) {
  .main-menu__two-btn-box {
    display: none;
  }
}

/*------------------------------------------------
--------------------------
5. Mobile Sidebar
--------------------------
------------------------------------------------*/

.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transform: scale(0, 1);
  transform-origin: left center;
  transition: transform 500ms ease;
  z-index: 999;
}
.mobile-nav__wrapper.expanded {
  transform: scale(1, 1);
}
.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--black);
  opacity: 0.8;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--black-bg);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}

.mobile-nav__content .thm-btn {
  padding: 8px 0;
  width: 100%;
  text-align: center;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}
.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: #dddddd;
  cursor: pointer;
}

.mobile-nav__container {
  padding-bottom: 30px;
}
.mobile-nav__container .logo {
  display: none;
}
.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.mobile-nav__content .main-menu__list {
  margin-bottom: 40px;
}
.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav__content .main-menu__list ul li a {
  padding-left: 1em;
}
.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav__content .main-menu__list li a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: #fff;
  font-size: 16px;
  font-family: var(--heading-font);
  font-weight: bold;
  height: 46px;
  align-items: center;
  transition: 500ms;
}
.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--primary);
}
.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  border: none;
  outline: none;
  color: #fff;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}
.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--black);
}
.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  transform: translate(0, 0);
}
.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

/*------------------------------------------------
--------------------------
6. Main Footer
--------------------------
------------------------------------------------*/

.upper-footer {
  padding-top: 70px;
  padding-bottom: 30px;
}

@media (min-width: 992px) {
  .upper-footer {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}

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

.footer-widget__title {
  margin: 0;
  color: #dddddd;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
}

.footer-widget hr {
  border-color: #444444;
  border-width: 1px;
  margin: 0;
}
.footer-widget__about hr {
  margin-bottom: 40px;
  margin-top: 15px;
}
.footer-widget p {
  margin: 0;
  color: #dddddd;
}

.footer-widget__about a {
  text-transform: uppercase;
  color: var(--primary);
  font-size: 14px;
  display: inline-block;
  transition: 500ms;
  vertical-align: middle;
}
.footer-widget__about p {
  margin-top: 26px;
  margin-bottom: 10px;
}
.footer-widget__about a:hover {
  color: #fff;
}

.footer-widget__about a i {
  font-size: 12px;
  margin-left: 8px;
}

@media (min-width: 1199px) {
  .footer-widget__links-widget {
    position: relative;
    left: 30px;
  }
  .footer-widget__contact {
    left: 30px;
    position: relative;
  }
}
.footer-widget__social {
  display: flex;
  align-items: center;
}
.footer-widget__social a {
  font-size: 13px;
  color: #808080;
  transition: 500ms;
}
.footer-widget__social a + a {
  margin-left: 20px;
}
.footer-widget__social a:hover {
  color: var(--primary);
}
.footer-widget ul {
  margin-bottom: 0;
}
.footer-widget__contact-list {
  margin-top: 30px;
}
.footer-widget__contact-list li + li {
  margin-top: 29px;
}
.footer-widget__contact-list li a {
  position: relative;
  display: block;
  padding-left: 25px;
  font-size: 16px;
  color: #dddddd;
  line-height: 1em;
  transition: 500ms;
}
.footer-widget__contact-list li a:hover {
  color: var(--primary);
}
.footer-widget__contact-list li a i {
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.footer-widget__links {
  margin-top: -5px;
}
.footer-widget__links li + li {
  margin-top: 24px;
}
.footer-widget__links li a {
  position: relative;
  color: #dddddd;
  transition: 500ms;
  display: block;
  line-height: 1em;
}
.footer-widget__links li a:hover {
  color: var(--primary);
}
.footer-widget__contact > p {
  margin-top: -15px;
}
.footer-widget__gallery {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 1fr 1fr 1fr;
}
.footer-widget__gallery li img {
  width: 100%;
}

.bottom-footer .inner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-top: 1px solid #444444;
  padding-top: 20px;
  padding-bottom: 20px;
}

.bottom-footer p {
  margin: 0;
  color: #dddddd;
  font-size: 14px;
}

@media (min-width: 768px) {
  .bottom-footer .inner-container {
    padding-top: 36.5px;
    padding-bottom: 36.5px;
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-menu {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.footer-menu li + li {
  margin-left: 15px;
}
@media (min-width: 768px) {
  .footer-menu li + li {
    margin-left: 25px;
  }
}
.footer-menu li a {
  color: #dddddd;
  font-size: 14px;
  transition: 500ms;
}
.footer-menu li a:hover {
  color: var(--primary);
}

/*------------------------------------------------
--------------------------
7. Search Popup
--------------------------
------------------------------------------------*/

.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-110%);
  transition: transform 500ms ease, opacity 500ms ease;
}

.search-popup.active {
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  color: var(--text);
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}
.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}
.search-popup__content .thm-btn i {
  margin: 0;
}

/*------------------------------------------------
--------------------------
8. Subscribe Box
--------------------------
------------------------------------------------*/

.subscribe-box {
  background-color: var(--black);
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

.subscribe-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.05;
  background-image: url(../images/icons/subscribe-box-bg-1.html);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.subscribe-box .container {
  position: relative;
}

.subscribe-box__content h3 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.25;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .subscribe-box__content h3 {
    font-size: 22px;
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .subscribe-box__content h3 {
    font-size: 40px;
  }
}
@media (min-width: 576px) {
  .subscribe-box__content {
    position: relative;
    padding-left: 130px;
    margin-bottom: 20px;
  }
  .subscribe-box__content > img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}

@media (min-width: 992px) {
  .subscribe-box__content {
    margin-bottom: 0;
    padding-left: 110px;
  }
}

@media (min-width: 1200px) {
  .subscribe-box__content {
    padding-left: 120px;
  }
}
.subscribe-box__content p {
  margin: 0;
  font-weight: 300;
  color: #fff;
}

.subscribe-box__form {
  margin-top: 20px;
  position: relative;
}

@media (min-width: 992px) {
  .subscribe-box__form {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .subscribe-box__form {
    margin-left: 100px;
  }
}

.subscribe-box__form input[type="text"],
.subscribe-box__form input[type="email"] {
  width: 100%;
  height: 55px;
  border-radius: 5px;
  border: none;
  outline: none;
  padding-left: 25px;
}

@media (min-width: 992px) {
  .subscribe-box__form input[type="text"],
  .subscribe-box__form input[type="email"] {
    height: 66px;
  }
}

.subscribe-box__form .thm-btn {
  border-radius: 5px;
  width: 100%;
  margin-top: 15px;
  height: 55px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}

@media (min-width: 992px) {
  .subscribe-box__form .thm-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 6px;
    height: 66px;
    max-width: 150px;
    height: 54px;
    font-size: 18px;
    margin-top: 0;
  }
}

/*------------------------------------------------
--------------------------
9. Blog One
--------------------------
------------------------------------------------*/

.blog-one {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (min-width: 992px) {
  .blog-one {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}

.blog-one__blog-page .blog-one__single {
  margin-bottom: 30px;
}
.blog-one__blog-page {
  padding-bottom: 110px;
}

.load-more__box {
  margin-top: 30px;
}

.blog-one__image img {
  width: 100%;
  transform: scale(1);
  transition: transform 500ms ease, opacity 500ms ease;
}
.blog-one__image {
  overflow: hidden;
  position: relative;
  background-color: var(--black);
}

.blog-one__image > span {
  display: inline-block;
  vertical-align: middle;
  background-color: var(--primary);
  color: #fff;
  font-size: 14px;
  position: absolute;
  top: 10px;
  left: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 576px) {
  .blog-one__image > span {
    top: 20px;
    left: 20px;
  }
}
@media (min-width: 992px) {
  .blog-one__image > span {
    top: 30px;
    left: 30px;
  }
}
.blog-one__single:focus .blog-one__image img,
.blog-one__single:active .blog-one__image img,
.blog-one__single:hover .blog-one__image img {
  opacity: 0.7;
  transform: scale(1.05);
}
.blog-one__single {
  background-color: #fff;
  box-shadow: 0px 0px 46px 0px rgba(0, 0, 0, 0.1);
}

.blog-one__content {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 992px) {
  .blog-one__content {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.blog-one__meta {
  display: flex;
  margin-bottom: 0;
  margin-bottom: 5px;
  align-items: center;
}
.blog-one__meta a {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .blog-one__meta a {
    font-size: 15px;
  }
}
.blog-one__meta li + li {
  margin-left: 10px;
}
@media (min-width: 992px) {
  .blog-one__meta li + li {
    margin-left: 20px;
  }
}
.blog-one__meta a i {
  font-size: 13px;
  color: var(--primary);
  margin-right: 10px;
}

@media (min-width: 768px) {
  .blog-one__meta a i {
    font-size: 14px;
  }
}

.blog-one__content h3 {
  margin: 0;
  color: var(--black);
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .blog-one__content h3 {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .blog-one__content h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.blog-one__content h3 a {
  color: inherit;
  transition: 500ms;
}
.blog-one__content h3 a:hover {
  color: var(--primary);
}
.blog-one__content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .blog-one__content p {
    font-size: 16px;
  }
}

.blog-one__more {
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  transition: 500ms;
}
.blog-one__more:hover {
  color: var(--black);
}
@media (min-width: 992px) {
  .blog-one__more {
    font-size: 18px;
  }
}
.blog-one__more i {
  font-size: 14px;
  position: relative;
  top: 2px;
  margin-left: 5px;
}

@media (min-width: 992px) {
  .blog-one__more i {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .blog-one .swiper-container {
    overflow: visible;
  }
}

.blog-details {
  padding-top: 120px;
  padding-bottom: 80px;
}

@media (min-width: 992px) {
  .blog-details {
    padding-bottom: 120px;
  }
}

.blog-details .blog-one__single {
  box-shadow: none;
}

.blog-details .blog-one__content {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.blog-one__share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 20px;
  justify-content: center;
}

@media (min-width: 992px) {
  .blog-one__share {
    justify-content: space-between;
  }
}

.blog-one__tags {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .blog-one__tags {
    margin-bottom: 0;
  }
}

.blog-one__tags span {
  color: var(--black);
  font-weight: 500;
  font-size: 16px;
}
.blog-one__tags a {
  color: var(--text);
  transition: all 500ms ease;
  margin-left: 10px;
  transition: all 500ms ease;
}
.blog-one__tags a:hover {
  color: var(--primary);
}

.blog-one__social {
  display: flex;
  align-items: center;
  margin-left: -10px;
}
.blog-one__social a {
  font-size: 14px;
  margin-left: 10px;
  transition: all 500ms ease;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black-bg);
  text-align: center;
  color: #fff;
  border-radius: 50%;
}
.blog-one__social a:hover {
  background-color: var(--primary);
}

.blog-one__hr {
  border-color: #dddddd;
  border-width: 1px;
  margin-top: 35px;
  margin-bottom: 35px;
}
.blog-one__post-paginations {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
}
.blog-one__post-paginations a {
  flex: 0 0 50%;
  font-size: 20px;
  color: var(--black);
  transition: all 500ms ease;
  font-weight: 500;
  line-height: 1.4em;
  padding-left: 15px;
  padding-right: 15px;
  transition: all 500ms ease;
}
.blog-one__post-paginations a:hover {
  color: var(--primary);
}
.blog-one__post-paginations a:hover span {
  color: var(--text);
}
.blog-one__post-paginations a:last-child {
  text-align: right;
}

.blog-one__post-paginations a > span {
  display: block;
  font-size: 16px;
  color: var(--text);
}
.comment-one {
  padding-top: 60px;
}
.comment-form .block-title,
.comment-one .block-title {
  margin-bottom: 40px;
}
.comment-form .block-title h3,
.comment-one .block-title h3 {
  font-size: 30px;
}

.comment-one__single {
  display: flex;
  margin-bottom: 40px;
  flex-direction: column;
}

@media (min-width: 992px) {
  .comment-one__single {
    flex-direction: row;
  }
}

.comment-one__single > i {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: rgba(var(--black-rgb), 0.5);
  background-color: rgba(234, 234, 234, 1);
  margin-right: 30px;
  border-radius: 50%;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .comment-one__single > i {
    margin-bottom: 0;
  }
}

.comment-one__content {
  position: relative;
}

.comment-one__content h3 {
  font-size: 20px;
  color: var(--black);
  margin: 0;
  font-weight: 500;
}

.comment-one__content p {
  margin: 0;
}

.comment-one__content span {
  display: block;
  color: var(--black);
  font-size: 15px;
  opacity: 0.8;
  margin-top: 5px;
}

.comment-one__content .thm-btn {
  padding: 9.5px 29px;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 16px;
  background-color: var(--black);
}
.comment-one__content .thm-btn:hover {
  background-color: var(--primary);
  color: #fff;
}
.comment-one__content hr {
  border-color: #dddddd;
  border-width: 1px;
  margin-top: 25px;
  margin-bottom: 25px;
}
.comment-form {
  margin-top: 20px;
}
.comment-form textarea,
.comment-form input[type="text"] {
  width: 100%;
  display: block;
  height: 60px;
  padding-left: 30px;
  font-size: 16px;
  border: none;
  outline: none;
  background-color: rgba(234, 234, 234, 0.35);
  color: var(--text);
  margin-bottom: 30px;
}
.comment-form textarea {
  height: 175px;
  padding-top: 15px;
}
.comment-form input[type="text"]::placeholder {
  color: var(--text);
}

.comment-form .thm-btn {
  padding: 15.5px 44px;
}
.blog-sidebar {
  margin-top: 50px;
}
@media (min-width: 992px) {
  .blog-sidebar {
    margin-top: 0;
  }
}
.blog-sidebar__single {
  margin-bottom: 40px;
}
.blog-sidebar__single h3 {
  margin: 0;
  font-size: 20px;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 25px;
}

.blog-sidebar__search form {
  width: 100%;
  display: flex;
  position: relative;
  flex-wrap: wrap;
}
.blog-sidebar__search form input[type="search"],
.blog-sidebar__search form input[type="text"] {
  display: block;
  width: 100%;
  height: 60px;
  background-color: var(--black);
  color: #ffffff;
  font-size: 16px;
  padding-left: 30px;
  border: none;
  outline: none;
}
.blog-sidebar__search form input[type="search"]::placeholder,
.blog-sidebar__search form input[type="text"]::placeholder {
  color: #fff;
}
.blog-sidebar__search form button[type="submit"] {
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  color: var(--primary);
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: auto;
}

.blog-sidebar__categories-list {
  margin-top: -15px;
}
.blog-sidebar__categories-list li {
  position: relative;
  border-top: 1px solid #dddddd;
}
.blog-sidebar__categories-list li:first-child {
  border-top: 0;
}
.blog-sidebar__categories-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(var(--black-rgb), 0.5);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: all 500ms ease;
}
.blog-sidebar__categories-list li:hover::before {
  background-color: rgba(var(--black-rgb), 1);
}
.blog-sidebar__categories-list li a {
  display: block;
  color: var(--text);
  font-size: 16px;
  padding-left: 25px;
  line-height: 40px;
  transition: all 500ms ease;
}
.blog-sidebar__categories-list li:hover a {
  color: var(--primary);
}

.blog-sidebar__posts-list {
}
.blog-sidebar__posts-list li {
  display: flex;
  margin-top: 20px;
}
.blog-sidebar__posts-list li > img {
  width: 83px;
  height: 83px;
  flex-shrink: 0;
  margin-right: 20px;
}
.blog-sidebar__posts-list li h4 {
  margin: 0;
  color: var(--black);
  font-size: 18px;
  line-height: 1.4;
}
.blog-sidebar__posts-list li h4 a {
  color: inherit;
  transition: all 500ms ease;
}
.blog-sidebar__posts-list li h4 a:hover {
  color: var(--primary);
}
.blog-sidebar__posts-list li span {
  color: var(--text);
  font-size: 15px;
  display: block;
  margin-top: 5px;
}

.blog-sidebar__tags-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-top: -10px;
}
.blog-sidebar__tags-list li {
  margin-left: 10px;
}
.blog-sidebar__tags-list li a {
  color: var(--text);
  font-size: 16px;
  transition: all 500ms ease;
}
.blog-sidebar__tags-list li a:hover {
  color: var(--black);
}

/*------------------------------------------------
--------------------------
10. Pricing One
--------------------------
------------------------------------------------*/

.pricing-one {
  padding-top: 80px;
}

.pricing-one__contact-page {
  padding-bottom: 140px;
}

@media (min-width: 992px) {
  .pricing-one {
    padding-top: 140px;
  }
}
.pricing-one__single {
  text-align: center;
  border-top: 1px solid #f2f2f2;
  box-shadow: 0px 14px 47px 0px rgba(0, 0, 0, 0.1);
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .pricing-one__single {
    padding-bottom: 40px;
  }
}

.pricing-one__top h3 {
  margin: 0;
  color: var(--black);
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .pricing-one__top h3 {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .pricing-one__top h3 {
    font-size: 38px;
    margin-top: 30px;
    margin-bottom: 25px;
  }
}
.pricing-one__top h3 span {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--thm-font);
  margin-left: 5px;
}
.pricing-one__name {
  background-color: var(--black);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .pricing-one__name {
    font-size: 24px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
.pricing-one__list {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .pricing-one__list {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.pricing-one__list li {
  font-size: 15px;
  color: #777777;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .pricing-one__list li {
    font-size: 16px;
  }
}
.pricing-one__list li + li {
  margin-top: 5px;
}
@media (min-width: 768px) {
  .pricing-one__list li + li {
    margin-top: 25px;
  }
}
.pricing-one__list li i {
  color: var(--primary);
  margin-right: 10px;
}
@media (min-width: 768px) {
  .pricing-one__list li i {
    margin-right: 20px;
  }
}

.pricing-one__single .thm-btn {
  padding: 10.5px 30px;
  background-color: var(--black);
}
.pricing-one__single .thm-btn:hover {
  background-color: var(--primary);
  color: #fff;
}
.pricing-one__single.popular .thm-btn {
  background-color: var(--primary);
}

.pricing-one__single.popular .thm-btn:hover {
  background-color: var(--black);
}
@media (min-width: 992px) {
  .pricing-one__single .thm-btn {
    font-size: 19px;
    font-weight: 500;
    padding: 8px 37px;
  }
  .pricing-one__single .thm-btn i {
    font-size: 18px;
  }
}

.pricing-one__single.popular .pricing-one__name {
  background-color: var(--primary);
}
@media (min-width: 1200px) {
  .pricing-one .swiper-container {
    overflow: visible;
  }
}

/*------------------------------------------------
--------------------------
11. Contact One
--------------------------
------------------------------------------------*/

.contact-one .inner-container {
  background-color: #fff;
  position: relative;
}

@media (min-width: 992px) {
  .contact-one .inner-container {
    padding-left: 40px;
    padding-right: 40px;
    margin-top: -275px;
    position: relative;
    z-index: 10;
  }
}

.contact-one__form {
  margin-top: 50px;
}

@media (min-width: 992px) {
  .contact-one__form {
    margin-top: 0;
    padding-bottom: 40px;
    padding-left: 30px;
  }
}

.contact-one__contact-page {
  padding-bottom: 120px;
}

.contact-one__form h3 {
  margin: 0;
  color: var(--black);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .contact-one__form h3 {
    font-size: 40px;
    margin-bottom: 55px;
    padding-top: 40px;
  }
}

.contact-one__person {
  margin-top: 50px;
}

@media (min-width: 992px) {
  .contact-one__person {
    position: absolute;
    bottom: 0;
    left: 0px;
    margin-top: 0;
  }
}

.contact-one__form .form-group {
  position: relative;
  margin-bottom: 20px;
}
.contact-one__form .form-group input[type="text"],
.contact-one__form .form-group textarea,
.contact-one__form .form-group input[type="email"] {
  width: 100%;
  height: 55px;
  display: block;
  border: none;
  outline: none;
  border-bottom: 1px solid #dddddd;
  display: block;
  color: var(--text);
  font-size: 16px;
  background-image: none !important;
}
.contact-one__form .form-group textarea {
  height: 130px;
  padding-top: 10px;
}

.contact-one__form ::placeholder {
  opacity: 1;
  color: var(--text);
}

.contact-one__form .form-group i {
  position: absolute;
  top: 15px;
  right: 0;
  font-size: 16px;
  color: var(--text);
}

.contact-one__form .thm-btn {
  padding: 15.5px 38px;
}

@media (min-width: 992px) {
  .contact-one__form .thm-btn {
    margin-top: 30px;
  }
}

.contact-one__top {
  background-color: var(--black);
  text-align: center;
  padding-top: 40px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.contact-one__top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.33;
}

.contact-one__top .container {
  position: relative;
}

@media (min-width: 992px) {
  .contact-one__top {
    text-align: left;
    padding-top: 100px;
    padding-bottom: 300px;
  }
}

.contact-one__top-two {
  padding-top: 300px;
}

.contact-one__top .block-title h3,
.contact-one__top .block-title p {
  color: #fff;
}

@media (min-width: 992px) {
  .contact-one__top .block-title p {
    justify-content: flex-start;
  }
}

.contact-one__top .block-title h3 {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 992px) {
  .contact-one__top .block-title {
    padding-left: 40px;
  }
  .contact-one__top .block-title h3 {
    padding-left: 0;
    padding-right: 0;
  }
}

/*------------------------------------------------
--------------------------
12. Team One
--------------------------
------------------------------------------------*/

.team-one {
  padding-top: 85px;
  padding-bottom: 85px;
}

@media (min-width: 992px) {
  .team-one {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}

.team-one__4-col {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .team-one__4-col {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .team-one__4-col {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.team-one__image {
  position: relative;
}
.team-one__social {
  position: absolute;
  top: 50%;
  right: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%);
  transition: all 500ms ease;
}
.team-one__single:hover .team-one__social {
  opacity: 1;
  visibility: visible;
}
.team-one__social a {
  width: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  background-color: var(--black);
  color: #fff;
  font-size: 17px;
  text-align: center;
  transition: all 500ms ease;
}
.team-one__social a:hover {
  background-color: var(--primary);
  color: #fff;
}
.team-one__social a + a {
  margin-top: 10px;
}
.team-one__image > img {
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.team-one__content {
  text-align: center;
}

.team-one__content h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--black);
  margin: 0;
  margin-top: 25px;
  margin-bottom: 5px;
}

.team-one__content p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
}

/*------------------------------------------------
--------------------------
13. Service One
--------------------------
------------------------------------------------*/

.service-one {
  background-color: var(--black);
  padding-top: 85px;
  padding-bottom: 85px;
  background-image: url(../images/icons/service-bg-1-1.html);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media (min-width: 992px) {
  .service-one {
    padding-top: 140px;
    padding-bottom: 105px;
  }
}

.service-one__service-page {
  background-color: #fff;
  background-image: unset;
  padding-top: 140px;
  padding-bottom: 140px;
}

.service-one .block-title p,
.service-one .block-title h3 span,
.service-one .block-title h3 {
  color: #fff;
}

.service-one__3-col {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .service-one__3-col {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .service-one__3-col {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.service-one__single {
  position: relative;
  transition: 500ms ease;
}
@media (min-width: 768px) {
  .service-one__single {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 130px;
    padding-right: 30px;
  }
  .service-one__single:hover {
    background-color: #fff;
  }
}
.service-one__single > i {
  font-size: 65px;
  color: #fff;
}

.service-one__service-page .service-one__single > i {
  color: var(--primary);
}

@media (min-width: 768px) {
  .service-one__single > i {
    position: absolute;
    top: 35px;
    left: 30px;
    transition: 500ms;
  }
  .service-one__single:hover > i {
    color: var(--primary);
  }
}

.service-one__single h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 15px;
}

.service-one__service-page .service-one__single h3 {
  color: var(--black);
}

@media (min-width: 768px) {
  .service-one__single h3 {
    margin-top: 0;
    transition: 500ms;
    font-size: 22px;
  }
  .service-one__single:hover h3 {
    color: var(--black);
  }
}

.service-one__single p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #fff;
}

.service-one__service-page .service-one__single p {
  color: #888888;
}

@media (min-width: 768px) {
  .service-one__single p {
    transition: 500ms;
  }
  .service-one__single:hover p {
    color: var(--text);
  }
}

/*------------------------------------------------
--------------------------
14. Progress One
--------------------------
------------------------------------------------*/

.circle-progress__wrap {
  padding-top: 140px;
}

.circle-progress__two {
  padding-bottom: 140px;
}

.circle-progress__4-col {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .circle-progress__4-col {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .circle-progress__4-col {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.circle-progress__single {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.circle-progress {
  width: 230px;
  height: 230px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50%;
  border: 1px solid #eaeaea;
  box-shadow: 0px 19px 54px 0px rgba(0, 0, 0, 0.02);
}

.circle-progress > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  font-weight: bold;
  font-family: var(--heading-font);
  color: var(--primary);
}

.circle-progress > canvas {
  height: 100%;
  display: block;
}

.circle-progress__single h3 {
  margin: 0;
  font-size: 22px;
  font-weight: bold;
  color: var(--black);
  display: block;
  margin-top: 30px;
}

/*------------------------------------------------
--------------------------
15. Project One
--------------------------
------------------------------------------------*/

.project-one {
  padding-top: 85px;
}
@media (min-width: 992px) {
  .project-one {
    padding-top: 140px;
  }
}
.project-one__top {
  margin-bottom: 50px;
}
.project-one__top .block-title {
  margin-bottom: 0;
}
.project-one__top-text {
  margin: 0;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .project-one__top-text {
    margin-top: 0;
  }
}
.project-one .thm-swiper__slider {
  width: 100%;
  max-width: 960px;
}

@media (min-width: 992px) {
  .project-one .thm-swiper__slider {
    overflow: visible;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.project-one__single {
  position: relative;
  overflow: hidden;
}

.project-one__single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.12;
}

.project-one__content {
  position: absolute;
  bottom: 20px;
  left: 0;
  padding: 20px;
  background-color: var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(50%);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
}

.project-one__single:hover .project-one__content {
  opacity: 1;
  transform: translateY(0%);
  visibility: visible;
}

@media (min-width: 576px) {
  .project-one__content {
    width: 100%;
    max-width: 450px;
    min-height: 86px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
}
.project-one__single > img {
  width: 100%;
}
@media (min-width: 992px) {
  .project-one__content {
    bottom: 30px;
    padding-left: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.project-one__content p {
  margin: 0;
  font-size: 16px;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .project-one__content p {
    font-size: 18px;
  }
}
.project-one__content h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}

@media (min-width: 992px) {
  .project-one__single h3 {
    font-size: 24px;
  }
}

.project-one__link {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 15px;
  margin-top: 10px;
  color: var(--primary);
  background-color: #fff;
  transition: 500ms;
}
.project-one__link:hover {
  background-color: var(--black);
  color: #fff;
}

@media (min-width: 576px) {
  .project-one__link {
    position: absolute;
    top: 0;
    right: 0;
    width: 86px;
    margin-top: 0;
    height: 86px;
  }
}
@media (min-width: 992px) {
  .project-one__link {
    width: 112px;
    height: 112px;
    font-size: 49px;
    right: auto;
    left: 100%;
  }
}

/*------------------------------------------------
--------------------------
16. About One
--------------------------
------------------------------------------------*/

.about-one {
  padding-top: 120px;
  padding-bottom: 120px;
}

.about-one__images {
  width: 100%;
  max-width: 576px;
  position: relative;
  right: 70px;
}

@media (max-width: 1199px) {
  .about-one__images {
    margin-bottom: 180px;
    right: 0;
  }
}
@media (max-width: 425px) {
  .about-one__images {
    margin-bottom: 50px;
  }
}

.about-one__images img:nth-child(2) {
  position: absolute;
  top: 150px;
  right: 0;
}

@media (max-width: 425px) {
  .about-one__images img:nth-child(2) {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 30px;
  }
}

.about-one__images-content {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary);
  width: 100%;
  max-width: 263px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 130px;
  text-align: center;
}
@media (max-width: 425px) {
  .about-one__images-content {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 30px;
  }
}
.about-one__images-content h3 {
  margin: 0;
  color: #fff;
  font-weight: bold;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 17px;
}

.about-one__images-content p {
  margin: 0;
  line-height: 1;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}

.about-one__content .thm-btn {
  padding: 14.5px 38px;
}

.about-one__content > p {
  margin: 0;
  font-size: 16px;
  color: #888888;
  margin-bottom: 35px;
  line-height: 1.75;
}

.about-one__content .block-title {
  margin-bottom: 20px;
}

.about-one__box {
  display: flex;
  margin-top: 20px;
}
.about-one__box > i {
  font-size: 36px;
  color: var(--primary);
  margin-right: 26px;
}

.about-one__box-content h3 {
  margin: 0;
  font-weight: bold;
  color: var(--black);
  font-size: 22px;
  line-height: 1;
  margin-bottom: 15px;
}

.about-one__box-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #888888;
}

.about-one__call {
  display: flex;
  align-items: center;
  margin-top: 50px;
}

@media (max-width: 425px) {
  .about-one__call {
    flex-direction: column;
    align-items: flex-start;
  }
}

.about-one__call-box {
  margin-left: 30px;
  display: flex;
  align-items: center;
}
@media (max-width: 425px) {
  .about-one__call-box {
    margin-left: 0;
    margin-top: 30px;
  }
}
.about-one__call-box > i {
  font-size: 33px;
  color: var(--primary);
  margin-right: 15px;
}

.about-one__call-box p {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
  line-height: 30px;
}

.about-one__call-box p a {
  font-weight: bold;
  font-size: 22px;
  color: var(--black);
}

/*------------------------------------------------
--------------------------
17. Main Slider
--------------------------
------------------------------------------------*/

.main-slider {
  overflow: hidden;
  position: relative;
  margin-top: -75px;
}

@media (max-width: 1199px) {
  .main-slider {
    margin-top: 0;
  }
}

.main-slider .swiper-slide {
  position: relative;
  background-color: #151414;
}

.main-slider .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.6;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 7000ms ease;
  transition: -webkit-transform 7000ms ease;
  transition: transform 7000ms ease;
  transition: transform 7000ms ease, -webkit-transform 7000ms ease;
}

.main-slider .container {
  padding-top: 250px;
  padding-bottom: 180px;
}

@media (max-width: 575px) {
  .main-slider .container {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.main-slider__box {
  width: 100%;
  max-width: 760px;
  border-left: 15px solid var(--primary);
  background-color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 11;
  padding-left: 55px;
  padding-right: 55px;
  padding-top: 70px;
  padding-bottom: 70px;
  transform: scale(0, 1);
  opacity: 0;
  transform-origin: right center;
  transition: transform 1500ms ease, opacity 1500ms ease;
}

@media (max-width: 480px) {
  .main-slider__box {
    padding-left: 30px;
    padding-right: 30px;
    border-left: 10px solid var(--primary);
  }
}
.swiper-slide-active .main-slider__box {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: left center;
}

.main-slider__box .block-title {
  margin-bottom: 0;
}

.main-slider__box > p {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  color: var(--black);
  font-family: var(--heading-font);
  max-width: 90%;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 375px) {
  .main-slider__box > p {
    font-size: 18px;
  }
}

.main-slider__box .block-title h3 {
  font-size: 87px;
  line-height: 1.15;
  font-weight: 400;
}
@media (max-width: 575px) {
  .main-slider__box .block-title h3 {
    font-size: 65px;
  }
}
@media (max-width: 480px) {
  .main-slider__box .block-title h3 {
    font-size: 55px;
  }
}
@media (max-width: 375px) {
  .main-slider__box .block-title h3 {
    font-size: 40px;
  }
}
.main-slider__box .block-title h3 span {
  color: var(--black);
  font-weight: 700;
}
.main-slider__box .thm-btn {
  padding: 15.5px 35px;
  border-radius: 5px;
}
.main-slider .swiper-slide-active .image-layer {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

#main-slider-pagination {
  z-index: 10;
  bottom: auto;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 1170px;
  transform: translate(-50%, calc(-50% + 0px));
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

@media (max-width: 1199px) {
  #main-slider-pagination {
    max-width: 960px;
    -webkit-transform: translate(-50%, calc(-50% + 40px));
    transform: translate(-50%, calc(-50% + 40px));
  }
}

@media (max-width: 575px) {
  #main-slider-pagination {
    display: none;
  }
}

#main-slider-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.4;
  background-color: #fff;
}

#main-slider-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-top: 10px;
}

#main-slider-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

/* main slider two */

.main-slider__two {
  margin-top: 0;
}

.main-slider__two .main-slider__box {
  background-color: rgba(0, 0, 0, 0);
  border-left: 0;
  padding: 0;
  width: 100%;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.main-slider__two .main-slider__box .block-title {
  transform: scale(1, 0);
  opacity: 0;
  transform-origin: top center;
  transition: transform 1500ms ease, opacity 1500ms ease;
}
.main-slider__two .swiper-slide-active .main-slider__box .block-title {
  opacity: 1;
  transform: scale(1, 1);
  transform-origin: bottom center;
}

.main-slider__two .main-slider__box .block-title h3 {
  color: #fff;
}
.main-slider__two .main-slider__box .block-title h3 span {
  color: #fff;
}
.main-slider__two .main-slider__box p {
  color: #fff;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.main-slider__two .main-slider__box {
  transform: scale(1, 1);
  opacity: 1;
}
.main-slider__two .main-slider__box .thm-btn {
  opacity: 0;
  transform: scale(1, 0);
  transform-origin: bottom center;
  margin-top: 30px;
  transition: transform 1500ms ease, opacity 1500ms ease, color 500ms ease,
    background 500ms ease;
}

.main-slider__two .swiper-slide-active .main-slider__box .thm-btn {
  opacity: 1;
  transform: scale(1, 1);
  transform-origin: top center;
}
/*------------------------------------------------
--------------------------
18. Page Header
--------------------------
------------------------------------------------*/

.page-header {
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.page-header .container {
  padding-bottom: 100px;
  padding-top: 230px;
  position: relative;
}

@media (max-width: 767px) {
  .page-header .container {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.page-header h2 {
  margin: 0;
  font-size: 45px;
  line-height: 1;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-family: var(--thm-font);
}

/*------------------------------------------------
--------------------------
19. Brand
--------------------------
------------------------------------------------*/

.brand-one {
  background-color: var(--black);
  padding-top: 100px;
  padding-bottom: 100px;
}




















@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&amp;display=swap";
body {
	font-family: nunito, sans-serif;
	overflow-x: hidden
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden
}

button,
input,
textarea {
	border: 0;
	background: 0 0;
	-webkit-transition: .4s;
	transition: .4s
}

button:focus,
input:focus,
textarea:focus {
	outline: none
}

a {
	display: inline-block;
	-webkit-transition: .4s;
	transition: .4s
}

a:hover {
	text-decoration: none
}

img {
	max-width: 100%
}

span {
	display: inline-block
}

@-webkit-keyframes pulse-1 {
	0% {
		width: 100%;
		height: 100%;
		top: 0;
		left: 0
	}
	100% {
		width: 150%;
		height: 150%;
		top: -25%;
		left: -25%;
		opacity: 0
	}
}

@keyframes pulse-1 {
	0% {
		width: 100%;
		height: 100%;
		top: 0;
		left: 0
	}
	100% {
		width: 150%;
		height: 150%;
		top: -25%;
		left: -25%;
		opacity: 0
	}
}

@media only screen and (min-width:1200px) {
	.container {
		min-width: 1200px
	}
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	z-index: 99
}

.preloader .loader {
	width: 100px;
	height: 100px
}

.preloader .loader img {
	width: 100%
}

.scroll-to-top {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 11;
	visibility: hidden
}

.scroll-to-top .container {
	height: 100%;
	position: relative
}

.scroll-to-top .container button {
	position: absolute;
	bottom: 100%;
	right: 15px;
	width: 55px;
	height: 55px;
	line-height: 50px;
	font-size: 22px;
	color: #fff;
	background: #0d0925;
	border: 2px solid #fff;
	border-radius: 50%;
	visibility: visible
}

.scroll-to-top .container button.active {
	bottom: 20px
}

.scroll-to-top .container button:hover {
	color: #0d0925;
	background: #fff;
	border-color: #0d0925
}

.def-btn {
	height: 55px;
	line-height: 55px;
	background: #0d0925;
	border-radius: 30px;
	padding: 0 40px;
	font-size: 18px;
	color: #fff
}

.def-btn.def-btn-2 {
	background: #2a9d8f
}

.def-btn.def-btn-2:hover,
.def-btn.def-btn-2:focus {
	background: #0d0925
}

.def-btn:hover,
.def-btn:focus {
	background: #2a9d8f;
	color: #fff
}

.heading {
	text-align: center;
	margin-bottom: 70px
}

.heading.heading-2 h5,
.heading.heading-2 h2 {
	color: #fff
}

.heading h5 {
	font-size: 18px;
	line-height: 100%;
	font-weight: 600;
	text-transform: uppercase;
	color: #4b4b46;
	margin-top: -2px;
	margin-bottom: 18px
}

.heading h2 {
	font-size: 35px;
	line-height: 45px;
	font-weight: 700;
	color: #4b4b46;
	margin-bottom: -11px
}

.clear {
	overflow: hidden
}

.fb {
	background: #1976d2
}

.tw {
	background: #03a9f4
}

.ggl {
	background: #dd4b39
}

.ld {
	background: #007ab9
}

.yt {
	background: #f44336
}

.pin {
	background: #d01d1d
}

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

.header .top-header {
	background: #2a9d8f
}

.header .top-header .top-left ul {
	padding: 0;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none
}

.header .top-header .top-left ul li {
	font-size: 13px;
	line-height: 100%;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-right: 60px
}

.header .top-header .top-left ul li i {
	display: inline-block;
	height: 13px;
	color: #0d0925;
	margin-right: 7px
}

.header .top-header .top-left ul li:last-child {
	margin-right: 0
}

.header .top-header .top-right {
	padding: 15px 0
}

.header .top-header .top-right a {
	text-align: center;
	width: 25px;
	height: 25px;
	line-height: 28px;
	border: 1px solid #fff;
	border-radius: 50%;
	color: #fff;
	font-size: 11px;
	margin-right: 6px
}

.header .top-header .top-right a:last-child {
	margin-right: 0
}

.header .top-header .top-right a:hover {
	-webkit-box-shadow: 0 5px 5px 0 rgba(51, 51, 51, .3);
	box-shadow: 0 5px 5px 0 rgba(51, 51, 51, .3)
}

.header .bottom-header {
	background: #f6f6f6;
	position: relative;
	z-index: 2
}

.header .bottom-header:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 35px;
	background: #0d0925;
	z-index: -1
}

.header .bottom-header:after {
	content: "";
	position: absolute;
	top: 30%;
	left: 50%;
	width: 50%;
	height: 70%;
	background: #0d0925;
	z-index: -1
}

.header .bottom-header.fixed-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-box-shadow: 0 10px 20px -5px rgba(51, 51, 51, .2);
	box-shadow: 0 10px 20px -5px rgba(51, 51, 51, .2)
}

.header .bottom-header .bg {
	position: relative;
	z-index: 2
}

.header .bottom-header .bg:after {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	bottom: 0;
	right: 90%;
	background: #f6f6f6;
	z-index: -1
}

.header .bottom-header .bg .bg-2 {
	position: relative;
	z-index: 2
}

.header .bottom-header .bg .bg-2:before {
	content: "";
	position: absolute;
	top: 0;
	left: 86%;
	width: 47%;
	height: 35%;
	background: #f6f6f6;
	border-radius: 0 0 0 24px;
	z-index: -1
}

.header .bottom-header .bg .bg-2 .bg-3 {
	position: relative;
	z-index: 2
}

.header .bottom-header .bg .bg-2 .bg-3:before {
	content: "";
	position: absolute;
	top: 0;
	left: 10%;
	width: 78%;
	height: 100%;
	background: #0d0925;
	-webkit-transform: skew(37deg);
	transform: skew(37deg);
	border-radius: 0 30px 0 35px;
	z-index: -1
}

.header .bottom-header .bg .bg-2 .bg-3:after {
	content: "";
	position: absolute;
	top: 10px;
	bottom: 0;
	right: 89.5%;
	width: 100%;
	-webkit-transform: skew(30deg);
	transform: skew(30deg);
	background: #f6f6f6;
	border-radius: 0 14px 0 0;
	z-index: -1
}

.header .bottom-header .bg .bg-2 .bg-3.fixed-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-box-shadow: 0 10px 20px 0 rgba(51, 51, 51, .1);
	box-shadow: 0 10px 20px 0 rgba(51, 51, 51, .1);
	background: #fff
}

.header .bottom-header .bg .bg-2 .bg-3 .logo {
	padding-top: 10px
}

.header .bottom-header .bg .bg-2 .bg-3 .navbar {
	padding: 0;
	padding-left: 9px
}

.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item {
	padding: 40px 16px
}

.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item:last-child {
	padding-right: 0
}

.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
	display: block;
	margin-top: -30px;
	border: 0;
	border-radius: 0;
	padding: 0;
	width: 220px;
	-webkit-box-shadow: 0 10px 30px 0 rgba(51, 51, 51, .15);
	box-shadow: 0 10px 30px 0 rgba(51, 51, 51, .15);
	opacity: 0;
	background: #f6f6f6;
	visibility: hidden;
	-webkit-transition: all .3s ease-in;
	transition: all .3s ease-in
}

.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
	font-size: 16px;
	line-height: 100%;
	color: #4b4b46;
	padding: 0 20px;
	border-bottom: 1px solid rgba(51, 51, 51, .1);
	-webkit-transition: all .3s ease-in;
	transition: all .3s ease-in
}

.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:last-child {
	border-bottom: 0
}

.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover,
.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:focus {
	background: #201947;
	color: #fff
}

.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu,
.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown:focus .dropdown-menu {
	opacity: 1;
	visibility: visible
}

.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu .dropdown-item,
.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown:focus .dropdown-menu .dropdown-item {
	padding: 18px 20px 17px
}

.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item .nav-link {
	padding: 3px 0 2px;
	font-size: 16px;
	line-height: 100%;
	color: #fff;
	position: relative
}

.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item .nav-link:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	border-top: 1px dotted #2a9d8f;
	border-bottom: 1px dotted #2a9d8f;
	-webkit-transform: skew(45deg);
	transform: skew(45deg);
	-webkit-transition: all .4s ease-in;
	transition: all .4s ease-in
}

.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item .nav-link:hover,
.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item .nav-link:focus {
	color: #2a9d8f
}

.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item .nav-link:hover:after,
.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item .nav-link:focus:after {
	width: 100%;
	opacity: 1
}

.header .bottom-header .bg .bg-2 .bg-3 .bottom-right {
	text-align: center;
	padding-left: 20px
}

.header .bottom-header .bg .bg-2 .bg-3 .bottom-right a {
	height: 35px;
	line-height: 35px;
	font-size: 16px;
	color: #333
}

.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-left: 20px;
	margin: 10px 0
}

.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form input {
	padding: 0;
	height: 46px;
	width: 100%;
	font-size: 16px;
	color: #f6f6f6;
	border-bottom: 1px solid transparent
}

.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form input::-webkit-input-placeholder {
	color: #7269a8
}

.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form input::-moz-placeholder {
	color: #7269a8
}

.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form input:-ms-input-placeholder {
	color: #7269a8
}

.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form input::-ms-input-placeholder {
	color: #7269a8
}

.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form input::placeholder {
	color: #7269a8
}

.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form input:focus {
	border-color: #2a9d8f
}

.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form button {
	font-size: 25px;
	color: #2a9d8f;
	padding: 0;
	height: 46px;
	line-height: 50px
}

.header-2 {
	background: #0d0925;
	position: relative;
	z-index: 11
}

.header-2 .top-header .bg {
	position: relative;
	z-index: 12
}

.header-2 .top-header .bg:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 99999px;
	background: #2a9d8f;
	z-index: -1
}

.header-2 .top-header .bg .top-left ul {
	padding-left: 0;
	margin: 0;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.header-2 .top-header .bg .top-left ul li {
	font-size: 14px;
	line-height: 100%;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 19px 35px 15px;
	border-right: 1px solid #fff
}

.header-2 .top-header .bg .top-left ul li:last-child {
	padding-right: 0;
	border: 0
}

.header-2 .top-header .bg .top-left ul li i {
	margin-right: 10px
}

.header-2 .top-header .bg .top-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.header-2 .top-header .bg .top-right .language {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-right: 35px
}

.header-2 .top-header .bg .top-right .language .select-lang {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex
}

.header-2 .top-header .bg .top-right .language .select-lang .flagstrap-icon {
	margin-top: -2px
}

.header-2 .top-header .bg .top-right .language .select-lang .flagstrap-icon.flagstrap-us {
	width: 35px;
	height: 23px;
	border: 3px solid #fff;
	border-radius: 3px;
	background: url(../images/us.jpg) center center no-repeat;
	background-size: contain
}

.header-2 .top-header .bg .top-right .language .select-lang .flagstrap-icon.flagstrap-bd {
	width: 35px;
	height: 23px;
	border: 3px solid #fff;
	border-radius: 3px;
	background: url(../images/bd.jpg) center center no-repeat;
	background-size: contain
}

.header-2 .top-header .bg .top-right .language .select-lang .flagstrap-icon.flagstrap-sp {
	width: 35px;
	height: 23px;
	border: 3px solid #fff;
	border-radius: 3px;
	background: url(../images/sp.jpg) center center no-repeat;
	background-size: contain
}

.header-2 .top-header .bg .top-right .language .select-lang .dropdown-toggle {
	background: 0 0;
	padding: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	color: #fff
}

.header-2 .top-header .bg .top-right .language .select-lang .dropdown-toggle:after {
	border: 0;
	content: "";
	font-family: flaticon;
	font-size: 12px;
	margin-left: -5px;
	color: #fff
}

.header-2 .top-header .bg .top-right .language .select-lang .dropdown-toggle span:first-child {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.header-2 .top-header .bg .top-right .language .select-lang ul {
	width: 150px;
	padding: 5px;
	-webkit-transform: translate3d(0px, 0px, 0px)!important;
	transform: translate3d(0px, 0px, 0px)!important;
	top: 100%!important
}

.header-2 .top-header .bg .top-right .language .select-lang ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-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
}

.header-2 .top-header .bg .top-right .language .select-lang ul li:last-child a {
	margin-bottom: 0
}

.header-2 .top-header .bg .top-right .language .select-lang ul li:first-child {
	display: none
}

.header-2 .top-header .bg .top-right .language .select-lang ul li a {
	line-height: 30px;
	padding: 5px 10px;
	width: 100%;
	border: 1px solid rgba(51, 51, 51, .1);
	border-radius: 3px;
	margin-bottom: 5px;
	font-size: 14px;
	color: #2a9d8f;
	-webkit-transition: all .3s ease-in;
	transition: all .3s ease-in;
	cursor: pointer
}

.header-2 .top-header .bg .top-right .language .select-lang ul li a .flagstrap-icon {
	margin-top: 0;
	margin-bottom: -6px
}

.header-2 .top-header .bg .top-right .language .select-lang ul li a:hover {
	background: #0d0925;
	color: #fff
}

.header-2 .top-header .bg .top-right .try-btn {
	padding: 8px 0 8px 35px;
	border-left: 1px solid #fff
}

.header-2 .top-header .bg .top-right .try-btn a {
	height: 35px;
	line-height: 36px;
	padding: 0 25px;
	font-size: 16px;
	font-weight: 600;
	color: #4b4b46;
	background: #fff;
	border-radius: 5px
}

.header-2 .top-header .bg .top-right .try-btn a:hover {
	background: #0d0925;
	color: #fff
}

.header-2 .bottom-header.fixed-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-box-shadow: 0 10px 20px -5px rgba(51, 51, 51, .2);
	box-shadow: 0 10px 20px -5px rgba(51, 51, 51, .2);
	background: #0d0925
}

.header-2 .bottom-header .bg {
	position: relative;
	z-index: 11
}

.header-2 .bottom-header .bg:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 99999px;
	background: #fff;
	z-index: -1
}

.header-2 .bottom-header .bg .navbar {
	padding: 0;
	padding-left: 9px
}

.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item {
	padding: 40px 16px
}

.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item:last-child {
	padding-right: 0
}

.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
	display: block;
	margin-top: -30px;
	border: 0;
	border-radius: 0;
	padding: 0;
	width: 220px;
	-webkit-box-shadow: 0 0 20px 0 rgba(51, 51, 51, .2);
	box-shadow: 0 0 20px 0 rgba(51, 51, 51, .2);
	opacity: 0;
	background: #f6f6f6;
	visibility: hidden;
	-webkit-transition: all .3s ease-in;
	transition: all .3s ease-in
}

.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
	font-size: 16px;
	line-height: 100%;
	color: #4b4b46;
	padding: 0 20px;
	border-bottom: 1px solid rgba(51, 51, 51, .1);
	-webkit-transition: all .3s ease-in;
	transition: all .3s ease-in
}

.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:last-child {
	border-bottom: 0
}

.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
	background: #201947;
	color: #fff
}

.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible
}

.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu .dropdown-item {
	padding: 18px 20px 17px
}

.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item .nav-link {
	padding: 3px 0 2px;
	font-size: 16px;
	line-height: 100%;
	color: #4b4b46;
	position: relative
}

.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item .nav-link:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	border-top: 1px dotted #2a9d8f;
	border-bottom: 1px dotted #2a9d8f;
	-webkit-transform: skew(45deg);
	transform: skew(45deg);
	-webkit-transition: all .4s ease-in;
	transition: all .4s ease-in
}

.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item .nav-link:hover {
	color: #2a9d8f
}

.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item .nav-link:hover:after {
	width: 100%
}

.header-2 .bottom-header .bg .bottom-right {
	padding: 0 30px
}

.header-2 .bottom-header .bg .bottom-right form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background: #0d0925;
	border-radius: 8px;
	padding: 0 25px
}

.header-2 .bottom-header .bg .bottom-right form input {
	width: 100%;
	height: 60px;
	padding: 0 10px 0 0;
	color: #fff
}

.header-2 .bottom-header .bg .bottom-right form input::-webkit-input-placeholder {
	color: #f6f6f6;
	opacity: .7
}

.header-2 .bottom-header .bg .bottom-right form input::-moz-placeholder {
	color: #f6f6f6;
	opacity: .7
}

.header-2 .bottom-header .bg .bottom-right form input:-ms-input-placeholder {
	color: #f6f6f6;
	opacity: .7
}

.header-2 .bottom-header .bg .bottom-right form input::-ms-input-placeholder {
	color: #f6f6f6;
	opacity: .7
}

.header-2 .bottom-header .bg .bottom-right form input::placeholder {
	color: #f6f6f6;
	opacity: .7
}

.header-2 .bottom-header .bg .bottom-right form button {
	padding: 0;
	height: 60px;
	line-height: 68px;
	font-size: 25px;
	color: #2a9d8f
}

.header-2 .bottom-header .bg .bottom-right form button:hover {
	color: #fff
}

.banner {
	background: #0d0925;
	position: relative;
	z-index: 2
}

.banner:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../images/banner-img.png) center center no-repeat;
	background-size: cover;
	z-index: -1
}

.banner .banner-txt {
	padding: 220px 0
}

.banner .banner-txt h4 {
	font-size: 20px;
	line-height: 100%;
	font-weight: 700;
	color: #2a9d8f;
	margin-top: -2px;
	margin-bottom: 25px
}

.banner .banner-txt h1 {
	font-size: 55px;
	line-height: 65px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 19px
}

.banner .banner-txt h1 span {
	color: #2a9d8f
}

.banner .banner-txt p {
	font-size: 18px;
	line-height: 28px;
	color: #fff;
	margin-bottom: 36px
}

.banner .banner-txt .btn-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 16px
}

.banner .banner-txt .btn-box a {
	height: 55px;
	line-height: 55px;
	font-size: 18px;
	padding: 0 35px;
	border: 1px solid;
	border-radius: 30px
}

.banner .banner-txt .btn-box a.left-btn {
	border-color: #fff;
	background: #fff;
	color: #4b4b46;
	margin-right: 30px
}

.banner .banner-txt .btn-box a.left-btn:hover {
	background: 0 0;
	color: #fff
}

.banner .banner-txt .btn-box a.right-btn {
	border-color: #2a9d8f;
	color: #fff
}

.banner .banner-txt .btn-box a.right-btn:hover {
	background: #2a9d8f
}

.banner-2 {
	background: url(../images/banner-bg.jpg) center right 30% no-repeat;
	background-size: cover
}

.banner-2 .banner-txt {
	padding: 220px 0
}

.banner-2 .banner-txt h4 {
	font-size: 22px;
	line-height: 100%;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 7px;
	color: #fff;
	margin-top: -2px;
	margin-bottom: 25px
}

.banner-2 .banner-txt h1 {
	font-size: 55px;
	line-height: 65px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 19px
}

.banner-2 .banner-txt p {
	font-size: 18px;
	line-height: 28px;
	color: #fff;
	margin-bottom: 36px
}

.banner-2 .banner-txt .btn-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 16px
}

.banner-2 .banner-txt .btn-box a {
	height: 55px;
	line-height: 55px;
	font-size: 18px;
	padding: 0 35px;
	border: 1px solid;
	border-radius: 30px
}

.banner-2 .banner-txt .btn-box a.left-btn {
	border-color: #fff;
	background: #fff;
	color: #4b4b46;
	margin-right: 30px
}

.banner-2 .banner-txt .btn-box a.left-btn:hover {
	background: 0 0;
	color: #fff
}

.banner-2 .banner-txt .btn-box a.right-btn {
	border-color: #fff;
	color: #fff
}

.banner-2 .banner-txt .btn-box a.right-btn:hover {
	background: #fff;
	color: #4b4b46
}

.banner-2 .part-img {
	margin-left: -55px
}

.banner-2 .part-img img {
	max-width: none
}

.partner {
	padding-top: 120px;
	padding-bottom: 60px
}

.partner.partner-2 {
	padding: 120px 0;
	background: url(../images/partner-bg.jpg) center center no-repeat;
	background-size: cover;
	position: relative;
	z-index: 2
}

.partner.partner-2:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/partner-overlay.png) center left 30% no-repeat;
	background-size: cover;
	z-index: -1
}

.partner.partner-2 .heading h2 {
	margin-bottom: 32px
}

.partner.partner-2 .heading p {
	font-size: 16px;
	line-height: 26px;
	color: #fff;
	margin-bottom: -8px
}

.partner.partner-2 .bg {
	padding: 0;
	background: rgba(13, 9, 37, .7);
	border: .5px solid rgba(62, 55, 104, .7);
	overflow: hidden
}

.partner.partner-2 .bg .brand-slider .single-img {
	height: 195px;
	padding: 35px 0;
	border-left: .5px solid rgba(62, 55, 104, .7);
	border-right: .5px solid rgba(62, 55, 104, .7)
}

.partner.partner-2 .bg .brand-slider .single-img img {
	-webkit-filter: brightness(100);
	filter: brightness(100)
}

.partner.partner-2 .bg .brand-slider .owl-nav {
	display: none
}

.partner.partner-inner {
	padding-bottom: 120px
}

.partner .bg {
	background: #2a9d8f;
	border-radius: 10px;
	padding: 35px 55px
}

.partner .bg .brand-slider .single-img {
	height: 125px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.partner .bg .brand-slider .single-img img {
	width: auto;
	height: 100%
}

.partner .bg .brand-slider .owl-nav {
	position: absolute;
	top: 50%;
	left: -90px;
	right: -90px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	visibility: hidden
}

.partner .bg .brand-slider .owl-nav button {
	text-align: center;
	width: 70px;
	height: 70px;
	line-height: 70px;
	background: #f3d79c;
	border: 5px solid #fff;
	border-radius: 50%;
	font-size: 30px;
	color: rgba(13, 9, 37, .4);
	visibility: visible
}

.partner .bg .brand-slider .owl-nav button.owl-prev i {
	margin-left: 0;
	margin-right: 5px
}

.partner .bg .brand-slider .owl-nav button i {
	margin-left: 5px
}

.partner .bg .brand-slider .owl-nav button:hover {
	background: #2a9d8f;
	color: #0d0925
}

.about {
	padding-top: 60px;
	padding-bottom: 120px
}

.about.about-2 .part-img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end
}

.about.about-2 .part-img img {
	max-width: none
}

.about.about-2 .part-txt .def-btn {
	margin-top: 27px
}

.about.about-inner {
	padding-top: 120px
}

.about .image-box {
	padding-right: 34px
}

.about .image-box .part-img {
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	z-index: -1
}

.about .image-box .fun-fact-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	background: #2a9d8f;
	border: 5px solid #fff;
	border-radius: 10px;
	-webkit-box-shadow: 0 5px 10px 0 rgba(51, 51, 51, .1);
	box-shadow: 0 5px 10px 0 rgba(51, 51, 51, .1);
	padding: 30px 25px;
	margin: -70px 35px 0;
	z-index: 2
}

.about .image-box .fun-fact-inner .single-box {
	padding: 0 10px
}

.about .image-box .fun-fact-inner .single-box h4 {
	font-size: 30px;
	line-height: 100%;
	font-weight: 700;
	color: #fff;
	margin-top: -4px;
	margin-bottom: 6px
}

.about .image-box .fun-fact-inner .single-box h4 span {
	line-height: 100%
}

.about .image-box .fun-fact-inner .single-box p {
	font-size: 14px;
	line-height: 24px;
	font-weight: 600;
	color: #0d0925;
	margin-bottom: -8px
}

.about .image-box .fun-fact-inner .single-box p span {
	font-size: 12px
}

.about .part-txt .heading {
	margin-bottom: 43px;
	text-align: left
}

.about .part-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #4b4b46;
	margin-bottom: 15px
}

.about .part-txt .boxes {
	margin-top: 41px
}

.about .part-txt .boxes .single-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 42px
}

.about .part-txt .boxes .single-box .icon {
	margin-right: 15px
}

.about .part-txt .boxes .single-box .icon span {
	font-size: 25px;
	color: #4b4b46;
	-webkit-transition: .4s;
	transition: .4s
}

.about .part-txt .boxes .single-box .txt h3 {
	font-size: 20px;
	line-height: 100%;
	font-weight: 600;
	color: #4b4b46;
	margin-top: -1px;
	margin-bottom: 10px;
	-webkit-transition: .4s;
	transition: .4s
}

.about .part-txt .boxes .single-box .txt span {
	font-size: 14px;
	line-height: 24px;
	color: #4b4b46;
	margin-bottom: 0
}

.about .part-txt .boxes .single-box:hover .icon span {
	color: #2a9d8f
}

.about .part-txt .boxes .single-box:hover .txt h3 {
	color: #2a9d8f
}

.about .part-txt .boxes-2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 80px 35px 30px;
	border-radius: 10px;
	-webkit-box-shadow: 0 10px 10px 0 rgba(51, 51, 51, .07);
	box-shadow: 0 10px 10px 0 rgba(51, 51, 51, .07)
}

.about .part-txt .boxes-2 .single-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 8px;
	padding-bottom: 6px;
	margin-bottom: -3px
}

.about .part-txt .boxes-2 .single-box .img {
	margin-right: 15px
}

.about .part-txt .boxes-2 .single-box .txt h3 {
	font-size: 20px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-bottom: 10px
}

.about .part-txt .boxes-2 .single-box .txt span {
	font-size: 16px;
	line-height: 100%;
	color: #4b4b46
}

.about .part-txt .boxes-2 .devider {
	position: relative
}

.about .part-txt .boxes-2 .devider:after {
	content: "";
	position: absolute;
	top: 0;
	left: 100%;
	width: 2px;
	height: 100%;
	background: #e2e2e2
}

.service {
	padding: 120px 0;
	background: url(../images/service-bg.jpg) center center no-repeat;
	background-size: cover;
	position: relative;
	z-index: 2
}

.service:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(13, 9, 37, .93);
	z-index: -1
}

.service .bg {
	border: 1px solid #362e65;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	z-index: 2
}

.service .bg:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100%/3);
	height: 100%;
	background: url(../images/service-nav-bg.jpg) center center no-repeat;
	background-size: cover;
	z-index: -1
}

.service .bg:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: calc(100%/3);
	height: 100%;
	background: url(../images/service-txt-bg.jpg) center center no-repeat;
	background-size: cover;
	z-index: -1
}

.service .bg .nav {
	padding: 0 40px
}

.service .bg .nav .nav-link {
	height: 70px;
	line-height: 70px;
	padding: 0 30px;
	background: #0d0925;
	border-radius: 7px;
	margin-bottom: 20px;
	font-size: 20px;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.service .bg .nav .nav-link span {
	font-size: 30px;
	margin-bottom: -8px;
	margin-right: 20px
}

.service .bg .nav .nav-link.active {
	background: #2a9d8f;
	color: #0d0925
}

.service .bg .nav .nav-link:last-child {
	margin-bottom: 0
}

.service .bg .part-img {
	border-left: 1px solid #362e65;
	border-right: 1px solid #362e65
}

.service .bg .part-img img {
	width: 100%
}

.service .bg .part-txt {
	padding: 0 40px
}

.service .bg .part-txt h3 {
	font-size: 26px;
	line-height: 100%;
	font-weight: 700;
	color: #fff;
	margin-top: -3px;
	margin-bottom: 18px
}

.service .bg .part-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #fff;
	margin-bottom: 15px
}

.service .bg .part-txt .def-btn {
	margin-top: 7px;
	border: 1px solid #2a9d8f
}

.service-2 {
	padding: 120px 0
}

.service-2 .part-txt .heading {
	margin-bottom: 43px
}

.service-2 .part-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #4b4b46;
	margin-bottom: 15px
}

.service-2 .part-txt .boxes {
	padding-top: 27px
}

.service-2 .part-txt .boxes .single-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 40px
}

.service-2 .part-txt .boxes .single-box:last-child {
	margin-bottom: 0
}

.service-2 .part-txt .boxes .single-box .part-icon {
	width: 75px;
	height: 75px;
	-webkit-box-shadow: 0 0 20px 0 rgba(51, 51, 51, .2);
	box-shadow: 0 0 20px 0 rgba(51, 51, 51, .2);
	border: 5px solid #fff;
	border-radius: 50%;
	background: #0d0925;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-right: 25px;
	-webkit-transition: .4s;
	transition: .4s
}

.service-2 .part-txt .boxes .single-box .txt {
	width: 470px
}

.service-2 .part-txt .boxes .single-box .txt h3 {
	font-size: 20px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -2px;
	margin-bottom: 14px;
	-webkit-transition: .4s;
	transition: .4s
}

.service-2 .part-txt .boxes .single-box .txt p {
	margin-bottom: -8px
}

.service-2 .part-txt .boxes .single-box:hover .part-icon {
	background: #2a9d8f
}

.service-2 .part-txt .boxes .single-box:hover .txt h3 {
	color: #2a9d8f
}

.process {
	padding-top: 120px;
	padding-bottom: 60px
}

.process .single-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-shadow: 0 0 20px 0 rgba(51, 51, 51, .12);
	box-shadow: 0 0 20px 0 rgba(51, 51, 51, .12);
	border-radius: 10px;
	padding: 40px 30px;
	position: relative;
	overflow: hidden;
	z-index: 2
}

.process .single-box:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 20px;
	right: 20px;
	height: 6px;
	background: #2a9d8f;
	border-radius: 3px;
	-webkit-transition: all .4s ease-in;
	transition: all .4s ease-in;
	z-index: -3
}

.process .single-box:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 20px;
	right: 20px;
	height: 6px;
	background: #2a9d8f;
	border-radius: 3px;
	-webkit-transition: all .4s ease-in;
	transition: all .4s ease-in;
	z-index: -1
}

.process .single-box .part-icon {
	width: 64px;
	height: 64px;
	background: #0d0925;
	border-radius: 8px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 30px
}

.process .single-box .part-txt {
	text-align: center
}

.process .single-box .part-txt h3 {
	font-size: 26px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -3px;
	margin-bottom: 18px;
	-webkit-transition: all .4s ease-in;
	transition: all .4s ease-in
}

.process .single-box .part-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #4b4b46;
	margin-bottom: -8px;
	-webkit-transition: all .4s ease-in;
	transition: all .4s ease-in
}

.process .single-box span {
	position: absolute;
	bottom: -13px;
	right: -3px;
	font-size: 80px;
	line-height: 100%;
	font-weight: 700;
	color: #f8f8f8;
	-webkit-transition: all .3s ease-in;
	transition: all .3s ease-in;
	z-index: -2
}

.process .single-box:hover:before {
	left: 0;
	right: 0;
	height: 100%;
	border-radius: 10px
}

.process .single-box:hover:after {
	left: 0;
	right: 0;
	height: 100%;
	border-radius: 10px;
	opacity: 0
}

.process .single-box:hover .part-txt h3,
.process .single-box:hover .part-txt p {
	color: #fff
}

.process .single-box:hover span {
	color: #edb744
}

.process-2 {
	background: #0d0925;
	padding: 120px 0
}

.process-2.process-inner {
	background: 0 0;
	padding: 0
}

.process-2.process-inner .no-gutters .single-box .part-icon {
	background: #0d0925
}

.process-2.process-inner .no-gutters .single-box .part-icon .icon {
	color: #fff
}

.process-2.process-inner .no-gutters .single-box .part-icon .no {
	border-color: #fff;
	color: #0d0925
}

.process-2.process-inner .no-gutters .single-box .part-txt h3,
.process-2.process-inner .no-gutters .single-box .part-txt p {
	color: #4b4b46
}

.process-2.process-inner .no-gutters .single-box:hover .part-icon .icon {
	color: #0d0925
}

.process-2.process-inner .no-gutters .single-box:hover .part-icon .no {
	background: #0d0925;
	color: #fff
}

.process-2 .no-gutters {
	margin: 0 -15px
}

.process-2 .no-gutters .single-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	padding: 0 15px
}

.process-2 .no-gutters .single-box .part-icon {
	width: 90px;
	height: 90px;
	background: #fff;
	border-radius: 50%;
	text-align: center;
	margin-bottom: 40px;
	position: relative;
	-webkit-transition: .4s;
	transition: .4s
}

.process-2 .no-gutters .single-box .part-icon .icon {
	font-size: 35px;
	line-height: 103px;
	color: #0d0925;
	-webkit-transition: .4s;
	transition: .4s
}

.process-2 .no-gutters .single-box .part-icon .no {
	position: absolute;
	top: 0;
	right: 0;
	width: 28px;
	height: 28px;
	line-height: 24px;
	font-size: 12px;
	font-weight: 700;
	background: #2a9d8f;
	border: 2px solid #0d0925;
	border-radius: 50%;
	color: #fff;
	-webkit-transition: .4s;
	transition: .4s
}

.process-2 .no-gutters .single-box .part-txt {
	text-align: center
}

.process-2 .no-gutters .single-box .part-txt h3 {
	font-size: 26px;
	line-height: 100%;
	font-weight: 700;
	color: #fff;
	margin-top: -3px;
	margin-bottom: 18px
}

.process-2 .no-gutters .single-box .part-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #fff;
	margin-bottom: -8px
}

.process-2 .no-gutters .single-box .arrow {
	position: absolute;
	top: 0;
	right: 0;
	height: 90px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-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-transform: translateX(50%);
	transform: translateX(50%)
}

.process-2 .no-gutters .single-box .arrow.rotate {
	-webkit-transform: translateX(50%) rotateX(180deg);
	transform: translateX(50%) rotateX(180deg)
}

.process-2 .no-gutters .single-box:hover .part-icon {
	background: #2a9d8f
}

.process-2 .no-gutters .single-box:hover .part-icon .icon {
	color: #fff
}

.process-2 .no-gutters .single-box:hover .part-icon .no {
	background: #fff;
	color: #0d0925
}

.pricing {
	padding-top: 60px;
	padding-bottom: 120px
}

.pricing.pricing-inner {
	padding-bottom: 0
}

.pricing.pricing-inner-2 {
	padding-top: 120px
}

.pricing .controls {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 40px
}

.pricing .controls span {
	font-size: 16px;
	line-height: 100%;
	color: #4b4b46
}

.pricing .controls nav {
	padding: 0 30px
}

.pricing .controls nav .nav {
	width: 135px;
	height: 40px;
	background: #0d0925;
	padding: 0 6px;
	border: 0;
	border-radius: 20px;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.pricing .controls nav .nav .nav-item {
	width: 28px;
	height: 28px;
	background: 0 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	position: relative
}

.pricing .controls nav .nav .nav-item:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 123px;
	height: 100%;
	background: #2a9d8f;
	border-radius: 14px;
	-webkit-transition: all .3s ease-in;
	transition: all .3s ease-in;
	opacity: 0
}

.pricing .controls nav .nav .nav-item:last-child:after {
	left: auto;
	right: 0
}

.pricing .controls nav .nav .nav-item.active:after {
	width: 28px;
	opacity: 1
}

.pricing .tab-pane {
	-webkit-transition: .4s;
	transition: .4s
}

.pricing .tab-pane .single-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 30px;
	-webkit-box-shadow: 0 0 30px -5px rgba(51, 51, 51, .1);
	box-shadow: 0 0 30px -5px rgba(51, 51, 51, .1);
	border-radius: 10px;
	margin-bottom: 20px;
	position: relative;
	-webkit-transition: .4s;
	transition: .4s
}

.pricing .tab-pane .single-box .part-img {
	border-radius: 10px;
	margin-right: 45px;
	position: relative;
	overflow: hidden
}

.pricing .tab-pane .single-box .part-img .price {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(13, 9, 37, .85);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.pricing .tab-pane .single-box .part-img .price h3 {
	font-size: 45px;
	line-height: 45px;
	font-weight: 700;
	color: #fff;
	padding-left: 20px;
	margin-bottom: 0;
	position: relative
}

.pricing .tab-pane .single-box .part-img .price h3 span:first-child {
	position: absolute;
	top: 3px;
	left: 0;
	font-size: 20px;
	line-height: 20px
}

.pricing .tab-pane .single-box .part-img .price h3 span:last-child {
	font-size: 16px;
	line-height: 100%;
	font-weight: 400;
	margin-left: 12px
}

.pricing .tab-pane .single-box .part-txt h3 {
	font-size: 20px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -2px;
	margin-bottom: 10px;
	-webkit-transition: .4s;
	transition: .4s
}

.pricing .tab-pane .single-box .part-txt ul {
	padding: 0;
	margin-bottom: -10px;
	list-style: none
}

.pricing .tab-pane .single-box .part-txt ul li {
	font-size: 16px;
	line-height: 30px;
	color: #4b4b46
}

.pricing .tab-pane .single-box .part-txt ul li span {
	font-size: 12px;
	line-height: 100%;
	color: #0d0925;
	margin-right: 20px;
	-webkit-transition: .4s;
	transition: .4s
}

.pricing .tab-pane .single-box .part-btn {
	position: absolute;
	bottom: -20px;
	right: 30px
}

.pricing .tab-pane .single-box .part-btn .def-btn {
	height: 40px;
	line-height: 40px;
	padding: 0 25px
}

.pricing .tab-pane .single-box:hover {
	-webkit-box-shadow: 0 0 30px -5px rgba(51, 51, 51, .25);
	box-shadow: 0 0 30px -5px rgba(51, 51, 51, .25)
}

.pricing .tab-pane .single-box:hover .part-txt h3 {
	color: #2a9d8f
}

.pricing .tab-pane .single-box:hover .part-txt ul li span {
	color: #2a9d8f
}

.cta {
	position: relative;
	z-index: 2
}

.cta:after {
	content: "";
	position: absolute;
	top: 60px;
	left: 0;
	right: 0;
	bottom: 60px;
	background: #0d0925;
	z-index: -1
}

.cta .part-txt h2 {
	font-size: 35px;
	line-height: 45px;
	font-weight: 700;
	color: #fff;
	margin-top: -8px;
	margin-bottom: 32px
}

.cta .part-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #fff;
	margin-bottom: 42px
}

.cta .part-txt .def-btn {
	border: 1px solid #2a9d8f
}

.cta .part-img {
	margin-left: -100px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start
}

.cta .part-img img {
	max-width: inherit;
	width: auto
}

.cta-2 {
	padding-top: 235px;
	padding-bottom: 120px;
	background: url(../images/cta-bg.jpg) center center no-repeat;
	background-size: cover;
	position: relative;
	z-index: 2
}

.cta-2:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/cta-overlay.png) center left 30% no-repeat;
	background-size: cover;
	z-index: -1
}

.cta-2 .part-txt {
	text-align: center
}

.cta-2 .part-txt h2 {
	font-size: 35px;
	line-height: 100%;
	font-weight: 700;
	color: #fff;
	margin-top: -4px;
	margin-bottom: 22px
}

.cta-2 .part-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #fff;
	margin-bottom: 17px
}

.cta-2 .part-txt .def-btn {
	margin-top: 35px;
	border: 1px solid #2a9d8f
}

.testimonial {
	padding: 120px 0
}

.testimonial.testimonial-inner {
	padding-bottom: 0
}

.testimonial .bg {
	background: url(../images/testimonial-bg.png) center center no-repeat;
	background-size: cover;
	border-radius: 10px;
	padding: 60px;
	padding-right: 0
}

.testimonial .bg .part-txt {
	padding-right: 30px
}

.testimonial .bg .part-txt .controls {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.testimonial .bg .part-txt .controls button {
	text-align: center;
	width: 46px;
	height: 46px;
	line-height: 50px;
	background: #2a9d8f;
	border: 1px solid #2a9d8f;
	border-radius: 50%;
	color: #fff;
	padding: 0
}

.testimonial .bg .part-txt .controls button:first-child {
	margin-right: 20px
}

.testimonial .bg .part-txt .controls button:hover {
	background: 0 0
}

.testimonial .bg .comment-area .comment-slider .single-comment {
	text-align: center
}

.testimonial .bg .comment-area .comment-slider .single-comment p {
	font-size: 16px;
	line-height: 26px;
	color: #4b4b46;
	margin-top: -7px;
	margin-bottom: 10px
}

.testimonial .bg .comment-area .comment-slider .single-comment .client {
	padding-top: 136px
}

.testimonial .bg .comment-area .comment-slider .single-comment .client h3 {
	font-size: 25px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-bottom: 13px
}

.testimonial .bg .comment-area .comment-slider .single-comment .client h5 {
	font-size: 16px;
	line-height: 100%;
	font-weight: 400;
	color: #4b4b46;
	margin-bottom: -3px
}

.testimonial .bg .comment-area .client-slider {
	margin-top: -76px;
	-webkit-transform: translateY(-89px);
	transform: translateY(-89px);
	padding: 0 95px
}

.testimonial .bg .comment-area .client-slider .slick-track {
	height: 76px
}

.testimonial .bg .comment-area .client-slider .slick-track .single-box {
	width: 58px!important;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all .4s ease;
	transition: all .4s ease
}

.testimonial .bg .comment-area .client-slider .slick-track .single-box .img {
	border: 4px solid rgba(13, 9, 37, .15);
	border-radius: 50%;
	margin: 0 10px;
	overflow: hidden;
	-webkit-transition: all .4s ease;
	transition: all .4s ease
}

.testimonial .bg .comment-area .client-slider .slick-track .single-box.slick-active {
	width: 75px!important
}

.testimonial .bg .comment-area .client-slider .slick-track .single-box.slick-center {
	width: 96px!important
}

.blog {
	padding: 120px 0;
	background: #f6f6f6
}

.blog .blog-slider .owl-stage-outer {
	margin: -20px;
	margin-bottom: 0;
	padding: 20px
}

.blog .blog-slider .owl-stage-outer .owl-item.active .single-box {
	-webkit-box-shadow: 0 0 25px -5px rgba(51, 51, 51, .2);
	box-shadow: 0 0 25px -5px rgba(51, 51, 51, .2)
}

.blog .blog-slider .owl-stage-outer .owl-item .single-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	border-radius: 10px;
	padding: 30px;
	background: #fff;
	-webkit-box-shadow: 0 0 25px -5px transparent;
	box-shadow: 0 0 25px -5px transparent;
	-webkit-transition: .4s;
	transition: .4s
}

.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-img {
	width: 190px;
	border-radius: 10px;
	overflow: hidden
}

.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt {
	width: 290px;
	margin-bottom: -50px
}

.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt .title {
	font-size: 20px;
	line-height: 28px;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -6px;
	margin-bottom: 20px
}

.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #4b4b46;
	margin-bottom: 10px
}

.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt .blog-info {
	padding-top: 17px;
	margin-bottom: 31px
}

.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt .blog-info ul {
	padding: 0;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none
}

.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt .blog-info ul li {
	font-size: 14px;
	line-height: 100%;
	color: #4b4b46;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: 30px
}

.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt .blog-info ul li:first-child {
	margin-left: 0
}

.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt .blog-info ul li:first-child span {
	font-size: 13px
}

.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt .blog-info ul li span {
	font-size: 15px;
	margin-right: 8px
}

.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt .blog-info ul li a {
	color: #4b4b46;
	text-decoration: underline
}

.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt .blog-info ul li a:hover {
	color: #2a9d8f
}

.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt .part-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end
}

.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt .part-btn .def-btn {
	height: 40px;
	line-height: 40px;
	padding: 0 20px
}

.blog .blog-slider .owl-stage-outer .owl-item .single-box:hover .part-txt .title {
	color: #2a9d8f
}

.blog .blog-slider .owl-nav {
	position: absolute;
	top: 50%;
	left: -20px;
	right: -20px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	visibility: hidden
}

.blog .blog-slider .owl-nav button {
	text-align: center;
	padding: 0;
	width: 46px;
	height: 46px;
	line-height: 52px;
	background: rgba(13, 9, 37, .6);
	border-radius: 50%;
	color: #fff;
	visibility: visible
}

.blog .blog-slider .owl-nav button:hover {
	background: #0d0925
}

.blog-2 {
	padding-top: 120px
}

.blog-2.blog-inner .single-blog {
	margin-bottom: 30px
}

.blog-2 .single-blog {
	-webkit-box-shadow: 0 5px 20px 0 rgba(51, 51, 51, .07);
	box-shadow: 0 5px 20px 0 rgba(51, 51, 51, .07);
	border-radius: 10px;
	overflow: hidden;
	-webkit-transition: .4s;
	transition: .4s
}

.blog-2 .single-blog .part-img {
	position: relative
}

.blog-2 .single-blog .part-img .tags {
	position: absolute;
	top: 0;
	left: 0;
	background: #0d0925;
	border: 4px solid #fff;
	border-radius: 9px 0;
	padding: 0 15px;
	-webkit-transition: all .4s;
	transition: all .4s
}

.blog-2 .single-blog .part-img .tags span {
	height: 40px;
	line-height: 40px;
	font-size: 16px;
	font-weight: 700;
	color: #fff
}

.blog-2 .single-blog .part-txt {
	padding: 0 28px 30px
}

.blog-2 .single-blog .part-txt .blog-info ul {
	height: 40px;
	padding: 0 20px;
	margin-bottom: 30px;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
	-webkit-box-shadow: 0 5px 30px 0 rgba(51, 51, 51, .15);
	box-shadow: 0 5px 30px 0 rgba(51, 51, 51, .15);
	border-radius: 8px;
	margin-top: -10px;
	position: relative
}

.blog-2 .single-blog .part-txt .blog-info ul li {
	font-size: 12px;
	line-height: 100%;
	color: #4b4b46;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.blog-2 .single-blog .part-txt .blog-info ul li span {
	color: #0d0925;
	margin-right: 8px
}

.blog-2 .single-blog .part-txt h3 {
	font-size: 20px;
	line-height: 30px;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -7px;
	margin-bottom: 17px;
	-webkit-transition: .4s;
	transition: .4s
}

.blog-2 .single-blog .part-txt a {
	font-size: 18px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	padding-bottom: 4px;
	position: relative
}

.blog-2 .single-blog .part-txt a:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #4b4b46;
	border-radius: 1px;
	-webkit-transition: .4s;
	transition: .4s
}

.blog-2 .single-blog .part-txt a:hover,
.blog-2 .single-blog .part-txt a:focus {
	color: #2a9d8f
}

.blog-2 .single-blog .part-txt a:hover:after,
.blog-2 .single-blog .part-txt a:focus:after {
	background: #2a9d8f
}

.blog-2 .single-blog:hover {
	-webkit-box-shadow: 0 5px 30px 0 rgba(51, 51, 51, .15);
	box-shadow: 0 5px 30px 0 rgba(51, 51, 51, .15)
}

.blog-2 .single-blog:hover .part-img .tags {
	background: #2a9d8f
}

.call-back {
	padding-top: 120px
}

.call-back .bg {
	border: 5px solid #fff;
	border-radius: 10px;
	background: #0d0925;
	padding: 70px 75px;
	margin-top: -5px;
	margin-bottom: -115px;
	position: relative
}

.call-back .bg .part-txt h5 {
	font-size: 18px;
	line-height: 100%;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
	margin-top: -2px;
	margin-bottom: 24px
}

.call-back .bg .part-txt h2 {
	font-size: 30px;
	line-height: 100%;
	font-weight: 600;
	color: #fff;
	margin-bottom: -6px
}

.call-back .bg .form form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background: #fff;
	padding: 5px;
	border-radius: 10px
}

.call-back .bg .form form input {
	width: 310px;
	padding: 0 25px
}

.call-back .bg .form form button {
	height: 55px;
	line-height: 56px;
	background: #2a9d8f;
	border-radius: 8px;
	padding: 0 25px;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	color: #0d0925
}

.call-back .bg .form form button:hover {
	background: #0d0925;
	color: #fff
}

.footer {
	padding-top: 115px;
	background: url(../images/footer-bg.jpg) center center no-repeat;
	background-size: cover
}

.footer.footer-inner {
	padding: 0
}

.footer .main-footer {
	padding: 120px 0
}

.footer .main-footer h3 {
	font-size: 20px;
	line-height: 100%;
	font-weight: 700;
	color: #fff;
	padding-bottom: 8px;
	margin-top: -2px;
	margin-bottom: 40px;
	position: relative
}

.footer .main-footer h3:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 66px;
	border: 1px solid #fff;
	border-radius: 1px
}

.footer .main-footer .about-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #fff;
	margin-top: -7px;
	margin-bottom: 31px
}

.footer .main-footer .about-txt ul {
	padding: 0;
	margin-bottom: -14px;
	list-style: none
}

.footer .main-footer .about-txt ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 14px;
	line-height: 24px;
	color: #fff;
	margin-bottom: 11px
}

.footer .main-footer .about-txt ul li:last-child {
	margin-bottom: 0
}

.footer .main-footer .about-txt ul li span {
	font-size: 16px;
	line-height: 30px;
	margin-right: 10px;
	color: #2a9d8f
}

.footer .main-footer .link ul {
	padding: 0;
	margin-top: -9px;
	margin-bottom: -10px;
	list-style: none
}

.footer .main-footer .link ul li a {
	font-size: 16px;
	line-height: 30px;
	color: #fff
}

.footer .main-footer .link ul li a:hover {
	color: #2a9d8f
}

.footer .main-footer .newsletter p {
	font-size: 16px;
	line-height: 26px;
	color: #fff;
	margin-top: -7px;
	margin-bottom: 22px
}

.footer .main-footer .newsletter form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-radius: 5px;
	overflow: hidden;
	background: #fff;
	margin-bottom: 30px
}

.footer .main-footer .newsletter form input {
	width: 100%;
	padding: 0 20px;
	font-size: 14px
}

.footer .main-footer .newsletter form button {
	height: 55px;
	line-height: 63px;
	font-size: 28px;
	background: #2a9d8f;
	color: #fff;
	padding: 0 20px;
	border: 1px solid #2a9d8f;
	border-radius: 0 5px 5px 0
}

.footer .main-footer .newsletter form button:hover {
	background: #0d0925;
	color: #2a9d8f;
	border-color: #fff
}

.footer .main-footer .newsletter .social a {
	text-align: center;
	width: 25px;
	height: 25px;
	line-height: 28px;
	border: 1px solid #fff;
	border-radius: 50%;
	color: #fff;
	font-size: 11px;
	margin-right: 6px
}

.footer .main-footer .newsletter .social a:last-child {
	margin-right: 0
}

.footer .main-footer .newsletter .social a:hover {
	-webkit-box-shadow: 0 5px 5px 0 rgba(51, 51, 51, .3);
	box-shadow: 0 5px 5px 0 rgba(51, 51, 51, .3)
}

.footer .copyright {
	background: #201947
}

.footer .copyright p {
	font-size: 16px;
	line-height: 100%;
	color: #fff;
	padding: 29px 0 27px;
	margin-bottom: 0
}

.footer .copyright .link {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end
}

.footer .copyright .link a {
	font-size: 16px;
	line-height: 100%;
	color: #fff;
	padding: 0 15px;
	position: relative
}

.footer .copyright .link a:after {
	content: "";
	position: absolute;
	top: 0;
	right: -.5px;
	width: 1px;
	height: 100%;
	background: #fff
}

.footer .copyright .link a:first-child {
	padding-left: 0
}

.footer .copyright .link a:last-child {
	padding-right: 0
}

.footer .copyright .link a:last-child:after {
	display: none
}

.footer .copyright .link a:hover {
	color: #2a9d8f
}

.feature {
	padding-top: 120px;
	padding-bottom: 60px
}

.feature .single-box {
	-webkit-box-shadow: 0 0 20px -2px rgba(51, 51, 51, .15);
	box-shadow: 0 0 20px -2px rgba(51, 51, 51, .15);
	border-radius: 10px;
	padding: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 3px 0;
	-webkit-transition: .4s;
	transition: .4s;
	position: relative
}

.feature .single-box:before {
	content: "";
	position: absolute;
	top: -3px;
	left: 50px;
	right: 50px;
	height: 6px;
	background: #f3d79c;
	border-radius: 3px;
	-webkit-transition: .4s;
	transition: .4s
}

.feature .single-box:after {
	content: "";
	position: absolute;
	bottom: -3px;
	left: 50px;
	right: 50px;
	height: 6px;
	background: #f3d79c;
	border-radius: 3px;
	-webkit-transition: .4s;
	transition: .4s
}

.feature .single-box .part-icon {
	margin-bottom: 30px
}

.feature .single-box .part-icon span {
	display: block;
	font-size: 35px;
	line-height: 100%;
	color: #0d0925;
	-webkit-transition: .4s;
	transition: .4s;
	margin-top: -2px;
	margin-bottom: -8px
}

.feature .single-box .part-txt {
	text-align: center
}

.feature .single-box .part-txt h3 {
	font-size: 26px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -3px;
	margin-bottom: 18px;
	-webkit-transition: .4s;
	transition: .4s
}

.feature .single-box .part-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #4b4b46;
	margin-bottom: -8px
}

.feature .single-box:hover {
	background: #0d0925
}

.feature .single-box:hover:before,
.feature .single-box:hover:after {
	background: #2a9d8f
}

.feature .single-box:hover .part-icon span {
	color: #fff
}

.feature .single-box:hover .part-txt h3 {
	color: #fff
}

.feature .single-box:hover .part-txt p {
	color: #fff
}

.feature-2 {
	padding-top: 120px;
	padding-bottom: 60px
}

.feature-2 .part-txt .heading {
	margin-bottom: 43px
}

.feature-2 .part-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #4b4b46;
	margin-bottom: 15px
}

.feature-2 .part-txt .boxes {
	padding-top: 27px
}

.feature-2 .part-txt .boxes .single-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 40px
}

.feature-2 .part-txt .boxes .single-box:last-child {
	margin-bottom: 0
}

.feature-2 .part-txt .boxes .single-box .part-icon {
	width: 75px;
	height: 75px;
	-webkit-box-shadow: 0 0 20px 0 rgba(51, 51, 51, .2);
	box-shadow: 0 0 20px 0 rgba(51, 51, 51, .2);
	border: 5px solid #fff;
	border-radius: 50%;
	background: #0d0925;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-right: 25px;
	-webkit-transition: .4s;
	transition: .4s
}

.feature-2 .part-txt .boxes .single-box .txt {
	width: 470px
}

.feature-2 .part-txt .boxes .single-box .txt h3 {
	font-size: 20px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -2px;
	margin-bottom: 14px;
	-webkit-transition: .4s;
	transition: .4s
}

.feature-2 .part-txt .boxes .single-box .txt p {
	margin-bottom: -8px
}

.feature-2 .part-txt .boxes .single-box:hover .part-icon {
	background: #2a9d8f
}

.feature-2 .part-txt .boxes .single-box:hover .txt h3 {
	color: #2a9d8f
}

.faq {
	padding: 120px 0
}

.faq.faq-inner {
	padding-bottom: 0
}

.faq .part-txt #accordion .card {
	border: 0
}

.faq .part-txt #accordion .card:last-child {
	margin-bottom: -35px
}

.faq .part-txt #accordion .card .card-header {
	border: 0;
	background: 0 0;
	padding: 0;
	margin-bottom: 35px
}

.faq .part-txt #accordion .card .card-header h5 button {
	padding: 0 40px;
	height: 80px;
	width: 100%;
	border-radius: 40px;
	-webkit-box-shadow: 0 10px 25px -5px rgba(51, 51, 51, .15);
	box-shadow: 0 10px 25px -5px rgba(51, 51, 51, .15);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #0d0925;
	font-size: 20px;
	line-height: 100%;
	font-weight: 700;
	color: #fff
}

.faq .part-txt #accordion .card .card-header h5 button span {
	font-size: 16px;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	-webkit-transition: .4s;
	transition: .4s
}

.faq .part-txt #accordion .card .card-header h5 button.collapsed {
	background: 0 0;
	color: #4b4b46
}

.faq .part-txt #accordion .card .card-header h5 button.collapsed span {
	-webkit-transform: rotate(0);
	transform: rotate(0)
}

.faq .part-txt #accordion .card .card-body {
	padding: 0 40px 35px
}

.faq .part-txt #accordion .card .card-body p {
	font-size: 16px;
	line-height: 26px;
	color: #4b4b46;
	margin-top: -7px;
	margin-bottom: -8px
}

.project {
	padding: 120px 0;
	background: url(../images/project-bg.jpg) center center no-repeat;
	background-size: cover;
	position: relative;
	z-index: 2
}

.project:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/project-overlay.png) center right 30% no-repeat;
	background-size: cover;
	z-index: -1
}

.project .all-projects .project-slider .owl-stage-outer {
	border-radius: 10px;
	margin-right: -9999px
}

.project .all-projects .project-slider .owl-stage-outer .single-box {
	position: relative;
	overflow: hidden
}

.project .all-projects .project-slider .owl-stage-outer .single-box .part-txt {
	position: absolute;
	top: 0;
	-webkit-transform: rotateY(90deg);
	transform: rotateY(90deg);
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	background: rgba(13, 9, 37, .8);
	-webkit-transition: all .4s ease-in;
	transition: all .4s ease-in
}

.project .all-projects .project-slider .owl-stage-outer .single-box .part-txt a {
	font-size: 35px;
	line-height: 100%;
	color: #fff;
	margin-bottom: 82px
}

.project .all-projects .project-slider .owl-stage-outer .single-box .part-txt a:hover {
	color: #2a9d8f
}

.project .all-projects .project-slider .owl-stage-outer .single-box .part-txt .title {
	background: #0d0925;
	border-radius: 10px;
	padding: 25px 0;
	margin: 0 20px 20px
}

.project .all-projects .project-slider .owl-stage-outer .single-box .part-txt .title h3 {
	font-size: 18px;
	line-height: 100%;
	font-weight: 700;
	color: #fff;
	margin-top: -2px;
	margin-bottom: 16px
}

.project .all-projects .project-slider .owl-stage-outer .single-box .part-txt .title p {
	font-size: 14px;
	line-height: 100%;
	color: #e2e2e2;
	margin-bottom: -3px
}

.project .all-projects .project-slider .owl-stage-outer .single-box:hover .part-txt {
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg)
}

.project .all-projects .project-slider .owl-nav {
	position: absolute;
	top: 50%;
	left: -23px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse
}

.project .all-projects .project-slider .owl-nav button {
	text-align: center;
	width: 46px;
	height: 46px;
	line-height: 50px;
	background: #0d0925;
	border: 1px solid #fff;
	border-radius: 50%;
	color: #fff;
	font-size: 14px;
	opacity: .7
}

.project .all-projects .project-slider .owl-nav button.owl-next {
	margin-bottom: 10px
}

.project .all-projects .project-slider .owl-nav button:hover {
	opacity: 1
}

.team {
	padding: 120px 0
}

.team.team-inner {
	background: #0d0925
}

.team .single-box {
	position: relative;
	border-radius: 10px;
	overflow: hidden
}

.team .single-box .part-img img {
	z-index: -1
}

.team .single-box .part-txt {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	height: 68px;
	text-align: center;
	background: #0d0925;
	border-radius: 10px;
	-webkit-transition: all .4s ease-in;
	transition: all .4s ease-in;
	overflow: hidden;
	z-index: 2
}

.team .single-box .part-txt .txt {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-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;
	padding: 120px 10px 0;
	-webkit-transition: all .4s ease-in;
	transition: all .4s ease-in
}

.team .single-box .part-txt .txt .title {
	margin-bottom: 26px
}

.team .single-box .part-txt .txt .title a {
	display: block;
	font-size: 18px;
	line-height: 100%;
	font-weight: 700;
	color: #fff;
	margin-top: -2px;
	margin-bottom: 5px
}

.team .single-box .part-txt .txt .title a:hover {
	color: #2a9d8f
}

.team .single-box .part-txt .txt .title span {
	font-size: 14px;
	line-height: 100%;
	color: #fff
}

.team .single-box .part-txt .txt p {
	font-size: 16px;
	line-height: 26px;
	color: #fff;
	margin-bottom: 10px
}

.team .single-box .part-txt .txt .social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-top: 22px
}

.team .single-box .part-txt .txt .social a {
	text-align: center;
	width: 28px;
	height: 28px;
	line-height: 32px;
	font-size: 12px;
	background: #fff;
	border-radius: 50%;
	color: #2a9d8f;
	margin: 0 5px
}

.team .single-box .part-txt .txt .social a:hover {
	background: #2a9d8f;
	color: #0d0925
}

.team .single-box:hover .part-txt {
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: rgba(13, 9, 37, .85)
}

.team .single-box:hover .part-txt .txt {
	padding: 0 30px
}

.fun-fact .bg {
	border: 5px solid #fff;
	border-radius: 10px;
	background: #0d0925;
	padding: 60px 45px;
	margin-top: -5px;
	margin-bottom: -115px;
	position: relative;
	z-index: 3
}

.fun-fact .bg .single-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.fun-fact .bg .single-box .part-icon {
	margin-bottom: 12px
}

.fun-fact .bg .single-box .part-icon span {
	font-size: 25px;
	line-height: 100%;
	color: #2a9d8f
}

.fun-fact .bg .single-box .part-txt {
	text-align: center
}

.fun-fact .bg .single-box .part-txt h2 {
	font-size: 35px;
	line-height: 100%;
	font-weight: 700;
	color: #fff;
	margin-bottom: 8px
}

.fun-fact .bg .single-box .part-txt h2 .odometer-formatting-mark {
	display: none
}

.fun-fact .bg .single-box .part-txt p {
	font-size: 16px;
	line-height: 100%;
	color: #fff;
	margin-bottom: -3px
}

.breadcrumb {
	padding: 0;
	margin: 0;
	border-radius: 0;
	background: url(../images/default-breadcrumb.jpg) center center no-repeat;
	background-size: cover;
	position: relative;
	z-index: 2
}

.breadcrumb:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0d0925;
	opacity: .85;
	z-index: -1
}

.breadcrumb.about-breadcrumb {
	background: url(../images/about-breadcrumb.jpg) center center no-repeat;
	background-size: cover
}

.breadcrumb.service-breadcrumb {
	background: url(../images/service-breadcrumb.jpg) center center no-repeat;
	background-size: cover
}

.breadcrumb.team-breadcrumb {
	background: url(../images/team-breadcrumb.jpg) center center no-repeat;
	background-size: cover
}

.breadcrumb.error-breadcrumb {
	background: url(../images/error-breadcrumb.jpg) center center no-repeat;
	background-size: cover
}

.breadcrumb.faq-breadcrumb {
	background: url(../images/faq-breadcrumb.jpg) center center no-repeat;
	background-size: cover
}

.breadcrumb.portfolio-breadcrumb {
	background: url(../images/portfolio-breadcrumb.jpg) center center no-repeat;
	background-size: cover
}

.breadcrumb.blog-breadcrumb {
	background: url(../images/blog-breadcrumb.jpg) center center no-repeat;
	background-size: cover
}

.breadcrumb.contact-breadcrumb {
	background: url(../images/contact-breadcrumb.jpg) center center no-repeat;
	background-size: cover
}

.breadcrumb .part-txt {
	text-align: center;
	padding: 150px 0
}

.breadcrumb .part-txt h1 {
	font-size: 35px;
	line-height: 100%;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	margin-top: -4px;
	margin-bottom: 22px
}

.breadcrumb .part-txt ul {
	padding: 0;
	margin-bottom: -4px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.breadcrumb .part-txt ul li {
	list-style: none;
	font-size: 18px;
	line-height: 100%;
	color: #fff;
	margin-right: 10px;
	color: #fff
}

.breadcrumb .part-txt ul li:last-child {
	margin-right: 0
}

.choosing-reason {
	padding-top: 120px
}

.choosing-reason .part-txt .heading {
	margin-bottom: 43px
}

.choosing-reason .part-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #4b4b46;
	margin-bottom: 10px
}

.choosing-reason .part-txt .boxes {
	padding-top: 32px
}

.choosing-reason .part-txt .boxes .single-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.choosing-reason .part-txt .boxes .single-box:first-child {
	margin-bottom: 30px
}

.choosing-reason .part-txt .boxes .single-box .img {
	width: 105px;
	height: 105px;
	border: 5px solid #fff;
	border-radius: 50%;
	-webkit-box-shadow: 0 0 20px -5px rgba(51, 51, 51, .5);
	box-shadow: 0 0 20px -5px rgba(51, 51, 51, .5);
	margin-right: 20px;
	position: relative
}

.choosing-reason .part-txt .boxes .single-box .img img {
	border-radius: 50%
}

.choosing-reason .part-txt .boxes .single-box .img span {
	position: absolute;
	bottom: 0;
	right: -1px;
	width: 40px;
	height: 40px;
	line-height: 34px;
	background: #0d0925;
	border: 3px solid #fff;
	border-radius: 50%;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-align: center
}

.choosing-reason .part-txt .boxes .single-box .txt {
	width: 445px
}

.choosing-reason .part-txt .boxes .single-box .txt h3 {
	font-size: 20px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -2px;
	margin-bottom: 14px
}

.choosing-reason .part-txt .boxes .single-box .txt p {
	margin-bottom: -8px
}

.choosing-reason .part-img {
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	z-index: 2
}

.choosing-reason .part-img:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0d0925;
	opacity: .8;
	z-index: 1
}

.choosing-reason .part-img .video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	z-index: 2
}

.choosing-reason .part-img .video a {
	cursor: pointer;
	text-align: center;
	width: 100px;
	height: 100px;
	line-height: 115px;
	background: #2a9d8f;
	color: #fff;
	font-size: 40px;
	border-radius: 50%;
	position: relative
}

.choosing-reason .part-img .video a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid #2a9d8f;
	border-radius: 50%;
	-webkit-animation: pulse-1 1.5s linear infinite;
	animation: pulse-1 1.5s linear infinite
}

.choosing-reason .part-img .video a:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid #2a9d8f;
	border-radius: 50%;
	-webkit-animation: pulse-1 1.5s linear .5s infinite;
	animation: pulse-1 1.5s linear .5s infinite
}

.choosing-reason .part-img .video a i {
	margin-left: 8px
}

.choosing-reason .part-img .video a span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid #2a9d8f;
	border-radius: 50%;
	-webkit-animation: pulse-1 1.5s linear 1s infinite;
	animation: pulse-1 1.5s linear 1s infinite
}

.choosing-reason .part-img .video a:hover {
	background: #fff;
	color: #2a9d8f
}

@keyframes pulse-1 {
	0% {
		width: 100%;
		height: 100%;
		top: 0;
		left: 0
	}
	100% {
		width: 150%;
		height: 150%;
		top: -25%;
		left: -25%;
		opacity: 0
	}
}

.service-details {
	padding-top: 120px
}

.service-details .main-content .part-img {
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 60px
}

.service-details .main-content .part-txt h2 {
	font-size: 35px;
	line-height: 45px;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -9px;
	margin-bottom: 17px
}

.service-details .main-content .part-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #4b4b46;
	margin-bottom: 15px
}

.service-details .main-content .part-txt .boxes {
	padding-top: 37px;
	margin-bottom: 60px
}

.service-details .main-content .part-txt .boxes .single-box {
	border-left: 5px solid #0d0925;
	padding-left: 15px
}

.service-details .main-content .part-txt .boxes .single-box .txt {
	padding-top: 8px;
	padding-bottom: 2px
}

.service-details .main-content .part-txt .boxes .single-box .txt h3 {
	font-size: 20px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-bottom: 14px
}

.service-details .main-content .part-txt .boxes .single-box .txt p {
	font-style: italic;
	margin-bottom: 0
}

.service-details .main-content .part-txt ul {
	padding: 0;
	margin-top: -4px;
	margin-bottom: 49px;
	list-style: none
}

.service-details .main-content .part-txt ul li {
	font-size: 16px;
	line-height: 30px;
	color: #4b4b46
}

.service-details .main-content .part-txt ul li span {
	font-size: 14px;
	color: #2a9d8f;
	margin-right: 10px
}

.service-details .main-content .video {
	padding-top: 7px
}

.service-details .main-content .video .video-area {
	padding: 155px 0;
	text-align: center;
	background: url(../images/video-bg.jpg) center center no-repeat;
	background-size: cover;
	border-radius: 10px;
	margin-bottom: 23px;
	position: relative;
	overflow: hidden;
	z-index: 2
}

.service-details .main-content .video .video-area:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0d0925;
	opacity: .8;
	z-index: -1
}

.service-details .main-content .video .video-area a {
	cursor: pointer;
	text-align: center;
	width: 100px;
	height: 100px;
	line-height: 115px;
	background: #2a9d8f;
	color: #fff;
	font-size: 40px;
	border-radius: 50%;
	position: relative
}

.service-details .main-content .video .video-area a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid #2a9d8f;
	border-radius: 50%;
	-webkit-animation: pulse-1 1.5s linear infinite;
	animation: pulse-1 1.5s linear infinite
}

.service-details .main-content .video .video-area a:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid #2a9d8f;
	border-radius: 50%;
	-webkit-animation: pulse-1 1.5s linear .5s infinite;
	animation: pulse-1 1.5s linear .5s infinite
}

.service-details .main-content .video .video-area a i {
	margin-left: 8px
}

.service-details .main-content .video .video-area a span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid #2a9d8f;
	border-radius: 50%;
	-webkit-animation: pulse-1 1.5s linear 1s infinite;
	animation: pulse-1 1.5s linear 1s infinite
}

.service-details .main-content .video .video-area a:hover {
	background: #fff;
	color: #2a9d8f
}

.service-details .main-content .video p {
	font-size: 16px;
	line-height: 26px;
	color: #4b4b46;
	margin-bottom: -8px
}

.service-details .sidebar .side-nav {
	padding: 30px;
	-webkit-box-shadow: 0 0 20px rgba(51, 51, 51, .1);
	box-shadow: 0 0 20px rgba(51, 51, 51, .1);
	border-radius: 10px;
	margin-bottom: 50px
}

.service-details .sidebar .side-nav .nav .nav-link {
	height: 60px;
	line-height: 60px;
	padding: 0 30px;
	background: #f6f6f6;
	border-radius: 7px;
	margin-bottom: 20px;
	font-size: 18px;
	color: #0d0925;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.service-details .sidebar .side-nav .nav .nav-link span {
	font-size: 25px;
	margin-bottom: -8px;
	margin-right: 20px
}

.service-details .sidebar .side-nav .nav .nav-link.active {
	background: #0d0925;
	color: #fff
}

.service-details .sidebar .side-nav .nav .nav-link:last-child {
	margin-bottom: 0
}

.service-details .sidebar .subscription {
	background: url(../images/services-d-sidebar-bg-1.jpg) center center no-repeat;
	background-size: cover;
	border-radius: 10px;
	padding: 50px 30px;
	margin-bottom: 50px;
	position: relative;
	overflow: hidden;
	z-index: 2
}

.service-details .sidebar .subscription:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0d0925;
	opacity: .8;
	z-index: -1
}

.service-details .sidebar .subscription .part-txt {
	text-align: center
}

.service-details .sidebar .subscription .part-txt h3 {
	font-size: 25px;
	line-height: 100%;
	font-weight: 700;
	color: #fff;
	margin-top: -2px;
	margin-bottom: 18px
}

.service-details .sidebar .subscription .part-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #fff;
	margin-bottom: 22px
}

.service-details .sidebar .subscription .part-txt .part-form input {
	width: 100%;
	height: 50px;
	padding: 0 20px;
	background: #fff;
	border-radius: 7px;
	margin-bottom: 20px;
	color: #4b4b46
}

.service-details .sidebar .subscription .part-txt .part-form input::-webkit-input-placeholder {
	color: #4b4b46;
	opacity: .8
}

.service-details .sidebar .subscription .part-txt .part-form input::-moz-placeholder {
	color: #4b4b46;
	opacity: .8
}

.service-details .sidebar .subscription .part-txt .part-form input:-ms-input-placeholder {
	color: #4b4b46;
	opacity: .8
}

.service-details .sidebar .subscription .part-txt .part-form input::-ms-input-placeholder {
	color: #4b4b46;
	opacity: .8
}

.service-details .sidebar .subscription .part-txt .part-form input::placeholder {
	color: #4b4b46;
	opacity: .8
}

.service-details .sidebar .subscription .part-txt .part-form button {
	width: 100%;
	height: 50px;
	line-height: 50px;
	background: #fff;
	border-radius: 7px;
	color: #0d0925;
	font-size: 18px;
	font-weight: 700
}

.service-details .sidebar .online-help {
	background: url(../images/services-d-sidebar-bg-2.jpg) center center no-repeat;
	background-size: cover;
	border-radius: 10px;
	padding: 50px 30px;
	margin-bottom: 50px;
	position: relative;
	overflow: hidden;
	z-index: 2
}

.service-details .sidebar .online-help:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0d0925;
	opacity: .8;
	z-index: -1
}

.service-details .sidebar .online-help .part-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 37px
}

.service-details .sidebar .online-help .part-icon span {
	font-size: 55px;
	line-height: 100%;
	color: #fff
}

.service-details .sidebar .online-help .part-txt {
	text-align: center
}

.service-details .sidebar .online-help .part-txt a {
	font-size: 35px;
	line-height: 100%;
	font-weight: 700;
	color: #fff;
	margin-bottom: 22px
}

.service-details .sidebar .online-help .part-txt h3 {
	font-size: 20px;
	line-height: 100%;
	font-weight: 700;
	color: #fff;
	margin-bottom: -4px
}

.service-details .sidebar .download-area {
	padding: 30px;
	-webkit-box-shadow: 0 0 20px rgba(51, 51, 51, .1);
	box-shadow: 0 0 20px rgba(51, 51, 51, .1);
	border-radius: 10px
}

.service-details .sidebar .download-area a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #f6f6f6;
	border-radius: 7px;
	padding: 0 30px;
	height: 100px;
	margin-bottom: 30px
}

.service-details .sidebar .download-area a:last-child {
	margin-bottom: 0
}

.service-details .sidebar .download-area a .txt {
	font-size: 16px;
	font-weight: 600;
	line-height: 100%;
	color: #4b4b46;
	-webkit-transition: .4s;
	transition: .4s
}

.service-details .sidebar .download-area a .txt span {
	display: block;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 11px
}

.service-details .sidebar .download-area a .icon {
	font-size: 35px;
	line-height: 100%;
	margin-bottom: -5px;
	color: #0d0925;
	-webkit-transition: .4s;
	transition: .4s
}

.service-details .sidebar .download-area a:hover {
	background: #0d0925;
	border-color: #0d0925
}

.service-details .sidebar .download-area a:hover .txt {
	color: #fff
}

.service-details .sidebar .download-area a:hover .icon {
	color: #fff
}

.team-inner-2 {
	padding-top: 120px;
	padding-bottom: 70px;
}

.team-inner-2 .single-box {
	margin-bottom: 30px
}

.team-inner-2 .single-box .part-img {
	border: 5px solid #0d0925;
	border-radius: 15px;
	overflow: hidden
}

.team-inner-2 .single-box .part-txt {
	height: 90px;
	margin: -50px 40px 0;
	border-radius: 10px;
	position: relative;
	-webkit-transition: -webkit-transform .6s;
	transition: -webkit-transform .6s;
	transition: transform .6s;
	transition: transform .6s, -webkit-transform .6s;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d
}

.team-inner-2 .single-box .part-txt .title {
	background: #0d0925;
	border-radius: 10px;
	height: 90px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-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;
	text-align: center;
	-webkit-transform: translateZ(45px);
	transform: translateZ(45px)
}

.team-inner-2 .single-box .part-txt .title h3 {
	font-size: 25px;
	line-height: 100%;
	font-weight: 700;
	color: #fff;
	margin-top: -2px;
	margin-bottom: 8px
}

.team-inner-2 .single-box .part-txt .title p {
	font-size: 16px;
	line-height: 100%;
	color: #fff;
	margin-bottom: -3px
}

.team-inner-2 .single-box .part-txt .social {
	height: 90px;
	background: #2a9d8f;
	border-radius: 10px;
	-webkit-transform: rotateX(-90deg) translateZ(-45px);
	transform: rotateX(-90deg) translateZ(-45px)
}

.team-inner-2 .single-box .part-txt .social ul {
	height: 90px;
	padding: 0;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	list-style: none
}

.team-inner-2 .single-box .part-txt .social ul li a {
	text-align: center;
	width: 30px;
	height: 30px;
	line-height: 36px;
	background: #fff;
	border-radius: 50%;
	font-size: 14px;
	margin: 0 5px;
	color: #0d0925
}

.team-inner-2 .single-box .part-txt .social ul li a:hover {
	background: #0d0925;
	color: #fff
}

.team-inner-2 .single-box:hover .part-txt {
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg)
}

.team-details {
	padding-top: 120px
}

.team-details .profile {
	border: 5px solid #0d0925;
	border-radius: 15px;
	overflow: hidden
}

.team-details .profile .part-txt {
	padding: 30px 30px 0
}

.team-details .profile .part-txt .title {
	height: 90px;
	background: #0d0925;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-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;
	text-align: center;
	border-radius: 10px
}

.team-details .profile .part-txt .title h3 {
	font-size: 25px;
	line-height: 100%;
	font-weight: 700;
	color: #fff;
	margin-top: -2px;
	margin-bottom: 8px
}

.team-details .profile .part-txt .title p {
	font-size: 16px;
	line-height: 100%;
	color: #fff;
	margin-bottom: -3px
}

.team-details .profile .part-txt .social ul {
	height: 90px;
	padding: 0;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	list-style: none
}

.team-details .profile .part-txt .social ul li a {
	text-align: center;
	width: 30px;
	height: 30px;
	line-height: 36px;
	background: #0d0925;
	border-radius: 50%;
	font-size: 14px;
	margin: 0 5px;
	color: #fff
}

.team-details .profile .part-txt .social ul li a:hover {
	background: #2a9d8f;
	color: #0d0925
}

.team-details .biography {
	border-bottom: 1px solid rgba(75, 75, 70, .2)
}

.team-details .biography h2 {
	font-size: 35px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -4px;
	margin-bottom: 27px
}

.team-details .biography p {
	font-size: 16px;
	line-height: 26px;
	color: #4b4b46;
	margin-bottom: 23px
}

.team-details .biography ul {
	padding: 0;
	margin-bottom: 29px;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.team-details .biography ul li {
	width: 50%;
	font-size: 16px;
	line-height: 31px;
	color: #4b4b46
}

.team-details .biography ul li span {
	min-width: 90px;
	font-weight: 700
}

.team-details .biography ul li a {
	color: #4b4b46
}

.team-details .qualification {
	padding-top: 40px;
	border-bottom: 1px solid rgba(75, 75, 70, .2);
	padding-bottom: 10px
}

.team-details .qualification h3 {
	font-size: 25px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -2px;
	margin-bottom: 30px
}

.team-details .qualification .single-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 30px
}

.team-details .qualification .single-box .arrow {
	width: 38px;
	height: 122px
}

.team-details .qualification .single-box .arrow img {
	height: 100%
}

.team-details .qualification .single-box .txt {
	width: 332px;
	padding-left: 15px
}

.team-details .qualification .single-box .txt h4 {
	font-size: 20px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -2px;
	margin-bottom: 9px
}

.team-details .qualification .single-box .txt h5 {
	font-size: 16px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-bottom: 5px
}

.team-details .qualification .single-box .txt span {
	font-size: 13px;
	line-height: 100%;
	color: #4b4b46;
	margin-bottom: 10px
}

.team-details .qualification .single-box .txt p {
	font-size: 16px;
	line-height: 26px;
	color: #4b4b46;
	margin-bottom: -8px
}

.team-details .expertise {
	padding: 40px 0;
	border-bottom: 1px solid rgba(75, 75, 70, .2)
}

.team-details .expertise h2 {
	font-size: 25px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -2px;
	margin-bottom: 18px
}

.team-details .expertise p {
	font-size: 16px;
	line-height: 26px;
	color: #4b4b46;
	margin-bottom: 22px
}

.team-details .expertise .single-box {
	background: #0d0925;
	border-radius: 10px;
	text-align: center;
	padding: 40px 0;
	position: relative;
	z-index: 2
}

.team-details .expertise .single-box:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 10px;
	background: #2a9d8f;
	border-radius: 0 0 5px 5px;
	-webkit-transition: all .4s ease-in;
	transition: all .4s ease-in;
	z-index: -1
}

.team-details .expertise .single-box .part-icon span {
	font-size: 35px;
	line-height: 100%;
	color: #fff;
	margin-bottom: 22px;
	-webkit-transition: all .4s ease-in;
	transition: all .4s ease-in
}

.team-details .expertise .single-box h3 {
	font-size: 16px;
	line-height: 100%;
	font-weight: 600;
	color: #fff;
	margin-bottom: -3px
}

.team-details .expertise .single-box:hover:after {
	height: 100%;
	border-radius: 8px
}

.team-details .expertise .single-box:hover .part-icon span {
	color: #0d0925
}

.team-details .additional-txt {
	padding-top: 40px
}

.team-details .additional-txt h2 {
	font-size: 35px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -4px;
	margin-bottom: 27px
}

.team-details .additional-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #4b4b46;
	margin-bottom: 16px
}

.team-details .additional-txt ul {
	padding: 0;
	margin-bottom: -11px;
	list-style: none
}

.team-details .additional-txt ul li {
	font-size: 16px;
	line-height: 31px;
	color: #4b4b46
}

.team-details .additional-txt ul li span {
	font-size: 14px;
	color: #2a9d8f;
	margin-right: 10px
}

.testimonial-2 {
	padding: 120px 0
}

.testimonial-2 .testimonial-slider .owl-stage-outer {
	padding: 0 15px;
	margin: 0 -15px
}

.testimonial-2 .testimonial-slider .owl-stage-outer .single-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-img {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	border: 5px solid #fff;
	-webkit-box-shadow: 0 0 20px rgba(51, 51, 51, .3);
	box-shadow: 0 0 20px rgba(51, 51, 51, .3);
	position: relative
}

.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-img img {
	border-radius: 50%
}

.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-img:after {
	content: "";
	font-family: flaticon;
	position: absolute;
	bottom: -5px;
	right: -5px;
	width: 45px;
	height: 45px;
	color: #fff;
	font-size: 16px;
	line-height: 35px;
	background: #0d0925;
	border: 5px solid #fff;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: .4s;
	transition: .4s
}

.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt {
	width: 415px;
	background: #0d0925;
	border-radius: 10px;
	padding: 30px;
	position: relative;
	-webkit-transition: .4s;
	transition: .4s;
	z-index: 2
}

.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt:before {
	content: "";
	position: absolute;
	bottom: 45px;
	left: -25px;
	width: 45px;
	height: 100px;
	background: #0d0925;
	border-radius: 25px;
	-webkit-transition: .4s;
	transition: .4s;
	z-index: -1
}

.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt:after {
	content: "";
	position: absolute;
	bottom: 60px;
	left: -27px;
	width: 27px;
	height: 100px;
	background: #fff;
	border-radius: 15px;
	z-index: -1
}

.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #fff;
	margin-top: -7px;
	margin-bottom: 22px
}

.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt .title {
	padding-top: 30px;
	border-top: 1px solid #fff
}

.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt .title h3 {
	font-size: 25px;
	line-height: 100%;
	font-weight: 700;
	color: #fff;
	margin-top: -2px;
	margin-bottom: 8px
}

.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt .title span {
	display: block;
	font-size: 16px;
	line-height: 100%;
	color: #fff;
	margin-bottom: -3px
}

.testimonial-2 .testimonial-slider .owl-stage-outer .single-box:hover .part-img:after {
	background: #2a9d8f
}

.testimonial-2 .testimonial-slider .owl-stage-outer .single-box:hover .part-txt {
	background: #2a9d8f
}

.testimonial-2 .testimonial-slider .owl-stage-outer .single-box:hover .part-txt:before {
	background: #2a9d8f
}

.testimonial-2 .testimonial-slider .owl-dots {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-top: 60px
}

.testimonial-2 .testimonial-slider .owl-dots .owl-dot {
	width: 16px;
	height: 16px;
	background: #fff;
	border: 4px solid #0d0925;
	border-radius: 50%;
	margin: 0 3px
}

.testimonial-2 .testimonial-slider .owl-dots .owl-dot.active {
	background: #2a9d8f
}

.testimonial-3 {
	padding: 120px 0;
	background: url(../images/testimonial-bg-2.jpg) center center no-repeat;
	background-size: cover;
	position: relative;
	z-index: 2
}

.testimonial-3:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/testimonial-overlay.png) center left 30% no-repeat;
	background-size: cover;
	z-index: -1
}

.testimonial-3 .testimonial-slider-2 .single-box {
	border-radius: 10px;
	padding: 30px;
	margin-bottom: 10px;
	margin-right: 10px;
	position: relative;
	z-index: 2
}

.testimonial-3 .testimonial-slider-2 .single-box:before {
	content: "";
	position: absolute;
	bottom: -10px;
	right: -10px;
	border: 75px solid transparent;
	border-bottom-color: #362e65;
	border-right-color: #362e65;
	z-index: -1
}

.testimonial-3 .testimonial-slider-2 .single-box:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 10px;
	z-index: -1
}

.testimonial-3 .testimonial-slider-2 .single-box .top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 23px
}

.testimonial-3 .testimonial-slider-2 .single-box .top .profile {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.testimonial-3 .testimonial-slider-2 .single-box .top .profile .part-img {
	width: 65px;
	height: 65px;
	border-radius: 7px;
	overflow: hidden;
	margin-right: 15px
}

.testimonial-3 .testimonial-slider-2 .single-box .top .profile .txt h3 {
	font-size: 20px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -2px;
	margin-bottom: 4px
}

.testimonial-3 .testimonial-slider-2 .single-box .top .profile .txt p {
	font-size: 16px;
	line-height: 100%;
	color: #4b4b46;
	margin-bottom: 16px
}

.testimonial-3 .testimonial-slider-2 .single-box .top .profile .txt span {
	display: block;
	font-size: 10px;
	line-height: 100%;
	color: #0d0925;
	margin-bottom: -1px;
	-webkit-transition: .4s;
	transition: .4s
}

.testimonial-3 .testimonial-slider-2 .single-box .top .profile .txt span i {
	margin: 0 1px
}

.testimonial-3 .testimonial-slider-2 .single-box .top .quote span {
	font-size: 45px;
	line-height: 100%;
	color: #0d0925;
	margin-top: -3px;
	-webkit-transition: .4s;
	transition: .4s
}

.testimonial-3 .testimonial-slider-2 .single-box .part-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #4b4b46;
	margin-bottom: -8px
}

.testimonial-3 .testimonial-slider-2 .single-box:hover .top .profile .txt span {
	color: #2a9d8f
}

.testimonial-3 .testimonial-slider-2 .single-box:hover .top .quote span {
	color: #2a9d8f
}

.testimonial-3 .testimonial-slider-2 .owl-dots {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-top: 60px
}

.testimonial-3 .testimonial-slider-2 .owl-dots .owl-dot {
	width: 16px;
	height: 16px;
	background: #0d0925;
	border: 4px solid #fff;
	border-radius: 50%;
	margin: 0 3px
}

.testimonial-3 .testimonial-slider-2 .owl-dots .owl-dot.active {
	background: #2a9d8f
}

.pricing-2 {
	padding: 120px 0;
	background: url(../images/pricing-bg.jpg) center right 30% no-repeat;
	background-size: cover
}

.pricing-2 .single-box {
	background: #fff;
	border-radius: 10px;
	padding: 40px 30px
}

.pricing-2 .single-box .top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(75, 75, 70, .4)
}

.pricing-2 .single-box .top .part-icon {
	width: 85px;
	height: 85px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-shadow: 0 0 30px 0 rgba(51, 51, 51, .15);
	box-shadow: 0 0 30px 0 rgba(51, 51, 51, .15);
	border-radius: 7px;
	-webkit-transition: .4s;
	transition: .4s
}

.pricing-2 .single-box .top .price {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.pricing-2 .single-box .top .price p {
	font-size: 20px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -30px;
	margin-right: 10px;
	margin-bottom: 0
}

.pricing-2 .single-box .top .price h3 {
	font-size: 45px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -6px;
	margin-bottom: 0
}

.pricing-2 .single-box .top .price h3 span {
	font-size: 16px;
	line-height: 100%;
	font-weight: 400
}

.pricing-2 .single-box .bottom {
	padding-top: 30px;
	text-align: center
}

.pricing-2 .single-box .bottom h3 {
	font-size: 25px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -2px;
	margin-bottom: 16px;
	-webkit-transition: .4s;
	transition: .4s
}

.pricing-2 .single-box .bottom ul {
	padding: 0;
	margin-bottom: 19px;
	list-style: none
}

.pricing-2 .single-box .bottom ul li {
	font-size: 16px;
	line-height: 31px;
	color: #4b4b46
}

.pricing-2 .single-box .bottom .part-btn {
	height: 45px;
	line-height: 45px;
	padding: 0 25px;
	-webkit-box-shadow: 0 0 30px 0 rgba(51, 51, 51, .15);
	box-shadow: 0 0 30px 0 rgba(51, 51, 51, .15);
	border-radius: 7px;
	font-size: 18px;
	color: #4b4b46
}

.pricing-2 .single-box .bottom .part-btn:hover,
.pricing-2 .single-box .bottom .part-btn:focus {
	background: #2a9d8f;
	color: #fff
}

.pricing-2 .single-box:hover .top .part-icon {
	background: #2a9d8f
}

.pricing-2 .single-box:hover .bottom h3 {
	color: #2a9d8f
}

.pricing-3 {
	padding-top: 120px
}

.pricing-3 .boxes .single-box {
	-webkit-box-shadow: 0 0 30px -5px rgba(51, 51, 51, .12);
	box-shadow: 0 0 30px -5px rgba(51, 51, 51, .12);
	border-radius: 10px;
	padding: 40px;
	margin-bottom: 40px
}

.pricing-3 .boxes .single-box:last-child {
	margin-bottom: 0
}

.pricing-3 .boxes .single-box .part-img {
	border-radius: 10px;
	overflow: hidden
}

.pricing-3 .boxes .single-box .title h4 {
	font-size: 25px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -2px;
	margin-bottom: 36px;
	-webkit-transition: .4s;
	transition: .4s
}

.pricing-3 .boxes .single-box .title .price {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.pricing-3 .boxes .single-box .title .price p {
	font-size: 20px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -30px;
	margin-right: 10px;
	margin-bottom: 0
}

.pricing-3 .boxes .single-box .title .price h3 {
	font-size: 45px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -6px;
	margin-bottom: -8px
}

.pricing-3 .boxes .single-box .title .price h3 span {
	font-size: 16px;
	line-height: 100%;
	font-weight: 400
}

.pricing-3 .boxes .single-box ul {
	padding: 0;
	margin-top: -2px;
	margin-bottom: -3px;
	list-style: none
}

.pricing-3 .boxes .single-box ul li {
	font-size: 16px;
	line-height: 100%;
	color: #4b4b46;
	margin-bottom: 17px
}

.pricing-3 .boxes .single-box ul li:last-child {
	margin-bottom: 0
}

.pricing-3 .boxes .single-box .part-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end
}

.pricing-3 .boxes .single-box .part-btn a {
	height: 45px;
	line-height: 45px;
	padding: 0 35px;
	-webkit-box-shadow: 0 0 30px 0 rgba(51, 51, 51, .15);
	box-shadow: 0 0 30px 0 rgba(51, 51, 51, .15);
	border-radius: 7px;
	font-size: 18px;
	color: #4b4b46
}

.pricing-3 .boxes .single-box .part-btn a:hover,
.pricing-3 .boxes .single-box .part-btn a:focus {
	background: #2a9d8f;
	color: #fff
}

.pricing-3 .boxes .single-box:hover .title h4 {
	color: #2a9d8f
}

.faq-2 {
	padding-bottom: 0
}

.faq-2 .faq-inner-2 {
	padding-bottom: 120px
}

.portfolio {
	padding-top: 120px;
	margin-bottom: -30px
}

.portfolio .single-box {
	-webkit-box-shadow: 0 5px 30px -5px rgba(51, 51, 51, .15);
	box-shadow: 0 5px 30px -5px rgba(51, 51, 51, .15);
	border-radius: 10px;
	margin-bottom: 30px;
	overflow: hidden;
	position: relative
}

.portfolio .single-box .part-img {
	overflow: hidden;
	position: relative
}

.portfolio .single-box .part-img .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(13, 9, 37, .5);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: .4s;
	transition: .4s;
	opacity: 0
}

.portfolio .single-box .part-img .overlay a {
	text-align: center;
	width: 65px;
	height: 65px;
	line-height: 74px;
	background: #2a9d8f;
	color: #fff;
	font-size: 20px;
	border-radius: 50%;
	-webkit-transform: translateY(100%);
	transform: translateY(100%)
}

.portfolio .single-box .part-img .overlay a:hover,
.portfolio .single-box .part-img .overlay a:focus {
	background: #fff;
	color: #0d0925
}

.portfolio .single-box .part-txt {
	background: #2a9d8f;
	text-align: center;
	height: 88px;
	-webkit-transition: .4s;
	transition: .4s;
	position: relative;
	overflow: hidden;
	z-index: 2
}

.portfolio .single-box .part-txt:after {
	content: "";
	position: absolute;
	top: 0;
	left: -10%;
	bottom: 0;
	width: 60%;
	-webkit-transform: skew(-30deg);
	transform: skew(-30deg);
	background: #0d0925;
	z-index: -1
}

.portfolio .single-box .part-txt a {
	display: block;
	font-size: 20px;
	line-height: 89px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0
}

.portfolio .single-box .part-txt a span {
	font-size: 14px;
	font-weight: 400;
	margin-left: 10px
}

.portfolio .single-box:hover .part-img .overlay {
	opacity: 1
}

.portfolio .single-box:hover .part-img .overlay a {
	-webkit-transform: translateY(0);
	transform: translateY(0)
}

.portfolio-details {
	padding-top: 120px
}

.portfolio-details .main-img {
	padding-right: 20px;
	padding-bottom: 20px;
	position: relative;
	z-index: 2
}

.portfolio-details .main-img:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	border: 150px solid transparent;
	border-radius: 0 0 15px 0;
	border-right-color: #0d0925;
	border-bottom-color: #0d0925;
	z-index: -1
}

.portfolio-details .main-img img {
	border-radius: 10px
}

.portfolio-details .project-information h3 {
	font-size: 35px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -4px;
	margin-bottom: 24px
}

.portfolio-details .project-information ul {
	padding: 0;
	margin: 0;
	list-style: none
}

.portfolio-details .project-information ul li {
	font-size: 16px;
	line-height: 60px;
	color: #4b4b46;
	background: #f3f3f9;
	border: 1px solid rgba(75, 75, 70, .07);
	border-radius: 7px;
	padding: 0 35px;
	margin-bottom: 15px
}

.portfolio-details .project-information ul li:last-child {
	margin-bottom: 0
}

.portfolio-details .project-information ul li span {
	font-size: 18px;
	font-weight: 700;
	width: 40%
}

.portfolio-details .project-information ul li a {
	font-size: 15px;
	color: #0d0925;
	margin: 0 6px
}

.portfolio-details .project-information ul li a:hover,
.portfolio-details .project-information ul li a:focus {
	color: #2a9d8f
}

.portfolio-details .main-txt {
	padding: 60px 0
}

.portfolio-details .main-txt h2 {
	font-size: 35px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -4px;
	margin-bottom: 27px
}

.portfolio-details .main-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #4b4b46;
	margin-bottom: 32px
}

.portfolio-details .main-txt .part-img {
	margin-bottom: 33px
}

.portfolio-details .main-txt .part-img .single-img {
	border-radius: 10px;
	overflow: hidden
}

.portfolio-details .main-txt ul {
	padding: 0;
	margin-top: -1px;
	margin-bottom: -19px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	list-style: none;
	width: calc(100%/1.4)
}

.portfolio-details .main-txt ul li {
	width: 50%;
	font-style: italic;
	font-size: 15px;
	line-height: 100%;
	font-weight: 600;
	color: #4b4b46;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 15px
}

.portfolio-details .main-txt ul li span {
	font-size: 16px;
	color: #2a9d8f;
	margin-right: 10px
}

.portfolio-details .process-inner .heading-txt {
	padding-bottom: 37px
}

.portfolio-details .process-inner .heading-txt h2 {
	font-size: 35px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -4px;
	margin-bottom: 27px
}

.portfolio-details .process-inner .heading-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #4b4b46;
	margin-bottom: 15px
}

.blog-inner {
	padding-top: 120px
}

.blog-inner .main-content .pagination {
	padding-top: 40px
}

.blog-inner .main-content .pagination ul {
	padding: 0;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.blog-inner .main-content .pagination ul li {
	list-style: none;
	padding: 0 7.5px
}

.blog-inner .main-content .pagination ul li:first-child {
	padding-left: 0
}

.blog-inner .main-content .pagination ul li a {
	text-align: center;
	width: 57px;
	height: 57px;
	line-height: 57px;
	background: #0d0925;
	border-radius: 50%;
	font-size: 14px;
	color: #fff;
	position: relative;
	z-index: 2
}

.blog-inner .main-content .pagination ul li a:hover,
.blog-inner .main-content .pagination ul li a:focus {
	background: #2a9d8f;
	color: #0d0925
}

.blog-inner .blog-details .title {
	margin-bottom: 50px
}

.blog-inner .blog-details .title .tag {
	background: #2a9d8f;
	border: 4px solid #0d0925;
	border-radius: 9px 0;
	padding: 0 20px;
	height: 47px;
	line-height: 40px;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 30px
}

.blog-inner .blog-details .title h2 {
	font-size: 35px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -4px;
	margin-bottom: 24px
}

.blog-inner .blog-details .title ul {
	padding: 0;
	margin-bottom: -4px;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.blog-inner .blog-details .title ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 14px;
	line-height: 100%;
	color: #4b4b46;
	margin-right: 30px
}

.blog-inner .blog-details .title ul li:last-child {
	margin-right: 0
}

.blog-inner .blog-details .title ul li span {
	font-size: 12px;
	margin-right: 10px
}

.blog-inner .blog-details .main-img {
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 50px
}

.blog-inner .blog-details .main-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #4b4b46;
	margin-top: -7px;
	margin-bottom: 22px
}

.blog-inner .blog-details .main-txt .quoted {
	background: #ededec;
	padding: 30px;
	border-radius: 10px;
	margin-bottom: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.blog-inner .blog-details .main-txt .quoted .img {
	width: 127px;
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
	border-radius: 10px;
	overflow: hidden;
	margin-right: 30px
}

.blog-inner .blog-details .main-txt .quoted .txt {
	width: 553px;
	position: relative;
	z-index: 2
}

.blog-inner .blog-details .main-txt .quoted .txt:after {
	content: url(../images/quote-2.png);
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: -1
}

.blog-inner .blog-details .main-txt .quoted .txt span {
	font-size: 16px;
	line-height: 26px;
	color: #4b4b46;
	margin-top: -7px;
	margin-bottom: 20px
}

.blog-inner .blog-details .main-txt .quoted .txt h4 {
	font-size: 20px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-bottom: 9px
}

.blog-inner .blog-details .main-txt .quoted .txt h5 {
	font-size: 16px;
	line-height: 100%;
	font-weight: 400;
	color: #4b4b46;
	margin-bottom: -3px
}

.blog-inner .blog-details .reasons-for-choose {
	padding-top: 17px
}

.blog-inner .blog-details .reasons-for-choose h2 {
	font-size: 30px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-bottom: 29px
}

.blog-inner .blog-details .reasons-for-choose ul {
	padding: 0;
	margin-top: -1px;
	margin-bottom: 11px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	list-style: none
}

.blog-inner .blog-details .reasons-for-choose ul li {
	width: 50%;
	font-style: italic;
	font-size: 15px;
	line-height: 100%;
	font-weight: 600;
	color: #4b4b46;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 15px
}

.blog-inner .blog-details .reasons-for-choose ul li span {
	font-size: 16px;
	color: #2a9d8f;
	margin-right: 10px
}

.blog-inner .blog-details .reasons-for-choose p {
	font-size: 16px;
	line-height: 26px;
	color: #4b4b46;
	margin-top: -7px;
	margin-bottom: 22px
}

.blog-inner .blog-details .reasons-for-choose .part-img {
	margin-bottom: 30px
}

.blog-inner .blog-details .reasons-for-choose .part-img .single-img {
	border-radius: 10px;
	overflow: hidden
}

.blog-inner .blog-details .other-option {
	padding-top: 18px;
	padding-bottom: 50px;
	border-bottom: 1px solid rgba(75, 75, 70, .2);
	margin-bottom: 50px
}

.blog-inner .blog-details .other-option h3 {
	font-size: 20px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-bottom: 0;
	margin-right: 16px
}

.blog-inner .blog-details .other-option .tags {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 25px
}

.blog-inner .blog-details .other-option .tags a {
	font-size: 16px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin: 0 12.5px
}

.blog-inner .blog-details .other-option .tags a:hover,
.blog-inner .blog-details .other-option .tags a:focus {
	color: #2a9d8f
}

.blog-inner .blog-details .other-option .share {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.blog-inner .blog-details .other-option .share h3 {
	margin-right: 21.5px
}

.blog-inner .blog-details .other-option .share a {
	text-align: center;
	width: 25px;
	height: 25px;
	line-height: 29px;
	border-radius: 50%;
	font-size: 10px;
	color: #fff;
	margin: 0 7.5px
}

.blog-inner .blog-details .other-option .share a:hover,
.blog-inner .blog-details .other-option .share a:focus {
	background: #e2e2e2;
	color: #0d0925
}

.blog-inner .blog-details .admin-profile {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background: #ededec;
	padding: 30px;
	border-radius: 10px
}

.blog-inner .blog-details .admin-profile .part-img {
	width: 68px;
	height: 68px;
	border: 3px solid #2a9d8f;
	border-radius: 50%;
	margin-right: 30px;
	overflow: hidden
}

.blog-inner .blog-details .admin-profile .part-txt {
	width: 612px
}

.blog-inner .blog-details .admin-profile .part-txt h3 {
	font-size: 20px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -2px;
	margin-bottom: 11px
}

.blog-inner .blog-details .admin-profile .part-txt .admin-link {
	font-size: 16px;
	line-height: 100%;
	color: #4b4b46;
	margin-bottom: 20px
}

.blog-inner .blog-details .admin-profile .part-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #4b4b46;
	margin-bottom: 22px
}

.blog-inner .blog-details .admin-profile .part-txt .social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: -3px
}

.blog-inner .blog-details .admin-profile .part-txt .social a {
	font-size: 14px;
	line-height: 100%;
	color: #0d0925;
	margin: 0 7.5px
}

.blog-inner .blog-details .admin-profile .part-txt .social a:first-child {
	margin-left: 0
}

.blog-inner .blog-details .admin-profile .part-txt .social a:hover,
.blog-inner .blog-details .admin-profile .part-txt .social a:focus {
	color: #2a9d8f
}

.blog-inner .blog-details .blog-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 50px 0;
	border-bottom: 1px solid rgba(75, 75, 70, .2)
}

.blog-inner .blog-details .blog-nav .single-nav {
	width: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.blog-inner .blog-details .blog-nav .single-nav.next-blog .img {
	margin-right: 0;
	margin-left: 25px
}

.blog-inner .blog-details .blog-nav .single-nav.next-blog .txt {
	text-align: right
}

.blog-inner .blog-details .blog-nav .single-nav .img {
	width: 114px;
	height: 114px;
	border-radius: 10px;
	overflow: hidden;
	margin-right: 25px
}

.blog-inner .blog-details .blog-nav .single-nav .txt {
	width: 245px
}

.blog-inner .blog-details .blog-nav .single-nav .txt a {
	font-size: 16px;
	line-height: 26px;
	font-weight: 700;
	color: #4b4b46
}

.blog-inner .blog-details .blog-nav .single-nav .txt a span {
	display: block;
	font-weight: 400;
	margin-top: 15px
}

.blog-inner .blog-details .blog-nav .single-nav .txt a:focus {
	color: #2a9d8f
}

.blog-inner .blog-details .blog-nav .single-nav:hover .txt a {
	color: #2a9d8f
}

.blog-inner .blog-details .blog-comments h3 {
	font-size: 25px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -2px;
	margin-bottom: 30px
}

.blog-inner .blog-details .blog-comments .comments {
	padding: 50px 0
}

.blog-inner .blog-details .blog-comments .comments .single-comment {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 30px
}

.blog-inner .blog-details .blog-comments .comments .single-comment.replied {
	margin-left: 70px;
	margin-bottom: 0
}

.blog-inner .blog-details .blog-comments .comments .single-comment.replied .part-txt {
	width: 580px
}

.blog-inner .blog-details .blog-comments .comments .single-comment .part-img {
	width: 90px;
	height: 90px;
	border: 4px solid #2a9d8f;
	border-radius: 50%;
	margin-right: 30px;
	overflow: hidden
}

.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt {
	width: 650px
}

.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt .top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 14px
}

.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt .top h4 {
	font-size: 18px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -2px;
	margin-bottom: 0
}

.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt .top h4 span {
	font-size: 16px;
	font-weight: 400;
	margin-left: 20px
}

.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt .top a {
	font-size: 14px;
	line-height: 100%;
	color: #4b4b46;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt .top a span {
	margin-left: 10px
}

.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt .top a:hover,
.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt .top a:focus {
	color: #2a9d8f
}

.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #4b4b46;
	margin-bottom: -8px
}

.blog-inner .blog-details .blog-comments .post-comment form input {
	width: 100%;
	height: 60px;
	background: #ededec;
	border-radius: 5px;
	padding: 0 25px;
	margin-bottom: 30px;
	color: #4b4b46
}

.blog-inner .blog-details .blog-comments .post-comment form textarea {
	width: 100%;
	height: 190px;
	background: #ededec;
	border-radius: 5px;
	padding: 15px 25px;
	margin-bottom: 40px;
	color: #4b4b46
}

.blog-inner .blog-details .blog-comments .post-comment form .def-btn {
	height: 60px;
	line-height: 62px;
	border-radius: 5px
}

.blog-inner .sidebar .profile {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-shadow: 0 10px 30px -5px rgba(51, 51, 51, .12);
	box-shadow: 0 10px 30px -5px rgba(51, 51, 51, .12);
	border-radius: 10px;
	padding: 40px;
	margin-bottom: 40px
}

.blog-inner .sidebar .profile .part-img {
	width: 100px;
	height: 100px;
	border: 5px solid #fff;
	border-radius: 50%;
	overflow: hidden;
	-webkit-box-shadow: 0 5px 25px -5px rgba(51, 51, 51, .2);
	box-shadow: 0 5px 25px -5px rgba(51, 51, 51, .2);
	margin-bottom: 30px
}

.blog-inner .sidebar .profile .part-txt {
	text-align: center
}

.blog-inner .sidebar .profile .part-txt h3 {
	font-size: 25px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -2px;
	margin-bottom: 13px
}

.blog-inner .sidebar .profile .part-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #4b4b46;
	margin-bottom: 12px
}

.blog-inner .sidebar .profile .part-txt .social {
	padding-top: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.blog-inner .sidebar .profile .part-txt .social a {
	height: 25px;
	font-size: 14px;
	line-height: 29px;
	color: #0d0925;
	padding: 0 10px;
	position: relative
}

.blog-inner .sidebar .profile .part-txt .social a:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 1px;
	background: rgba(75, 75, 70, .3)
}

.blog-inner .sidebar .profile .part-txt .social a:last-child:after {
	display: none
}

.blog-inner .sidebar .profile .part-txt .social a:hover,
.blog-inner .sidebar .profile .part-txt .social a:focus {
	color: #2a9d8f
}

.blog-inner .sidebar .search-box {
	-webkit-box-shadow: 0 10px 30px -5px rgba(51, 51, 51, .12);
	box-shadow: 0 10px 30px -5px rgba(51, 51, 51, .12);
	border-radius: 10px;
	padding: 40px 30px;
	margin-bottom: 40px;
	text-align: center
}

.blog-inner .sidebar .search-box h3 {
	font-size: 25px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -2px;
	margin-bottom: 20px
}

.blog-inner .sidebar .search-box form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background: #0d0925;
	border-radius: 7px
}

.blog-inner .sidebar .search-box form input {
	width: 100%;
	height: 50px;
	padding: 0 20px;
	color: #fff;
	font-size: 14px
}

.blog-inner .sidebar .search-box form input::-webkit-input-placeholder {
	color: #fff;
	opacity: .7
}

.blog-inner .sidebar .search-box form input::-moz-placeholder {
	color: #fff;
	opacity: .7
}

.blog-inner .sidebar .search-box form input:-ms-input-placeholder {
	color: #fff;
	opacity: .7
}

.blog-inner .sidebar .search-box form input::-ms-input-placeholder {
	color: #fff;
	opacity: .7
}

.blog-inner .sidebar .search-box form input::placeholder {
	color: #fff;
	opacity: .7
}

.blog-inner .sidebar .search-box form button {
	background: #2a9d8f;
	border-left: 2px solid #2a9d8f;
	border-radius: 6px;
	padding: 0 15px;
	color: #fff;
	font-size: 25px;
	line-height: 58px;
	height: 50px
}

.blog-inner .sidebar .search-box form button:hover,
.blog-inner .sidebar .search-box form button:focus {
	background: 0 0
}

.blog-inner .sidebar .blog-category {
	-webkit-box-shadow: 0 10px 30px -5px rgba(51, 51, 51, .12);
	box-shadow: 0 10px 30px -5px rgba(51, 51, 51, .12);
	border-radius: 10px;
	padding: 40px 30px;
	margin-bottom: 40px
}

.blog-inner .sidebar .blog-category h3 {
	text-align: center;
	height: 50px;
	line-height: 50px;
	font-size: 25px;
	font-weight: 700;
	color: #fff;
	background: #0d0925;
	border-radius: 7px;
	margin-bottom: 10px
}

.blog-inner .sidebar .blog-category ul {
	padding: 0;
	margin: 0;
	list-style: none
}

.blog-inner .sidebar .blog-category ul li a {
	font-size: 16px;
	line-height: 100%;
	color: #4b4b46;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-bottom: 1px solid rgba(75, 75, 70, .2);
	padding-top: 13px;
	padding-bottom: 12px
}

.blog-inner .sidebar .blog-category ul li a:hover,
.blog-inner .sidebar .blog-category ul li a:focus {
	color: #2a9d8f
}

.blog-inner .sidebar .blog-category ul li:last-child a {
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: -3px
}

.blog-inner .sidebar .recent-blog {
	-webkit-box-shadow: 0 10px 30px -5px rgba(51, 51, 51, .12);
	box-shadow: 0 10px 30px -5px rgba(51, 51, 51, .12);
	border-radius: 10px;
	padding: 40px 30px;
	margin-bottom: 40px
}

.blog-inner .sidebar .recent-blog h3 {
	text-align: center;
	height: 50px;
	line-height: 50px;
	font-size: 25px;
	font-weight: 700;
	color: #fff;
	background: #0d0925;
	border-radius: 7px;
	margin-bottom: 10px
}

.blog-inner .sidebar .recent-blog ul {
	padding: 0;
	margin: 0;
	list-style: none
}

.blog-inner .sidebar .recent-blog ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 15px 0;
	border-bottom: 1px solid rgba(75, 75, 70, .2)
}

.blog-inner .sidebar .recent-blog ul li:last-child {
	border-bottom: 0;
	padding-bottom: 0
}

.blog-inner .sidebar .recent-blog ul li .img {
	width: 69px;
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
	border-radius: 7px;
	overflow: hidden;
	margin-right: 15px
}

.blog-inner .sidebar .recent-blog ul li .txt {
	width: 226px
}

.blog-inner .sidebar .recent-blog ul li .txt a {
	font-size: 16px;
	line-height: 22px;
	color: #333;
	margin-top: -5px;
	margin-bottom: 9px
}

.blog-inner .sidebar .recent-blog ul li .txt a:hover,
.blog-inner .sidebar .recent-blog ul li .txt a:focus {
	color: #2a9d8f
}

.blog-inner .sidebar .recent-blog ul li .txt .info {
	display: block;
	width: 50%;
	float: left;
	font-size: 12px;
	line-height: 100%;
	color: #4b4b46;
	margin-bottom: -3px
}

.blog-inner .sidebar .recent-blog ul li .txt .info .icon {
	font-size: 10px
}

.blog-inner .sidebar .tags {
	-webkit-box-shadow: 0 10px 30px -5px rgba(51, 51, 51, .12);
	box-shadow: 0 10px 30px -5px rgba(51, 51, 51, .12);
	border-radius: 10px;
	padding: 40px 30px
}

.blog-inner .sidebar .tags h3 {
	text-align: center;
	height: 50px;
	line-height: 50px;
	font-size: 25px;
	font-weight: 700;
	color: #fff;
	background: #0d0925;
	border-radius: 7px;
	margin-bottom: 20px
}

.blog-inner .sidebar .tags .all-tag {
	margin: -7.5px -5.5px
}

.blog-inner .sidebar .tags .all-tag a {
	background: #e8b03b;
	display: block;
	height: 40px;
	line-height: 40px;
	padding: 0 10px;
	border: 1px solid rgba(75, 75, 70, .3);
	border-radius: 5px;
	margin: 7.5px 5.5px;
	font-size: 16px;
	color: #fff
}

.blog-inner .sidebar .tags .all-tag a:hover,
.blog-inner .sidebar .tags .all-tag a:focus {
	border-color: #4b4b46
}

.contact {
	padding: 120px 0
}

.contact .boxes {
	padding-bottom: 120px
}

.contact .boxes .single-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 55px 40px;
	-webkit-box-shadow: 0 0 20px 0 rgba(51, 51, 51, .15);
	box-shadow: 0 0 20px 0 rgba(51, 51, 51, .15);
	border-radius: 10px
}

.contact .boxes .single-box .part-icon {
	text-align: center;
	width: 40px;
	height: 40px;
	line-height: 45px;
	background: #0d0925;
	border-radius: 50%;
	color: #fff;
	margin-right: 20px;
	font-size: 14px
}

.contact .boxes .single-box .part-txt {
	max-width: 230px;
	margin-bottom: -11px
}

.contact .boxes .single-box .part-txt h3 {
	font-size: 25px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -2px;
	margin-bottom: 16px
}

.contact .boxes .single-box .part-txt span {
	font-size: 16px;
	line-height: 31px;
	color: #4b4b46
}

.contact .form {
	padding: 60px 0;
	background: #0d0925;
	border-radius: 10px
}

.contact .form input {
	width: 100%;
	height: 55px;
	padding: 0 25px;
	border: 1px solid #362e65;
	border-radius: 5px;
	margin-bottom: 30px;
	background: #120d2e;
	color: #fff;
	font-size: 14px
}

.contact .form textarea {
	width: 100%;
	height: 190px;
	padding: 15px 25px;
	border: 1px solid #362e65;
	border-radius: 5px;
	margin-bottom: 40px;
	background: #120d2e;
	color: #fff;
	font-size: 14px
}

.contact .form .def-btn {
	border: 1px solid #2a9d8f;
	border-radius: 5px
}

.map iframe {
	width: 100%;
	margin-bottom: -8px
}

.error {
	padding-top: 120px
}

.error .boxes {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 80px
}

.error .boxes .single-box {
	width: 195px;
	height: 195px;
	line-height: 195px;
	text-align: center;
	background: #0d0925;
	border-radius: 10px;
	font-size: 200px;
	font-weight: 700;
	color: #fff;
	margin: 0 12.5px
}

.error .boxes .single-box:nth-child(2) {
	background: #2a9d8f
}

.error .part-txt {
	text-align: center
}

.error .part-txt h2 {
	font-size: 55px;
	line-height: 100%;
	font-weight: 700;
	color: #4b4b46;
	margin-top: -6px;
	margin-bottom: 40px
}

.error .part-txt h2 span {
	color: #2a9d8f
}

.error .part-txt p {
	font-size: 25px;
	line-height: 100%;
	color: #4b4b46;
	margin-bottom: 55px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
	.container {
		max-width: 990px
	}
	.heading {
		margin-bottom: 50px
	}
	.heading h5 {
		margin-bottom: 19px
	}
	.heading h2 {
		font-size: 30px;
		line-height: 40px
	}
	.header .bottom-header .bg:after {
		right: 95%
	}
	.header .bottom-header .bg .bg-2:before {
		left: 85.5%
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar {
		padding-left: 0
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav {
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item {
		padding: 40px 10px
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item:first-child {
		padding-left: 0
	}
	.header .bottom-header .bg .bg-2 .bg-3 .bottom-right {
		padding-left: 0
	}
	.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form {
		margin-left: -40px
	}
	.header-2 .top-header .bg .top-left ul li {
		padding: 19px 30px 15px
	}
	.header-2 .bottom-header .bg .navbar {
		padding-left: 0
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item {
		padding: 40px 10px
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item:first-child {
		padding-left: 0
	}
	.header-2 .bottom-header .bg .bottom-right {
		padding: 0 30px 0 0
	}
	.banner .banner-txt {
		padding: 150px 0
	}
	.banner .banner-txt h4 {
		margin-bottom: 26px
	}
	.banner .banner-txt h1 {
		font-size: 45px;
		line-height: 55px;
		margin-bottom: 20px
	}
	.banner-2 .banner-txt {
		padding: 150px 0
	}
	.banner-2 .banner-txt h4 {
		margin-bottom: 26px
	}
	.banner-2 .banner-txt h1 {
		font-size: 45px;
		line-height: 55px;
		margin-bottom: 20px
	}
	.banner-2 .part-img {
		margin-left: -30px
	}
	.partner .bg .brand-slider .owl-nav {
		left: -70px;
		right: -70px
	}
	.partner.partner-2 .bg .brand-slider .single-img {
		height: 170px
	}
	.about .image-box {
		padding: 0
	}
	.about .image-box .fun-fact-inner {
		padding: 30px 20px;
		margin: -70px 20px 0
	}
	.about .part-txt .boxes-2 {
		padding: 80px 20px 30px
	}
	.service .bg .nav {
		padding: 0 30px
	}
	.service .bg .nav .nav-link {
		height: 55px;
		line-height: 55px;
		padding: 0 20px;
		font-size: 18px
	}
	.service .bg .nav .nav-link span {
		font-size: 25px
	}
	.service .bg .part-txt {
		padding: 0 30px
	}
	.service .bg .part-txt h3 {
		margin-bottom: 14px
	}
	.service .bg .part-txt p {
		font-size: 15px;
		line-height: 25px;
		margin-bottom: 11px
	}
	.service .bg .part-txt .def-btn {
		margin-top: 6px
	}
	.process .single-box {
		padding: 30px 15px
	}
	.pricing .tab-pane .single-box {
		padding: 30px 20px
	}
	.pricing .tab-pane .single-box .part-img {
		width: 170px;
		margin-right: 25px
	}
	.testimonial .bg {
		background: url(../images/testimonial-bg.png) center left 5% no-repeat;
		background-size: cover;
		padding: 40px
	}
	.testimonial .bg .part-txt {
		padding-right: 0
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-img {
		width: 130px
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt {
		width: 255px
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt .title {
		font-size: 18px;
		line-height: 26px;
		margin-bottom: 11px
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt .blog-info {
		padding-top: 7px
	}
	.blog .blog-slider .owl-nav {
		left: -15px;
		right: -15px
	}
	.blog-2 .single-blog .part-txt {
		padding: 0 15px 30px
	}
	.call-back .bg {
		padding: 60px 40px
	}
	.call-back .bg .form form input {
		width: 240px
	}
	.feature .single-box .part-txt h3 {
		font-size: 22px;
		margin-top: -2px;
		margin-bottom: 19px
	}
	.faq .part-txt #accordion .card .card-header h5 button {
		font-size: 18px;
		padding: 0 30px
	}
	.project .all-projects .project-slider .owl-stage-outer .single-box .part-txt a {
		margin-bottom: 60px
	}
	.project .all-projects .project-slider .owl-nav {
		left: -15px
	}
	.team .single-box .part-txt {
		left: 5px;
		right: 5px
	}
	.team .single-box .part-txt .txt {
		padding-top: 132px
	}
	.team .single-box:hover .part-txt .txt {
		padding: 0 15px
	}
	.fun-fact .bg .single-box .part-txt h2 {
		font-size: 30px;
		margin-bottom: 9px
	}
	.breadcrumb .part-txt {
		padding: 100px 0
	}
	.process-2 .no-gutters .single-box .part-icon {
		width: 80px;
		height: 80px
	}
	.process-2 .no-gutters .single-box .part-icon .icon {
		font-size: 30px;
		line-height: 93px
	}
	.choosing-reason .part-txt .boxes .single-box .txt {
		width: 340px
	}
	.service-2 .part-txt .boxes .single-box .txt {
		width: 365px
	}
	.feature-2 .part-txt .boxes .single-box .txt {
		width: 365px
	}
	.service-details .main-content .part-txt h2 {
		font-size: 30px;
		line-height: 40px;
		margin-top: -8px
	}
	.service-details .main-content .part-txt .boxes .single-box {
		padding-left: 10px
	}
	.service-details .main-content .part-txt .boxes .single-box .txt h3 {
		margin-bottom: 15px
	}
	.service-details .main-content .part-txt .boxes .single-box .txt p {
		font-size: 15px;
		line-height: 25px
	}
	.service-details .main-content .video .video-area {
		padding: 100px 0
	}
	.service-details .sidebar .side-nav .nav .nav-link {
		height: 50px;
		line-height: 50px;
		font-size: 16px;
		padding: 0 25px
	}
	.service-details .sidebar .subscription .part-txt h3 {
		font-size: 20px;
		margin-bottom: 20px
	}
	.service-details .sidebar .subscription .part-txt p {
		font-size: 15px;
		line-height: 25px
	}
	.service-details .sidebar .online-help .part-icon {
		margin-bottom: 30px
	}
	.service-details .sidebar .online-help .part-icon span {
		font-size: 40px
	}
	.service-details .sidebar .online-help .part-txt a {
		font-size: 20px;
		margin-bottom: 24px
	}
	.service-details .sidebar .online-help .part-txt h3 {
		font-size: 16px;
		margin-bottom: -3px
	}
	.service-details .sidebar .download-area a {
		padding: 0 20px
	}
	.service-details .sidebar .download-area a .txt span {
		font-size: 18px
	}
	.service-details .sidebar .download-area a .icon {
		font-size: 25px
	}
	.team-inner-2 .single-box .part-txt {
		margin: -50px 25px 0
	}
	.team-inner-2 .single-box .part-txt .title h3 {
		font-size: 22px;
		margin-bottom: 9px
	}
	.team-details .expertise .single-box {
		margin: 0 -10px
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-img {
		width: 90px;
		height: 90px
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt {
		width: 335px
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt .title h3 {
		font-size: 20px;
		margin-bottom: 9px
	}
	.testimonial-3 .testimonial-slider-2 .single-box .top .profile {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
	.testimonial-3 .testimonial-slider-2 .single-box .top .profile .part-img {
		margin-right: 0;
		margin-bottom: 20px
	}
	.testimonial-3 .testimonial-slider-2 .single-box .top .quote span {
		font-size: 40px
	}
	.pricing-2 .single-box .top .price p {
		margin-top: -18px
	}
	.pricing-2 .single-box .top .price h3 {
		font-size: 40px
	}
	.pricing-3 .boxes .single-box {
		padding: 30px
	}
	.pricing-3 .boxes .single-box .title h4 {
		font-size: 20px
	}
	.pricing-3 .boxes .single-box .title .price p {
		margin-top: -13px
	}
	.pricing-3 .boxes .single-box .title .price h3 {
		font-size: 35px
	}
	.pricing-3 .boxes .single-box ul li {
		font-size: 14px
	}
	.error .boxes {
		margin-bottom: 60px
	}
	.error .boxes .single-box {
		width: 150px;
		height: 150px;
		line-height: 150px;
		font-size: 150px
	}
	.error .part-txt h2 {
		font-size: 35px;
		margin-top: -4px;
		margin-bottom: 32px
	}
	.error .part-txt p {
		font-size: 20px;
		margin-bottom: 36px
	}
	.blog-inner .sidebar .profile .part-txt h3 {
		font-size: 22px;
		margin-bottom: 14px
	}
	.blog-inner .sidebar .search-box {
		padding: 30px 25px
	}
	.blog-inner .sidebar .search-box h3 {
		font-size: 22px;
		margin-bottom: 21px
	}
	.blog-inner .sidebar .blog-category {
		padding: 30px 25px
	}
	.blog-inner .sidebar .blog-category h3 {
		font-size: 22px
	}
	.blog-inner .sidebar .recent-blog {
		padding: 30px 25px
	}
	.blog-inner .sidebar .recent-blog h3 {
		font-size: 22px
	}
	.blog-inner .sidebar .recent-blog ul li .img {
		width: 60px;
		border-radius: 5px;
		margin-right: 10px
	}
	.blog-inner .sidebar .recent-blog ul li .txt {
		width: 175px
	}
	.blog-inner .sidebar .tags {
		padding: 30px 25px
	}
	.blog-inner .sidebar .tags h3 {
		font-size: 22px
	}
	.blog-inner .single-blog .part-txt {
		padding: 0 10px 30px
	}
	.blog-inner .single-blog .part-txt h3 {
		font-size: 18px;
		line-height: 28px;
		margin-bottom: 16px
	}
	.blog-2 .single-blog .part-txt a {
		font-size: 16px
	}
	.blog-inner .main-content .pagination {
		padding-top: 20px
	}
	.blog-inner .main-content .pagination ul li a {
		width: 50px;
		height: 50px;
		line-height: 50px
	}
	.blog-inner .blog-details .title h2 {
		font-size: 25px;
		margin-top: -2px;
		margin-bottom: 25px
	}
	.blog-inner .blog-details .main-txt .quoted .img {
		width: 110px
	}
	.blog-inner .blog-details .main-txt .quoted .txt {
		width: 430px
	}
	.blog-inner .blog-details .reasons-for-choose {
		padding-top: 18px
	}
	.blog-inner .blog-details .reasons-for-choose h2 {
		font-size: 25px;
		margin-bottom: 30px
	}
	.blog-inner .blog-details .admin-profile .part-img {
		width: 65px;
		height: 65px
	}
	.blog-inner .blog-details .admin-profile .part-txt {
		width: 475px
	}
	.blog-inner .blog-details .blog-nav .single-nav .img {
		width: 100px;
		height: 100px
	}
	.blog-inner .blog-details .blog-nav .single-nav .txt {
		width: 190px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt {
		width: 510px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment.replied .part-txt {
		width: 440px
	}
	.contact .boxes .single-box {
		padding: 35px 30px
	}
	.contact .boxes .single-box .part-txt {
		width: 180px
	}
	.contact .boxes .single-box .part-txt h3 {
		font-size: 20px;
		margin-bottom: 12px
	}
	.contact .boxes .single-box .part-txt span {
		font-size: 14px;
		line-height: 30px
	}
	.map iframe {
		height: 400px
	}
}

@media only screen and (min-width:768px) and (max-width:991px) {
	.heading {
		margin-bottom: 40px
	}
	.heading h5 {
		font-size: 14px;
		margin-top: -1px;
		margin-bottom: 15px
	}
	.heading h2 {
		font-size: 25px;
		line-height: 35px;
		margin-bottom: -10px
	}
	.def-btn {
		height: 45px;
		line-height: 45px;
		font-size: 16px;
		padding: 0 25px
	}
	.header .top-header .top-left ul {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
	.header .top-header .top-left ul li {
		margin-right: 10px
	}
	.header .bottom-header .next {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4
	}
	.header .bottom-header .bottom-right a {
		display: none
	}
	.header .bottom-header:before {
		top: 0;
		left: -10%;
		width: 50%;
		height: 100%;
		-webkit-transform: skew(-35deg);
		transform: skew(-35deg);
		border-radius: 0 0 15px 0
	}
	.header .bottom-header:after {
		top: 0;
		left: auto;
		right: -10%;
		width: 50%;
		height: 100%;
		-webkit-transform: skew(35deg);
		transform: skew(35deg);
		border-radius: 0 0 0 15px
	}
	.header .bottom-header .bg:before,
	.header .bottom-header .bg:after,
	.header .bottom-header .bg .bg-2:before,
	.header .bottom-header .bg .bg-2:after,
	.header .bottom-header .bg .bg-2 .bg-3:before,
	.header .bottom-header .bg .bg-2 .bg-3:after {
		display: none
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar-toggler {
		padding: 0 5px;
		color: #2a9d8f;
		font-size: 20px;
		height: 60px;
		line-height: 68px
	}
	.header .bottom-header .bg .bg-2 .bg-3 .logo {
		padding-top: 0;
		width: 100%;
		height: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
	.header .bottom-header .bg .bg-2 .bg-3 .logo img {
		width: 250px
	}
	.header .bottom-header .bg .bg-2 .bg-3 .bottom-right {
		width: 100%;
		height: 100%;
		padding: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-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: end;
		-ms-flex-align: end;
		align-items: flex-end
	}
	.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form {
		margin: 0;
		padding: 0;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		position: relative
	}
	.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form input {
		position: absolute;
		top: 100%;
		right: 0;
		width: 290px;
		background: #fff;
		border: 0;
		-webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .15);
		box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .15);
		padding: 0 20px;
		font-size: 14px;
		color: #0d0925;
		height: 0
	}
	.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form.active input {
		height: 45px
	}
	.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form button {
		height: 60px;
		line-height: 68px;
		font-size: 20px;
		padding: 0 5px
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		background: #f6f6f6;
		-webkit-box-shadow: 0 10px 20px 0 rgba(51, 51, 51, .1);
		box-shadow: 0 10px 20px 0 rgba(51, 51, 51, .1);
		padding: 0
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav {
		padding: 15px 0;
		max-height: 350px;
		overflow: auto
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item {
		padding: 10px 15px
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item .nav-link {
		color: #0d0925;
		font-size: 14px;
		font-weight: 600;
		padding: 4px 0 2px
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item .nav-link:after {
		display: none
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
		display: none;
		margin-top: 5px;
		width: 290px;
		opacity: 1;
		visibility: visible
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show {
		display: block
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item,
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu .dropdown-item {
		font-size: 14px;
		padding: 14px 20px 12px
	}
	.header-2 {
		background: #fff
	}
	.header-2 .top-header {
		background: #2a9d8f;
		padding: 20px 0
	}
	.header-2 .top-header .bg .top-left {
		margin-bottom: 2px
	}
	.header-2 .top-header .bg .top-left ul li {
		padding: 0 15px;
		border: 0;
		margin-bottom: -6px
	}
	.header-2 .top-header .bg .top-left ul li:first-child {
		padding-left: 0
	}
	.header-2 .top-header .bg .top-right .language {
		padding-right: 15px
	}
	.header-2 .top-header .bg .top-right .language .select-lang .dropdown-toggle {
		font-size: 14px;
		font-weight: 600
	}
	.header-2 .top-header .bg .top-right .try-btn {
		padding: 0;
		padding-left: 15px
	}
	.header-2 .top-header .bg .top-right .try-btn a {
		height: 30px;
		line-height: 30px;
		font-size: 14px;
		padding: 0 15px
	}
	.header-2 .bottom-header .next {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4
	}
	.header-2 .bottom-header.fixed-header {
		background: #fff
	}
	.header-2 .bottom-header .bg .navbar-toggler {
		text-align: center;
		width: 40px;
		height: 40px;
		line-height: 45px;
		background: #0d0925;
		color: #fff;
		font-size: 18px;
		padding: 0
	}
	.header-2 .bottom-header .bg .logo {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
	.header-2 .bottom-header .bg .logo img {
		width: 40px
	}
	.header-2 .bottom-header .bg .bottom-right {
		padding: 10px 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end
	}
	.header-2 .bottom-header .bg .bottom-right form {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		position: relative;
		padding: 0
	}
	.header-2 .bottom-header .bg .bottom-right form input {
		position: absolute;
		top: 100%;
		right: 0;
		width: 290px;
		background: #fff;
		border: 0;
		-webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .15);
		box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .15);
		padding: 0 20px;
		font-size: 14px;
		color: #0d0925;
		height: 0
	}
	.header-2 .bottom-header .bg .bottom-right form input::-webkit-input-placeholder {
		color: #4b4b46
	}
	.header-2 .bottom-header .bg .bottom-right form input::-moz-placeholder {
		color: #4b4b46
	}
	.header-2 .bottom-header .bg .bottom-right form input:-ms-input-placeholder {
		color: #4b4b46
	}
	.header-2 .bottom-header .bg .bottom-right form input::-ms-input-placeholder {
		color: #4b4b46
	}
	.header-2 .bottom-header .bg .bottom-right form input::placeholder {
		color: #4b4b46
	}
	.header-2 .bottom-header .bg .bottom-right form.active input {
		height: 45px
	}
	.header-2 .bottom-header .bg .bottom-right form button {
		text-align: center;
		width: 40px;
		height: 40px;
		line-height: 45px;
		padding: 0;
		background: #0d0925;
		color: #fff;
		font-size: 18px;
		border-radius: 5px
	}
	.header-2 .bottom-header .bg .navbar {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		background: #f6f6f6;
		-webkit-box-shadow: 0 10px 20px 0 rgba(51, 51, 51, .1);
		box-shadow: 0 10px 20px 0 rgba(51, 51, 51, .1);
		padding: 0
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav {
		padding: 15px 0;
		max-height: 350px;
		overflow: auto
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item {
		padding: 10px 15px
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item .nav-link {
		color: #0d0925;
		font-size: 14px;
		font-weight: 600;
		padding: 4px 0 2px
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item .nav-link:after {
		display: none
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
		display: none;
		margin-top: 5px;
		width: 290px;
		opacity: 1;
		visibility: visible
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show {
		display: block
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item,
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu .dropdown-item {
		font-size: 14px;
		padding: 14px 20px 12px
	}
	.banner:after {
		background: url(../images/banner-img.png) center left 40% no-repeat;
		background-size: cover
	}
	.banner .banner-txt {
		padding: 70px 0
	}
	.banner .banner-txt h4 {
		font-size: 16px;
		margin-bottom: 20px
	}
	.banner .banner-txt h1 {
		font-size: 25px;
		line-height: 35px;
		margin-bottom: 14px
	}
	.banner .banner-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 12px
	}
	.banner .banner-txt .btn-box {
		padding-top: 10px
	}
	.banner .banner-txt .btn-box a {
		height: 45px;
		line-height: 45px;
		font-size: 16px;
		padding: 0 25px
	}
	.banner-2 {
		background: url(../images/banner-bg.jpg) center right 50% no-repeat;
		background-size: cover
	}
	.banner-2 .banner-txt {
		padding: 70px 0
	}
	.banner-2 .banner-txt h4 {
		font-size: 16px;
		margin-bottom: 20px;
		letter-spacing: 1px
	}
	.banner-2 .banner-txt h1 {
		font-size: 25px;
		line-height: 35px;
		margin-bottom: 14px
	}
	.banner-2 .banner-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 12px
	}
	.banner-2 .banner-txt .btn-box {
		padding-top: 10px
	}
	.banner-2 .banner-txt .btn-box a {
		height: 45px;
		line-height: 45px;
		font-size: 16px;
		padding: 0 25px
	}
	.banner-2 .banner-txt .btn-box a.left-btn {
		margin-right: 10px
	}
	.banner-2 .part-img {
		margin-left: 0;
		margin-right: -55px
	}
	.banner-2 .part-img img {
		max-width: 100%
	}
	.feature {
		padding-top: 60px;
		padding-bottom: 0
	}
	.feature .single-box {
		margin: 3px auto 33px
	}
	.feature .single-box .part-txt h3 {
		font-size: 20px;
		margin-top: -1px;
		margin-bottom: 20px
	}
	.feature .single-box .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.partner {
		padding-top: 60px;
		padding-bottom: 30px
	}
	.partner .bg {
		padding: 30px
	}
	.partner .bg .brand-slider .single-img {
		height: 70px
	}
	.partner .bg .brand-slider .owl-nav {
		left: -45px;
		right: -45px
	}
	.partner .bg .brand-slider .owl-nav button {
		width: 45px;
		height: 45px;
		line-height: 45px;
		font-size: 20px;
		border-width: 2px
	}
	.partner.partner-2 {
		padding: 60px 0
	}
	.partner.partner-2:after {
		background: url(../images/partner-overlay.png) center center no-repeat;
		background-size: cover
	}
	.partner.partner-2 .heading h2 {
		margin-bottom: 24px
	}
	.partner.partner-2 .heading p {
		font-size: 14px;
		line-height: 24px
	}
	.partner.partner-2 .bg .brand-slider .single-img {
		height: 125px;
		padding: 15px 0
	}
	.about {
		padding-top: 30px;
		padding-bottom: 60px
	}
	.about .image-box {
		padding-right: 0;
		margin-bottom: 30px
	}
	.about .image-box .fun-fact-inner {
		padding: 30px;
		margin: -70px 50px 0
	}
	.about .image-box .fun-fact-inner .single-box {
		padding: 0 5px
	}
	.about .image-box .fun-fact-inner .single-box h4 {
		font-size: 20px;
		margin-top: -2px;
		margin-bottom: 5px
	}
	.about .image-box .fun-fact-inner .single-box p {
		font-size: 13px;
		line-height: 20px;
		margin-bottom: -6px
	}
	.about .image-box .fun-fact-inner .single-box p span {
		font-size: 10px;
		margin-bottom: -2px
	}
	.about .part-txt .heading {
		margin-bottom: 34px
	}
	.about .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.about .part-txt .boxes {
		margin-top: 31px;
		margin-bottom: 1px
	}
	.about .part-txt .boxes .single-box {
		margin-bottom: 31px
	}
	.about .part-txt .boxes .single-box .txt h3 {
		font-size: 18px;
		margin-bottom: 11px
	}
	.about .part-txt .boxes-2 {
		padding: 40px 25px 25px
	}
	.about .part-txt .boxes-2 .single-box .txt h3 {
		font-size: 16px;
		margin-bottom: 5px
	}
	.about .part-txt .boxes-2 .single-box .txt span {
		font-size: 14px
	}
	.about.about-2 .part-img {
		margin-bottom: 30px
	}
	.about.about-2 .part-img img {
		max-width: 100%
	}
	.about.about-2 .part-txt .def-btn {
		margin-top: 7px
	}
	.service {
		padding: 60px 0
	}
	.service .bg {
		margin: auto
	}
	.service .bg .nav {
		padding: 30px 20px;
		-webkit-box-orient: horizontal!important;
		-webkit-box-direction: normal!important;
		-ms-flex-direction: row!important;
		flex-direction: row!important;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between
	}
	.service .bg .nav .nav-link {
		width: calc(100%/2 - 10px);
		height: 40px;
		line-height: 40px;
		padding: 0 20px;
		font-size: 16px;
		border-radius: 5px;
		margin-bottom: 10px
	}
	.service .bg .nav .nav-link span {
		font-size: 20px
	}
	.service .bg .tab-content {
		border-top: 1px solid #362e65
	}
	.service .bg .part-img {
		border-left: 0
	}
	.service .bg .part-txt {
		padding: 30px
	}
	.service .bg .part-txt h3 {
		font-size: 20px;
		margin-top: -2px;
		margin-bottom: 20px
	}
	.service .bg .part-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 11px
	}
	.service .bg .part-txt .def-btn {
		margin-top: 11px
	}
	.process {
		padding-top: 60px;
		padding-bottom: 0
	}
	.process .single-box {
		margin-bottom: 30px
	}
	.process .single-box .part-txt h3 {
		font-size: 20px;
		margin-top: -2px;
		margin-bottom: 15px
	}
	.process .single-box .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.pricing {
		padding: 30px 0
	}
	.pricing .controls {
		margin-bottom: 30px
	}
	.pricing .controls nav {
		padding: 0 20px
	}
	.pricing .controls nav .nav {
		width: 100px
	}
	.pricing .controls span {
		font-size: 14px
	}
	.pricing .controls nav .nav .nav-item {
		width: 27px;
		height: 27px
	}
	.pricing .tab-pane .single-box {
		padding: 25px 20px;
		margin: 0 auto 50px
	}
	.pricing .tab-pane .single-box .part-img {
		margin-right: 30px
	}
	.pricing .tab-pane .single-box .part-txt h3 {
		font-size: 18px
	}
	.pricing .tab-pane .single-box .part-txt ul {
		margin-bottom: 7px
	}
	.pricing .tab-pane .single-box .part-txt ul li {
		font-size: 14px;
		line-height: 25px
	}
	.pricing .tab-pane .single-box .part-txt ul li span {
		font-size: 10px;
		margin-right: 10px
	}
	.pricing .tab-pane .single-box .part-btn {
		right: 25px
	}
	.cta:after {
		top: 40px;
		bottom: 40px
	}
	.cta .part-txt h2 {
		font-size: 20px;
		line-height: 30px;
		margin-top: -7px;
		margin-bottom: 15px
	}
	.cta .part-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 22px
	}
	.cta .part-img {
		margin-right: -240px
	}
	.cta .part-img img {
		max-width: 100%
	}
	.cta-2 {
		padding-top: 175px;
		padding-bottom: 60px
	}
	.cta-2 .part-txt h2 {
		font-size: 25px;
		line-height: 35px;
		margin-top: -7px;
		margin-bottom: 14px
	}
	.cta-2 .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.cta-2 .part-txt .def-btn {
		margin-top: 5px
	}
	.testimonial {
		padding: 60px 0
	}
	.testimonial .bg {
		padding: 40px;
		padding-right: 0;
		background: url(../images/testimonial-bg.png) center left 30% no-repeat;
		background-size: cover
	}
	.testimonial .bg .comment-area .comment-slider .single-comment p {
		font-size: 14px;
		line-height: 24px
	}
	.testimonial .bg .comment-area .comment-slider .single-comment .client {
		padding-top: 105px
	}
	.testimonial .bg .comment-area .comment-slider .single-comment .client h3 {
		font-size: 20px
	}
	.testimonial .bg .comment-area .comment-slider .single-comment .client h5 {
		font-size: 14px
	}
	.testimonial .bg .comment-area .client-slider {
		padding: 0 80px;
		margin-top: -48px
	}
	.testimonial .bg .comment-area .client-slider .slick-track {
		height: 65px
	}
	.testimonial .bg .comment-area .client-slider .slick-track .single-box {
		width: 55px!important
	}
	.testimonial .bg .comment-area .client-slider .slick-track .single-box.slick-active {
		width: 65px!important
	}
	.testimonial .bg .comment-area .client-slider .slick-track .single-box.slick-center {
		width: 75px!important
	}
	.testimonial .bg .comment-area .client-slider .slick-track .single-box .img {
		margin: 0 5px
	}
	.testimonial .bg .part-txt {
		padding: 0
	}
	.testimonial .bg .part-txt .heading {
		margin-bottom: 30px
	}
	.testimonial .bg .part-txt .controls button {
		width: 40px;
		height: 40px;
		line-height: 44px;
		font-size: 14px
	}
	.testimonial .bg .part-txt .controls button:first-child {
		margin-right: 15px
	}
	.blog {
		padding: 60px 0
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box {
		padding: 30px
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-img {
		width: 150px
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt {
		width: 270px
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt .title {
		font-size: 18px;
		line-height: 26px;
		margin-bottom: 12px
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt .blog-info {
		padding-top: 7px;
		margin-bottom: 26px
	}
	.blog .blog-slider .owl-nav {
		display: none
	}
	.blog-2 {
		padding-top: 60px;
		margin-bottom: -30px
	}
	.blog-2 .single-blog {
		margin-bottom: 30px
	}
	.blog-2 .single-blog .part-txt {
		padding: 0 25px 25px
	}
	.blog-2 .single-blog .part-txt .blog-info ul {
		padding: 0 10px;
		margin-bottom: 25px
	}
	.blog-2 .single-blog .part-txt h3 {
		font-size: 18px;
		line-height: 28px;
		margin-bottom: 10px
	}
	.blog-2 .single-blog .part-txt a {
		font-size: 14px
	}
	.call-back {
		padding-top: 60px
	}
	.call-back .bg {
		padding: 60px 20px
	}
	.call-back .bg .part-txt h5 {
		font-size: 16px;
		font-weight: 400;
		margin-bottom: 21px
	}
	.call-back .bg .part-txt h2 {
		font-size: 22px;
		line-height: 30px;
		margin-bottom: -8px
	}
	.call-back .bg .form form {
		border-radius: 5px
	}
	.call-back .bg .form form input {
		width: 160px;
		height: 45px;
		font-size: 14px;
		padding: 0 5px
	}
	.call-back .bg .form form button {
		height: 45px;
		line-height: 46px;
		font-size: 14px;
		border-radius: 5px;
		padding: 0 15px
	}
	.footer .main-footer {
		padding-top: 60px;
		padding-bottom: 30px
	}
	.footer .main-footer h3 {
		font-size: 18px;
		padding-bottom: 9px;
		margin-bottom: 20px
	}
	.footer .main-footer .about-txt {
		margin-bottom: 35px
	}
	.footer .main-footer .about-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px;
		margin-bottom: 11px
	}
	.footer .main-footer .link {
		margin-bottom: 35px
	}
	.footer .main-footer .link ul {
		margin-bottom: -8px
	}
	.footer .main-footer .link ul li a {
		font-size: 14px;
		line-height: 25px
	}
	.footer .main-footer .newsletter {
		margin-bottom: 30px
	}
	.footer .main-footer .newsletter p {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px;
		margin-bottom: 17px
	}
	.footer .main-footer .newsletter form {
		margin-bottom: 25px
	}
	.footer .main-footer .newsletter form button {
		height: 45px;
		line-height: 53px;
		font-size: 20px
	}
	.footer .copyright {
		padding-bottom: 25px
	}
	.footer .copyright p {
		text-align: center;
		font-size: 14px;
		padding: 24px 0 17px
	}
	.footer .copyright .link {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
	.footer .copyright .link a {
		font-size: 12px
	}
	.faq {
		padding-top: 60px;
		padding-bottom: 25px
	}
	.faq .part-txt #accordion .card:last-child {
		margin-bottom: 0
	}
	.faq .part-txt #accordion .card .card-header h5 button {
		height: 60px;
		font-size: 18px;
		line-height: 100%;
		text-align: left
	}
	.faq .part-txt #accordion .card .card-header h5 button span {
		font-size: 14px
	}
	.faq .part-txt #accordion .card .card-body {
		padding: 0 20px 35px
	}
	.faq .part-txt #accordion .card .card-body p {
		font-size: 14px;
		line-height: 24px
	}
	.project {
		padding: 60px 0
	}
	.project:after {
		background: url(../images/project-overlay.png) center center no-repeat;
		background-size: cover
	}
	.project .all-projects .project-slider .owl-stage-outer .single-box .part-txt .title {
		margin: 0 10px 20px
	}
	.project .all-projects .project-slider .owl-stage-outer .single-box .part-txt a {
		font-size: 25px;
		margin-bottom: 55px
	}
	.project .all-projects .project-slider .owl-stage-outer .single-box .part-txt .title h3 {
		font-size: 16px
	}
	.team {
		padding-top: 60px;
		padding-bottom: 30px
	}
	.team .single-box {
		margin-bottom: 30px
	}
	.team .single-box .part-txt .txt {
		padding-top: 119px
	}
	.fun-fact .bg {
		padding: 60px 25px 30px
	}
	.fun-fact .bg .single-box {
		margin-bottom: 30px
	}
	.fun-fact .bg .single-box .part-icon {
		margin-bottom: 9px
	}
	.fun-fact .bg .single-box .part-txt h2 {
		font-size: 25px;
		margin-bottom: 11px
	}
	.fun-fact .bg .single-box .part-txt p {
		font-size: 14px
	}
	.breadcrumb .part-txt {
		padding: 60px 0
	}
	.breadcrumb .part-txt h1 {
		font-size: 25px;
		margin-top: -2px;
		margin-bottom: 18px
	}
	.breadcrumb .part-txt ul {
		margin-bottom: -3px
	}
	.breadcrumb .part-txt ul li {
		font-size: 16px
	}
	.about.about-inner {
		padding-top: 60px
	}
	.process-2 {
		padding-top: 60px;
		padding-bottom: 20px
	}
	.process-2 .no-gutters .single-box {
		margin-bottom: 40px
	}
	.process-2 .no-gutters .single-box .part-icon {
		width: 70px;
		height: 70px;
		margin-bottom: 25px
	}
	.process-2 .no-gutters .single-box .part-icon .icon {
		font-size: 30px;
		line-height: 82px
	}
	.process-2 .no-gutters .single-box .part-txt h3 {
		font-size: 20px;
		margin-top: -2px;
		margin-bottom: 15px
	}
	.process-2 .no-gutters .single-box .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.process-2 .no-gutters .single-box .arrow {
		display: none
	}
	.choosing-reason {
		padding-top: 60px
	}
	.choosing-reason .part-txt .heading {
		margin-bottom: 34px
	}
	.choosing-reason .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.choosing-reason .part-txt .boxes {
		padding-top: 22px;
		padding-bottom: 10px
	}
	.choosing-reason .part-txt .boxes .single-box {
		margin-bottom: 30px
	}
	.choosing-reason .part-txt .boxes .single-box .img {
		width: 80px;
		height: 80px
	}
	.choosing-reason .part-txt .boxes .single-box .img span {
		right: -5px;
		bottom: -5px
	}
	.choosing-reason .part-txt .boxes .single-box .txt {
		width: 410px
	}
	.choosing-reason .part-txt .boxes .single-box .txt h3 {
		font-size: 18px;
		margin-bottom: 16px
	}
	.choosing-reason .part-img .video a {
		width: 80px;
		height: 80px;
		line-height: 95px
	}
	.partner.partner-inner {
		padding-bottom: 60px
	}
	.faq.faq-inner {
		margin-bottom: -35px
	}
	.service-2 {
		padding: 60px 0
	}
	.service-2 .part-txt {
		margin-bottom: 40px
	}
	.service-2 .part-txt .heading {
		margin-bottom: 34px
	}
	.service-2 .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.service-2 .part-txt .boxes {
		padding-top: 17px
	}
	.service-2 .part-txt .boxes .single-box {
		margin-bottom: 30px
	}
	.service-2 .part-txt .boxes .single-box .txt {
		width: 410px
	}
	.service-2 .part-txt .boxes .single-box .txt h3 {
		font-size: 18px;
		line-height: 28px;
		margin-top: -7px;
		margin-bottom: 11px
	}
	.feature-2 {
		padding-top: 60px;
		padding-bottom: 30px
	}
	.feature-2 .part-img {
		margin-bottom: 40px
	}
	.feature-2 .part-txt .heading {
		margin-bottom: 34px
	}
	.feature-2 .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.feature-2 .part-txt .boxes {
		padding-top: 17px
	}
	.feature-2 .part-txt .boxes .single-box {
		margin-bottom: 30px
	}
	.feature-2 .part-txt .boxes .single-box .txt {
		width: 410px
	}
	.feature-2 .part-txt .boxes .single-box .txt h3 {
		font-size: 18px;
		line-height: 28px;
		margin-top: -7px;
		margin-bottom: 11px
	}
	.pricing.pricing-inner {
		margin-bottom: -30px
	}
	.service-details {
		padding-top: 60px
	}
	.service-details .next {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2
	}
	.service-details .main-content .part-img {
		border-radius: 5px;
		margin-bottom: 40px
	}
	.service-details .main-content .part-txt h2 {
		font-size: 20px;
		line-height: 30px;
		margin-top: -7px;
		margin-bottom: 15px
	}
	.service-details .main-content .part-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 11px
	}
	.service-details .main-content .part-txt .boxes {
		padding-top: 11px;
		margin-bottom: 15px
	}
	.service-details .main-content .part-txt .boxes .single-box {
		margin-bottom: 25px
	}
	.service-details .main-content .part-txt .boxes .single-box .txt h3 {
		font-size: 18px;
		margin-bottom: 11px
	}
	.service-details .main-content .part-txt ul {
		margin-bottom: 32px
	}
	.service-details .main-content .part-txt ul li {
		font-size: 14px;
		line-height: 24px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex
	}
	.service-details .main-content .part-txt ul li span {
		font-size: 10px
	}
	.service-details .main-content .video {
		padding-top: 11px
	}
	.service-details .main-content .video .video-area {
		padding: 60px 0;
		margin-bottom: 24px
	}
	.service-details .main-content .video .video-area a {
		width: 80px;
		height: 80px;
		line-height: 95px
	}
	.service-details .main-content .video p {
		font-size: 14px;
		line-height: 24px
	}
	.service-details .sidebar .side-nav {
		padding: 0;
		margin-bottom: 40px
	}
	.service-details .sidebar .side-nav .nav {
		padding: 30px 20px;
		-webkit-box-orient: horizontal!important;
		-webkit-box-direction: normal!important;
		-ms-flex-direction: row!important;
		flex-direction: row!important;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between
	}
	.service-details .sidebar .side-nav .nav .nav-link {
		width: calc(100%/2 - 10px);
		height: 40px;
		line-height: 40px;
		padding: 0 20px;
		font-size: 16px;
		border-radius: 5px;
		margin-bottom: 10px
	}
	.service-details .sidebar .side-nav .nav .nav-link span {
		font-size: 20px
	}
	.service-details .sidebar .subscription,
	.service-details .sidebar .online-help,
	.service-details .sidebar .download-area {
		display: none
	}
	.team-inner-2 {
		padding-top: 60px
	}
	.team-inner-2 .single-box .part-txt {
		margin: -50px 35px 0
	}
	.team-inner-2 .single-box .part-txt .title h3 {
		font-size: 20px;
		margin-bottom: 11px
	}
	.team-inner-2 .single-box .part-txt .title p {
		font-size: 14px
	}
	.team-details {
		padding-top: 60px
	}
	.team-details .profile {
		margin-bottom: 40px
	}
	.team-details .profile .part-txt .title h3 {
		font-size: 20px;
		margin-bottom: 11px
	}
	.team-details .profile .part-txt .title p {
		font-size: 14px
	}
	.team-details .biography h2 {
		font-size: 25px;
		margin-top: -2px;
		margin-bottom: 19px
	}
	.team-details .biography p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 13px
	}
	.team-details .biography ul li {
		font-size: 14px;
		line-height: 30px
	}
	.team-details .biography ul li span {
		min-width: 80px
	}
	.team-details .qualification h3 {
		font-size: 20px;
		margin-bottom: 26px
	}
	.team-details .qualification .single-box {
		width: 320px;
		margin: 0 auto 30px
	}
	.team-details .qualification .single-box .arrow {
		width: 30px;
		height: auto
	}
	.team-details .qualification .single-box .txt {
		width: 290px
	}
	.team-details .qualification .single-box .txt h4 {
		font-size: 18px;
		margin-bottom: 11px
	}
	.team-details .qualification .single-box .txt h5 {
		font-size: 14px
	}
	.team-details .qualification .single-box .txt span {
		margin-bottom: 11px
	}
	.team-details .qualification .single-box .txt p {
		font-size: 14px;
		line-height: 24px
	}
	.team-details .expertise h2 {
		font-size: 20px;
		margin-bottom: 20px
	}
	.team-details .expertise p {
		font-size: 14px;
		line-height: 24px
	}
	.team-details .expertise .single-box {
		margin: 0 -5px
	}
	.team-details .additional-txt h2 {
		font-size: 25px;
		line-height: 35px;
		margin-top: -7px
	}
	.team-details .additional-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 14px
	}
	.team-details .additional-txt ul li {
		font-size: 14px;
		line-height: 30px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex
	}
	.team-details .additional-txt ul li span {
		font-size: 10px
	}
	.testimonial-2 {
		padding: 60px 0
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-img {
		width: 90px;
		height: 90px
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt {
		width: 380px
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt .title h3 {
		font-size: 20px;
		margin-bottom: 10px
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt .title span {
		font-size: 14px
	}
	.testimonial-2 .testimonial-slider .owl-dots {
		padding-top: 40px
	}
	.testimonial-3 {
		padding: 60px 0
	}
	.testimonial-3 .testimonial-slider-2 .single-box {
		padding: 30px 25px
	}
	.testimonial-3 .testimonial-slider-2 .single-box .top .profile {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
	.testimonial-3 .testimonial-slider-2 .single-box .top .profile .part-img {
		margin-right: 0;
		margin-bottom: 25px
	}
	.testimonial-3 .testimonial-slider-2 .single-box .top .profile .txt h3 {
		font-size: 18px;
		margin-bottom: 6px
	}
	.testimonial-3 .testimonial-slider-2 .single-box .top .profile .txt p {
		font-size: 14px
	}
	.testimonial-3 .testimonial-slider-2 .single-box .top .quote span {
		font-size: 30px
	}
	.testimonial-3 .testimonial-slider-2 .single-box .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.testimonial-3 .testimonial-slider-2 .owl-dots {
		padding-top: 40px
	}
	.pricing.pricing-inner-2 {
		padding-top: 60px
	}
	.pricing-2 {
		padding-top: 60px;
		padding-bottom: 30px
	}
	.pricing-2 .single-box {
		padding: 30px;
		margin-bottom: 30px
	}
	.pricing-2 .single-box .top .part-icon {
		width: 70px;
		height: 70px;
		padding: 15px
	}
	.pricing-2 .single-box .top .price p {
		font-size: 14px;
		margin-top: -15px;
		margin-right: 5px
	}
	.pricing-2 .single-box .top .price h3 {
		font-size: 30px
	}
	.pricing-2 .single-box .top .price h3 span {
		font-size: 14px
	}
	.pricing-2 .single-box .bottom h3 {
		font-size: 20px;
		margin-bottom: 17px
	}
	.pricing-2 .single-box .bottom ul li {
		font-size: 14px;
		line-height: 30px
	}
	.pricing-2 .single-box .bottom .part-btn {
		font-size: 14px
	}
	.pricing-3 {
		padding-top: 60px
	}
	.pricing-3 .boxes .single-box {
		margin-bottom: 30px;
		padding: 30px
	}
	.pricing-3 .boxes .single-box .part-img {
		width: -webkit-max-content;
		width: -moz-max-content;
		width: max-content;
		margin-bottom: 30px
	}
	.pricing-3 .boxes .single-box .title {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin-bottom: 30px
	}
	.pricing-3 .boxes .single-box .title h4 {
		font-size: 20px;
		margin-bottom: 0
	}
	.pricing-3 .boxes .single-box .title .price p {
		font-size: 14px;
		margin-top: -5px;
		margin-right: 5px
	}
	.pricing-3 .boxes .single-box .title .price h3 {
		font-size: 30px;
		margin-top: -3px
	}
	.pricing-3 .boxes .single-box .title .price h3 span {
		font-size: 14px
	}
	.pricing-3 .boxes .single-box ul li {
		font-size: 14px;
		margin-bottom: 16px
	}
	.pricing-3 .boxes .single-box .part-btn a {
		font-size: 14px
	}
	.faq-2 {
		padding-bottom: 0;
		margin-bottom: -35px
	}
	.faq-2 .faq-inner-2 {
		padding-bottom: 25px
	}
	.faq .part-txt #accordion .part-img {
		width: 450px;
		margin: 0 auto 35px
	}
	.error {
		padding-top: 60px
	}
	.error .boxes {
		margin-bottom: 40px
	}
	.error .boxes .single-box {
		width: 100px;
		height: 100px;
		line-height: 100px;
		margin: 0 10px;
		font-size: 70px;
		border-radius: 5px
	}
	.error .part-txt h2 {
		font-size: 30px;
		line-height: 40px;
		margin-top: -8px;
		margin-bottom: 22px
	}
	.error .part-txt p {
		font-size: 18px;
		line-height: 28px;
		margin-bottom: 32px
	}
	.portfolio {
		padding-top: 60px
	}
	.portfolio .single-box .part-txt {
		height: 75px
	}
	.portfolio .single-box .part-txt a {
		font-size: 18px;
		line-height: 76px
	}
	.portfolio-details {
		padding-top: 60px
	}
	.portfolio-details .main-img:after {
		border-width: 100px
	}
	.portfolio-details .project-information h3 {
		font-size: 25px;
		margin-top: -2px;
		margin-bottom: 25px
	}
	.portfolio-details .project-information ul li {
		font-size: 14px;
		line-height: 50px
	}
	.portfolio-details .project-information ul li span {
		font-size: 14px
	}
	.portfolio-details .project-information ul li a {
		font-size: 12px;
		margin: 0 5px
	}
	.portfolio-details .main-txt h2 {
		font-size: 25px;
		margin-top: -2px;
		margin-bottom: 19px
	}
	.portfolio-details .main-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 22px
	}
	.portfolio-details .main-txt .part-img {
		margin-bottom: -6px
	}
	.portfolio-details .main-txt .part-img .single-img {
		border-radius: 5px;
		margin-bottom: 30px
	}
	.portfolio-details .main-txt ul {
		width: 100%
	}
	.portfolio-details .main-txt ul li {
		font-size: 14px
	}
	.portfolio-details .main-txt ul li span {
		font-size: 14px
	}
	.process-2.process-inner {
		margin-bottom: -40px
	}
	.portfolio-details .process-inner .heading-txt {
		padding-bottom: 7px
	}
	.portfolio-details .process-inner .heading-txt h2 {
		font-size: 25px;
		line-height: 35px;
		margin-top: -7px;
		margin-bottom: 14px
	}
	.portfolio-details .process-inner .heading-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.blog-inner {
		margin-bottom: 0
	}
	.blog-inner .main-content {
		margin-bottom: 60px
	}
	.blog-inner .main-content .pagination {
		padding-top: 10px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
	.blog-inner .main-content .pagination ul li {
		padding: 0 5px
	}
	.blog-inner .main-content .pagination ul li a {
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 12px
	}
	.blog-inner .next {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2
	}
	.blog-inner .sidebar .profile {
		padding: 30px 25px;
		margin-bottom: 30px
	}
	.blog-inner .sidebar .profile .part-img {
		width: 90px;
		height: 90px;
		margin-bottom: 25px
	}
	.blog-inner .sidebar .profile .part-txt h3 {
		font-size: 20px;
		margin-bottom: 15px
	}
	.blog-inner .sidebar .profile .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.blog-inner .sidebar .profile .part-txt .social {
		padding-top: 5px
	}
	.blog-inner .sidebar .profile .part-txt .social a {
		font-size: 12px
	}
	.blog-inner .sidebar .search-box {
		padding: 30px 25px
	}
	.blog-inner .sidebar .search-box h3 {
		font-size: 20px;
		margin-bottom: 16px
	}
	.blog-inner .sidebar .search-box form button {
		font-size: 20px
	}
	.blog-inner .sidebar .blog-category {
		padding: 30px 25px;
		margin-bottom: 30px
	}
	.blog-inner .sidebar .blog-category h3 {
		height: 40px;
		line-height: 40px;
		font-size: 20px;
		border-radius: 5px
	}
	.blog-inner .sidebar .blog-category ul li a {
		font-size: 14px;
		padding-top: 14px
	}
	.blog-inner .sidebar .recent-blog {
		padding: 30px 25px;
		margin-bottom: 30px
	}
	.blog-inner .sidebar .recent-blog h3 {
		height: 40px;
		line-height: 40px;
		font-size: 20px;
		border-radius: 5px
	}
	.blog-inner .sidebar .recent-blog ul li .img {
		width: 60px;
		border-radius: 5px;
		margin-right: 10px
	}
	.blog-inner .sidebar .recent-blog ul li .txt {
		width: 210px
	}
	.blog-inner .sidebar .recent-blog ul li .txt a {
		font-size: 14px;
		font-weight: 600;
		line-height: 20px;
		margin-top: -4px
	}
	.blog-inner .sidebar .tags {
		padding: 30px 25px
	}
	.blog-inner .sidebar .tags h3 {
		height: 40px;
		line-height: 40px;
		font-size: 20px;
		border-radius: 5px
	}
	.blog-inner .sidebar .tags .all-tag {
		margin: -5px -3px
	}
	.blog-inner .sidebar .tags .all-tag a {
		font-size: 14px;
		margin: 5px 3px
	}
	.blog-inner {
		padding-top: 60px
	}
	.blog-inner .blog-details {
		padding-bottom: 60px
	}
	.blog-inner .blog-details .title {
		margin-bottom: 35px
	}
	.blog-inner .blog-details .title .tag {
		border-width: 3px;
		font-size: 14px;
		height: 45px;
		margin-bottom: 25px
	}
	.blog-inner .blog-details .title h2 {
		font-size: 25px;
		line-height: 35px;
		margin-top: -2px;
		margin-bottom: 15px
	}
	.blog-inner .blog-details .title ul {
		margin-bottom: -3px
	}
	.blog-inner .blog-details .title ul li {
		margin-right: 15px
	}
	.blog-inner .blog-details .main-img {
		border-radius: 5px;
		margin-bottom: 35px
	}
	.blog-inner .blog-details .main-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px
	}
	.blog-inner .blog-details .main-txt .quoted {
		padding: 30px 25px
	}
	.blog-inner .blog-details .main-txt .quoted .img {
		width: 100px
	}
	.blog-inner .blog-details .main-txt .quoted .txt {
		width: 510px
	}
	.blog-inner .blog-details .main-txt .quoted .txt span {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px;
		margin-bottom: 15px
	}
	.blog-inner .blog-details .main-txt .quoted .txt h4 {
		font-size: 18px;
		margin-bottom: 11px
	}
	.blog-inner .blog-details .main-txt .quoted .txt h5 {
		font-size: 14px
	}
	.blog-inner .blog-details .reasons-for-choose {
		padding-top: 8px
	}
	.blog-inner .blog-details .reasons-for-choose h2 {
		font-size: 20px;
		margin-bottom: 21px
	}
	.blog-inner .blog-details .reasons-for-choose ul {
		margin-bottom: 7px
	}
	.blog-inner .blog-details .reasons-for-choose ul li {
		font-size: 14px
	}
	.blog-inner .blog-details .reasons-for-choose ul li span {
		font-size: 14px
	}
	.blog-inner .blog-details .reasons-for-choose p {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px
	}
	.blog-inner .blog-details .reasons-for-choose .part-img {
		margin-bottom: 0
	}
	.blog-inner .blog-details .reasons-for-choose .part-img .single-img {
		margin-bottom: 30px
	}
	.blog-inner .blog-details .reasons-for-choose .part-img .single-img img {
		width: 100%
	}
	.blog-inner .blog-details .other-option {
		padding-top: 8px;
		padding-bottom: 40px;
		margin-bottom: 40px
	}
	.blog-inner .blog-details .other-option .tags {
		margin-bottom: 16px
	}
	.blog-inner .blog-details .other-option h3 {
		font-size: 18px
	}
	.blog-inner .blog-details .other-option .tags a {
		font-size: 14px;
		font-weight: 600;
		margin: 0 10px
	}
	.blog-inner .blog-details .other-option .share h3 {
		width: auto;
		margin-bottom: 0
	}
	.blog-inner .blog-details .other-option .share a {
		margin: 0 5px
	}
	.blog-inner .blog-details .admin-profile {
		padding: 30px 25px
	}
	.blog-inner .blog-details .admin-profile .part-img {
		width: 60px;
		height: 60px
	}
	.blog-inner .blog-details .admin-profile .part-txt {
		width: 550px
	}
	.blog-inner .blog-details .admin-profile .part-txt h3 {
		margin-bottom: 9px
	}
	.blog-inner .blog-details .admin-profile .part-txt .admin-link {
		font-size: 13px;
		margin-bottom: 21px
	}
	.blog-inner .blog-details .admin-profile .part-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 17px
	}
	.blog-inner .blog-details .blog-nav {
		padding-top: 40px;
		padding-bottom: 32px
	}
	.blog-inner .blog-details .blog-nav .single-nav.next-blog {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end
	}
	.blog-inner .blog-details .blog-nav .single-nav .img {
		width: 80px;
		height: 80px;
		border-radius: 5px
	}
	.blog-inner .blog-details .blog-nav .single-nav .txt {
		width: 150px
	}
	.blog-inner .blog-details .blog-nav .single-nav .txt a {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px
	}
	.blog-inner .blog-details .blog-nav .single-nav .txt a span {
		margin-top: 11px
	}
	.blog-inner .blog-details .blog-comments .comments {
		padding: 40px 0
	}
	.blog-inner .blog-details .blog-comments h3 {
		font-size: 20px;
		margin-bottom: 26px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment.replied {
		margin-left: 60px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment .part-img {
		width: 70px;
		height: 70px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt {
		width: 590px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment.replied .part-txt {
		width: 530px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt .top {
		margin-bottom: 15px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt .top h4 {
		font-size: 16px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt .top h4 span {
		display: block;
		font-size: 14px;
		margin-left: 0;
		margin-top: 10px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.blog-inner .blog-details .blog-comments .post-comment form input {
		height: 50px;
		font-size: 14px;
		margin-bottom: 25px
	}
	.blog-inner .blog-details .blog-comments .post-comment form textarea {
		height: 120px;
		font-size: 14px;
		margin-bottom: 25px
	}
	.blog-inner .blog-details .blog-comments .post-comment form .def-btn {
		height: 50px;
		line-height: 52px
	}
	.contact {
		padding: 60px 0
	}
	.contact .boxes {
		padding-bottom: 30px
	}
	.contact .boxes .single-box {
		margin-bottom: 30px
	}
	.contact .boxes .single-box .part-txt {
		width: 180px
	}
	.contact .boxes .single-box .part-txt h3 {
		font-size: 20px;
		margin-bottom: 12px
	}
	.contact .boxes .single-box .part-txt span {
		font-size: 14px;
		line-height: 30px
	}
	.contact .form {
		padding: 60px 40px
	}
	.contact .form input {
		height: 45px;
		margin-bottom: 25px
	}
	.contact .form textarea {
		height: 140px;
		margin-bottom: 30px
	}
	.map iframe {
		height: 350px
	}
}

@media only screen and (min-width:576px) and (max-width:767px) {
	.heading {
		margin-bottom: 40px
	}
	.heading h5 {
		font-size: 14px;
		margin-top: -1px;
		margin-bottom: 15px
	}
	.heading h2 {
		font-size: 25px;
		line-height: 35px;
		margin-bottom: -10px
	}
	.def-btn {
		height: 45px;
		line-height: 45px;
		font-size: 16px;
		padding: 0 25px
	}
	.header .top-header .top-left ul {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
	.header .top-header .top-left ul li {
		margin-right: 10px
	}
	.header .bottom-header .next {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4
	}
	.header .bottom-header .bottom-right a {
		display: none
	}
	.header .bottom-header:before {
		top: 0;
		left: -10%;
		width: 50%;
		height: 100%;
		-webkit-transform: skew(-35deg);
		transform: skew(-35deg);
		border-radius: 0 0 15px 0
	}
	.header .bottom-header:after {
		top: 0;
		left: auto;
		right: -10%;
		width: 50%;
		height: 100%;
		-webkit-transform: skew(35deg);
		transform: skew(35deg);
		border-radius: 0 0 0 15px
	}
	.header .bottom-header .bg:before,
	.header .bottom-header .bg:after,
	.header .bottom-header .bg .bg-2:before,
	.header .bottom-header .bg .bg-2:after,
	.header .bottom-header .bg .bg-2 .bg-3:before,
	.header .bottom-header .bg .bg-2 .bg-3:after {
		display: none
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar-toggler {
		padding: 0 5px;
		color: #2a9d8f;
		font-size: 20px;
		height: 60px;
		line-height: 68px
	}
	.header .bottom-header .bg .bg-2 .bg-3 .logo {
		padding-top: 0;
		width: 100%;
		height: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
	.header .bottom-header .bg .bg-2 .bg-3 .logo img {
		width: 40px
	}
	.header .bottom-header .bg .bg-2 .bg-3 .bottom-right {
		width: 100%;
		height: 100%;
		padding: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-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: end;
		-ms-flex-align: end;
		align-items: flex-end
	}
	.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form {
		margin: 0;
		padding: 0;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		position: relative
	}
	.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form input {
		position: absolute;
		top: 100%;
		right: 0;
		width: 290px;
		background: #fff;
		border: 0;
		-webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .15);
		box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .15);
		padding: 0 20px;
		font-size: 14px;
		color: #0d0925;
		height: 0
	}
	.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form.active input {
		height: 45px
	}
	.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form button {
		height: 60px;
		line-height: 68px;
		font-size: 20px;
		padding: 0 5px
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		background: #f6f6f6;
		-webkit-box-shadow: 0 10px 20px 0 rgba(51, 51, 51, .1);
		box-shadow: 0 10px 20px 0 rgba(51, 51, 51, .1);
		padding: 0
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav {
		padding: 15px 0;
		max-height: 350px;
		overflow: auto
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item {
		padding: 10px 15px
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item .nav-link {
		color: #0d0925;
		font-size: 14px;
		font-weight: 600;
		padding: 4px 0 2px
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item .nav-link:after {
		display: none
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
		display: none;
		margin-top: 5px;
		width: 290px;
		opacity: 1;
		visibility: visible
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show {
		display: block
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item,
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu .dropdown-item {
		font-size: 14px;
		padding: 14px 20px 12px
	}
	.header-2 {
		background: #fff
	}
	.header-2 .top-header {
		background: #2a9d8f;
		padding: 20px 0
	}
	.header-2 .top-header .bg .top-left {
		margin-bottom: 2px
	}
	.header-2 .top-header .bg .top-left ul {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
	.header-2 .top-header .bg .top-left ul li {
		padding: 0 15px 15px;
		border: 0;
		margin-top: -1px
	}
	.header-2 .top-header .bg .top-right {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
	.header-2 .top-header .bg .top-right .language {
		padding-right: 15px
	}
	.header-2 .top-header .bg .top-right .language .select-lang .dropdown-toggle {
		font-size: 14px;
		font-weight: 600
	}
	.header-2 .top-header .bg .top-right .try-btn {
		padding: 0;
		padding-left: 15px
	}
	.header-2 .top-header .bg .top-right .try-btn a {
		height: 30px;
		line-height: 30px;
		font-size: 14px;
		padding: 0 15px
	}
	.header-2 .bottom-header .next {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4
	}
	.header-2 .bottom-header.fixed-header {
		background: #fff
	}
	.header-2 .bottom-header .bg .navbar-toggler {
		text-align: center;
		width: 40px;
		height: 40px;
		line-height: 45px;
		background: #0d0925;
		color: #fff;
		font-size: 18px;
		padding: 0
	}
	.header-2 .bottom-header .bg .logo {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
	.header-2 .bottom-header .bg .logo img {
		width: 40px
	}
	.header-2 .bottom-header .bg .bottom-right {
		padding: 10px 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end
	}
	.header-2 .bottom-header .bg .bottom-right form {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		position: relative;
		padding: 0
	}
	.header-2 .bottom-header .bg .bottom-right form input {
		position: absolute;
		top: 100%;
		right: 0;
		width: 290px;
		background: #fff;
		border: 0;
		-webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .15);
		box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .15);
		padding: 0 20px;
		font-size: 14px;
		color: #0d0925;
		height: 0
	}
	.header-2 .bottom-header .bg .bottom-right form input::-webkit-input-placeholder {
		color: #4b4b46
	}
	.header-2 .bottom-header .bg .bottom-right form input::-moz-placeholder {
		color: #4b4b46
	}
	.header-2 .bottom-header .bg .bottom-right form input:-ms-input-placeholder {
		color: #4b4b46
	}
	.header-2 .bottom-header .bg .bottom-right form input::-ms-input-placeholder {
		color: #4b4b46
	}
	.header-2 .bottom-header .bg .bottom-right form input::placeholder {
		color: #4b4b46
	}
	.header-2 .bottom-header .bg .bottom-right form.active input {
		height: 45px
	}
	.header-2 .bottom-header .bg .bottom-right form button {
		text-align: center;
		width: 40px;
		height: 40px;
		line-height: 45px;
		padding: 0;
		background: #0d0925;
		color: #fff;
		font-size: 18px;
		border-radius: 5px
	}
	.header-2 .bottom-header .bg .navbar {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		background: #f6f6f6;
		-webkit-box-shadow: 0 10px 20px 0 rgba(51, 51, 51, .1);
		box-shadow: 0 10px 20px 0 rgba(51, 51, 51, .1);
		padding: 0
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav {
		padding: 15px 0;
		max-height: 350px;
		overflow: auto
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item {
		padding: 10px 15px
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item .nav-link {
		color: #0d0925;
		font-size: 14px;
		font-weight: 600;
		padding: 4px 0 2px
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item .nav-link:after {
		display: none
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
		display: none;
		margin-top: 5px;
		width: 290px;
		opacity: 1;
		visibility: visible
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show {
		display: block
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item,
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu .dropdown-item {
		font-size: 14px;
		padding: 14px 20px 12px
	}
	.banner:after {
		background: url(../images/banner-img.png) center left 40% no-repeat;
		background-size: cover
	}
	.banner .banner-txt {
		padding: 70px 0
	}
	.banner .banner-txt h4 {
		font-size: 16px;
		margin-bottom: 20px
	}
	.banner .banner-txt h1 {
		font-size: 25px;
		line-height: 35px;
		margin-bottom: 14px
	}
	.banner .banner-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 12px
	}
	.banner .banner-txt .btn-box {
		padding-top: 10px
	}
	.banner .banner-txt .btn-box a {
		height: 45px;
		line-height: 45px;
		font-size: 16px;
		padding: 0 25px
	}
	.banner-2 {
		background: url(../images/banner-bg.jpg) center right 50% no-repeat;
		background-size: cover
	}
	.banner-2 .banner-txt {
		padding: 70px 0
	}
	.banner-2 .banner-txt h4 {
		font-size: 16px;
		margin-bottom: 20px;
		letter-spacing: 1px
	}
	.banner-2 .banner-txt h1 {
		font-size: 25px;
		line-height: 35px;
		margin-bottom: 14px
	}
	.banner-2 .banner-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 12px
	}
	.banner-2 .banner-txt .btn-box {
		padding-top: 10px
	}
	.banner-2 .banner-txt .btn-box a {
		height: 45px;
		line-height: 45px;
		font-size: 16px;
		padding: 0 25px
	}
	.banner-2 .banner-txt .btn-box a.left-btn {
		margin-right: 10px
	}
	.banner-2 .part-img {
		display: none
	}
	.feature {
		padding-top: 60px;
		padding-bottom: 0
	}
	.feature .single-box {
		width: 290px;
		padding: 30px 25px;
		margin: 3px auto 33px
	}
	.feature .single-box .part-txt h3 {
		font-size: 20px;
		margin-top: -1px;
		margin-bottom: 20px
	}
	.feature .single-box .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.partner {
		padding-top: 60px;
		padding-bottom: 30px
	}
	.partner .bg {
		padding: 30px
	}
	.partner .bg .brand-slider .single-img {
		height: 70px
	}
	.partner .bg .brand-slider .owl-nav {
		left: -45px;
		right: -45px
	}
	.partner .bg .brand-slider .owl-nav button {
		width: 45px;
		height: 45px;
		line-height: 45px;
		font-size: 20px;
		border-width: 2px
	}
	.partner.partner-2 {
		padding: 60px 0
	}
	.partner.partner-2:after {
		background: url(../images/partner-overlay.png) center center no-repeat;
		background-size: cover
	}
	.partner.partner-2 .heading h2 {
		margin-bottom: 24px
	}
	.partner.partner-2 .heading p {
		font-size: 14px;
		line-height: 24px
	}
	.partner.partner-2 .bg .brand-slider .single-img {
		height: 105px;
		padding: 15px 0
	}
	.about {
		padding-top: 30px;
		padding-bottom: 60px
	}
	.about .image-box {
		padding-right: 0;
		margin-bottom: 30px
	}
	.about .image-box .fun-fact-inner {
		padding: 20px 15px;
		margin: -70px 35px 0
	}
	.about .image-box .fun-fact-inner .single-box {
		padding: 0 5px
	}
	.about .image-box .fun-fact-inner .single-box h4 {
		font-size: 20px;
		margin-top: -2px;
		margin-bottom: 5px
	}
	.about .image-box .fun-fact-inner .single-box p {
		font-size: 13px;
		line-height: 20px;
		margin-bottom: -6px
	}
	.about .image-box .fun-fact-inner .single-box p span {
		font-size: 10px;
		margin-bottom: -2px
	}
	.about .part-txt .heading {
		margin-bottom: 34px
	}
	.about .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.about .part-txt .boxes {
		margin-top: 31px;
		margin-bottom: 1px
	}
	.about .part-txt .boxes .single-box {
		margin-bottom: 31px
	}
	.about .part-txt .boxes .single-box .txt h3 {
		font-size: 18px;
		margin-bottom: 11px
	}
	.about .part-txt .boxes-2 {
		padding: 40px 25px 25px
	}
	.about .part-txt .boxes-2 .single-box .txt h3 {
		font-size: 16px;
		margin-bottom: 5px
	}
	.about .part-txt .boxes-2 .single-box .txt span {
		font-size: 14px
	}
	.about.about-2 .part-img {
		width: 450px;
		margin: 0 auto 30px
	}
	.about.about-2 .part-img img {
		max-width: 100%
	}
	.about.about-2 .part-txt .def-btn {
		margin-top: 7px
	}
	.service {
		padding: 60px 0
	}
	.service .bg {
		margin: auto
	}
	.service .bg .nav {
		padding: 30px 20px;
		-webkit-box-orient: horizontal!important;
		-webkit-box-direction: normal!important;
		-ms-flex-direction: row!important;
		flex-direction: row!important;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between
	}
	.service .bg .nav .nav-link {
		width: calc(100%/2 - 10px);
		height: 40px;
		line-height: 40px;
		padding: 0 20px;
		font-size: 16px;
		border-radius: 5px;
		margin-bottom: 10px
	}
	.service .bg .nav .nav-link span {
		font-size: 20px
	}
	.service .bg .part-img {
		border-top: 1px solid #362e65;
		border-bottom: 1px solid #362e65;
		border-left: 0;
		border-right: 0
	}
	.service .bg .part-txt {
		padding: 30px
	}
	.service .bg .part-txt h3 {
		font-size: 20px;
		margin-top: -2px;
		margin-bottom: 20px
	}
	.service .bg .part-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 11px
	}
	.service .bg .part-txt .def-btn {
		margin-top: 11px
	}
	.process {
		padding-top: 60px;
		padding-bottom: 0
	}
	.process .single-box {
		padding: 30px;
		margin-bottom: 30px
	}
	.process .single-box .part-txt h3 {
		font-size: 20px;
		margin-top: -2px;
		margin-bottom: 15px
	}
	.process .single-box .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.pricing {
		padding: 30px 0
	}
	.pricing .controls {
		margin-bottom: 30px
	}
	.pricing .controls nav {
		padding: 0 20px
	}
	.pricing .controls nav .nav {
		width: 100px
	}
	.pricing .controls span {
		font-size: 14px
	}
	.pricing .controls nav .nav .nav-item {
		width: 27px;
		height: 27px
	}
	.pricing .tab-pane .single-box {
		padding: 25px 20px;
		margin: 0 auto 50px
	}
	.pricing .tab-pane .single-box .part-img {
		margin-right: 30px
	}
	.pricing .tab-pane .single-box .part-txt h3 {
		font-size: 18px
	}
	.pricing .tab-pane .single-box .part-txt ul {
		margin-bottom: 7px
	}
	.pricing .tab-pane .single-box .part-txt ul li {
		font-size: 14px;
		line-height: 25px
	}
	.pricing .tab-pane .single-box .part-txt ul li span {
		font-size: 10px;
		margin-right: 10px
	}
	.pricing .tab-pane .single-box .part-btn {
		right: 25px
	}
	.cta {
		padding: 60px 0
	}
	.cta:after {
		top: 0;
		bottom: 0
	}
	.cta .part-txt h2 {
		font-size: 20px;
		line-height: 30px;
		margin-top: -7px;
		margin-bottom: 15px
	}
	.cta .part-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 22px
	}
	.cta .part-img {
		display: none
	}
	.cta-2 {
		padding-top: 175px;
		padding-bottom: 60px
	}
	.cta-2 .part-txt h2 {
		font-size: 25px;
		line-height: 35px;
		margin-top: -7px;
		margin-bottom: 14px
	}
	.cta-2 .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.cta-2 .part-txt .def-btn {
		margin-top: 5px
	}
	.testimonial {
		padding: 60px 0
	}
	.testimonial .row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse
	}
	.testimonial .bg {
		padding: 0;
		background: 0 0
	}
	.testimonial .bg .comment-area .comment-slider .single-comment p {
		font-size: 14px;
		line-height: 24px
	}
	.testimonial .bg .comment-area .comment-slider .single-comment .client {
		padding-top: 105px
	}
	.testimonial .bg .comment-area .comment-slider .single-comment .client h3 {
		font-size: 20px
	}
	.testimonial .bg .comment-area .comment-slider .single-comment .client h5 {
		font-size: 14px
	}
	.testimonial .bg .comment-area .client-slider {
		padding: 0 50px;
		margin-top: -48px
	}
	.testimonial .bg .comment-area .client-slider .slick-track {
		height: 65px
	}
	.testimonial .bg .comment-area .client-slider .slick-track .single-box {
		width: 55px!important
	}
	.testimonial .bg .comment-area .client-slider .slick-track .single-box.slick-active {
		width: 65px!important
	}
	.testimonial .bg .comment-area .client-slider .slick-track .single-box.slick-center {
		width: 75px!important
	}
	.testimonial .bg .comment-area .client-slider .slick-track .single-box .img {
		margin: 0 5px
	}
	.testimonial .bg .part-txt {
		background: url(../images/testimonial-bg-3.jpg) center center no-repeat;
		background-size: cover;
		padding: 30px 20px;
		border-radius: 10px;
		margin-top: 13px
	}
	.testimonial .bg .part-txt .heading {
		text-align: center!important;
		margin-bottom: 30px
	}
	.testimonial .bg .part-txt .controls {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
	.testimonial .bg .part-txt .controls button {
		width: 40px;
		height: 40px;
		line-height: 44px;
		font-size: 14px
	}
	.testimonial .bg .part-txt .controls button:first-child {
		margin-right: 15px
	}
	.blog {
		padding: 60px 0
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box {
		padding: 30px
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-img {
		width: 150px
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt {
		width: 270px
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt .title {
		font-size: 18px;
		line-height: 26px;
		margin-bottom: 12px
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt .blog-info {
		padding-top: 7px;
		margin-bottom: 26px
	}
	.blog .blog-slider .owl-nav {
		display: none
	}
	.blog-2 {
		padding-top: 60px;
		margin-bottom: -30px
	}
	.blog-2 .single-blog {
		width: 320px;
		margin: 0 auto 30px
	}
	.blog-2 .single-blog .part-txt {
		padding: 0 25px 25px
	}
	.blog-2 .single-blog .part-txt .blog-info ul {
		padding: 0 10px;
		margin-bottom: 25px
	}
	.blog-2 .single-blog .part-txt h3 {
		font-size: 18px;
		line-height: 28px;
		margin-bottom: 10px
	}
	.blog-2 .single-blog .part-txt a {
		font-size: 14px
	}
	.call-back {
		padding-top: 60px
	}
	.call-back .bg {
		padding: 30px 25px
	}
	.call-back .bg .part-txt {
		text-align: center;
		margin-bottom: 30px
	}
	.call-back .bg .part-txt h5 {
		font-size: 16px;
		font-weight: 400;
		margin-bottom: 21px
	}
	.call-back .bg .part-txt h2 {
		font-size: 22px;
		line-height: 30px;
		margin-bottom: -8px
	}
	.call-back .bg .form form {
		border-radius: 5px
	}
	.call-back .bg .form form input {
		width: 285px;
		height: 45px;
		font-size: 14px;
		padding: 0 5px
	}
	.call-back .bg .form form button {
		height: 45px;
		line-height: 46px;
		font-size: 14px;
		border-radius: 5px
	}
	.footer .main-footer {
		padding-top: 60px;
		padding-bottom: 30px
	}
	.footer .main-footer h3 {
		font-size: 18px;
		padding-bottom: 9px;
		margin-bottom: 20px
	}
	.footer .main-footer .about-txt {
		margin-bottom: 35px
	}
	.footer .main-footer .about-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px;
		margin-bottom: 11px
	}
	.footer .main-footer .link {
		margin-bottom: 35px
	}
	.footer .main-footer .link ul {
		margin-bottom: -8px
	}
	.footer .main-footer .link ul li a {
		font-size: 14px;
		line-height: 25px
	}
	.footer .main-footer .newsletter {
		margin-bottom: 30px
	}
	.footer .main-footer .newsletter p {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px;
		margin-bottom: 17px
	}
	.footer .main-footer .newsletter form {
		margin-bottom: 25px
	}
	.footer .main-footer .newsletter form button {
		height: 45px;
		line-height: 53px;
		font-size: 20px
	}
	.footer .copyright {
		padding-bottom: 25px
	}
	.footer .copyright p {
		text-align: center;
		font-size: 14px;
		padding: 24px 0 17px
	}
	.footer .copyright .link {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
	.footer .copyright .link a {
		font-size: 12px
	}
	.faq {
		padding-top: 60px;
		padding-bottom: 25px
	}
	.faq .part-txt #accordion .card:last-child {
		margin-bottom: 0
	}
	.faq .part-txt #accordion .card .card-header h5 button {
		height: 60px;
		font-size: 18px;
		line-height: 100%;
		text-align: left
	}
	.faq .part-txt #accordion .card .card-header h5 button span {
		font-size: 14px
	}
	.faq .part-txt #accordion .card .card-body {
		padding: 0 20px 35px
	}
	.faq .part-txt #accordion .card .card-body p {
		font-size: 14px;
		line-height: 24px
	}
	.project {
		padding: 60px 0
	}
	.project:after {
		background: url(../images/project-overlay.png) center center no-repeat;
		background-size: cover
	}
	.project .all-projects .project-slider .owl-stage-outer .single-box .part-txt .title {
		margin: 0 10px 20px
	}
	.project .all-projects .project-slider .owl-stage-outer .single-box .part-txt a {
		font-size: 25px;
		margin-bottom: 65px
	}
	.project .all-projects .project-slider .owl-stage-outer .single-box .part-txt .title h3 {
		font-size: 16px
	}
	.team {
		padding-top: 60px;
		padding-bottom: 30px
	}
	.team .single-box {
		margin-bottom: 30px
	}
	.team .single-box .part-txt .txt {
		padding-top: 132px
	}
	.fun-fact .bg {
		padding: 60px 25px 30px
	}
	.fun-fact .bg .single-box {
		margin-bottom: 30px
	}
	.fun-fact .bg .single-box .part-icon {
		margin-bottom: 9px
	}
	.fun-fact .bg .single-box .part-txt h2 {
		font-size: 25px;
		margin-bottom: 11px
	}
	.fun-fact .bg .single-box .part-txt p {
		font-size: 14px
	}
	.breadcrumb .part-txt {
		padding: 60px 0
	}
	.breadcrumb .part-txt h1 {
		font-size: 25px;
		margin-top: -2px;
		margin-bottom: 18px
	}
	.breadcrumb .part-txt ul {
		margin-bottom: -3px
	}
	.breadcrumb .part-txt ul li {
		font-size: 16px
	}
	.about.about-inner {
		padding-top: 60px
	}
	.process-2 {
		padding-top: 60px;
		padding-bottom: 20px
	}
	.process-2 .no-gutters .single-box {
		margin-bottom: 40px
	}
	.process-2 .no-gutters .single-box .part-icon {
		width: 70px;
		height: 70px;
		margin-bottom: 25px
	}
	.process-2 .no-gutters .single-box .part-icon .icon {
		font-size: 30px;
		line-height: 82px
	}
	.process-2 .no-gutters .single-box .part-txt h3 {
		font-size: 20px;
		margin-top: -2px;
		margin-bottom: 15px
	}
	.process-2 .no-gutters .single-box .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.process-2 .no-gutters .single-box .arrow {
		display: none
	}
	.choosing-reason {
		padding-top: 60px
	}
	.choosing-reason .part-txt .heading {
		margin-bottom: 34px
	}
	.choosing-reason .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.choosing-reason .part-txt .boxes {
		padding-top: 22px;
		padding-bottom: 10px
	}
	.choosing-reason .part-txt .boxes .single-box {
		margin-bottom: 30px
	}
	.choosing-reason .part-txt .boxes .single-box .img {
		width: 80px;
		height: 80px
	}
	.choosing-reason .part-txt .boxes .single-box .img span {
		right: -5px;
		bottom: -5px
	}
	.choosing-reason .part-txt .boxes .single-box .txt {
		width: 410px
	}
	.choosing-reason .part-txt .boxes .single-box .txt h3 {
		font-size: 18px;
		margin-bottom: 16px
	}
	.choosing-reason .part-img .video a {
		width: 80px;
		height: 80px;
		line-height: 95px
	}
	.partner.partner-inner {
		padding-bottom: 60px
	}
	.faq.faq-inner {
		margin-bottom: -35px
	}
	.service-2 {
		padding: 60px 0
	}
	.service-2 .part-txt {
		margin-bottom: 40px
	}
	.service-2 .part-txt .heading {
		margin-bottom: 34px
	}
	.service-2 .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.service-2 .part-txt .boxes {
		padding-top: 17px
	}
	.service-2 .part-txt .boxes .single-box {
		width: 510px;
		margin: 0 auto 30px
	}
	.service-2 .part-txt .boxes .single-box .txt {
		width: 410px
	}
	.service-2 .part-txt .boxes .single-box .txt h3 {
		font-size: 18px;
		line-height: 28px;
		margin-top: -7px;
		margin-bottom: 11px
	}
	.service-2 .part-img {
		width: 450px;
		margin: 0 auto
	}
	.feature-2 {
		padding-top: 60px;
		padding-bottom: 30px
	}
	.feature-2 .part-img {
		width: 450px;
		margin: 0 auto 40px
	}
	.feature-2 .part-txt .heading {
		margin-bottom: 34px
	}
	.feature-2 .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.feature-2 .part-txt .boxes {
		padding-top: 17px
	}
	.feature-2 .part-txt .boxes .single-box {
		width: 510px;
		margin: 0 auto 30px
	}
	.feature-2 .part-txt .boxes .single-box .txt {
		width: 410px
	}
	.feature-2 .part-txt .boxes .single-box .txt h3 {
		font-size: 18px;
		line-height: 28px;
		margin-top: -7px;
		margin-bottom: 11px
	}
	.pricing.pricing-inner {
		margin-bottom: -30px
	}
	.service-details {
		padding-top: 60px
	}
	.service-details .next {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2
	}
	.service-details .main-content .part-img {
		border-radius: 5px;
		margin-bottom: 40px
	}
	.service-details .main-content .part-txt h2 {
		font-size: 20px;
		line-height: 30px;
		margin-top: -7px;
		margin-bottom: 15px
	}
	.service-details .main-content .part-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 11px
	}
	.service-details .main-content .part-txt .boxes {
		padding-top: 11px;
		margin-bottom: 15px
	}
	.service-details .main-content .part-txt .boxes .single-box {
		margin-bottom: 25px
	}
	.service-details .main-content .part-txt .boxes .single-box .txt h3 {
		font-size: 18px;
		margin-bottom: 11px
	}
	.service-details .main-content .part-txt ul {
		margin-bottom: 32px
	}
	.service-details .main-content .part-txt ul li {
		font-size: 14px;
		line-height: 24px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex
	}
	.service-details .main-content .part-txt ul li span {
		font-size: 10px
	}
	.service-details .main-content .video {
		padding-top: 11px
	}
	.service-details .main-content .video .video-area {
		padding: 60px 0;
		margin-bottom: 24px
	}
	.service-details .main-content .video .video-area a {
		width: 80px;
		height: 80px;
		line-height: 95px
	}
	.service-details .main-content .video p {
		font-size: 14px;
		line-height: 24px
	}
	.service-details .sidebar .side-nav {
		padding: 0;
		margin-bottom: 40px
	}
	.service-details .sidebar .side-nav .nav {
		padding: 30px 20px;
		-webkit-box-orient: horizontal!important;
		-webkit-box-direction: normal!important;
		-ms-flex-direction: row!important;
		flex-direction: row!important;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between
	}
	.service-details .sidebar .side-nav .nav .nav-link {
		width: calc(100%/2 - 10px);
		height: 40px;
		line-height: 40px;
		padding: 0 20px;
		font-size: 16px;
		border-radius: 5px;
		margin-bottom: 10px
	}
	.service-details .sidebar .side-nav .nav .nav-link span {
		font-size: 20px
	}
	.service-details .sidebar .subscription,
	.service-details .sidebar .online-help,
	.service-details .sidebar .download-area {
		display: none
	}
	.team-inner-2 {
		padding-top: 60px
	}
	.team-inner-2 .single-box .part-txt {
		margin: -50px 10px 0
	}
	.team-inner-2 .single-box .part-txt .title h3 {
		font-size: 20px;
		margin-bottom: 11px
	}
	.team-inner-2 .single-box .part-txt .title p {
		font-size: 14px
	}
	.team-details {
		padding-top: 60px
	}
	.team-details .profile {
		width: 290px;
		margin: 0 auto 40px
	}
	.team-details .profile .part-txt .title h3 {
		font-size: 20px;
		margin-bottom: 11px
	}
	.team-details .profile .part-txt .title p {
		font-size: 14px
	}
	.team-details .biography h2 {
		font-size: 25px;
		margin-top: -2px;
		margin-bottom: 19px
	}
	.team-details .biography p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 13px
	}
	.team-details .biography ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
	.team-details .biography ul li {
		width: 100%;
		font-size: 14px;
		line-height: 30px
	}
	.team-details .biography ul li span {
		min-width: 80px
	}
	.team-details .qualification h3 {
		font-size: 20px;
		margin-bottom: 26px
	}
	.team-details .qualification .single-box {
		width: 320px;
		margin: 0 auto 30px
	}
	.team-details .qualification .single-box .arrow {
		width: 30px;
		height: auto
	}
	.team-details .qualification .single-box .txt {
		width: 290px
	}
	.team-details .qualification .single-box .txt h4 {
		font-size: 18px;
		margin-bottom: 11px
	}
	.team-details .qualification .single-box .txt h5 {
		font-size: 14px
	}
	.team-details .qualification .single-box .txt span {
		margin-bottom: 11px
	}
	.team-details .qualification .single-box .txt p {
		font-size: 14px;
		line-height: 24px
	}
	.team-details .expertise {
		padding-bottom: 10px
	}
	.team-details .expertise h2 {
		font-size: 20px;
		margin-bottom: 20px
	}
	.team-details .expertise p {
		font-size: 14px;
		line-height: 24px
	}
	.team-details .expertise .single-box {
		margin-bottom: 30px
	}
	.team-details .additional-txt h2 {
		font-size: 25px;
		line-height: 35px;
		margin-top: -7px
	}
	.team-details .additional-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 14px
	}
	.team-details .additional-txt ul li {
		font-size: 14px;
		line-height: 30px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex
	}
	.team-details .additional-txt ul li span {
		font-size: 10px
	}
	.testimonial-2 {
		padding: 60px 0
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-img {
		width: 90px;
		height: 90px
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt {
		width: 380px
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt .title h3 {
		font-size: 20px;
		margin-bottom: 10px
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt .title span {
		font-size: 14px
	}
	.testimonial-2 .testimonial-slider .owl-dots {
		padding-top: 40px
	}
	.testimonial-3 {
		padding: 60px 0
	}
	.testimonial-3 .testimonial-slider-2 .single-box {
		padding: 30px 25px
	}
	.testimonial-3 .testimonial-slider-2 .single-box .top .profile {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
	.testimonial-3 .testimonial-slider-2 .single-box .top .profile .part-img {
		margin-right: 0;
		margin-bottom: 25px
	}
	.testimonial-3 .testimonial-slider-2 .single-box .top .profile .txt h3 {
		font-size: 18px;
		margin-bottom: 6px
	}
	.testimonial-3 .testimonial-slider-2 .single-box .top .profile .txt p {
		font-size: 14px
	}
	.testimonial-3 .testimonial-slider-2 .single-box .top .quote span {
		font-size: 30px
	}
	.testimonial-3 .testimonial-slider-2 .single-box .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.testimonial-3 .testimonial-slider-2 .owl-dots {
		padding-top: 40px
	}
	.pricing.pricing-inner-2 {
		padding-top: 60px
	}
	.pricing-2 {
		padding-top: 60px;
		padding-bottom: 30px
	}
	.pricing-2 .single-box {
		padding: 30px 25px;
		margin-bottom: 30px
	}
	.pricing-2 .single-box .top .part-icon {
		width: 70px;
		height: 70px;
		padding: 15px
	}
	.pricing-2 .single-box .top .price p {
		font-size: 14px;
		margin-top: -15px;
		margin-right: 5px
	}
	.pricing-2 .single-box .top .price h3 {
		font-size: 30px
	}
	.pricing-2 .single-box .top .price h3 span {
		font-size: 14px
	}
	.pricing-2 .single-box .bottom h3 {
		font-size: 20px;
		margin-bottom: 17px
	}
	.pricing-2 .single-box .bottom ul li {
		font-size: 14px;
		line-height: 30px
	}
	.pricing-2 .single-box .bottom .part-btn {
		font-size: 14px
	}
	.pricing-3 {
		padding-top: 60px
	}
	.pricing-3 .boxes .single-box {
		margin-bottom: 30px;
		padding: 30px 25px
	}
	.pricing-3 .boxes .single-box .part-img {
		width: -webkit-max-content;
		width: -moz-max-content;
		width: max-content;
		margin-bottom: 30px
	}
	.pricing-3 .boxes .single-box .title {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin-bottom: 30px
	}
	.pricing-3 .boxes .single-box .title h4 {
		font-size: 20px;
		margin-bottom: 0
	}
	.pricing-3 .boxes .single-box .title .price p {
		font-size: 14px;
		margin-top: -5px;
		margin-right: 5px
	}
	.pricing-3 .boxes .single-box .title .price h3 {
		font-size: 30px;
		margin-top: -3px
	}
	.pricing-3 .boxes .single-box .title .price h3 span {
		font-size: 14px
	}
	.pricing-3 .boxes .single-box ul {
		margin-bottom: 18px
	}
	.pricing-3 .boxes .single-box ul li {
		font-size: 14px;
		margin-bottom: 16px
	}
	.pricing-3 .boxes .single-box .part-btn a {
		font-size: 14px
	}
	.pricing-3 .boxes .single-box .part-btn {
		padding-top: 9px;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start
	}
	.faq-2 {
		padding-bottom: 0;
		margin-bottom: -35px
	}
	.faq-2 .faq-inner-2 {
		padding-bottom: 25px
	}
	.faq .part-txt #accordion .part-img {
		width: 450px;
		margin: 0 auto 35px
	}
	.error {
		padding-top: 60px
	}
	.error .boxes {
		margin-bottom: 40px
	}
	.error .boxes .single-box {
		width: 100px;
		height: 100px;
		line-height: 100px;
		margin: 0 10px;
		font-size: 70px;
		border-radius: 5px
	}
	.error .part-txt h2 {
		font-size: 30px;
		line-height: 40px;
		margin-top: -8px;
		margin-bottom: 22px
	}
	.error .part-txt p {
		font-size: 18px;
		line-height: 28px;
		margin-bottom: 32px
	}
	.portfolio {
		padding-top: 60px
	}
	.portfolio .single-box .part-txt {
		height: 75px
	}
	.portfolio .single-box .part-txt a {
		font-size: 18px;
		line-height: 76px
	}
	.portfolio-details {
		padding-top: 60px
	}
	.portfolio-details .main-img {
		margin-bottom: 40px
	}
	.portfolio-details .main-img:after {
		border-width: 100px
	}
	.portfolio-details .project-information h3 {
		font-size: 25px;
		margin-top: -2px;
		margin-bottom: 25px
	}
	.portfolio-details .project-information ul li {
		font-size: 14px;
		line-height: 50px
	}
	.portfolio-details .project-information ul li span {
		font-size: 14px
	}
	.portfolio-details .project-information ul li a {
		font-size: 12px;
		margin: 0 5px
	}
	.portfolio-details .main-txt h2 {
		font-size: 25px;
		margin-top: -2px;
		margin-bottom: 19px
	}
	.portfolio-details .main-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 22px
	}
	.portfolio-details .main-txt .part-img {
		margin-bottom: -6px
	}
	.portfolio-details .main-txt .part-img .single-img {
		border-radius: 5px;
		margin-bottom: 30px
	}
	.portfolio-details .main-txt ul {
		width: 100%
	}
	.portfolio-details .main-txt ul li {
		width: 100%;
		font-size: 14px
	}
	.portfolio-details .main-txt ul li span {
		font-size: 14px
	}
	.process-2.process-inner {
		margin-bottom: -40px
	}
	.portfolio-details .process-inner .heading-txt {
		padding-bottom: 7px
	}
	.portfolio-details .process-inner .heading-txt h2 {
		font-size: 25px;
		line-height: 35px;
		margin-top: -7px;
		margin-bottom: 14px
	}
	.portfolio-details .process-inner .heading-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.blog-inner {
		margin-bottom: 0
	}
	.blog-inner .main-content {
		margin-bottom: 60px
	}
	.blog-inner .main-content .pagination {
		padding-top: 10px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
	.blog-inner .main-content .pagination ul li {
		padding: 0 5px
	}
	.blog-inner .main-content .pagination ul li a {
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 12px
	}
	.blog-inner .next {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2
	}
	.blog-inner .sidebar {
		max-width: 320px;
		margin: 0 auto
	}
	.blog-inner .sidebar .profile {
		padding: 30px 25px;
		margin-bottom: 30px
	}
	.blog-inner .sidebar .profile .part-img {
		width: 90px;
		height: 90px;
		margin-bottom: 25px
	}
	.blog-inner .sidebar .profile .part-txt h3 {
		font-size: 20px;
		margin-bottom: 15px
	}
	.blog-inner .sidebar .profile .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.blog-inner .sidebar .profile .part-txt .social {
		padding-top: 5px
	}
	.blog-inner .sidebar .profile .part-txt .social a {
		font-size: 12px
	}
	.blog-inner .sidebar .search-box {
		padding: 30px 25px
	}
	.blog-inner .sidebar .search-box h3 {
		font-size: 20px;
		margin-bottom: 16px
	}
	.blog-inner .sidebar .search-box form button {
		font-size: 20px
	}
	.blog-inner .sidebar .blog-category {
		padding: 30px 25px;
		margin-bottom: 30px
	}
	.blog-inner .sidebar .blog-category h3 {
		height: 40px;
		line-height: 40px;
		font-size: 20px;
		border-radius: 5px
	}
	.blog-inner .sidebar .blog-category ul li a {
		font-size: 14px;
		padding-top: 14px
	}
	.blog-inner .sidebar .recent-blog {
		padding: 30px 25px;
		margin-bottom: 30px
	}
	.blog-inner .sidebar .recent-blog h3 {
		height: 40px;
		line-height: 40px;
		font-size: 20px;
		border-radius: 5px
	}
	.blog-inner .sidebar .recent-blog ul li .img {
		width: 60px;
		border-radius: 5px;
		margin-right: 10px
	}
	.blog-inner .sidebar .recent-blog ul li .txt {
		width: 200px
	}
	.blog-inner .sidebar .recent-blog ul li .txt a {
		font-size: 14px;
		font-weight: 600;
		line-height: 20px;
		margin-top: -4px;
		margin-bottom: 8px
	}
	.blog-inner .sidebar .recent-blog ul li .txt .info .icon {
		font-size: 9px
	}
	.blog-inner .sidebar .tags {
		padding: 30px 25px
	}
	.blog-inner .sidebar .tags h3 {
		height: 40px;
		line-height: 40px;
		font-size: 20px;
		border-radius: 5px
	}
	.blog-inner .sidebar .tags .all-tag {
		margin: -5px -3px
	}
	.blog-inner .sidebar .tags .all-tag a {
		font-size: 14px;
		margin: 5px 3px
	}
	.blog-inner {
		padding-top: 60px
	}
	.blog-inner .blog-details {
		padding-bottom: 60px
	}
	.blog-inner .blog-details .title {
		margin-bottom: 35px
	}
	.blog-inner .blog-details .title .tag {
		border-width: 3px;
		font-size: 14px;
		height: 45px;
		margin-bottom: 25px
	}
	.blog-inner .blog-details .title h2 {
		font-size: 20px;
		line-height: 30px;
		margin-top: -2px;
		margin-bottom: 16px
	}
	.blog-inner .blog-details .title ul {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin-bottom: -3px
	}
	.blog-inner .blog-details .title ul li {
		margin-right: 15px
	}
	.blog-inner .blog-details .main-img {
		border-radius: 5px;
		margin-bottom: 35px
	}
	.blog-inner .blog-details .main-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px
	}
	.blog-inner .blog-details .main-txt .quoted {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 30px 25px
	}
	.blog-inner .blog-details .main-txt .quoted .img {
		width: 100px;
		margin-right: 0;
		margin-bottom: 25px
	}
	.blog-inner .blog-details .main-txt .quoted .txt {
		width: 100%
	}
	.blog-inner .blog-details .main-txt .quoted .txt span {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px;
		margin-bottom: 15px
	}
	.blog-inner .blog-details .main-txt .quoted .txt h4 {
		font-size: 18px;
		margin-bottom: 11px
	}
	.blog-inner .blog-details .main-txt .quoted .txt h5 {
		font-size: 14px
	}
	.blog-inner .blog-details .reasons-for-choose {
		padding-top: 8px
	}
	.blog-inner .blog-details .reasons-for-choose h2 {
		font-size: 20px;
		margin-bottom: 21px
	}
	.blog-inner .blog-details .reasons-for-choose ul {
		margin-bottom: 7px
	}
	.blog-inner .blog-details .reasons-for-choose ul li {
		width: 100%;
		font-size: 14px
	}
	.blog-inner .blog-details .reasons-for-choose ul li span {
		font-size: 14px
	}
	.blog-inner .blog-details .reasons-for-choose p {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px
	}
	.blog-inner .blog-details .reasons-for-choose .part-img {
		margin-bottom: 0
	}
	.blog-inner .blog-details .reasons-for-choose .part-img .single-img {
		margin-bottom: 30px
	}
	.blog-inner .blog-details .reasons-for-choose .part-img .single-img img {
		width: 100%
	}
	.blog-inner .blog-details .other-option {
		padding-top: 8px;
		padding-bottom: 40px;
		margin-bottom: 40px
	}
	.blog-inner .blog-details .other-option .tags {
		margin-bottom: 16px
	}
	.blog-inner .blog-details .other-option h3 {
		font-size: 18px
	}
	.blog-inner .blog-details .other-option .tags a {
		font-size: 14px;
		font-weight: 600;
		margin: 0 10px
	}
	.blog-inner .blog-details .other-option .share h3 {
		width: auto;
		margin-bottom: 0
	}
	.blog-inner .blog-details .other-option .share a {
		margin: 0 5px
	}
	.blog-inner .blog-details .admin-profile {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 30px 25px
	}
	.blog-inner .blog-details .admin-profile .part-img {
		width: 60px;
		height: 60px;
		margin-right: 0;
		margin-bottom: 25px
	}
	.blog-inner .blog-details .admin-profile .part-txt {
		width: 100%
	}
	.blog-inner .blog-details .admin-profile .part-txt h3 {
		margin-bottom: 9px
	}
	.blog-inner .blog-details .admin-profile .part-txt .admin-link {
		font-size: 13px;
		margin-bottom: 21px
	}
	.blog-inner .blog-details .admin-profile .part-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 17px
	}
	.blog-inner .blog-details .blog-nav {
		padding-top: 40px;
		padding-bottom: 32px
	}
	.blog-inner .blog-details .blog-nav .single-nav .img {
		width: 80px;
		height: 80px;
		border-radius: 5px
	}
	.blog-inner .blog-details .blog-nav .single-nav .txt {
		width: 150px
	}
	.blog-inner .blog-details .blog-nav .single-nav .txt a {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px
	}
	.blog-inner .blog-details .blog-nav .single-nav .txt a span {
		margin-top: 11px
	}
	.blog-inner .blog-details .blog-comments .comments {
		padding: 40px 0
	}
	.blog-inner .blog-details .blog-comments h3 {
		font-size: 20px;
		margin-bottom: 26px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment.replied {
		margin-left: 30px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment .part-img {
		width: 70px;
		height: 70px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt {
		width: 410px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment.replied .part-txt {
		width: 380px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt .top {
		margin-bottom: 15px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt .top h4 {
		font-size: 16px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt .top h4 span {
		display: block;
		font-size: 14px;
		margin-left: 0;
		margin-top: 10px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.blog-inner .blog-details .blog-comments .post-comment form input {
		height: 50px;
		font-size: 14px;
		margin-bottom: 25px
	}
	.blog-inner .blog-details .blog-comments .post-comment form textarea {
		height: 120px;
		font-size: 14px;
		margin-bottom: 25px
	}
	.blog-inner .blog-details .blog-comments .post-comment form .def-btn {
		height: 50px;
		line-height: 52px
	}
	.contact {
		padding: 60px 0
	}
	.contact .boxes {
		padding-bottom: 30px
	}
	.contact .boxes .single-box {
		padding: 30px;
		margin-bottom: 30px
	}
	.contact .boxes .single-box .part-icon {
		width: 30px;
		height: 30px;
		line-height: 35px;
		font-size: 12px;
		margin-right: 15px
	}
	.contact .boxes .single-box .part-txt {
		width: 180px
	}
	.contact .boxes .single-box .part-txt h3 {
		font-size: 20px;
		margin-bottom: 12px
	}
	.contact .boxes .single-box .part-txt span {
		font-size: 14px;
		line-height: 30px
	}
	.contact .form {
		padding: 60px 20px
	}
	.contact .form input {
		height: 45px;
		margin-bottom: 25px
	}
	.contact .form textarea {
		height: 120px;
		margin-bottom: 30px
	}
	.map iframe {
		height: 250px
	}
}

@media only screen and (min-width:480px) and (max-width:575px) {
	.heading {
		margin-bottom: 40px
	}
	.heading h5 {
		font-size: 14px;
		margin-top: -1px;
		margin-bottom: 15px
	}
	.heading h2 {
		font-size: 25px;
		line-height: 35px;
		margin-bottom: -10px
	}
	.def-btn {
		height: 45px;
		line-height: 45px;
		font-size: 16px;
		padding: 0 25px
	}
	.header .top-header {
		padding-top: 15px
	}
	.header .top-header .top-left ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
	.header .top-header .top-left ul li {
		margin-right: 0;
		margin-bottom: 10px
	}
	.header .top-header .top-right {
		padding-top: 5px
	}
	.header .bottom-header .next {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4
	}
	.header .bottom-header .bottom-right a {
		display: none
	}
	.header .bottom-header:before {
		top: 0;
		left: -10%;
		width: 50%;
		height: 100%;
		-webkit-transform: skew(-35deg);
		transform: skew(-35deg);
		border-radius: 0 0 15px 0
	}
	.header .bottom-header:after {
		top: 0;
		left: auto;
		right: -10%;
		width: 50%;
		height: 100%;
		-webkit-transform: skew(35deg);
		transform: skew(35deg);
		border-radius: 0 0 0 15px
	}
	.header .bottom-header .bg:before,
	.header .bottom-header .bg:after,
	.header .bottom-header .bg .bg-2:before,
	.header .bottom-header .bg .bg-2:after,
	.header .bottom-header .bg .bg-2 .bg-3:before,
	.header .bottom-header .bg .bg-2 .bg-3:after {
		display: none
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar-toggler {
		padding: 0 5px;
		color: #2a9d8f;
		font-size: 20px;
		height: 60px;
		line-height: 68px
	}
	.header .bottom-header .bg .bg-2 .bg-3 .logo {
		padding-top: 0;
		width: 100%;
		height: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
	.header .bottom-header .bg .bg-2 .bg-3 .logo img {
		width: 40px
	}
	.header .bottom-header .bg .bg-2 .bg-3 .bottom-right {
		width: 100%;
		height: 100%;
		padding: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-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: end;
		-ms-flex-align: end;
		align-items: flex-end
	}
	.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form {
		margin: 0;
		padding: 0;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		position: relative
	}
	.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form input {
		position: absolute;
		top: 100%;
		right: 0;
		width: 290px;
		background: #fff;
		border: 0;
		-webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .15);
		box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .15);
		padding: 0 20px;
		font-size: 14px;
		color: #0d0925;
		height: 0
	}
	.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form.active input {
		height: 45px
	}
	.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form button {
		height: 60px;
		line-height: 68px;
		font-size: 20px;
		padding: 0 5px
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		background: #f6f6f6;
		-webkit-box-shadow: 0 10px 20px 0 rgba(51, 51, 51, .1);
		box-shadow: 0 10px 20px 0 rgba(51, 51, 51, .1);
		padding: 0
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav {
		padding: 15px 0;
		max-height: 350px;
		overflow: auto
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item {
		padding: 10px 15px
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item .nav-link {
		color: #0d0925;
		font-size: 14px;
		font-weight: 600;
		padding: 4px 0 2px
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item .nav-link:after {
		display: none
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
		display: none;
		margin-top: 5px;
		width: 290px;
		opacity: 1;
		visibility: visible
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show {
		display: block
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item,
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu .dropdown-item {
		font-size: 14px;
		padding: 14px 20px 12px
	}
	.header-2 {
		background: #fff
	}
	.header-2 .top-header {
		background: #2a9d8f;
		padding: 20px 0
	}
	.header-2 .top-header .bg .top-left {
		margin-bottom: 2px
	}
	.header-2 .top-header .bg .top-left ul {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
	.header-2 .top-header .bg .top-left ul li {
		padding: 0 15px 15px;
		border: 0;
		margin-top: -1px
	}
	.header-2 .top-header .bg .top-right {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
	.header-2 .top-header .bg .top-right .language {
		padding-right: 15px
	}
	.header-2 .top-header .bg .top-right .language .select-lang .dropdown-toggle {
		font-size: 14px;
		font-weight: 600
	}
	.header-2 .top-header .bg .top-right .try-btn {
		padding: 0;
		padding-left: 15px
	}
	.header-2 .top-header .bg .top-right .try-btn a {
		height: 30px;
		line-height: 30px;
		font-size: 14px;
		padding: 0 15px
	}
	.header-2 .bottom-header .next {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4
	}
	.header-2 .bottom-header.fixed-header {
		background: #fff
	}
	.header-2 .bottom-header .bg .navbar-toggler {
		text-align: center;
		width: 40px;
		height: 40px;
		line-height: 45px;
		background: #0d0925;
		color: #fff;
		font-size: 18px;
		padding: 0
	}
	.header-2 .bottom-header .bg .logo {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
	.header-2 .bottom-header .bg .logo img {
		width: 40px
	}
	.header-2 .bottom-header .bg .bottom-right {
		padding: 10px 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end
	}
	.header-2 .bottom-header .bg .bottom-right form {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		position: relative;
		padding: 0
	}
	.header-2 .bottom-header .bg .bottom-right form input {
		position: absolute;
		top: 100%;
		right: 0;
		width: 290px;
		background: #fff;
		border: 0;
		-webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .15);
		box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .15);
		padding: 0 20px;
		font-size: 14px;
		color: #0d0925;
		height: 0
	}
	.header-2 .bottom-header .bg .bottom-right form input::-webkit-input-placeholder {
		color: #4b4b46
	}
	.header-2 .bottom-header .bg .bottom-right form input::-moz-placeholder {
		color: #4b4b46
	}
	.header-2 .bottom-header .bg .bottom-right form input:-ms-input-placeholder {
		color: #4b4b46
	}
	.header-2 .bottom-header .bg .bottom-right form input::-ms-input-placeholder {
		color: #4b4b46
	}
	.header-2 .bottom-header .bg .bottom-right form input::placeholder {
		color: #4b4b46
	}
	.header-2 .bottom-header .bg .bottom-right form.active input {
		height: 45px
	}
	.header-2 .bottom-header .bg .bottom-right form button {
		text-align: center;
		width: 40px;
		height: 40px;
		line-height: 45px;
		padding: 0;
		background: #0d0925;
		color: #fff;
		font-size: 18px;
		border-radius: 5px
	}
	.header-2 .bottom-header .bg .navbar {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		background: #f6f6f6;
		-webkit-box-shadow: 0 10px 20px 0 rgba(51, 51, 51, .1);
		box-shadow: 0 10px 20px 0 rgba(51, 51, 51, .1);
		padding: 0
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav {
		padding: 15px 0;
		max-height: 350px;
		overflow: auto
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item {
		padding: 10px 15px
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item .nav-link {
		color: #0d0925;
		font-size: 14px;
		font-weight: 600;
		padding: 4px 0 2px
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item .nav-link:after {
		display: none
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
		display: none;
		margin-top: 5px;
		width: 290px;
		opacity: 1;
		visibility: visible
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show {
		display: block
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item,
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu .dropdown-item {
		font-size: 14px;
		padding: 14px 20px 12px
	}
	.banner:after {
		background: url(../images/banner-img.png) center left 40% no-repeat;
		background-size: cover
	}
	.banner .banner-txt {
		padding: 70px 0
	}
	.banner .banner-txt h4 {
		font-size: 16px;
		margin-bottom: 20px
	}
	.banner .banner-txt h1 {
		font-size: 25px;
		line-height: 35px;
		margin-bottom: 14px
	}
	.banner .banner-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 12px
	}
	.banner .banner-txt .btn-box {
		padding-top: 10px
	}
	.banner .banner-txt .btn-box a {
		height: 45px;
		line-height: 45px;
		font-size: 16px;
		padding: 0 25px
	}
	.feature {
		padding-top: 60px;
		padding-bottom: 0
	}
	.feature .single-box {
		width: 290px;
		padding: 30px 25px;
		margin: 3px auto 33px
	}
	.feature .single-box .part-txt h3 {
		font-size: 20px;
		margin-top: -1px;
		margin-bottom: 20px
	}
	.feature .single-box .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.banner-2 {
		background: url(../images/banner-bg.jpg) center right 50% no-repeat;
		background-size: cover
	}
	.banner-2 .banner-txt {
		padding: 70px 0
	}
	.banner-2 .banner-txt h4 {
		font-size: 16px;
		margin-bottom: 20px;
		letter-spacing: 1px
	}
	.banner-2 .banner-txt h1 {
		font-size: 25px;
		line-height: 35px;
		margin-bottom: 14px
	}
	.banner-2 .banner-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 12px
	}
	.banner-2 .banner-txt .btn-box {
		padding-top: 10px
	}
	.banner-2 .banner-txt .btn-box a {
		height: 45px;
		line-height: 45px;
		font-size: 16px;
		padding: 0 25px
	}
	.banner-2 .banner-txt .btn-box a.left-btn {
		margin-right: 10px
	}
	.banner-2 .part-img {
		display: none
	}
	.partner {
		padding-top: 60px;
		padding-bottom: 30px
	}
	.partner .bg {
		padding: 30px
	}
	.partner .bg .brand-slider .single-img {
		height: 70px
	}
	.partner .bg .brand-slider .owl-nav {
		left: -45px;
		right: -45px
	}
	.partner .bg .brand-slider .owl-nav button {
		width: 45px;
		height: 45px;
		line-height: 45px;
		font-size: 20px;
		border-width: 2px
	}
	.partner.partner-2 {
		padding: 60px 0
	}
	.partner.partner-2:after {
		background: url(../images/partner-overlay.png) center center no-repeat;
		background-size: cover
	}
	.partner.partner-2 .heading h2 {
		margin-bottom: 24px
	}
	.partner.partner-2 .heading p {
		font-size: 14px;
		line-height: 24px
	}
	.partner.partner-2 .bg .brand-slider .single-img {
		height: 85px;
		padding: 15px 0
	}
	.about {
		padding-top: 30px;
		padding-bottom: 60px
	}
	.about .image-box {
		padding-right: 0;
		margin-bottom: 30px
	}
	.about .image-box .fun-fact-inner {
		padding: 20px 15px;
		margin: -70px 35px 0
	}
	.about .image-box .fun-fact-inner .single-box {
		padding: 0 5px
	}
	.about .image-box .fun-fact-inner .single-box h4 {
		font-size: 20px;
		margin-top: -2px;
		margin-bottom: 5px
	}
	.about .image-box .fun-fact-inner .single-box p {
		font-size: 13px;
		line-height: 20px;
		margin-bottom: -6px
	}
	.about .image-box .fun-fact-inner .single-box p span {
		font-size: 10px;
		margin-bottom: -2px
	}
	.about .part-txt .heading {
		margin-bottom: 34px
	}
	.about .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.about .part-txt .boxes {
		margin-top: 31px;
		margin-bottom: 1px
	}
	.about .part-txt .boxes .single-box {
		margin-bottom: 21px
	}
	.about .part-txt .boxes .single-box .txt h3 {
		font-size: 18px;
		margin-bottom: 11px
	}
	.about .part-txt .boxes-2 {
		padding: 40px 25px 25px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start
	}
	.about .part-txt .boxes-2 .single-box {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		padding: 0;
		margin-bottom: 21px
	}
	.about .part-txt .boxes-2 .single-box:last-child {
		margin-bottom: -7px
	}
	.about .part-txt .boxes-2 .single-box .img {
		margin-right: 0;
		margin-top: -2px;
		margin-bottom: 20px
	}
	.about .part-txt .boxes-2 .single-box .txt h3 {
		font-size: 16px;
		margin-bottom: 5px
	}
	.about .part-txt .boxes-2 .single-box .txt span {
		font-size: 14px
	}
	.about.about-2 .part-img {
		width: 450px;
		margin: 0 auto 30px
	}
	.about.about-2 .part-img img {
		max-width: 100%
	}
	.about.about-2 .part-txt .def-btn {
		margin-top: 7px
	}
	.service {
		padding: 60px 0
	}
	.service .bg {
		max-width: 320px;
		margin: auto
	}
	.service .bg .nav {
		padding: 30px
	}
	.service .bg .nav .nav-link {
		height: 40px;
		line-height: 40px;
		padding: 0 20px;
		font-size: 16px;
		border-radius: 5px;
		margin-bottom: 10px
	}
	.service .bg .nav .nav-link span {
		font-size: 20px
	}
	.service .bg .part-img {
		border-top: 1px solid #362e65;
		border-bottom: 1px solid #362e65;
		border-left: 0;
		border-right: 0
	}
	.service .bg .part-txt {
		padding: 30px
	}
	.service .bg .part-txt h3 {
		font-size: 20px;
		margin-top: -2px;
		margin-bottom: 20px
	}
	.service .bg .part-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 11px
	}
	.service .bg .part-txt .def-btn {
		margin-top: 11px
	}
	.process {
		padding-top: 60px;
		padding-bottom: 0
	}
	.process .single-box {
		width: 290px;
		padding: 30px;
		margin: 0 auto 30px
	}
	.process .single-box .part-txt h3 {
		font-size: 20px;
		margin-top: -2px;
		margin-bottom: 15px
	}
	.process .single-box .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.pricing {
		padding: 30px 0
	}
	.pricing .controls {
		margin-bottom: 30px
	}
	.pricing .controls nav {
		padding: 0 20px
	}
	.pricing .controls nav .nav {
		width: 100px
	}
	.pricing .controls span {
		font-size: 14px
	}
	.pricing .controls nav .nav .nav-item {
		width: 27px;
		height: 27px
	}
	.pricing .tab-pane .single-box {
		width: 450px;
		padding: 25px 20px;
		margin: 0 auto 50px
	}
	.pricing .tab-pane .single-box .part-img {
		margin-right: 20px
	}
	.pricing .tab-pane .single-box .part-txt h3 {
		font-size: 18px
	}
	.pricing .tab-pane .single-box .part-txt ul {
		margin-bottom: 7px
	}
	.pricing .tab-pane .single-box .part-txt ul li {
		font-size: 14px;
		line-height: 25px
	}
	.pricing .tab-pane .single-box .part-txt ul li span {
		font-size: 10px;
		margin-right: 10px
	}
	.pricing .tab-pane .single-box .part-btn {
		right: 25px
	}
	.cta {
		padding: 60px 0
	}
	.cta:after {
		top: 0;
		bottom: 0
	}
	.cta .part-txt {
		margin-bottom: 30px
	}
	.cta .part-txt h2 {
		font-size: 20px;
		line-height: 30px;
		margin-top: -7px;
		margin-bottom: 15px
	}
	.cta .part-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 22px
	}
	.cta .part-img {
		margin: 0 -15px
	}
	.cta .part-img img {
		max-width: 100%
	}
	.cta-2 {
		padding-top: 175px;
		padding-bottom: 60px
	}
	.cta-2 .part-txt h2 {
		font-size: 25px;
		line-height: 35px;
		margin-top: -7px;
		margin-bottom: 14px
	}
	.cta-2 .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.cta-2 .part-txt .def-btn {
		margin-top: 5px
	}
	.testimonial {
		padding: 60px 0
	}
	.testimonial .row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse
	}
	.testimonial .bg {
		padding: 0;
		background: 0 0
	}
	.testimonial .bg .comment-area .comment-slider .single-comment p {
		font-size: 14px;
		line-height: 24px
	}
	.testimonial .bg .comment-area .comment-slider .single-comment .client {
		padding-top: 105px
	}
	.testimonial .bg .comment-area .comment-slider .single-comment .client h3 {
		font-size: 20px
	}
	.testimonial .bg .comment-area .comment-slider .single-comment .client h5 {
		font-size: 14px
	}
	.testimonial .bg .comment-area .client-slider {
		padding: 0 70px;
		margin-top: -48px
	}
	.testimonial .bg .comment-area .client-slider .slick-track {
		height: 65px
	}
	.testimonial .bg .comment-area .client-slider .slick-track .single-box {
		width: 55px!important
	}
	.testimonial .bg .comment-area .client-slider .slick-track .single-box.slick-active {
		width: 65px!important
	}
	.testimonial .bg .comment-area .client-slider .slick-track .single-box.slick-center {
		width: 75px!important
	}
	.testimonial .bg .comment-area .client-slider .slick-track .single-box .img {
		margin: 0 5px
	}
	.testimonial .bg .part-txt {
		background: url(../images/testimonial-bg-3.jpg) center center no-repeat;
		background-size: cover;
		padding: 30px 20px;
		border-radius: 10px;
		margin-top: 13px
	}
	.testimonial .bg .part-txt .heading {
		text-align: center!important;
		margin-bottom: 30px
	}
	.testimonial .bg .part-txt .controls {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
	.testimonial .bg .part-txt .controls button {
		width: 40px;
		height: 40px;
		line-height: 44px;
		font-size: 14px
	}
	.testimonial .bg .part-txt .controls button:first-child {
		margin-right: 15px
	}
	.blog {
		padding: 60px 0
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box {
		padding: 30px 20px
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-img {
		width: 130px
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt {
		width: 260px
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt .title {
		font-size: 18px;
		line-height: 26px;
		margin-bottom: 12px
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt .blog-info {
		padding-top: 7px;
		margin-bottom: 26px
	}
	.blog .blog-slider .owl-nav {
		display: none
	}
	.blog-2 {
		padding-top: 60px;
		margin-bottom: -30px
	}
	.blog-2 .single-blog {
		width: 320px;
		margin: 0 auto 30px
	}
	.blog-2 .single-blog .part-txt {
		padding: 0 25px 25px
	}
	.blog-2 .single-blog .part-txt .blog-info ul {
		padding: 0 10px;
		margin-bottom: 25px
	}
	.blog-2 .single-blog .part-txt h3 {
		font-size: 18px;
		line-height: 28px;
		margin-bottom: 10px
	}
	.blog-2 .single-blog .part-txt a {
		font-size: 14px
	}
	.call-back {
		padding-top: 60px
	}
	.call-back .bg {
		padding: 30px 25px
	}
	.call-back .bg .part-txt {
		text-align: center;
		margin-bottom: 30px
	}
	.call-back .bg .part-txt h5 {
		font-size: 16px;
		font-weight: 400;
		margin-bottom: 21px
	}
	.call-back .bg .part-txt h2 {
		font-size: 22px;
		line-height: 30px;
		margin-bottom: -8px
	}
	.call-back .bg .form form {
		border-radius: 5px
	}
	.call-back .bg .form form input {
		width: 225px;
		height: 45px;
		font-size: 14px;
		padding: 0 5px
	}
	.call-back .bg .form form button {
		height: 45px;
		line-height: 46px;
		font-size: 14px;
		border-radius: 5px
	}
	.footer .main-footer {
		padding: 60px 0
	}
	.footer .main-footer h3 {
		font-size: 18px;
		padding-bottom: 9px;
		margin-bottom: 20px
	}
	.footer .main-footer .about-txt {
		margin-bottom: 35px
	}
	.footer .main-footer .about-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px;
		margin-bottom: 11px
	}
	.footer .main-footer .link {
		margin-bottom: 35px
	}
	.footer .main-footer .link ul {
		margin-bottom: -8px
	}
	.footer .main-footer .link ul li a {
		font-size: 14px;
		line-height: 25px
	}
	.footer .main-footer .newsletter p {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px;
		margin-bottom: 17px
	}
	.footer .main-footer .newsletter form {
		width: 300px;
		margin-bottom: 25px
	}
	.footer .main-footer .newsletter form button {
		height: 45px;
		line-height: 53px;
		font-size: 20px
	}
	.footer .copyright {
		padding-bottom: 25px
	}
	.footer .copyright p {
		text-align: center;
		font-size: 14px;
		padding: 24px 0 17px
	}
	.footer .copyright .link {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
	.footer .copyright .link a {
		font-size: 12px
	}
	.faq {
		padding-top: 60px;
		padding-bottom: 25px
	}
	.faq .part-txt #accordion .card:last-child {
		margin-bottom: 0
	}
	.faq .part-txt #accordion .card .card-header h5 button {
		height: 60px;
		font-size: 16px;
		line-height: 100%;
		padding: 1px 20px 0;
		text-align: left
	}
	.faq .part-txt #accordion .card .card-header h5 button span {
		font-size: 14px
	}
	.faq .part-txt #accordion .card .card-body {
		padding: 0 20px 35px
	}
	.faq .part-txt #accordion .card .card-body p {
		font-size: 14px;
		line-height: 24px
	}
	.project {
		padding: 60px 0
	}
	.project:after {
		background: url(../images/project-overlay.png) center center no-repeat;
		background-size: cover
	}
	.project .all-projects .project-slider {
		width: 430px;
		margin: 0 auto
	}
	.project .all-projects .project-slider .owl-stage-outer .single-box .part-txt .title {
		margin: 0 10px 20px
	}
	.project .all-projects .project-slider .owl-stage-outer .single-box .part-txt a {
		font-size: 25px;
		margin-bottom: 55px
	}
	.project .all-projects .project-slider .owl-stage-outer .single-box .part-txt .title h3 {
		font-size: 16px
	}
	.team {
		padding-top: 60px;
		padding-bottom: 30px
	}
	.team .single-box {
		width: 270px;
		margin: 0 auto 30px
	}
	.fun-fact .bg {
		width: 400px;
		margin: -5px auto -115px;
		padding: 60px 25px 30px
	}
	.fun-fact .bg .single-box {
		margin-bottom: 30px
	}
	.fun-fact .bg .single-box .part-icon {
		margin-bottom: 9px
	}
	.fun-fact .bg .single-box .part-txt h2 {
		font-size: 25px;
		margin-bottom: 11px
	}
	.fun-fact .bg .single-box .part-txt p {
		font-size: 14px
	}
	.breadcrumb .part-txt {
		padding: 60px 0
	}
	.breadcrumb .part-txt h1 {
		font-size: 25px;
		margin-top: -2px;
		margin-bottom: 18px
	}
	.breadcrumb .part-txt ul {
		margin-bottom: -3px
	}
	.breadcrumb .part-txt ul li {
		font-size: 16px
	}
	.about.about-inner {
		padding-top: 60px
	}
	.process-2 {
		padding-top: 60px;
		padding-bottom: 20px
	}
	.process-2 .no-gutters .single-box {
		width: 290px;
		margin: 0 auto 40px
	}
	.process-2 .no-gutters .single-box .part-icon {
		width: 70px;
		height: 70px;
		margin-bottom: 25px
	}
	.process-2 .no-gutters .single-box .part-icon .icon {
		font-size: 30px;
		line-height: 82px
	}
	.process-2 .no-gutters .single-box .part-txt h3 {
		font-size: 20px;
		margin-top: -2px;
		margin-bottom: 15px
	}
	.process-2 .no-gutters .single-box .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.process-2 .no-gutters .single-box .arrow {
		display: none
	}
	.choosing-reason {
		padding-top: 60px
	}
	.choosing-reason .part-txt .heading {
		margin-bottom: 34px
	}
	.choosing-reason .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.choosing-reason .part-txt .boxes {
		padding-top: 22px;
		padding-bottom: 10px
	}
	.choosing-reason .part-txt .boxes .single-box {
		margin-bottom: 30px
	}
	.choosing-reason .part-txt .boxes .single-box .img {
		width: 80px;
		height: 80px
	}
	.choosing-reason .part-txt .boxes .single-box .img span {
		right: -5px;
		bottom: -5px
	}
	.choosing-reason .part-txt .boxes .single-box .txt {
		width: 350px
	}
	.choosing-reason .part-txt .boxes .single-box .txt h3 {
		font-size: 18px;
		margin-bottom: 16px
	}
	.choosing-reason .part-img .video a {
		width: 80px;
		height: 80px;
		line-height: 95px
	}
	.partner.partner-inner {
		padding-bottom: 60px
	}
	.faq.faq-inner {
		margin-bottom: -35px
	}
	.service-2 {
		padding: 60px 0
	}
	.service-2 .part-txt {
		margin-bottom: 40px
	}
	.service-2 .part-txt .heading {
		margin-bottom: 34px
	}
	.service-2 .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.service-2 .part-txt .boxes {
		padding-top: 17px
	}
	.service-2 .part-txt .boxes .single-box {
		width: 450px;
		margin: 0 auto 30px
	}
	.service-2 .part-txt .boxes .single-box .txt {
		width: 350px
	}
	.service-2 .part-txt .boxes .single-box .txt h3 {
		font-size: 18px;
		line-height: 28px;
		margin-top: -7px;
		margin-bottom: 11px
	}
	.service-2 .part-img {
		width: 290px;
		margin: 0 auto
	}
	.feature-2 {
		padding-top: 60px;
		padding-bottom: 30px
	}
	.feature-2 .part-img {
		width: 290px;
		margin: 0 auto 40px
	}
	.feature-2 .part-txt .heading {
		margin-bottom: 34px
	}
	.feature-2 .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.feature-2 .part-txt .boxes {
		padding-top: 17px
	}
	.feature-2 .part-txt .boxes .single-box {
		width: 450px;
		margin: 0 auto 30px
	}
	.feature-2 .part-txt .boxes .single-box .txt {
		width: 350px
	}
	.feature-2 .part-txt .boxes .single-box .txt h3 {
		font-size: 18px;
		line-height: 28px;
		margin-top: -7px;
		margin-bottom: 11px
	}
	.pricing.pricing-inner {
		margin-bottom: -30px
	}
	.service-details {
		padding-top: 60px
	}
	.service-details .next {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2
	}
	.service-details .main-content .part-img {
		border-radius: 5px;
		margin-bottom: 40px
	}
	.service-details .main-content .part-txt h2 {
		font-size: 20px;
		line-height: 30px;
		margin-top: -7px;
		margin-bottom: 15px
	}
	.service-details .main-content .part-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 11px
	}
	.service-details .main-content .part-txt .boxes {
		padding-top: 11px;
		margin-bottom: 15px
	}
	.service-details .main-content .part-txt .boxes .single-box {
		margin-bottom: 25px
	}
	.service-details .main-content .part-txt .boxes .single-box .txt h3 {
		font-size: 18px;
		margin-bottom: 11px
	}
	.service-details .main-content .part-txt ul {
		margin-bottom: 32px
	}
	.service-details .main-content .part-txt ul li {
		font-size: 14px;
		line-height: 24px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex
	}
	.service-details .main-content .part-txt ul li span {
		font-size: 10px
	}
	.service-details .main-content .video {
		padding-top: 11px
	}
	.service-details .main-content .video .video-area {
		padding: 60px 0;
		margin-bottom: 24px
	}
	.service-details .main-content .video .video-area a {
		width: 80px;
		height: 80px;
		line-height: 95px
	}
	.service-details .main-content .video p {
		font-size: 14px;
		line-height: 24px
	}
	.service-details .sidebar .side-nav {
		width: 320px;
		padding: 25px;
		margin: 0 auto 40px
	}
	.service-details .sidebar .side-nav .nav .nav-link {
		height: 40px;
		line-height: 40px;
		padding: 0 20px;
		font-size: 16px;
		border-radius: 5px;
		margin-bottom: 10px
	}
	.service-details .sidebar .subscription,
	.service-details .sidebar .online-help,
	.service-details .sidebar .download-area {
		display: none
	}
	.team-inner-2 {
		padding-top: 60px
	}
	.team-inner-2 .single-box {
		width: 290px;
		margin: 0 auto 30px
	}
	.team-inner-2 .single-box .part-txt {
		margin: -50px 25px 0
	}
	.team-inner-2 .single-box .part-txt .title h3 {
		font-size: 20px;
		margin-bottom: 11px
	}
	.team-inner-2 .single-box .part-txt .title p {
		font-size: 14px
	}
	.team-details {
		padding-top: 60px
	}
	.team-details .profile {
		width: 290px;
		margin: 0 auto 40px
	}
	.team-details .profile .part-txt .title h3 {
		font-size: 20px;
		margin-bottom: 11px
	}
	.team-details .profile .part-txt .title p {
		font-size: 14px
	}
	.team-details .biography h2 {
		font-size: 25px;
		margin-top: -2px;
		margin-bottom: 19px
	}
	.team-details .biography p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 13px
	}
	.team-details .biography ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
	.team-details .biography ul li {
		width: 100%;
		font-size: 14px;
		line-height: 30px
	}
	.team-details .biography ul li span {
		min-width: 80px
	}
	.team-details .qualification h3 {
		font-size: 20px;
		margin-bottom: 26px
	}
	.team-details .qualification .single-box {
		width: 290px;
		margin: 0 auto 30px
	}
	.team-details .qualification .single-box .arrow {
		width: 30px;
		height: auto
	}
	.team-details .qualification .single-box .txt {
		width: 260px
	}
	.team-details .qualification .single-box .txt h4 {
		font-size: 18px;
		margin-bottom: 11px
	}
	.team-details .qualification .single-box .txt h5 {
		font-size: 14px
	}
	.team-details .qualification .single-box .txt span {
		margin-bottom: 11px
	}
	.team-details .qualification .single-box .txt p {
		font-size: 14px;
		line-height: 24px
	}
	.team-details .expertise {
		padding-bottom: 10px
	}
	.team-details .expertise h2 {
		font-size: 20px;
		margin-bottom: 20px
	}
	.team-details .expertise p {
		font-size: 14px;
		line-height: 24px
	}
	.team-details .expertise .single-box {
		width: 200px;
		margin: 0 auto 30px
	}
	.team-details .additional-txt h2 {
		font-size: 25px;
		line-height: 35px;
		margin-top: -7px
	}
	.team-details .additional-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 14px
	}
	.team-details .additional-txt ul li {
		font-size: 14px;
		line-height: 30px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex
	}
	.team-details .additional-txt ul li span {
		font-size: 10px
	}
	.testimonial-2 {
		padding: 60px 0
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-img {
		width: 90px;
		height: 90px
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt {
		width: 325px
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt .title h3 {
		font-size: 20px;
		margin-bottom: 10px
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt .title span {
		font-size: 14px
	}
	.testimonial-2 .testimonial-slider .owl-dots {
		padding-top: 40px
	}
	.testimonial-3 {
		padding: 60px 0
	}
	.testimonial-3 .testimonial-slider-2 .single-box .top .profile {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
	.testimonial-3 .testimonial-slider-2 .single-box .top .profile .part-img {
		margin-right: 0;
		margin-bottom: 25px
	}
	.testimonial-3 .testimonial-slider-2 .single-box .top .profile .txt h3 {
		font-size: 18px;
		margin-bottom: 6px
	}
	.testimonial-3 .testimonial-slider-2 .single-box .top .profile .txt p {
		font-size: 14px
	}
	.testimonial-3 .testimonial-slider-2 .single-box .top .quote span {
		font-size: 30px
	}
	.testimonial-3 .testimonial-slider-2 .single-box .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.testimonial-3 .testimonial-slider-2 .owl-dots {
		padding-top: 40px
	}
	.pricing.pricing-inner-2 {
		padding-top: 60px
	}
	.pricing-2 {
		padding-top: 60px;
		padding-bottom: 30px
	}
	.pricing-2 .single-box {
		width: 290px;
		padding: 30px 25px;
		margin: 0 auto 30px
	}
	.pricing-2 .single-box .top .part-icon {
		width: 70px;
		height: 70px;
		padding: 15px
	}
	.pricing-2 .single-box .top .price p {
		font-size: 14px;
		margin-top: -15px;
		margin-right: 5px
	}
	.pricing-2 .single-box .top .price h3 {
		font-size: 30px
	}
	.pricing-2 .single-box .top .price h3 span {
		font-size: 14px
	}
	.pricing-2 .single-box .bottom h3 {
		font-size: 20px;
		margin-bottom: 17px
	}
	.pricing-2 .single-box .bottom ul li {
		font-size: 14px;
		line-height: 30px
	}
	.pricing-2 .single-box .bottom .part-btn {
		font-size: 14px
	}
	.pricing-3 {
		padding-top: 60px
	}
	.pricing-3 .boxes .single-box {
		width: 290px;
		margin: 0 auto 30px;
		padding: 30px 25px
	}
	.pricing-3 .boxes .single-box .part-img {
		width: -webkit-max-content;
		width: -moz-max-content;
		width: max-content;
		margin-bottom: 30px
	}
	.pricing-3 .boxes .single-box .title {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin-bottom: 30px
	}
	.pricing-3 .boxes .single-box .title h4 {
		font-size: 20px;
		margin-bottom: 0
	}
	.pricing-3 .boxes .single-box .title .price p {
		font-size: 14px;
		margin-top: -5px;
		margin-right: 5px
	}
	.pricing-3 .boxes .single-box .title .price h3 {
		font-size: 30px;
		margin-top: -3px
	}
	.pricing-3 .boxes .single-box .title .price h3 span {
		font-size: 14px
	}
	.pricing-3 .boxes .single-box ul {
		margin-bottom: 18px
	}
	.pricing-3 .boxes .single-box ul li {
		font-size: 14px;
		margin-bottom: 16px
	}
	.pricing-3 .boxes .single-box .part-btn a {
		font-size: 14px
	}
	.pricing-3 .boxes .single-box .part-btn {
		padding-top: 9px;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start
	}
	.faq-2 {
		padding-bottom: 0;
		margin-bottom: -35px
	}
	.faq-2 .faq-inner-2 {
		padding-bottom: 25px
	}
	.faq .part-txt #accordion .part-img {
		width: 320px;
		margin: 0 auto 35px
	}
	.error {
		padding-top: 60px
	}
	.error .boxes {
		margin-bottom: 40px
	}
	.error .boxes .single-box {
		width: 100px;
		height: 100px;
		line-height: 100px;
		margin: 0 10px;
		font-size: 70px;
		border-radius: 5px
	}
	.error .part-txt h2 {
		font-size: 30px;
		line-height: 40px;
		margin-top: -8px;
		margin-bottom: 22px
	}
	.error .part-txt p {
		font-size: 18px;
		line-height: 28px;
		margin-bottom: 32px
	}
	.portfolio {
		padding-top: 60px
	}
	.portfolio .single-box {
		width: 290px;
		margin: 0 auto 30px
	}
	.portfolio .single-box .part-txt {
		height: 75px
	}
	.portfolio .single-box .part-txt a {
		font-size: 18px;
		line-height: 76px
	}
	.portfolio-details {
		padding-top: 60px
	}
	.portfolio-details .main-img {
		max-width: 320px;
		margin: 0 auto 40px
	}
	.portfolio-details .main-img:after {
		border-width: 100px
	}
	.portfolio-details .project-information h3 {
		font-size: 25px;
		margin-top: -2px;
		margin-bottom: 25px
	}
	.portfolio-details .project-information ul {
		max-width: 320px;
		margin: 0 auto
	}
	.portfolio-details .project-information ul li {
		font-size: 14px;
		line-height: 50px;
		padding: 0 15px
	}
	.portfolio-details .project-information ul li span {
		font-size: 14px
	}
	.portfolio-details .project-information ul li a {
		font-size: 12px;
		margin: 0 5px
	}
	.portfolio-details .main-txt h2 {
		font-size: 25px;
		margin-top: -2px;
		margin-bottom: 19px
	}
	.portfolio-details .main-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 22px
	}
	.portfolio-details .main-txt .part-img {
		margin-bottom: -6px
	}
	.portfolio-details .main-txt .part-img .single-img {
		border-radius: 5px;
		margin-bottom: 30px
	}
	.portfolio-details .main-txt ul {
		width: 100%
	}
	.portfolio-details .main-txt ul li {
		width: 100%;
		font-size: 14px
	}
	.portfolio-details .main-txt ul li span {
		font-size: 14px
	}
	.process-2.process-inner {
		margin-bottom: -40px
	}
	.portfolio-details .process-inner .heading-txt {
		padding-bottom: 7px
	}
	.portfolio-details .process-inner .heading-txt h2 {
		font-size: 25px;
		line-height: 35px;
		margin-top: -7px;
		margin-bottom: 14px
	}
	.portfolio-details .process-inner .heading-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.blog-inner {
		margin-bottom: 0
	}
	.blog-inner .main-content {
		margin-bottom: 60px
	}
	.blog-inner .main-content .pagination {
		padding-top: 10px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
	.blog-inner .main-content .pagination ul li {
		padding: 0 5px
	}
	.blog-inner .main-content .pagination ul li a {
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 12px
	}
	.blog-inner .next {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2
	}
	.blog-inner .sidebar {
		max-width: 320px;
		margin: 0 auto
	}
	.blog-inner .sidebar .profile {
		padding: 30px 25px;
		margin-bottom: 30px
	}
	.blog-inner .sidebar .profile .part-img {
		width: 90px;
		height: 90px;
		margin-bottom: 25px
	}
	.blog-inner .sidebar .profile .part-txt h3 {
		font-size: 20px;
		margin-bottom: 15px
	}
	.blog-inner .sidebar .profile .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.blog-inner .sidebar .profile .part-txt .social {
		padding-top: 5px
	}
	.blog-inner .sidebar .profile .part-txt .social a {
		font-size: 12px
	}
	.blog-inner .sidebar .search-box {
		padding: 30px 25px
	}
	.blog-inner .sidebar .search-box h3 {
		font-size: 20px;
		margin-bottom: 16px
	}
	.blog-inner .sidebar .search-box form button {
		font-size: 20px
	}
	.blog-inner .sidebar .blog-category {
		padding: 30px 25px;
		margin-bottom: 30px
	}
	.blog-inner .sidebar .blog-category h3 {
		height: 40px;
		line-height: 40px;
		font-size: 20px;
		border-radius: 5px
	}
	.blog-inner .sidebar .blog-category ul li a {
		font-size: 14px;
		padding-top: 14px
	}
	.blog-inner .sidebar .recent-blog {
		padding: 30px 25px;
		margin-bottom: 30px
	}
	.blog-inner .sidebar .recent-blog h3 {
		height: 40px;
		line-height: 40px;
		font-size: 20px;
		border-radius: 5px
	}
	.blog-inner .sidebar .recent-blog ul li .img {
		width: 60px;
		border-radius: 5px;
		margin-right: 10px
	}
	.blog-inner .sidebar .recent-blog ul li .txt {
		width: 200px
	}
	.blog-inner .sidebar .recent-blog ul li .txt a {
		font-size: 14px;
		font-weight: 600;
		line-height: 20px;
		margin-top: -4px;
		margin-bottom: 8px
	}
	.blog-inner .sidebar .recent-blog ul li .txt .info .icon {
		font-size: 9px
	}
	.blog-inner .sidebar .tags {
		padding: 30px 25px
	}
	.blog-inner .sidebar .tags h3 {
		height: 40px;
		line-height: 40px;
		font-size: 20px;
		border-radius: 5px
	}
	.blog-inner .sidebar .tags .all-tag {
		margin: -5px -3px
	}
	.blog-inner .sidebar .tags .all-tag a {
		font-size: 14px;
		margin: 5px 3px
	}
	.blog-inner {
		padding-top: 60px
	}
	.blog-inner .blog-details {
		padding-bottom: 60px
	}
	.blog-inner .blog-details .title {
		margin-bottom: 35px
	}
	.blog-inner .blog-details .title .tag {
		border-width: 3px;
		font-size: 14px;
		height: 45px;
		margin-bottom: 25px
	}
	.blog-inner .blog-details .title h2 {
		font-size: 20px;
		line-height: 30px;
		margin-top: -2px;
		margin-bottom: 16px
	}
	.blog-inner .blog-details .title ul {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin-bottom: -3px
	}
	.blog-inner .blog-details .title ul li {
		margin-right: 15px
	}
	.blog-inner .blog-details .main-img {
		border-radius: 5px;
		margin-bottom: 35px
	}
	.blog-inner .blog-details .main-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px
	}
	.blog-inner .blog-details .main-txt .quoted {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 30px 25px
	}
	.blog-inner .blog-details .main-txt .quoted .img {
		width: 100px;
		margin-right: 0;
		margin-bottom: 25px
	}
	.blog-inner .blog-details .main-txt .quoted .txt {
		width: 100%
	}
	.blog-inner .blog-details .main-txt .quoted .txt span {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px;
		margin-bottom: 15px
	}
	.blog-inner .blog-details .main-txt .quoted .txt h4 {
		font-size: 18px;
		margin-bottom: 11px
	}
	.blog-inner .blog-details .main-txt .quoted .txt h5 {
		font-size: 14px
	}
	.blog-inner .blog-details .reasons-for-choose {
		padding-top: 8px
	}
	.blog-inner .blog-details .reasons-for-choose h2 {
		font-size: 20px;
		margin-bottom: 21px
	}
	.blog-inner .blog-details .reasons-for-choose ul {
		margin-bottom: 7px
	}
	.blog-inner .blog-details .reasons-for-choose ul li {
		width: 100%;
		font-size: 14px
	}
	.blog-inner .blog-details .reasons-for-choose ul li span {
		font-size: 14px
	}
	.blog-inner .blog-details .reasons-for-choose p {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px
	}
	.blog-inner .blog-details .reasons-for-choose .part-img {
		margin-bottom: 0
	}
	.blog-inner .blog-details .reasons-for-choose .part-img .single-img {
		width: 290px;
		margin: 0 auto 30px
	}
	.blog-inner .blog-details .reasons-for-choose .part-img .single-img img {
		width: 100%
	}
	.blog-inner .blog-details .other-option {
		padding-top: 8px;
		padding-bottom: 40px;
		margin-bottom: 40px
	}
	.blog-inner .blog-details .other-option .tags {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-bottom: 16px
	}
	.blog-inner .blog-details .other-option h3 {
		width: 100%;
		font-size: 18px;
		margin-bottom: 16px
	}
	.blog-inner .blog-details .other-option .tags a {
		font-size: 14px;
		font-weight: 600;
		margin: 0 10px 6px
	}
	.blog-inner .blog-details .other-option .share h3 {
		width: auto;
		margin-bottom: 0
	}
	.blog-inner .blog-details .other-option .share a {
		margin: 0 5px
	}
	.blog-inner .blog-details .admin-profile {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 30px 25px
	}
	.blog-inner .blog-details .admin-profile .part-img {
		width: 60px;
		height: 60px;
		margin-right: 0;
		margin-bottom: 25px
	}
	.blog-inner .blog-details .admin-profile .part-txt {
		width: 100%
	}
	.blog-inner .blog-details .admin-profile .part-txt h3 {
		margin-bottom: 9px
	}
	.blog-inner .blog-details .admin-profile .part-txt .admin-link {
		font-size: 13px;
		margin-bottom: 21px
	}
	.blog-inner .blog-details .admin-profile .part-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 17px
	}
	.blog-inner .blog-details .blog-nav {
		padding-top: 40px;
		padding-bottom: 32px
	}
	.blog-inner .blog-details .blog-nav .single-nav.next-blog {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end
	}
	.blog-inner .blog-details .blog-nav .single-nav {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start
	}
	.blog-inner .blog-details .blog-nav .single-nav .img {
		width: 80px;
		height: 80px;
		border-radius: 5px;
		margin-right: 0;
		margin-bottom: 25px
	}
	.blog-inner .blog-details .blog-nav .single-nav .txt {
		width: 140px
	}
	.blog-inner .blog-details .blog-nav .single-nav .txt a {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px
	}
	.blog-inner .blog-details .blog-nav .single-nav .txt a span {
		margin-top: 11px
	}
	.blog-inner .blog-details .blog-comments .comments {
		padding: 40px 0
	}
	.blog-inner .blog-details .blog-comments h3 {
		font-size: 20px;
		margin-bottom: 26px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment.replied {
		margin-left: 30px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment .part-img {
		width: 70px;
		height: 70px;
		margin-right: 0;
		margin-bottom: 25px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt {
		width: 100%
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment.replied .part-txt {
		width: 100%
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt .top {
		margin-bottom: 15px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt .top h4 {
		font-size: 16px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt .top h4 span {
		display: block;
		font-size: 14px;
		margin-left: 0;
		margin-top: 10px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.blog-inner .blog-details .blog-comments .post-comment form input {
		height: 50px;
		font-size: 14px;
		margin-bottom: 25px
	}
	.blog-inner .blog-details .blog-comments .post-comment form textarea {
		height: 120px;
		font-size: 14px;
		margin-bottom: 25px
	}
	.blog-inner .blog-details .blog-comments .post-comment form .def-btn {
		height: 50px;
		line-height: 52px
	}
	.contact {
		padding: 60px 0
	}
	.contact .boxes {
		padding-bottom: 30px
	}
	.contact .boxes .single-box {
		width: 290px;
		padding: 30px;
		margin: 0 auto 30px
	}
	.contact .boxes .single-box .part-icon {
		width: 30px;
		height: 30px;
		line-height: 35px;
		font-size: 12px;
		margin-right: 15px
	}
	.contact .boxes .single-box .part-txt {
		width: 185px
	}
	.contact .boxes .single-box .part-txt h3 {
		font-size: 20px;
		margin-bottom: 12px
	}
	.contact .boxes .single-box .part-txt span {
		font-size: 14px;
		line-height: 30px
	}
	.contact .form {
		padding: 60px 20px
	}
	.contact .form input {
		height: 45px;
		margin-bottom: 25px
	}
	.contact .form textarea {
		height: 120px;
		margin-bottom: 30px
	}
	.map iframe {
		height: 250px
	}
}

@media only screen and (min-width:320px) and (max-width:479px) {
	.heading {
		margin-bottom: 40px
	}
	.heading h5 {
		font-size: 14px;
		margin-top: -1px;
		margin-bottom: 15px
	}
	.heading h2 {
		font-size: 25px;
		line-height: 35px;
		margin-bottom: -10px
	}
	.def-btn {
		height: 45px;
		line-height: 45px;
		font-size: 16px;
		padding: 0 25px
	}
	.header .top-header {
		padding-top: 15px
	}
	.header .top-header .top-left ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
	.header .top-header .top-left ul li {
		margin-right: 0;
		margin-bottom: 10px
	}
	.header .top-header .top-right {
		padding-top: 5px
	}
	.header .bottom-header .next {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4
	}
	.header .bottom-header .bottom-right a {
		display: none
	}
	.header .bottom-header:before {
		top: 0;
		left: -10%;
		width: 50%;
		height: 100%;
		-webkit-transform: skew(-35deg);
		transform: skew(-35deg);
		border-radius: 0 0 15px 0
	}
	.header .bottom-header:after {
		top: 0;
		left: auto;
		right: -10%;
		width: 50%;
		height: 100%;
		-webkit-transform: skew(35deg);
		transform: skew(35deg);
		border-radius: 0 0 0 15px
	}
	.header .bottom-header .bg:before,
	.header .bottom-header .bg:after,
	.header .bottom-header .bg .bg-2:before,
	.header .bottom-header .bg .bg-2:after,
	.header .bottom-header .bg .bg-2 .bg-3:before,
	.header .bottom-header .bg .bg-2 .bg-3:after {
		display: none
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar-toggler {
		padding: 0 5px;
		color: #2a9d8f;
		font-size: 20px;
		height: 60px;
		line-height: 68px
	}
	.header .bottom-header .bg .bg-2 .bg-3 .logo {
		padding-top: 0;
		width: 100%;
		height: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
	.header .bottom-header .bg .bg-2 .bg-3 .logo img {
		width: 40px
	}
	.header .bottom-header .bg .bg-2 .bg-3 .bottom-right {
		width: 100%;
		height: 100%;
		padding: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-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: end;
		-ms-flex-align: end;
		align-items: flex-end
	}
	.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form {
		margin: 0;
		padding: 0;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		position: relative
	}
	.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form input {
		position: absolute;
		top: 100%;
		right: 0;
		width: 290px;
		background: #fff;
		border: 0;
		-webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .15);
		box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .15);
		padding: 0 20px;
		font-size: 14px;
		color: #0d0925;
		height: 0
	}
	.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form.active input {
		height: 45px
	}
	.header .bottom-header .bg .bg-2 .bg-3 .bottom-right form button {
		height: 60px;
		line-height: 68px;
		font-size: 20px;
		padding: 0 5px
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		background: #f6f6f6;
		-webkit-box-shadow: 0 10px 20px 0 rgba(51, 51, 51, .1);
		box-shadow: 0 10px 20px 0 rgba(51, 51, 51, .1);
		padding: 0
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav {
		padding: 15px 0;
		max-height: 350px;
		overflow: auto
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item {
		padding: 10px 15px
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item .nav-link {
		color: #0d0925;
		font-size: 14px;
		font-weight: 600;
		padding: 4px 0 2px
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item .nav-link:after {
		display: none
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
		display: none;
		margin-top: 5px;
		width: 290px;
		opacity: 1;
		visibility: visible
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show {
		display: block
	}
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item,
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu .dropdown-item {
		font-size: 14px;
		padding: 14px 20px 12px
	}
	.header-2 {
		background: #fff
	}
	.header-2 .top-header {
		background: #2a9d8f;
		padding: 20px 0
	}
	.header-2 .top-header .bg .top-left {
		margin-bottom: 2px
	}
	.header-2 .top-header .bg .top-left ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
	.header-2 .top-header .bg .top-left ul li {
		padding: 0 0 15px;
		border: 0;
		margin-top: -1px
	}
	.header-2 .top-header .bg .top-right {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
	.header-2 .top-header .bg .top-right .language {
		padding-right: 15px
	}
	.header-2 .top-header .bg .top-right .language .select-lang .dropdown-toggle {
		font-size: 14px;
		font-weight: 600
	}
	.header-2 .top-header .bg .top-right .try-btn {
		padding: 0;
		padding-left: 15px
	}
	.header-2 .top-header .bg .top-right .try-btn a {
		height: 30px;
		line-height: 30px;
		font-size: 14px;
		padding: 0 15px
	}
	.header-2 .bottom-header .next {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4
	}
	.header-2 .bottom-header.fixed-header {
		background: #fff
	}
	.header-2 .bottom-header .bg .navbar-toggler {
		text-align: center;
		width: 40px;
		height: 40px;
		line-height: 45px;
		background: #0d0925;
		color: #fff;
		font-size: 18px;
		padding: 0
	}
	.header-2 .bottom-header .bg .logo {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
	.header-2 .bottom-header .bg .logo img {
		width: 40px
	}
	.header-2 .bottom-header .bg .bottom-right {
		padding: 10px 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end
	}
	.header-2 .bottom-header .bg .bottom-right form {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		position: relative;
		padding: 0
	}
	.header-2 .bottom-header .bg .bottom-right form input {
		position: absolute;
		top: 100%;
		right: 0;
		width: 290px;
		background: #fff;
		border: 0;
		-webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .15);
		box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .15);
		padding: 0 20px;
		font-size: 14px;
		color: #0d0925;
		height: 0
	}
	.header-2 .bottom-header .bg .bottom-right form input::-webkit-input-placeholder {
		color: #4b4b46
	}
	.header-2 .bottom-header .bg .bottom-right form input::-moz-placeholder {
		color: #4b4b46
	}
	.header-2 .bottom-header .bg .bottom-right form input:-ms-input-placeholder {
		color: #4b4b46
	}
	.header-2 .bottom-header .bg .bottom-right form input::-ms-input-placeholder {
		color: #4b4b46
	}
	.header-2 .bottom-header .bg .bottom-right form input::placeholder {
		color: #4b4b46
	}
	.header-2 .bottom-header .bg .bottom-right form.active input {
		height: 45px
	}
	.header-2 .bottom-header .bg .bottom-right form button {
		text-align: center;
		width: 40px;
		height: 40px;
		line-height: 45px;
		padding: 0;
		background: #0d0925;
		color: #fff;
		font-size: 18px;
		border-radius: 5px
	}
	.header-2 .bottom-header .bg .navbar {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		background: #f6f6f6;
		-webkit-box-shadow: 0 10px 20px 0 rgba(51, 51, 51, .1);
		box-shadow: 0 10px 20px 0 rgba(51, 51, 51, .1);
		padding: 0
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav {
		padding: 15px 0;
		max-height: 350px;
		overflow: auto
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item {
		padding: 10px 15px
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item .nav-link {
		color: #0d0925;
		font-size: 14px;
		font-weight: 600;
		padding: 4px 0 2px
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item .nav-link:after {
		display: none
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
		display: none;
		margin-top: 5px;
		width: 290px;
		opacity: 1;
		visibility: visible
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show {
		display: block
	}
	.header-2 .bottom-header .bg .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item,
	.header .bottom-header .bg .bg-2 .bg-3 .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu .dropdown-item {
		font-size: 14px;
		padding: 14px 20px 12px
	}
	.banner:after {
		background: url(../images/banner-img.png) center left 40% no-repeat;
		background-size: cover
	}
	.banner .banner-txt {
		padding: 70px 0
	}
	.banner .banner-txt h4 {
		font-size: 16px;
		margin-bottom: 20px
	}
	.banner .banner-txt h1 {
		font-size: 25px;
		line-height: 35px;
		margin-bottom: 14px
	}
	.banner .banner-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 12px
	}
	.banner .banner-txt .btn-box {
		padding-top: 10px
	}
	.banner .banner-txt .btn-box a {
		height: 45px;
		line-height: 45px;
		font-size: 16px;
		padding: 0 25px
	}
	.banner .banner-txt .btn-box a.left-btn {
		margin-right: 10px
	}
	.banner-2 .banner-txt {
		padding: 70px 0
	}
	.banner-2 .banner-txt h4 {
		font-size: 16px;
		margin-bottom: 20px;
		letter-spacing: 1px
	}
	.banner-2 .banner-txt h1 {
		font-size: 25px;
		line-height: 35px;
		margin-bottom: 14px
	}
	.banner-2 .banner-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 12px
	}
	.banner-2 .banner-txt .btn-box {
		padding-top: 10px
	}
	.banner-2 .banner-txt .btn-box a {
		height: 45px;
		line-height: 45px;
		font-size: 16px;
		padding: 0 25px
	}
	.banner-2 .banner-txt .btn-box a.left-btn {
		margin-right: 10px
	}
	.banner-2 .part-img {
		display: none
	}
	.feature {
		padding-top: 60px;
		padding-bottom: 0
	}
	.feature .single-box {
		width: 290px;
		padding: 30px 25px;
		margin: 3px auto 33px
	}
	.feature .single-box .part-txt h3 {
		font-size: 20px;
		margin-top: -1px;
		margin-bottom: 20px
	}
	.feature .single-box .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.partner {
		padding-top: 60px;
		padding-bottom: 30px
	}
	.partner .bg {
		padding: 30px
	}
	.partner .bg .brand-slider .single-img {
		height: 70px
	}
	.partner .bg .brand-slider .owl-nav {
		left: -45px;
		right: -45px
	}
	.partner .bg .brand-slider .owl-nav button {
		width: 45px;
		height: 45px;
		line-height: 45px;
		font-size: 20px;
		border-width: 2px
	}
	.partner.partner-2 {
		padding: 60px 0
	}
	.partner.partner-2 .heading h2 {
		margin-bottom: 24px
	}
	.partner.partner-2 .heading p {
		font-size: 14px;
		line-height: 24px
	}
	.partner.partner-2 .bg .brand-slider .single-img {
		height: 85px;
		padding: 15px 0
	}
	.about {
		padding-top: 30px;
		padding-bottom: 60px
	}
	.about .image-box {
		padding-right: 0;
		margin-bottom: 30px
	}
	.about .image-box .fun-fact-inner {
		padding: 20px 15px;
		margin: -70px 5px 0
	}
	.about .image-box .fun-fact-inner .single-box {
		padding: 0 5px
	}
	.about .image-box .fun-fact-inner .single-box h4 {
		font-size: 20px;
		margin-top: -2px;
		margin-bottom: 5px
	}
	.about .image-box .fun-fact-inner .single-box p {
		font-size: 13px;
		line-height: 20px;
		margin-bottom: -6px
	}
	.about .image-box .fun-fact-inner .single-box p span {
		font-size: 10px;
		margin-bottom: -2px
	}
	.about .part-txt .heading {
		margin-bottom: 34px
	}
	.about .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.about .part-txt .boxes {
		margin-top: 31px;
		margin-bottom: 1px
	}
	.about .part-txt .boxes .single-box {
		margin-bottom: 21px
	}
	.about .part-txt .boxes .single-box .txt h3 {
		font-size: 18px;
		margin-bottom: 11px
	}
	.about .part-txt .boxes-2 {
		padding: 40px 25px 25px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start
	}
	.about .part-txt .boxes-2 .single-box {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		padding: 0;
		margin-bottom: 21px
	}
	.about .part-txt .boxes-2 .single-box:last-child {
		margin-bottom: -7px
	}
	.about .part-txt .boxes-2 .single-box .img {
		margin-right: 0;
		margin-top: -2px;
		margin-bottom: 20px
	}
	.about .part-txt .boxes-2 .single-box .txt h3 {
		font-size: 16px;
		margin-bottom: 5px
	}
	.about .part-txt .boxes-2 .single-box .txt span {
		font-size: 14px
	}
	.about.about-2 .part-img {
		margin-bottom: 30px
	}
	.about.about-2 .part-img img {
		max-width: 100%
	}
	.about.about-2 .part-txt .def-btn {
		margin-top: 7px
	}
	.service {
		padding: 60px 0
	}
	.service .bg {
		max-width: 320px;
		margin: auto
	}
	.service .bg .nav {
		padding: 30px
	}
	.service .bg .nav .nav-link {
		height: 40px;
		line-height: 40px;
		padding: 0 20px;
		font-size: 16px;
		border-radius: 5px;
		margin-bottom: 10px
	}
	.service .bg .nav .nav-link span {
		font-size: 20px
	}
	.service .bg .part-img {
		border-top: 1px solid #362e65;
		border-bottom: 1px solid #362e65;
		border-left: 0;
		border-right: 0
	}
	.service .bg .part-txt {
		padding: 30px
	}
	.service .bg .part-txt h3 {
		font-size: 20px;
		margin-top: -2px;
		margin-bottom: 20px
	}
	.service .bg .part-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 11px
	}
	.service .bg .part-txt .def-btn {
		margin-top: 11px
	}
	.process {
		padding-top: 60px;
		padding-bottom: 0
	}
	.process .single-box {
		width: 290px;
		padding: 30px;
		margin: 0 auto 30px
	}
	.process .single-box .part-txt h3 {
		font-size: 20px;
		margin-top: -2px;
		margin-bottom: 15px
	}
	.process .single-box .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.pricing {
		padding: 30px 0
	}
	.pricing .controls {
		margin-bottom: 30px
	}
	.pricing .controls nav {
		padding: 0 20px
	}
	.pricing .controls nav .nav {
		width: 100px
	}
	.pricing .controls span {
		font-size: 14px
	}
	.pricing .controls nav .nav .nav-item {
		width: 27px;
		height: 27px
	}
	.pricing .tab-pane .single-box {
		padding: 25px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		width: 270px;
		margin: 0 auto 50px
	}
	.pricing .tab-pane .single-box .part-img {
		margin-right: 0;
		margin-bottom: 25px
	}
	.pricing .tab-pane .single-box .part-txt h3 {
		font-size: 18px
	}
	.pricing .tab-pane .single-box .part-txt ul {
		margin-bottom: 7px
	}
	.pricing .tab-pane .single-box .part-txt ul li {
		font-size: 14px;
		line-height: 25px
	}
	.pricing .tab-pane .single-box .part-txt ul li span {
		font-size: 10px;
		margin-right: 10px
	}
	.pricing .tab-pane .single-box .part-btn {
		right: 25px
	}
	.cta {
		padding: 60px 0
	}
	.cta:after {
		top: 0;
		bottom: 0
	}
	.cta .part-txt {
		margin-bottom: 30px
	}
	.cta .part-txt h2 {
		font-size: 20px;
		line-height: 30px;
		margin-top: -7px;
		margin-bottom: 15px
	}
	.cta .part-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 22px
	}
	.cta .part-img {
		margin: 0 -15px
	}
	.cta .part-img img {
		max-width: 100%
	}
	.cta-2 {
		padding-top: 175px;
		padding-bottom: 60px
	}
	.cta-2 .part-txt h2 {
		font-size: 25px;
		line-height: 35px;
		margin-top: -7px;
		margin-bottom: 14px
	}
	.cta-2 .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.cta-2 .part-txt .def-btn {
		margin-top: 5px
	}
	.testimonial {
		padding: 60px 0
	}
	.testimonial .row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse
	}
	.testimonial .bg {
		padding: 0;
		background: 0 0
	}
	.testimonial .bg .comment-area .comment-slider .single-comment p {
		font-size: 14px;
		line-height: 24px
	}
	.testimonial .bg .comment-area .comment-slider .single-comment .client {
		padding-top: 105px
	}
	.testimonial .bg .comment-area .comment-slider .single-comment .client h3 {
		font-size: 20px
	}
	.testimonial .bg .comment-area .comment-slider .single-comment .client h5 {
		font-size: 14px
	}
	.testimonial .bg .comment-area .client-slider {
		padding: 0 40px;
		margin-top: -48px
	}
	.testimonial .bg .comment-area .client-slider .slick-track {
		height: 65px
	}
	.testimonial .bg .comment-area .client-slider .slick-track .single-box {
		width: 55px!important
	}
	.testimonial .bg .comment-area .client-slider .slick-track .single-box.slick-active {
		width: 65px!important
	}
	.testimonial .bg .comment-area .client-slider .slick-track .single-box.slick-center {
		width: 75px!important
	}
	.testimonial .bg .comment-area .client-slider .slick-track .single-box .img {
		margin: 0 5px
	}
	.testimonial .bg .part-txt {
		background: url(../images/testimonial-bg-3.jpg) center center no-repeat;
		background-size: cover;
		padding: 30px 20px;
		border-radius: 10px;
		margin-top: 13px
	}
	.testimonial .bg .part-txt .heading {
		text-align: center!important;
		margin-bottom: 30px
	}
	.testimonial .bg .part-txt .controls {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
	.testimonial .bg .part-txt .controls button {
		width: 40px;
		height: 40px;
		line-height: 44px;
		font-size: 14px
	}
	.testimonial .bg .part-txt .controls button:first-child {
		margin-right: 15px
	}
	.blog {
		padding: 60px 0
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 30px 20px
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-img {
		width: -webkit-max-content;
		width: -moz-max-content;
		width: max-content;
		margin-bottom: 30px
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt {
		width: 100%
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt .title {
		font-size: 18px;
		line-height: 26px;
		margin-bottom: 12px
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.blog .blog-slider .owl-stage-outer .owl-item .single-box .part-txt .blog-info {
		padding-top: 7px;
		margin-bottom: 26px
	}
	.blog .blog-slider .owl-nav {
		display: none
	}
	.blog-2 {
		padding-top: 60px;
		margin-bottom: -30px
	}
	.blog-2 .single-blog {
		width: 290px;
		margin: 0 auto 30px
	}
	.blog-2 .single-blog .part-txt {
		padding: 0 20px 25px
	}
	.blog-2 .single-blog .part-txt .blog-info {
		margin: 0 -10px
	}
	.blog-2 .single-blog .part-txt .blog-info ul {
		padding: 0 10px;
		margin-bottom: 25px
	}
	.blog-2 .single-blog .part-txt h3 {
		font-size: 18px;
		line-height: 28px;
		margin-bottom: 10px
	}
	.blog-2 .single-blog .part-txt a {
		font-size: 14px
	}
	.call-back {
		padding-top: 60px
	}
	.call-back .bg {
		padding: 30px 25px
	}
	.call-back .bg .part-txt {
		text-align: center;
		margin-bottom: 30px
	}
	.call-back .bg .part-txt h5 {
		font-size: 16px;
		font-weight: 400;
		margin-bottom: 21px
	}
	.call-back .bg .part-txt h2 {
		font-size: 22px;
		line-height: 30px;
		margin-bottom: -8px
	}
	.call-back .bg .form form {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		border-radius: 5px
	}
	.call-back .bg .form form input {
		width: 100%;
		height: 45px;
		font-size: 14px;
		padding: 0 5px
	}
	.call-back .bg .form form button {
		height: 45px;
		line-height: 46px;
		font-size: 14px;
		border-radius: 5px
	}
	.footer .main-footer {
		padding: 60px 0
	}
	.footer .main-footer h3 {
		font-size: 18px;
		padding-bottom: 9px;
		margin-bottom: 20px
	}
	.footer .main-footer .about-txt {
		margin-bottom: 35px
	}
	.footer .main-footer .about-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px;
		margin-bottom: 11px
	}
	.footer .main-footer .link {
		margin-bottom: 35px
	}
	.footer .main-footer .link ul {
		margin-bottom: -8px
	}
	.footer .main-footer .link ul li a {
		font-size: 14px;
		line-height: 25px
	}
	.footer .main-footer .newsletter p {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px;
		margin-bottom: 17px
	}
	.footer .main-footer .newsletter form {
		margin-bottom: 25px
	}
	.footer .main-footer .newsletter form button {
		height: 45px;
		line-height: 53px;
		font-size: 20px
	}
	.footer .copyright {
		padding-bottom: 25px
	}
	.footer .copyright p {
		text-align: center;
		font-size: 14px;
		padding: 24px 0 17px
	}
	.footer .copyright .link {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
	.footer .copyright .link a {
		font-size: 12px
	}
	.faq {
		padding-top: 60px;
		padding-bottom: 25px
	}
	.faq .part-txt #accordion .card:last-child {
		margin-bottom: 0
	}
	.faq .part-txt #accordion .card .card-header h5 button {
		height: 60px;
		font-size: 14px;
		line-height: 20px;
		padding: 1px 20px 0;
		text-align: left
	}
	.faq .part-txt #accordion .card .card-header h5 button span {
		font-size: 14px
	}
	.faq .part-txt #accordion .card .card-body {
		padding: 0 20px 35px
	}
	.faq .part-txt #accordion .card .card-body p {
		font-size: 14px;
		line-height: 24px
	}
	.project {
		padding: 60px 0
	}
	.project .all-projects .project-slider {
		width: 230px;
		margin: 0 auto
	}
	.project .all-projects .project-slider .owl-stage-outer .single-box .part-txt .title {
		margin: 0 10px 20px
	}
	.project .all-projects .project-slider .owl-stage-outer .single-box .part-txt a {
		font-size: 25px;
		margin-bottom: 55px
	}
	.project .all-projects .project-slider .owl-stage-outer .single-box .part-txt .title h3 {
		font-size: 16px
	}
	.team {
		padding-top: 60px;
		padding-bottom: 30px
	}
	.team .single-box {
		width: 270px;
		margin: 0 auto 30px
	}
	.fun-fact .bg {
		width: 290px;
		margin: -5px auto -115px;
		padding: 60px 25px 30px
	}
	.fun-fact .bg .single-box {
		margin-bottom: 30px
	}
	.fun-fact .bg .single-box .part-icon {
		margin-bottom: 9px
	}
	.fun-fact .bg .single-box .part-txt h2 {
		font-size: 25px;
		margin-bottom: 11px
	}
	.fun-fact .bg .single-box .part-txt p {
		font-size: 14px
	}
	.breadcrumb .part-txt {
		padding: 60px 0
	}
	.breadcrumb .part-txt h1 {
		font-size: 25px;
		margin-top: -2px;
		margin-bottom: 18px
	}
	.breadcrumb .part-txt ul {
		margin-bottom: -3px
	}
	.breadcrumb .part-txt ul li {
		font-size: 16px
	}
	.about.about-inner {
		padding-top: 60px
	}
	.process-2 {
		padding-top: 60px;
		padding-bottom: 20px
	}
	.process-2 .no-gutters .single-box {
		width: 290px;
		margin: 0 auto 40px
	}
	.process-2 .no-gutters .single-box .part-icon {
		width: 70px;
		height: 70px;
		margin-bottom: 25px
	}
	.process-2 .no-gutters .single-box .part-icon .icon {
		font-size: 30px;
		line-height: 82px
	}
	.process-2 .no-gutters .single-box .part-txt h3 {
		font-size: 20px;
		margin-top: -2px;
		margin-bottom: 15px
	}
	.process-2 .no-gutters .single-box .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.process-2 .no-gutters .single-box .arrow {
		display: none
	}
	.choosing-reason {
		padding-top: 60px
	}
	.choosing-reason .part-txt .heading {
		margin-bottom: 34px
	}
	.choosing-reason .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.choosing-reason .part-txt .boxes {
		padding-top: 22px;
		padding-bottom: 10px
	}
	.choosing-reason .part-txt .boxes .single-box {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		margin-bottom: 30px
	}
	.choosing-reason .part-txt .boxes .single-box .img {
		width: 80px;
		height: 80px;
		margin-right: 0;
		margin-bottom: 25px
	}
	.choosing-reason .part-txt .boxes .single-box .img span {
		right: -5px;
		bottom: -5px
	}
	.choosing-reason .part-txt .boxes .single-box .txt {
		width: 100%
	}
	.choosing-reason .part-txt .boxes .single-box .txt h3 {
		font-size: 18px;
		margin-bottom: 16px
	}
	.choosing-reason .part-img .video a {
		width: 80px;
		height: 80px;
		line-height: 95px
	}
	.partner.partner-inner {
		padding-bottom: 60px
	}
	.faq.faq-inner {
		margin-bottom: -35px
	}
	.service-2 {
		padding: 60px 0
	}
	.service-2 .part-txt {
		margin-bottom: 40px
	}
	.service-2 .part-txt .heading {
		margin-bottom: 34px
	}
	.service-2 .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.service-2 .part-txt .boxes {
		padding-top: 17px
	}
	.service-2 .part-txt .boxes .single-box {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-bottom: 30px
	}
	.service-2 .part-txt .boxes .single-box .part-icon {
		margin-right: 0;
		margin-bottom: 25px
	}
	.service-2 .part-txt .boxes .single-box .txt {
		width: 100%
	}
	.service-2 .part-txt .boxes .single-box .txt h3 {
		font-size: 18px;
		line-height: 28px;
		margin-top: -7px;
		margin-bottom: 11px
	}
	.service-2 .part-img {
		width: 290px;
		margin: 0 auto
	}
	.feature-2 {
		padding-top: 60px;
		padding-bottom: 30px
	}
	.feature-2 .part-img {
		width: 290px;
		margin: 0 auto 40px
	}
	.feature-2 .part-txt .heading {
		margin-bottom: 34px
	}
	.feature-2 .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.feature-2 .part-txt .boxes {
		padding-top: 17px
	}
	.feature-2 .part-txt .boxes .single-box {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-bottom: 30px
	}
	.feature-2 .part-txt .boxes .single-box .part-icon {
		margin-right: 0;
		margin-bottom: 25px
	}
	.feature-2 .part-txt .boxes .single-box .txt {
		width: 100%
	}
	.feature-2 .part-txt .boxes .single-box .txt h3 {
		font-size: 18px;
		line-height: 28px;
		margin-top: -7px;
		margin-bottom: 11px
	}
	.pricing.pricing-inner {
		margin-bottom: -30px
	}
	.service-details {
		padding-top: 60px
	}
	.service-details .next {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2
	}
	.service-details .main-content .part-img {
		border-radius: 5px;
		margin-bottom: 40px
	}
	.service-details .main-content .part-txt h2 {
		font-size: 20px;
		line-height: 30px;
		margin-top: -7px;
		margin-bottom: 15px
	}
	.service-details .main-content .part-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 11px
	}
	.service-details .main-content .part-txt .boxes {
		padding-top: 11px;
		margin-bottom: 15px
	}
	.service-details .main-content .part-txt .boxes .single-box {
		margin-bottom: 25px
	}
	.service-details .main-content .part-txt .boxes .single-box .txt h3 {
		font-size: 18px;
		margin-bottom: 11px
	}
	.service-details .main-content .part-txt ul {
		margin-bottom: 32px
	}
	.service-details .main-content .part-txt ul li {
		font-size: 14px;
		line-height: 24px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex
	}
	.service-details .main-content .part-txt ul li span {
		font-size: 10px
	}
	.service-details .main-content .video {
		padding-top: 11px
	}
	.service-details .main-content .video .video-area {
		padding: 60px 0;
		margin-bottom: 24px
	}
	.service-details .main-content .video .video-area a {
		width: 80px;
		height: 80px;
		line-height: 95px
	}
	.service-details .main-content .video p {
		font-size: 14px;
		line-height: 24px
	}
	.service-details .sidebar .side-nav {
		padding: 25px;
		margin-bottom: 40px
	}
	.service-details .sidebar .side-nav .nav .nav-link {
		height: 40px;
		line-height: 40px;
		padding: 0 20px;
		font-size: 16px;
		border-radius: 5px;
		margin-bottom: 10px
	}
	.service-details .sidebar .subscription,
	.service-details .sidebar .online-help,
	.service-details .sidebar .download-area {
		display: none
	}
	.team-inner-2 {
		padding-top: 60px
	}
	.team-inner-2 .single-box {
		width: 290px;
		margin: 0 auto 30px
	}
	.team-inner-2 .single-box .part-txt {
		margin: -50px 25px 0
	}
	.team-inner-2 .single-box .part-txt .title h3 {
		font-size: 20px;
		margin-bottom: 11px
	}
	.team-inner-2 .single-box .part-txt .title p {
		font-size: 14px
	}
	.team-details {
		padding-top: 60px
	}
	.team-details .profile {
		width: 290px;
		margin: 0 auto 40px
	}
	.team-details .profile .part-txt .title h3 {
		font-size: 20px;
		margin-bottom: 11px
	}
	.team-details .profile .part-txt .title p {
		font-size: 14px
	}
	.team-details .biography h2 {
		font-size: 25px;
		margin-top: -2px;
		margin-bottom: 19px
	}
	.team-details .biography p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 13px
	}
	.team-details .biography ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
	.team-details .biography ul li {
		width: 100%;
		font-size: 14px;
		line-height: 30px
	}
	.team-details .biography ul li span {
		min-width: 80px
	}
	.team-details .qualification h3 {
		font-size: 20px;
		margin-bottom: 26px
	}
	.team-details .qualification .single-box {
		width: 290px;
		margin: 0 auto 30px
	}
	.team-details .qualification .single-box .arrow {
		width: 30px;
		height: auto
	}
	.team-details .qualification .single-box .txt {
		width: 260px
	}
	.team-details .qualification .single-box .txt h4 {
		font-size: 18px;
		margin-bottom: 11px
	}
	.team-details .qualification .single-box .txt h5 {
		font-size: 14px
	}
	.team-details .qualification .single-box .txt span {
		margin-bottom: 11px
	}
	.team-details .qualification .single-box .txt p {
		font-size: 14px;
		line-height: 24px
	}
	.team-details .expertise {
		padding-bottom: 10px
	}
	.team-details .expertise h2 {
		font-size: 20px;
		margin-bottom: 20px
	}
	.team-details .expertise p {
		font-size: 14px;
		line-height: 24px
	}
	.team-details .expertise .single-box {
		width: 200px;
		margin: 0 auto 30px
	}
	.team-details .additional-txt h2 {
		font-size: 25px;
		line-height: 35px;
		margin-top: -7px
	}
	.team-details .additional-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 14px
	}
	.team-details .additional-txt ul li {
		font-size: 14px;
		line-height: 30px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex
	}
	.team-details .additional-txt ul li span {
		font-size: 10px
	}
	.testimonial-2 {
		padding: 60px 0
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		padding-bottom: 15px
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-img {
		width: 90px;
		height: 90px
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt {
		width: 100%;
		margin-bottom: 35px
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt:before {
		bottom: -25px;
		right: 45px;
		left: auto;
		height: 45px;
		width: 100px
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt:after {
		bottom: auto;
		left: auto;
		top: 100%;
		right: 60px;
		height: 27px;
		width: 100px
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt .title h3 {
		font-size: 20px;
		margin-bottom: 10px
	}
	.testimonial-2 .testimonial-slider .owl-stage-outer .single-box .part-txt .title span {
		font-size: 14px
	}
	.testimonial-2 .testimonial-slider .owl-dots {
		padding-top: 30px
	}
	.testimonial-3 {
		padding: 60px 0
	}
	.testimonial-3 .testimonial-slider-2 .single-box .top .profile {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
	.testimonial-3 .testimonial-slider-2 .single-box .top .profile .part-img {
		margin-right: 0;
		margin-bottom: 25px
	}
	.testimonial-3 .testimonial-slider-2 .single-box .top .profile .txt h3 {
		font-size: 18px;
		margin-bottom: 6px
	}
	.testimonial-3 .testimonial-slider-2 .single-box .top .profile .txt p {
		font-size: 14px
	}
	.testimonial-3 .testimonial-slider-2 .single-box .top .quote span {
		font-size: 30px
	}
	.testimonial-3 .testimonial-slider-2 .single-box .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.testimonial-3 .testimonial-slider-2 .owl-dots {
		padding-top: 40px
	}
	.pricing.pricing-inner-2 {
		padding-top: 60px
	}
	.pricing-2 {
		padding-top: 60px;
		padding-bottom: 30px
	}
	.pricing-2 .single-box {
		width: 290px;
		padding: 30px 25px;
		margin: 0 auto 30px
	}
	.pricing-2 .single-box .top .part-icon {
		width: 70px;
		height: 70px;
		padding: 15px
	}
	.pricing-2 .single-box .top .price p {
		font-size: 14px;
		margin-top: -15px;
		margin-right: 5px
	}
	.pricing-2 .single-box .top .price h3 {
		font-size: 30px
	}
	.pricing-2 .single-box .top .price h3 span {
		font-size: 14px
	}
	.pricing-2 .single-box .bottom h3 {
		font-size: 20px;
		margin-bottom: 17px
	}
	.pricing-2 .single-box .bottom ul li {
		font-size: 14px;
		line-height: 30px
	}
	.pricing-2 .single-box .bottom .part-btn {
		font-size: 14px
	}
	.pricing-3 {
		padding-top: 60px
	}
	.pricing-3 .boxes .single-box {
		width: 290px;
		margin: 0 auto 30px;
		padding: 30px 25px
	}
	.pricing-3 .boxes .single-box .part-img {
		width: -webkit-max-content;
		width: -moz-max-content;
		width: max-content;
		margin-bottom: 30px
	}
	.pricing-3 .boxes .single-box .title {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin-bottom: 30px
	}
	.pricing-3 .boxes .single-box .title h4 {
		font-size: 20px;
		margin-bottom: 0
	}
	.pricing-3 .boxes .single-box .title .price p {
		font-size: 14px;
		margin-top: -5px;
		margin-right: 5px
	}
	.pricing-3 .boxes .single-box .title .price h3 {
		font-size: 30px;
		margin-top: -3px
	}
	.pricing-3 .boxes .single-box .title .price h3 span {
		font-size: 14px
	}
	.pricing-3 .boxes .single-box ul {
		margin-bottom: 18px
	}
	.pricing-3 .boxes .single-box ul li {
		font-size: 14px;
		margin-bottom: 16px
	}
	.pricing-3 .boxes .single-box .part-btn a {
		font-size: 14px
	}
	.pricing-3 .boxes .single-box .part-btn {
		padding-top: 9px;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start
	}
	.faq-2 {
		padding-bottom: 0;
		margin-bottom: -35px
	}
	.faq-2 .faq-inner-2 {
		padding-bottom: 25px
	}
	.faq .part-txt #accordion .part-img {
		max-width: 320px;
		margin: 0 auto 35px
	}
	.error {
		padding-top: 60px
	}
	.error .boxes {
		margin-bottom: 40px
	}
	.error .boxes .single-box {
		width: 80px;
		height: 80px;
		line-height: 80px;
		margin: 0 10px;
		font-size: 50px;
		border-radius: 5px
	}
	.error .part-txt h2 {
		font-size: 30px;
		line-height: 40px;
		margin-top: -8px;
		margin-bottom: 22px
	}
	.error .part-txt p {
		font-size: 18px;
		line-height: 28px;
		margin-bottom: 32px
	}
	.portfolio {
		padding-top: 60px
	}
	.portfolio .single-box {
		width: 290px;
		margin: 0 auto 30px
	}
	.portfolio .single-box .part-txt {
		height: 75px
	}
	.portfolio .single-box .part-txt a {
		font-size: 18px;
		line-height: 76px
	}
	.portfolio-details {
		padding-top: 60px
	}
	.portfolio-details .main-img {
		max-width: 320px;
		margin: 0 auto 40px
	}
	.portfolio-details .main-img:after {
		border-width: 100px
	}
	.portfolio-details .project-information h3 {
		font-size: 25px;
		margin-top: -2px;
		margin-bottom: 25px
	}
	.portfolio-details .project-information ul {
		max-width: 320px;
		margin: 0 auto
	}
	.portfolio-details .project-information ul li {
		font-size: 14px;
		line-height: 50px;
		padding: 0 15px
	}
	.portfolio-details .project-information ul li span {
		font-size: 14px
	}
	.portfolio-details .project-information ul li a {
		font-size: 12px;
		margin: 0 5px
	}
	.portfolio-details .main-txt h2 {
		font-size: 25px;
		margin-top: -2px;
		margin-bottom: 19px
	}
	.portfolio-details .main-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 22px
	}
	.portfolio-details .main-txt .part-img {
		margin-bottom: -6px
	}
	.portfolio-details .main-txt .part-img .single-img {
		border-radius: 5px;
		margin-bottom: 30px
	}
	.portfolio-details .main-txt ul {
		width: 100%
	}
	.portfolio-details .main-txt ul li {
		width: 100%;
		font-size: 14px
	}
	.portfolio-details .main-txt ul li span {
		font-size: 14px
	}
	.process-2.process-inner {
		margin-bottom: -40px
	}
	.portfolio-details .process-inner .heading-txt {
		padding-bottom: 7px
	}
	.portfolio-details .process-inner .heading-txt h2 {
		font-size: 25px;
		line-height: 35px;
		margin-top: -7px;
		margin-bottom: 14px
	}
	.portfolio-details .process-inner .heading-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.blog-inner {
		margin-bottom: 0
	}
	.blog-inner .main-content {
		margin-bottom: 60px
	}
	.blog-inner .main-content .pagination {
		padding-top: 10px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
	.blog-inner .main-content .pagination ul li {
		padding: 0 2.5px
	}
	.blog-inner .main-content .pagination ul li a {
		width: 35px;
		height: 35px;
		line-height: 35px;
		font-size: 12px
	}
	.blog-inner .next {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2
	}
	.blog-inner .sidebar {
		max-width: 320px;
		margin: 0 auto
	}
	.blog-inner .sidebar .profile {
		padding: 30px 25px;
		margin-bottom: 30px
	}
	.blog-inner .sidebar .profile .part-img {
		width: 90px;
		height: 90px;
		margin-bottom: 25px
	}
	.blog-inner .sidebar .profile .part-txt h3 {
		font-size: 20px;
		margin-bottom: 15px
	}
	.blog-inner .sidebar .profile .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.blog-inner .sidebar .profile .part-txt .social {
		padding-top: 5px
	}
	.blog-inner .sidebar .profile .part-txt .social a {
		font-size: 12px
	}
	.blog-inner .sidebar .search-box {
		padding: 30px 25px
	}
	.blog-inner .sidebar .search-box h3 {
		font-size: 20px;
		margin-bottom: 16px
	}
	.blog-inner .sidebar .search-box form button {
		font-size: 20px
	}
	.blog-inner .sidebar .blog-category {
		padding: 30px 25px;
		margin-bottom: 30px
	}
	.blog-inner .sidebar .blog-category h3 {
		height: 40px;
		line-height: 40px;
		font-size: 20px;
		border-radius: 5px
	}
	.blog-inner .sidebar .blog-category ul li a {
		font-size: 14px;
		padding-top: 14px
	}
	.blog-inner .sidebar .recent-blog {
		padding: 30px 25px;
		margin-bottom: 30px
	}
	.blog-inner .sidebar .recent-blog h3 {
		height: 40px;
		line-height: 40px;
		font-size: 20px;
		border-radius: 5px
	}
	.blog-inner .sidebar .recent-blog ul li .img {
		width: 60px;
		border-radius: 5px;
		margin-right: 10px
	}
	.blog-inner .sidebar .recent-blog ul li .txt {
		width: 165px
	}
	.blog-inner .sidebar .recent-blog ul li .txt a {
		font-size: 14px;
		font-weight: 600;
		line-height: 20px;
		margin-top: -4px
	}
	.blog-inner .sidebar .recent-blog ul li .txt .info {
		font-size: 11px
	}
	.blog-inner .sidebar .recent-blog ul li .txt .info .icon {
		font-size: 9px
	}
	.blog-inner .sidebar .tags {
		padding: 30px 25px
	}
	.blog-inner .sidebar .tags h3 {
		height: 40px;
		line-height: 40px;
		font-size: 20px;
		border-radius: 5px
	}
	.blog-inner .sidebar .tags .all-tag {
		margin: -5px -3px
	}
	.blog-inner .sidebar .tags .all-tag a {
		font-size: 14px;
		margin: 5px 3px
	}
	.blog-inner {
		padding-top: 60px
	}
	.blog-inner .blog-details {
		padding-bottom: 60px
	}
	.blog-inner .blog-details .title {
		margin-bottom: 35px
	}
	.blog-inner .blog-details .title .tag {
		border-width: 3px;
		font-size: 14px;
		height: 45px;
		margin-bottom: 25px
	}
	.blog-inner .blog-details .title h2 {
		font-size: 20px;
		line-height: 30px;
		margin-top: -2px;
		margin-bottom: 16px
	}
	.blog-inner .blog-details .title ul {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin-bottom: -3px
	}
	.blog-inner .blog-details .title ul li {
		margin-right: 15px
	}
	.blog-inner .blog-details .main-img {
		border-radius: 5px;
		margin-bottom: 35px
	}
	.blog-inner .blog-details .main-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px
	}
	.blog-inner .blog-details .main-txt .quoted {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 30px 25px
	}
	.blog-inner .blog-details .main-txt .quoted .img {
		width: 100px;
		margin-right: 0;
		margin-bottom: 25px
	}
	.blog-inner .blog-details .main-txt .quoted .txt {
		width: 100%
	}
	.blog-inner .blog-details .main-txt .quoted .txt span {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px;
		margin-bottom: 15px
	}
	.blog-inner .blog-details .main-txt .quoted .txt h4 {
		font-size: 18px;
		margin-bottom: 11px
	}
	.blog-inner .blog-details .main-txt .quoted .txt h5 {
		font-size: 14px
	}
	.blog-inner .blog-details .reasons-for-choose {
		padding-top: 8px
	}
	.blog-inner .blog-details .reasons-for-choose h2 {
		font-size: 20px;
		margin-bottom: 21px
	}
	.blog-inner .blog-details .reasons-for-choose ul {
		margin-bottom: 7px
	}
	.blog-inner .blog-details .reasons-for-choose ul li {
		width: 100%;
		font-size: 14px
	}
	.blog-inner .blog-details .reasons-for-choose ul li span {
		font-size: 14px
	}
	.blog-inner .blog-details .reasons-for-choose p {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px
	}
	.blog-inner .blog-details .reasons-for-choose .part-img {
		margin-bottom: 0
	}
	.blog-inner .blog-details .reasons-for-choose .part-img .single-img {
		width: 290px;
		margin: 0 auto 30px
	}
	.blog-inner .blog-details .reasons-for-choose .part-img .single-img img {
		width: 100%
	}
	.blog-inner .blog-details .other-option {
		padding-top: 8px;
		padding-bottom: 40px;
		margin-bottom: 40px
	}
	.blog-inner .blog-details .other-option .tags {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-bottom: 16px
	}
	.blog-inner .blog-details .other-option h3 {
		width: 100%;
		font-size: 18px;
		margin-bottom: 16px
	}
	.blog-inner .blog-details .other-option .tags a {
		font-size: 14px;
		font-weight: 600;
		margin: 0 10px 6px
	}
	.blog-inner .blog-details .other-option .share h3 {
		width: auto;
		margin-bottom: 0
	}
	.blog-inner .blog-details .other-option .share a {
		margin: 0 5px
	}
	.blog-inner .blog-details .admin-profile {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 30px 25px
	}
	.blog-inner .blog-details .admin-profile .part-img {
		width: 60px;
		height: 60px;
		margin-right: 0;
		margin-bottom: 25px
	}
	.blog-inner .blog-details .admin-profile .part-txt {
		width: 100%
	}
	.blog-inner .blog-details .admin-profile .part-txt h3 {
		margin-bottom: 9px
	}
	.blog-inner .blog-details .admin-profile .part-txt .admin-link {
		font-size: 13px;
		margin-bottom: 21px
	}
	.blog-inner .blog-details .admin-profile .part-txt p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 17px
	}
	.blog-inner .blog-details .blog-nav {
		padding-top: 40px;
		padding-bottom: 32px
	}
	.blog-inner .blog-details .blog-nav .single-nav.next-blog {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end
	}
	.blog-inner .blog-details .blog-nav .single-nav {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start
	}
	.blog-inner .blog-details .blog-nav .single-nav .img {
		width: 80px;
		height: 80px;
		border-radius: 5px;
		margin-right: 0;
		margin-bottom: 25px
	}
	.blog-inner .blog-details .blog-nav .single-nav .txt {
		width: 140px
	}
	.blog-inner .blog-details .blog-nav .single-nav .txt a {
		font-size: 14px;
		line-height: 24px;
		margin-top: -6px
	}
	.blog-inner .blog-details .blog-nav .single-nav .txt a span {
		margin-top: 11px
	}
	.blog-inner .blog-details .blog-comments .comments {
		padding: 40px 0
	}
	.blog-inner .blog-details .blog-comments h3 {
		font-size: 20px;
		margin-bottom: 26px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment.replied {
		margin-left: 30px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment .part-img {
		width: 70px;
		height: 70px;
		margin-right: 0;
		margin-bottom: 25px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt {
		width: 100%
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment.replied .part-txt {
		width: 100%
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt .top {
		margin-bottom: 15px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt .top h4 {
		font-size: 16px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt .top h4 span {
		display: block;
		font-size: 14px;
		margin-left: 0;
		margin-top: 10px
	}
	.blog-inner .blog-details .blog-comments .comments .single-comment .part-txt p {
		font-size: 14px;
		line-height: 24px
	}
	.blog-inner .blog-details .blog-comments .post-comment form input {
		height: 50px;
		font-size: 14px;
		margin-bottom: 25px
	}
	.blog-inner .blog-details .blog-comments .post-comment form textarea {
		height: 120px;
		font-size: 14px;
		margin-bottom: 25px
	}
	.blog-inner .blog-details .blog-comments .post-comment form .def-btn {
		height: 50px;
		line-height: 52px
	}
	.contact {
		padding: 60px 0
	}
	.contact .boxes {
		padding-bottom: 30px
	}
	.contact .boxes .single-box {
		width: 290px;
		padding: 30px;
		margin: 0 auto 30px
	}
	.contact .boxes .single-box .part-icon {
		width: 30px;
		height: 30px;
		line-height: 35px;
		font-size: 12px;
		margin-right: 15px
	}
	.contact .boxes .single-box .part-txt {
		width: 185px
	}
	.contact .boxes .single-box .part-txt h3 {
		font-size: 20px;
		margin-bottom: 12px
	}
	.contact .boxes .single-box .part-txt span {
		font-size: 14px;
		line-height: 30px
	}
	.contact .form {
		padding: 60px 20px
	}
	.contact .form input {
		height: 45px;
		margin-bottom: 25px
	}
	.contact .form textarea {
		height: 120px;
		margin-bottom: 30px
	}
	.map iframe {
		height: 250px
	}
}

.single-boxx {
	webkit-box-shadow: 0 0 25px -5px rgb(51 51 51 / 20%);
	box-shadow: 0 0 25px -5px rgb(51 51 51 / 20%);
	background: #fff;
	padding: 30px;
	border-radius: 10px;
}

.latest-row ul {
	width: 100%;
	list-style-type: none;
	margin: 0;
	padding: 0;
	border: 2px solid #fff;
	border-bottom: 0;
}

.latest-row ul li {
	line-height: 35px;
	border-bottom: 1px solid #fff;
	font-size: 14px;
	color: #414345;
	padding: 0 15px 0 25px;
	font-weight: 600;
}

.latest-row ul li h3 {
	display: inline-block;
	width: 100%;
	margin: 0;
	line-height: 35px;
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
}

.latest-row ul li i {
	display: inline-block;
	float: right;
}

.latest-row ul li span {
	display: inline-block;
	margin: 0px 5%;
}

.latest-row ul li span.span1 {
	width: 25%;
}

.latest-row ul li:nth-child(odd) {
	background: #e7eaee;
}

.latest-row1 ul li.title {
	background: url(../images/icon-dol.png) #1a143b no-repeat 13px;
	padding-left: 55px;
	line-height: 37px;
}

.latest-row3 ul li.title {
	background: url(../images/icon-dol2.png) #2a9d8f no-repeat 13px;
	padding-left: 55px;
	line-height: 37px;
}

