@charset "UTF-8";
/*------------------------------------------------------------------
[Master Stylesheet]
Theme Name:     Solun – Software & IT Solutions HTML Template
Version:        1.0.0
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

1. General
	1.1 Theme Reset Style
	1.2 Global Elements

2. header
	2.1 topbar
	2.2 navigation

3. content
	3.1 wpo-hero-slider
	3.2 wpo-about-section
	3.3 wpo-services-section
	3.4 wpo-fun-fact-section
	3.5 wpo-team-section
	3.6 wpo-partners-section
	3.7 wpo-portfolio-section
	3.8 wpo-testimonial-section 
	3.9 wpo-blog-section
	3.10 wpo-social-section 

4. wpo-footer

5. Home-style-2
   5.1	wpo-about-section-s2
   5.2	wpo-service-section-s2
   5.3	wpo-fun-fact-section-s2
   5.4	wpo-pricing-section 
   5.5	wpo-blog-section-s2

6. wpo-about-page
   6.1	wpo-about-section-s3

7. wpo-service-page

8. wpo-service-single

9. wpo-shop-page

10. wpo-shop-single-page

11. wpo-team-single

12. wpo-blog-pg-section

13. wpo-blog-single-section

14. error-404-section

15. wpo-faq-page

16. wpo-contact-pg-section

----------------------------------------------------------------*/
/*------------------------------------------------------------------
1. General
----------------------------------------------------------------*/
/*---------------------------
	Fonts
----------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap");
/* 1.1	Theme Reset Style */
html {
  font-size: 15pxpx;
}

:root {
  scroll-behavior: unset;
}

body {
  font-family: "Ubuntu", sans-serif;
  color: #3b3a3d;
  background-color: #fff;
  font-size: 15px;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

p {
  font-size: 16px;
  color: #3b3a3d;
  line-height: 1.8em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #030d4c;
  font-family: "Ubuntu", sans-serif;
  font-weight: 600;
  margin: 0;
}

ul {
  padding-left: 0;
  margin: 0;
}

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

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.sr-only {
  display: none !important;
  opacity: 0;
  visibility: hidden;
}

/* 1.2 Global Elements */
.page-wrapper {
  position: relative;
  overflow: hidden;
}

.wow {
  visibility: hidden;
}

.fi:before {
  margin: 0;
}

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

/*** contact form error handling ***/
.contact-validation-active .error-handling-messages {
  width: 100% !important;
  margin-top: 15px !important;
}
.contact-validation-active label.error {
  color: red;
  font-weight: normal;
  margin: 5px 0 0 0;
  text-align: left;
  display: block;
}
.contact-validation-active #c-loader,
.contact-validation-active #loader {
  display: none;
  margin-top: 10px;
}
.contact-validation-active #c-loader i,
.contact-validation-active #loader i {
  font-size: 30px;
  color: #212f8f;
  display: inline-block;
  -webkit-animation: rotating linear 2s infinite;
  animation: rotating linear 2s infinite;
}
.contact-validation-active #success,
.contact-validation-active #c-success,
.contact-validation-active #c-error,
.contact-validation-active #error {
  width: 100%;
  color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  text-align: center;
  display: none;
}
@media (max-width: 767px) {
  .contact-validation-active #success,
  .contact-validation-active #c-success,
  .contact-validation-active #c-error,
  .contact-validation-active #error {
    font-size: 15px;
  }
}
.contact-validation-active #c-success,
.contact-validation-active #success {
  background-color: rgb(0, 153.5, 0);
  border-left: 5px solid green;
  margin-bottom: 5px;
}
.contact-validation-active #c-error,
.contact-validation-active #error {
  background-color: rgb(255, 25.5, 25.5);
  border-left: 5px solid red;
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 5s alternate infinite;
  animation: rotating 5s alternate infinite;
}

/*** back to top **/
.back-to-top {
  background-color: rgba(33, 47, 143, 0.7);
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 2px solid #212f8f;
  border-radius: 45px;
  text-align: center;
  display: none;
  position: fixed;
  z-index: 999;
  right: 15px;
  bottom: 15px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
@media (max-width: 991px) {
  .back-to-top {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
.back-to-top:hover {
  background-color: #212f8f;
}

.back-to-top i {
  font-size: 18px;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/** for popup image ***/
.mfp-wrap {
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99999;
}

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

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

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

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

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

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

.h-screen {
  height: 100vh;
}

.font-xs {
  font-size: x-small;
}

.font-xxs {
  font-size: xx-small;
}

.font-sm {
  font-size: small;
}

label {
  margin-bottom: 6px !important;
}

p {
  margin: 0;
}

a {
  text-decoration: none !important;
}

.w-fit {
  width: fit-content !important;
}

.h-fit {
  height: fit-content !important;
}

.m-0 {
  margin: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.cursor-pointer {
  cursor: pointer;
}

#preview-container .preview-box {
  width: calc(20% - 12px);
  aspect-ratio: 1;
  border: 1px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  position: relative;
  padding: 0;
  overflow: hidden;
}

#preview-container .preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#preview-container .more-indicator {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 5px;
  font-size: 12px;
}

.aspect-ratio-square {
  aspect-ratio: 1;
}

.mb-9-rem {
  margin-bottom: 9rem;
}

.custom-select-guide {
  position: relative;
  min-width: 200px;
}
.custom-select-guide .select {
  padding: 6px 10px;
  border: 1px solid #ccc;
  cursor: pointer;
  border-radius: 4px;
}
.custom-select-guide .options-container {
  display: none;
  position: absolute;
  width: 100%;
  background: white;
  border: 1px solid #ccc;
  z-index: 9999;
  margin-top: 8px;
  border-radius: 4px;
}
.custom-select-guide .options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.custom-select-guide .option {
  padding: 10px;
  cursor: pointer;
  border-radius: 0;
}
.custom-select-guide .option:hover {
  background: lightgray;
}
.custom-select-guide .option.selected {
  background: lightgray;
}

.min-w-100 {
  min-width: 100%;
}

.w-80 {
  width: 80%;
}

.flex-auto {
  flex: auto;
}

@media (max-width: 767px) {
  .nav-tabs .nav-item {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .sm-h-fit {
    height: fit-content !important;
  }
}

/* Overwrite container height and width */
.select2-container .select2-selection--single {
  height: 37px !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
}

/* Text inside select box */
.select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 35px !important;
  padding-left: 10px !important;
}

/* Dropdown arrow */
.select2-container .select2-selection--single .select2-selection__arrow {
  height: 37px !important;
  top: 0 !important;
}

.wpo-section-title {
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .wpo-section-title {
    margin-bottom: 40px;
  }
}
.wpo-section-title span {
  text-transform: uppercase;
  color: #212f8f;
  font-family: "Ubuntu", sans-serif;
  font-family: "Ubuntu", sans-serif;
  font-size: 15px;
  font-weight: 700;
}
.wpo-section-title span i {
  font-size: 14px;
  font-weight: 500;
  padding: 0 20px;
}
.wpo-section-title h2 {
  margin: 0;
  margin-top: 17px;
  position: relative;
  text-transform: capitalize;
  font-family: "Ubuntu", sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 52px;
}
@media (max-width: 767px) {
  .wpo-section-title h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 330px) {
  .wpo-section-title h2 {
    font-size: 27px;
  }
}
@media (max-width: 330px) {
  .wpo-section-title h2 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 5px;
  }
}
.wpo-section-title p {
  font-size: 18px;
}

.theme-btn, .view-cart-btn {
  background: #4554b5;
  color: #fff;
  font-weight: 500;
  padding: 20px 40px;
  border: 0;
  border-radius: 6px;
  text-transform: capitalize;
  z-index: 1;
  position: relative;
  font-size: 16px;
  border-radius: 5px;
  line-height: 18px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  vertical-align: middle;
  overflow: hidden;
  display: table;
}
.theme-btn:after, .view-cart-btn:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -50px;
  opacity: 0;
  position: absolute;
  top: -50px;
  width: 50px;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transform: rotate(35deg);
  z-index: -11;
}
.theme-btn i, .view-cart-btn i {
  padding-left: 10px;
}
.theme-btn:hover, .view-cart-btn:hover, .theme-btn:focus, .view-cart-btn:focus, .theme-btn:active, .view-cart-btn:active {
  color: #fff;
}
.theme-btn:hover:after, .view-cart-btn:hover:after, .theme-btn:focus:after, .view-cart-btn:focus:after, .theme-btn:active:after, .view-cart-btn:active:after {
  left: 115%;
  transition: all 1050ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.2;
}
@media (max-width: 991px) {
  .theme-btn, .view-cart-btn {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .theme-btn, .view-cart-btn {
    padding: 12px 18px;
    font-size: 14px;
  }
}

.theme-btn-sm {
  background: #212f8f;
  color: #fff;
  font-weight: 500;
  padding: 12px 40px;
  border: 0;
  border-radius: 6px;
  text-transform: capitalize;
  z-index: 1;
  position: relative;
  font-size: 16px;
  border-radius: 5px;
  line-height: 18px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  vertical-align: middle;
  overflow: hidden;
  display: table;
}
.theme-btn-sm:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -50px;
  opacity: 0;
  position: absolute;
  top: -50px;
  width: 50px;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transform: rotate(35deg);
  z-index: -11;
}
.theme-btn-sm i {
  padding-left: 10px;
}
.theme-btn-sm:hover, .theme-btn-sm:focus, .theme-btn-sm:active {
  color: #fff;
}
.theme-btn-sm:hover:after, .theme-btn-sm:focus:after, .theme-btn-sm:active:after {
  left: 115%;
  transition: all 1050ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.2;
}
@media (max-width: 991px) {
  .theme-btn-sm {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .theme-btn-sm {
    padding: 12px 18px;
    font-size: 14px;
  }
}

.btn-primary {
  background: #212f8f !important;
  border: 1px solid #212f8f !important;
}

.theme-btn-s2 {
  background: #fff;
  color: #828086;
  display: inline-block;
  padding: 12px 22px;
  border: 1px solid #212f8f;
  border-radius: 55px;
  text-transform: capitalize;
  z-index: 1;
  position: relative;
}
.theme-btn-s2:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 55px;
  background: -webkit-linear-gradient(left, #00ded8, #00a7d5);
  background: -moz-linear-gradient(left, #00ded8, #00a7d5);
  background: -o-linear-gradient(left, #00ded8, #00a7d5);
  background: -ms-linear-gradient(left, #00ded8, #00a7d5);
  background: linear-gradient(left, #00ded8, #00a7d5);
  transition: opacity 0.5s ease-out;
  opacity: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .theme-btn-s2 {
    font-size: 14px;
  }
}
.theme-btn-s2:hover, .theme-btn-s2:focus, .theme-btn-s2:active {
  background: rgb(28.21875, 40.1903409091, 122.28125);
  color: #fff;
}
.theme-btn-s2:hover:after {
  opacity: 1;
}
@media (max-width: 767px) {
  .theme-btn-s2 {
    padding: 12px 18px;
    font-size: 13px;
  }
}

.view-cart-btn {
  display: block;
  margin-top: 15px;
  border-radius: 5px;
  padding: 10px 45px;
}
.view-cart-btn:after {
  display: none;
}
.view-cart-btn:hover {
  background-color: rgb(25.35, 36.1045454545, 109.85);
}
.view-cart-btn.s1 {
  background: #ddd;
}
.view-cart-btn.s1:hover {
  background-color: rgb(200.6, 200.6, 200.6);
}

.whatsapp-btn {
  background-color: #25d366;
}

.form input,
.form textarea,
.form select {
  border-color: rgb(191.25, 191.25, 191.25);
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  color: rgb(89.25, 89.25, 89.25);
  font-style: normal;
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: #212f8f;
  -webkit-box-shadow: 0 0 5px 0 rgb(42.5625, 60.6193181818, 184.4375);
  -moz-box-shadow: 0 0 5px 0 rgb(42.5625, 60.6193181818, 184.4375);
  -o-box-shadow: 0 0 5px 0 rgb(42.5625, 60.6193181818, 184.4375);
  -ms-box-shadow: 0 0 5px 0 rgb(42.5625, 60.6193181818, 184.4375);
  box-shadow: 0 0 5px 0 rgb(42.5625, 60.6193181818, 184.4375);
}
.form ::-webkit-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: rgb(89.25, 89.25, 89.25);
}
.form :-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: rgb(89.25, 89.25, 89.25);
}
.form ::-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: rgb(89.25, 89.25, 89.25);
}
.form :-ms-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: rgb(89.25, 89.25, 89.25);
}
.form select {
  font-style: normal;
  background: url(../images/select-icon.png) no-repeat right center;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  cursor: pointer;
}
.form select::-ms-expand {
  /* for IE 11 */
  display: none;
}
.form ::-webkit-input-placeholder {
  /* Edge */
  font-style: normal;
}
.form :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-style: normal;
}
.form ::placeholder {
  font-style: normal;
}

form .preview-image {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #ced4da;
}
form .preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trigger-popup {
  height: 24px;
  border-radius: 0.25rem;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #ced4da;
  background-color: #fff;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-clip: padding-box;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.trigger-popup .label {
  height: 100%;
  width: fit-content;
  background-color: #e8edef;
  padding: 4px 20px;
  text-align: center;
  color: black;
  border-right: 1px solid #ced4da;
}
.trigger-popup .value {
  height: 100%;
  padding: 4px 10px;
  opacity: 0.7;
}

.social-links {
  overflow: hidden;
}
.social-links li {
  float: left;
  width: 35px;
  height: 35px;
  margin-right: 1px;
}
.social-links li a {
  background-color: rgb(42.5625, 60.6193181818, 184.4375);
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  color: #fff;
  text-align: center;
}
.social-links li a:hover {
  background-color: #212f8f;
}

.wpo-page-title {
  background: url(../images/page-title.jpg) no-repeat center top/cover;
  min-height: 450px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
}
@media (max-width: 767px) {
  .wpo-page-title {
    min-height: 250px;
  }
}
.wpo-page-title:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #4554b5;
  content: "";
  z-index: -1;
  opacity: 0.5;
}
.wpo-page-title .wpo-breadcumb-wrap {
  text-align: center;
}
.wpo-page-title .wpo-breadcumb-wrap h2 {
  font-size: 60px;
  color: #fff;
  line-height: 60px;
  margin-top: -10px;
  margin-bottom: 20px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .wpo-page-title .wpo-breadcumb-wrap h2 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 10px;
  }
}
.wpo-page-title .wpo-breadcumb-wrap ol {
  padding-left: 0;
  margin-bottom: 0;
}
.wpo-page-title .wpo-breadcumb-wrap ol li {
  display: inline-block;
  padding: 0px 5px;
  padding-right: 20px;
  color: #fff;
  position: relative;
  font-size: 20px;
  font-family: "Ubuntu", sans-serif;
}
@media (max-width: 767px) {
  .wpo-page-title .wpo-breadcumb-wrap ol li {
    font-size: 18px;
  }
}
.wpo-page-title .wpo-breadcumb-wrap ol li:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}
.wpo-page-title .wpo-breadcumb-wrap ol li:last-child span {
  color: #cbd4fd;
}
.wpo-page-title .wpo-breadcumb-wrap ol li:last-child:after {
  display: none;
}
.wpo-page-title .wpo-breadcumb-wrap ol li a {
  color: #fff;
  font-size: 20px;
  transition: all 0.3s;
}
.wpo-page-title .wpo-breadcumb-wrap ol li a:hover {
  color: #030d4c;
}

.preloader {
  background-color: #29395b;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1000;
  overflow: hidden;
}
.preloader .vertical-centered-box {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
}
.preloader .vertical-centered-box:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
.preloader .vertical-centered-box .content {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  font-size: 0;
}
.preloader * {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.preloader .loader-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  margin-left: -60px;
  margin-top: -60px;
}
.preloader .loader-line-mask {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 120px;
  margin-left: -60px;
  margin-top: -60px;
  overflow: hidden;
  -webkit-transform-origin: 60px 60px;
  -moz-transform-origin: 60px 60px;
  -ms-transform-origin: 60px 60px;
  -o-transform-origin: 60px 60px;
  transform-origin: 60px 60px;
  -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
  -webkit-animation: rotate 1.2s infinite linear;
  -moz-animation: rotate 1.2s infinite linear;
  -o-animation: rotate 1.2s infinite linear;
  animation: rotate 1.2s infinite linear;
}
.preloader .loader-line-mask .loader-line {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}
.preloader #particles-background,
.preloader #particles-foreground {
  left: -51%;
  top: -51%;
  width: 202%;
  height: 202%;
  -webkit-transform: scale3d(0.5, 0.5, 1);
  -moz-transform: scale3d(0.5, 0.5, 1);
  -ms-transform: scale3d(0.5, 0.5, 1);
  -o-transform: scale3d(0.5, 0.5, 1);
  transform: scale3d(0.5, 0.5, 1);
}
.preloader #particles-background {
  background: #2c2d44;
  background-image: -moz-linear-gradient(45deg, #3f3251 2%, #002025 100%);
  background-image: -webkit-linear-gradient(45deg, #3f3251 2%, #002025 100%);
  background-image: linear-gradient(45deg, #3f3251 2%, #002025 100%);
}
.preloader lesshat-selector {
  -lh-property: 0;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-o-keyframes rotate {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.preloader [not-existing] {
  zoom: 1;
}
.preloader lesshat-selector {
  -lh-property: 0;
}
@-webkit-keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
@-moz-keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
@-o-keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
@keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
.preloader [not-existing] {
  zoom: 1;
}
.preloader lesshat-selector {
  -lh-property: 0;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.preloader [not-existing] {
  zoom: 1;
}

/*------------------------------------
	blog sidebar
------------------------------------*/
.blog-sidebar {
  /*** search-widget ***/
  /*** about-widget ***/
  /*** category-widget ***/
  /*** recent-post-widget ***/
  /*** instagram-widget ***/
  /*** tag-widget ***/
  /*** wpo-contact-widget ***/
}
@media screen and (min-width: 992px) {
  .blog-sidebar {
    padding-left: 45px;
  }
}
@media (max-width: 991px) {
  .blog-sidebar {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  .blog-sidebar {
    margin-top: 60px;
  }
}
.blog-sidebar .widget {
  background: #f6f6f6;
  padding: 40px;
  border-radius: 5px;
}
@media (max-width: 1400px) {
  .blog-sidebar .widget {
    padding: 25px;
  }
}
.blog-sidebar .widget h3 {
  font-size: 25px;
  font-size: calc-rem-value(25);
  color: #030d4c;
  margin: 0 0 1.3em;
  position: relative;
  text-transform: capitalize;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  border-radius: 5px;
}
.blog-sidebar > .widget + .widget {
  margin-top: 65px;
}
.blog-sidebar .search-widget form div {
  position: relative;
}
.blog-sidebar .search-widget input {
  background-color: #fff;
  height: 70px;
  font-size: 16px;
  font-size: calc-rem-value(16);
  padding: 6px 50px 6px 20px;
  border: 0;
  border-radius: 5px;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.blog-sidebar .search-widget input:focus {
  background-color: #fff;
}
.blog-sidebar .search-widget form button {
  background: transparent;
  font-size: 20px;
  font-size: calc-rem-value(20);
  color: #fff;
  background-color: #212f8f;
  border: 0;
  outline: 0;
  position: absolute;
  right: 10px;
  top: 52%;
  height: 50px;
  line-height: 50px;
  width: 50px;
  border-radius: 6px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.blog-sidebar .about-widget {
  text-align: center;
  background-color: #f6f6f6;
  padding: 45px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .blog-sidebar .about-widget {
    padding: 35px;
  }
}
.blog-sidebar .about-widget .aw-shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.blog-sidebar .about-widget .img-holder {
  margin-bottom: 25px;
}
.blog-sidebar .about-widget .img-holder img {
  border-radius: 50%;
  width: 100%;
  max-width: 200px;
}
.blog-sidebar .about-widget ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
.blog-sidebar .about-widget ul li {
  margin-right: 10px;
}
.blog-sidebar .about-widget ul li:last-child {
  margin-right: 0;
}
.blog-sidebar .about-widget ul li a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 44px;
  background-color: #fff;
  border-radius: 50%;
}
.blog-sidebar .about-widget ul li a:hover {
  background: #212f8f;
  color: #fff;
}
.blog-sidebar .about-widget h4 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 15px;
}
.blog-sidebar .about-widget p {
  font-size: 15px;
  font-size: calc-rem-value(15);
  margin-bottom: 1.2em;
}
.blog-sidebar .about-widget a {
  font-family: "Ubuntu", sans-serif;
  font-size: 14px;
  font-size: calc-rem-value(14);
  color: #030d4c;
  text-decoration: underline;
}
.blog-sidebar .about-widget a:hover {
  color: #212f8f;
}
.blog-sidebar .category-widget ul {
  list-style: none;
}
.blog-sidebar .category-widget ul li {
  font-size: 19px;
  font-size: calc-rem-value(19);
  position: relative;
}
@media (max-width: 767px) {
  .blog-sidebar .category-widget ul li {
    font-size: 16px;
    font-size: calc-rem-value(16);
  }
}
.blog-sidebar .category-widget ul li span {
  position: absolute;
  right: 0;
}
.blog-sidebar .category-widget ul > li + li {
  margin-top: 12px;
}
.blog-sidebar .category-widget ul a {
  display: block;
  color: #474f62;
  font-size: 16px;
  padding: 20px;
  background: #fff;
  padding-left: 60px;
  position: relative;
  border-radius: 5px;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .blog-sidebar .category-widget ul a {
    padding: 10px;
    padding-left: 25px;
    font-size: 14px;
  }
}
.blog-sidebar .category-widget ul a:after {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "\f102";
  font-family: "Flaticon";
  transform: translateY(-50%);
}
@media (max-width: 1200px) {
  .blog-sidebar .category-widget ul a:after {
    left: 5px;
  }
}
.blog-sidebar .category-widget ul a:hover,
.blog-sidebar .category-widget ul a.active,
.blog-sidebar .category-widget ul li:hover:before {
  background: #212f8f;
  color: #fff;
}
.blog-sidebar .recent-post-widget .post {
  overflow: hidden;
}
.blog-sidebar .recent-post-widget .posts > .post + .post {
  margin-top: 15px;
  padding-top: 15px;
}
.blog-sidebar .recent-post-widget .post .img-holder {
  width: 90px;
  height: 90px;
  float: left;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid #828086;
}
.blog-sidebar .recent-post-widget .post .img-holder img {
  width: 100%;
  height: 100%;
}
.blog-sidebar .recent-post-widget .post .details {
  width: calc(100% - 90px);
  float: left;
  padding-left: 20px;
}
@media (max-width: 1199px) {
  .blog-sidebar .recent-post-widget .post .details {
    padding-left: 8px;
  }
}
.blog-sidebar .recent-post-widget .post h4 {
  font-size: 16px;
  font-size: calc-rem-value(16);
  font-weight: 500;
  line-height: 1.3em;
  margin: 0 0 0.3em;
  font-family: "Ubuntu", sans-serif;
}
@media (max-width: 1199px) {
  .blog-sidebar .recent-post-widget .post h4 {
    margin: 0;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .blog-sidebar .recent-post-widget .post h4 {
    font-size: 16px;
    font-size: calc-rem-value(16);
  }
}
.blog-sidebar .recent-post-widget .post h4 a {
  display: inline-block;
  color: #030d4c;
}
.blog-sidebar .recent-post-widget .post h4 a:hover {
  color: #212f8f;
}
.blog-sidebar .recent-post-widget .post .details .date {
  font-size: 13px;
  font-size: calc-rem-value(13);
  color: #212f8f;
}
.blog-sidebar .recent-post-widget .post .details .date i {
  display: inline-block;
  padding-right: 7px;
}
.blog-sidebar .wpo-instagram-widget ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.blog-sidebar .wpo-instagram-widget ul li {
  -ms-flex: 0 0 33.33%;
  -webkit-box-flex: 0;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  margin-bottom: 5px;
  padding: 0px 3px;
}
.blog-sidebar .wpo-instagram-widget ul li img {
  width: 100%;
  border-radius: 6px;
}
.blog-sidebar .tag-widget ul {
  overflow: hidden;
  list-style: none;
}
.blog-sidebar .tag-widget ul li {
  float: left;
  margin: 0 8px 8px 0;
}
.blog-sidebar .tag-widget ul li a {
  font-size: 15px;
  font-size: calc-rem-value(15);
  display: inline-block;
  padding: 5px 10px;
  color: #030d4c;
  background: #fff;
  border-radius: 5px;
  font-family: "Ubuntu", sans-serif;
}
.blog-sidebar .tag-widget ul li a:hover {
  background: #212f8f;
  color: #fff;
}
.blog-sidebar .wpo-contact-widget .wpo-contact-widget-inner {
  border: 0;
  background: url(../images/contact-bg.jpg) no-repeat center center;
  position: relative;
  background-size: cover;
  z-index: 1;
  padding: 30px 40px;
  min-height: 330px;
  object-fit: cover;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
}
.blog-sidebar .wpo-contact-widget .wpo-contact-widget-inner:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 13, 76, 0.8);
  content: "";
  z-index: -1;
}
.blog-sidebar .wpo-contact-widget .wpo-contact-widget-inner:after {
  position: absolute;
  left: -50px;
  top: -50px;
  content: "";
  width: 150px;
  height: 150px;
  background: #212f8f;
  border-radius: 50%;
}
@media (max-width: 1200px) {
  .blog-sidebar .wpo-contact-widget .wpo-contact-widget-inner {
    padding: 20px;
  }
}
.blog-sidebar .wpo-contact-widget .wpo-contact-widget-inner h2 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 35px;
}
.blog-sidebar .wpo-contact-widget .wpo-contact-widget-inner h2 a {
  color: #fff;
}

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

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

/**** pagination ****/
.pagination-wrapper {
  text-align: center;
  margin-top: 60px;
}
@media (max-width: 991px) {
  .pagination-wrapper {
    text-align: left;
    margin-top: 40px;
  }
}
.pagination-wrapper .pg-pagination {
  display: inline-block;
  overflow: hidden;
  list-style-type: none;
  text-align: center;
}
.pagination-wrapper .pg-pagination li {
  float: left;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .pagination-wrapper .pg-pagination li {
    margin-right: 5px;
  }
}
.pagination-wrapper .pg-pagination li .disabled {
  opacity: 0.5 !important;
}
.pagination-wrapper .pg-pagination li:last-child {
  margin-right: 0;
}
.pagination-wrapper .pg-pagination li a {
  background-color: transparent;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-weight: 600;
  color: #030d4c;
  background: #ebf4fc;
  display: block;
}
@media (max-width: 991px) {
  .pagination-wrapper .pg-pagination li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
  }
}
.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
  background: #212f8f;
  border-color: #212f8f;
  color: #fff;
}
.pagination-wrapper .pg-pagination .fi:before {
  font-size: 15px;
}

.pagination-wrapper-left {
  text-align: left;
}

.pagination-wrapper-right {
  text-align: right;
}
@media screen and (min-width: 1200px) {
  .pagination-wrapper-right {
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .pagination-wrapper-right {
    margin-top: 45px;
    text-align: left;
  }
}

.swal2-html-container {
  padding: 0px !important;
}
.swal2-html-container .container-popup {
  border-bottom: 1px solid #e8e8e8;
}
.swal2-html-container .container-popup .pop-header {
  width: 100%;
  text-align: center;
  padding: 10px 0px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 20px;
  font-weight: 600;
  color: #163967;
}
.swal2-html-container .container-popup .pop-content {
  display: flex;
  gap: 10px;
  padding: 16px;
}
.swal2-html-container .container-popup .pop-content input#image-input {
  display: none;
}
.swal2-html-container .container-popup .pop-content .area-dropdown {
  width: 50%;
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 2px dashed #e8e8e8;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.swal2-html-container .container-popup .pop-content .area-dropdown:hover {
  border: 2px dashed #163967;
  background-color: rgba(22, 57, 103, 0.2509803922);
}
.swal2-html-container .container-popup .pop-content .area-dropdown img.preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swal2-html-container .container-popup .pop-content .area-dropdown i {
  font-size: 40px;
  color: #163967;
}
.swal2-html-container .container-popup .pop-content .area-dropdown span {
  font-weight: 400;
  font-size: 12px;
}
.swal2-html-container .container-popup .pop-content .rules {
  flex: 1;
  text-align: start;
}
.swal2-html-container .container-popup .pop-content .rules ul {
  padding-left: 20px;
  font-size: 14px;
}
.swal2-html-container .container-popup .pop-content .rules ul li.error {
  color: red;
}
.swal2-html-container .container-popup .pop-content .rules ul li.error i.error {
  margin-left: 4px;
}
.swal2-html-container .container-popup .pop-content .rules ul li.success {
  color: green;
}
.swal2-html-container .container-popup .pop-content .rules ul li.success i.success {
  margin-left: 4px;
}
.swal2-html-container .container-popup .pop-content .rules ul li.warning {
  color: #9a9a17;
}
.swal2-html-container .container-popup .pop-content .rules ul li.warning i.warning {
  margin-left: 4px;
}

.wpo-dashboard {
  display: flex;
  background-color: rgba(222, 222, 247, 0.371);
  height: 100vh;
}
.wpo-dashboard .wpo-sidebar {
  width: 60px;
  height: 100vh;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: width 0.5s ease-in-out;
}
.wpo-dashboard .wpo-sidebar.active {
  width: 15%;
}
@media (max-width: 1280px) {
  .wpo-dashboard .wpo-sidebar.active {
    width: 20%;
  }
}
@media (max-width: 991px) {
  .wpo-dashboard .wpo-sidebar {
    width: fit-content;
    position: relative;
    height: auto;
  }
  .wpo-dashboard .wpo-sidebar.active {
    width: fit-content;
    height: auto;
  }
}
.wpo-dashboard .wpo-sidebar .wpo-sidebar-widget .wpo-widget-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 10px;
  border-radius: 7px;
  border: 1px solid #ebebeb;
}
.wpo-dashboard .wpo-sidebar .wpo-sidebar-widget .wpo-widget-title h6 {
  display: none;
}
@media (max-width: 991px) {
  .wpo-dashboard .wpo-sidebar .wpo-sidebar-widget .wpo-widget-title {
    padding: 4px;
    margin: 10px 1px;
    border: none;
  }
}
.wpo-dashboard .wpo-sidebar .wpo-sidebar-widget button {
  position: absolute;
  right: -38px;
  top: 44px;
  padding: 11px;
  background-color: white;
  border-radius: 10px;
  border: none;
  transform: translateY(-50%);
  transition: right 0.3s ease;
}
@media (max-width: 991px) {
  .wpo-dashboard .wpo-sidebar .wpo-sidebar-widget button {
    display: none;
  }
}
.wpo-dashboard .wpo-sidebar .wpo-sidebar-widget button i {
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}
.wpo-dashboard .wpo-sidebar .wpo-sidebar-widget .wpo-widget-menu ul li a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 20px;
  color: slategray;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.wpo-dashboard .wpo-sidebar .wpo-sidebar-widget .wpo-widget-menu ul li a:hover {
  color: #212f8f;
  border-right: 3px solid #212f8f;
  background-color: rgb(227, 228, 230);
}
.wpo-dashboard .wpo-sidebar .wpo-sidebar-widget .wpo-widget-menu ul li a span {
  display: none;
}
@media (max-width: 991px) {
  .wpo-dashboard .wpo-sidebar .wpo-sidebar-widget .wpo-widget-menu ul li a span {
    display: none;
  }
}
@media (max-width: 991px) {
  .wpo-dashboard .wpo-sidebar .wpo-sidebar-widget .wpo-widget-menu ul li a {
    padding: 10px;
  }
}
.wpo-dashboard .wpo-sidebar .wpo-sidebar-widget .wpo-widget-menu ul li.active {
  color: #212f8f;
  border-right: 3px solid #212f8f;
  background-color: rgb(227, 228, 230);
}
.wpo-dashboard .wpo-sidebar .wpo-sidebar-widget-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.wpo-dashboard .wpo-sidebar .wpo-sidebar-widget-secondary .wpo-widget-menu ul {
  margin-bottom: 0;
}
.wpo-dashboard .wpo-sidebar .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 20px;
  color: slategray;
}
.wpo-dashboard .wpo-sidebar .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a:hover, .wpo-dashboard .wpo-sidebar .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a:active {
  color: #212f8f;
  border-right: 3px solid #212f8f;
  background-color: rgb(227, 228, 230);
}
.wpo-dashboard .wpo-sidebar .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a.card-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: slategray;
  border-radius: 7px;
  margin: 4px;
  padding: 0 4px;
  background-color: transparent;
  border: none;
}
@media (max-width: 991px) {
  .wpo-dashboard .wpo-sidebar .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a.card-user {
    margin: 4px;
    padding: 0 4px;
    background-color: transparent;
    border: none;
  }
}
.wpo-dashboard .wpo-sidebar .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a.card-user .img-container {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #c4c1c1;
}
@media (max-width: 991px) {
  .wpo-dashboard .wpo-sidebar .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a.card-user .img-container {
    width: 30px;
    height: 30px;
    border-radius: 100%;
  }
}
.wpo-dashboard .wpo-sidebar .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a.card-user .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wpo-dashboard .wpo-sidebar .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a.card-user .user-info {
  display: none;
}
@media (max-width: 991px) {
  .wpo-dashboard .wpo-sidebar .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a.card-user .user-info {
    display: none;
  }
}
.wpo-dashboard .wpo-sidebar .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a.card-user .user-info .title {
  font-size: 16px;
  font-weight: 500;
  color: #030d4c;
}
.wpo-dashboard .wpo-sidebar .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a.card-user .user-info .subtitle {
  font-size: 12px;
  font-weight: 400;
}
.wpo-dashboard .wpo-sidebar .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a.card-user:hover, .wpo-dashboard .wpo-sidebar .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a.card-user:active {
  color: #212f8f;
  background-color: rgb(227, 228, 230);
}
.wpo-dashboard .wpo-sidebar .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a span {
  display: none;
}
@media (max-width: 991px) {
  .wpo-dashboard .wpo-sidebar .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a span {
    display: none;
  }
}
@media (max-width: 991px) {
  .wpo-dashboard .wpo-sidebar .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a {
    padding: 10px;
    justify-content: center;
  }
}
.wpo-dashboard .wpo-sidebar.active .wpo-widget-title {
  padding: 15px;
}
@media (max-width: 991px) {
  .wpo-dashboard .wpo-sidebar.active .wpo-widget-title {
    padding: 0;
  }
}
.wpo-dashboard .wpo-sidebar.active .wpo-sidebar-widget .wpo-widget-title {
  background-color: rgba(205, 205, 245, 0.371);
}
.wpo-dashboard .wpo-sidebar.active .wpo-sidebar-widget .wpo-widget-title h6 {
  display: block;
}
@media (max-width: 991px) {
  .wpo-dashboard .wpo-sidebar.active .wpo-sidebar-widget .wpo-widget-title h6 {
    display: none;
  }
}
@media (max-width: 991px) {
  .wpo-dashboard .wpo-sidebar.active .wpo-sidebar-widget .wpo-widget-menu a {
    justify-content: center;
  }
}
.wpo-dashboard .wpo-sidebar.active .wpo-sidebar-widget .wpo-widget-menu a span {
  display: inline;
}
@media (max-width: 991px) {
  .wpo-dashboard .wpo-sidebar.active .wpo-sidebar-widget .wpo-widget-menu a span {
    display: none;
  }
}
.wpo-dashboard .wpo-sidebar.active .wpo-sidebar-widget button {
  border: 1px solid #ebebeb;
  right: 18px;
}
.wpo-dashboard .wpo-sidebar.active .wpo-sidebar-widget button i {
  transform: rotate(0deg);
}
.wpo-dashboard .wpo-sidebar.active .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 16px;
  padding: 15px 20px;
  color: slategray;
}
.wpo-dashboard .wpo-sidebar.active .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a.card-user {
  margin: 13px;
  background-color: rgba(205, 205, 245, 0.371);
  border: 1px solid #ebebeb;
}
@media (max-width: 991px) {
  .wpo-dashboard .wpo-sidebar.active .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a.card-user {
    margin: 4px;
    padding: 0 4px;
    background-color: transparent;
    border: none;
  }
}
.wpo-dashboard .wpo-sidebar.active .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a.card-user .img-container {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #c4c1c1;
}
@media (max-width: 991px) {
  .wpo-dashboard .wpo-sidebar.active .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a.card-user .img-container {
    width: 30px;
    height: 30px;
    border-radius: 100%;
  }
}
.wpo-dashboard .wpo-sidebar.active .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a.card-user .user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
@media (max-width: 991px) {
  .wpo-dashboard .wpo-sidebar.active .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a.card-user .user-info {
    display: none;
  }
}
@media (max-width: 991px) {
  .wpo-dashboard .wpo-sidebar.active .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a {
    justify-content: center;
  }
}
.wpo-dashboard .wpo-sidebar.active .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a span {
  display: inline;
}
@media (max-width: 991px) {
  .wpo-dashboard .wpo-sidebar.active .wpo-sidebar-widget-secondary .wpo-widget-menu ul li a span {
    display: none;
  }
}
.wpo-dashboard .sidebar-helper {
  width: 20%;
}
@media (max-width: 991px) {
  .wpo-dashboard .sidebar-helper {
    display: none;
  }
}
.wpo-dashboard main {
  flex: 1 1 0%;
}
@media (max-width: 991px) {
  .wpo-dashboard main {
    width: 100%;
    margin-left: 0 !important;
    padding: 1rem !important;
    height: 100%;
    overflow-x: hidden;
  }
}
.wpo-dashboard main .wpo-dashboard-page i {
  color: #212f8f;
  font-size: xx-large;
  margin-right: 1rem;
}

/*--------------------------------------------------------------
2. header
--------------------------------------------------------------*/
/* 2.2 navigation */
.site-header {
  /* navigation open and close btn hide for width screen */
  /* style for navigation less than 992px */
  /*navbar collaps less then 992px*/
}
@media (max-width: 767px) {
  .site-header .container {
    max-width: 100%;
  }
  .site-header .fullname {
    display: none;
  }
}
.site-header .navigation {
  background-color: #212f8f;
  margin-bottom: 0;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
.site-header .navigation > .container {
  position: relative;
}
.site-header .navigation .navbar-header .navbar-brand {
  height: auto;
}
.site-header #navbar {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  padding: 0;
  /*** mega-menu style ***/
}
.site-header #navbar > ul li a:hover,
.site-header #navbar > ul li a:focus {
  text-decoration: none;
  opacity: 0.8;
}
@media screen and (min-width: 992px) {
  .site-header #navbar {
    /*** hover effect ***/
  }
  .site-header #navbar li {
    position: relative;
    list-style: none;
  }
  .site-header #navbar > ul > li > a {
    font-size: 16px;
    font-weight: 500;
    padding: 30px 20px;
    text-transform: capitalize;
    color: #6c6f76;
  }
  .site-header #navbar > ul > li:first-child > a:first-child {
    padding-left: 0;
  }
  .site-header #navbar > ul .sub-menu {
    background-color: #212f8f;
    width: 220px;
    padding: 10px 0;
    position: absolute;
    left: 0;
    top: 130%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    box-shadow: 0px 15px 60px -19px rgb(0, 0, 0);
  }
  .site-header #navbar > ul > li .sub-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
  }
  .site-header #navbar > ul > li > .sub-menu .sub-menu {
    left: 110%;
    top: 0;
  }
  .site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a {
    position: relative;
  }
  .site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a:before {
    font-family: "FontAwesome";
    content: "\f105";
    font-size: 15px;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .site-header #navbar > ul > li:hover > .sub-menu {
    top: 170%;
    visibility: visible;
    opacity: 1;
  }
  .site-header #navbar .sub-menu > li:hover > .sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 991px) {
  .site-header #navbar > ul > li a {
    display: block;
    font-size: 14px;
  }
  .site-header #navbar > ul > li .sub-menu li {
    border-bottom: 1px solid rgb(229.5, 229.5, 229.5);
  }
  .site-header #navbar > ul .sub-menu > li:last-child {
    border-bottom: 0;
  }
  .site-header #navbar > ul > li > .sub-menu a {
    padding: 8px 15px 8px 45px;
  }
  .site-header #navbar > ul > li > .sub-menu .sub-menu a {
    padding: 8px 15px 8px 65px;
  }
  .site-header #navbar > ul .menu-item-has-children > a {
    position: relative;
  }
  .site-header #navbar > ul .menu-item-has-children > a:before {
    font-family: "FontAwesome";
    content: "\f107";
    font-size: 15px;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 992px) {
  .site-header #navbar {
    /*** hover effect ***/
  }
  .site-header #navbar .has-mega-menu {
    position: static;
  }
  .site-header #navbar .mega-menu,
  .site-header #navbar .half-mega-menu {
    background-color: #fff;
    padding: 20px;
    border-top: 2px solid #212f8f;
    position: absolute;
    right: 0;
    top: 120%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
  }
  .site-header #navbar .mega-menu {
    width: 1140px;
    right: 15px;
  }
  .site-header #navbar .half-mega-menu {
    width: 585px;
  }
  .site-header #navbar .mega-menu-box-title {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    display: block;
    padding-bottom: 7px;
    margin-bottom: 7px;
    border-bottom: 1px solid rgb(229.5, 229.5, 229.5);
  }
  .site-header #navbar .mega-menu-list-holder li a {
    font-size: 14px;
    display: block;
    padding: 7px 8px;
    margin-left: -8px;
  }
  .site-header #navbar .has-mega-menu:hover > ul {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 1199px) {
  .site-header #navbar > ul .mega-menu {
    width: 950px;
    right: 15px;
  }
  .site-header #navbar > ul .half-mega-menu {
    width: 485px;
  }
}
@media (max-width: 991px) {
  .site-header #navbar > ul .mega-menu,
  .site-header #navbar > ul .half-mega-menu {
    width: auto;
  }
  .site-header #navbar > ul .mega-menu .row,
  .site-header #navbar > ul .half-mega-menu .row {
    margin: 0;
  }
  .site-header #navbar .mega-menu-content > .row > .col {
    margin-bottom: 25px;
  }
}
@media (max-width: 991px) {
  .site-header #navbar .mega-menu .mega-menu-list-holder a {
    padding: 5px 15px 5px 40px;
  }
  .site-header #navbar .mega-menu .mega-menu-box-title {
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    border-bottom: 1px dotted rgb(178.5, 178.5, 178.5);
    padding: 0 0 4px 5px;
    margin: 0 25px 8px 25px;
  }
}
.site-header .open-btn {
  background: none !important;
  border: none !important;
  color: whitesmoke !important;
  font-size: 25px !important;
  padding: 0 !important;
}
@media screen and (min-width: 992px) {
  .site-header .open-btn {
    display: none;
  }
  .site-header #navbar .close-navbar {
    display: none;
  }
}
.site-header .navbar {
  padding-bottom: 0;
  padding-top: 0;
}
@media (max-width: 991px) {
  .site-header {
    /* class for show hide navigation */
  }
  .site-header .container {
    width: 100%;
  }
  .site-header .navbar-header button {
    background-color: #212f8f;
    width: 40px;
    height: 40px;
    border: 0;
    padding: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    outline: 0;
    position: absolute;
    right: 15px;
    z-index: 20;
    top: 50%;
    border-radius: 50%;
    transform: translateY(-50%);
  }
  .site-header .navbar-header button span {
    background-color: #fff;
    display: block;
    height: 2px;
    margin-bottom: 5px;
  }
  .site-header .navbar-header button span:last-child {
    margin: 0;
  }
  .site-header #navbar {
    background: #212f8f;
    display: block !important;
    width: 280px;
    height: 100% !important;
    margin: 0;
    padding: 0;
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    position: fixed;
    right: -300px;
    top: 0;
    z-index: 1000000000000000000000000000000000000;
  }
  .site-header #navbar ul a {
    color: #000;
  }
  .site-header #navbar ul a:hover,
  .site-header #navbar ul li.current a {
    color: #fff;
  }
  .site-header #navbar .navbar-nav {
    height: 100%;
    overflow: auto;
  }
  .site-header #navbar .close-navbar {
    background-color: #fff;
    width: 35px;
    height: 35px;
    color: #fff;
    border: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    outline: none;
    position: absolute;
    left: -18px;
    top: 10px;
    z-index: 20;
  }
  .site-header #navbar .close-navbar i {
    color: #212f8f;
  }
  .site-header #navbar > ul > li {
    border-bottom: 1px solid #cccccc;
  }
  .site-header #navbar > ul > li > a {
    padding: 10px 15px 10px 35px;
  }
  .site-header .slideInn {
    right: 0 !important;
  }
}
@media (max-width: 767px) {
  .site-header .navbar-header .navbar-brand {
    font-size: 24px;
  }
  .site-header #navbar .navbar-nav {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .site-header .navbar-collapse.collapse {
    display: none;
  }
  .site-header .navbar-collapse.collapse.in {
    display: block;
  }
  .site-header .navbar-header .collapse,
  .site-header .navbar-toggle {
    display: block;
  }
  .site-header .navbar-header {
    float: none;
  }
  .site-header .navbar-right {
    float: none;
  }
  .site-header .navbar-nav {
    float: none;
  }
  .site-header .navbar-nav > li {
    float: none;
  }
}

/**********************************
	header style 1
***********************************/
/* 2.1 topbar */
.header-style-1, .header-style-3, .header-style-2 {
  height: 9rem;
  position: relative;
  z-index: 2;
  /*** navigation ***/
}
@media (max-width: 991px) {
  .header-style-1, .header-style-3, .header-style-2 {
    height: auto;
  }
}
.header-style-1 .topbar, .header-style-3 .topbar, .header-style-2 .topbar {
  background-color: #fff;
  padding: 20px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-bottom: 2px solid #f6f6f6;
}
@media (max-width: 991px) {
  .header-style-1 .topbar, .header-style-3 .topbar, .header-style-2 .topbar {
    background: #212f8f;
    border-bottom: 0;
    height: auto;
  }
}
.header-style-1 .topbar img.logo-2, .header-style-3 .topbar img.logo-2, .header-style-2 .topbar img.logo-2 {
  display: none;
}
@media screen and (max-width: 767px) {
  .header-style-1 .topbar img.logo-2, .header-style-3 .topbar img.logo-2, .header-style-2 .topbar img.logo-2 {
    display: block;
  }
}
.header-style-1 .topbar .logo-1 p, .header-style-3 .topbar .logo-1 p, .header-style-2 .topbar .logo-1 p {
  line-height: normal;
  font-size: medium;
}
@media screen and (max-width: 767px) {
  .header-style-1 .topbar .logo-1, .header-style-3 .topbar .logo-1, .header-style-2 .topbar .logo-1 {
    display: none !important;
  }
}
.header-style-1 .topbar .topbar-item-container, .header-style-3 .topbar .topbar-item-container, .header-style-2 .topbar .topbar-item-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 991px) {
  .header-style-1 .topbar .topbar-item-container, .header-style-3 .topbar .topbar-item-container, .header-style-2 .topbar .topbar-item-container {
    justify-content: start;
  }
}
@media (min-width: 991px) {
  .header-style-1 .topbar .topbar-item-container .open-btn, .header-style-3 .topbar .topbar-item-container .open-btn, .header-style-2 .topbar .topbar-item-container .open-btn {
    display: none;
  }
}
@media (max-width: 767px) {
  .header-style-1 .topbar, .header-style-3 .topbar, .header-style-2 .topbar {
    padding: 10px 0;
  }
}
.header-style-1 .topbar:before, .header-style-3 .topbar:before, .header-style-2 .topbar:before {
  display: none;
  position: absolute;
  right: 55%;
  top: -5px;
  height: 145%;
  width: 7%;
  background-color: #212f8f;
  clip-path: polygon(0 1%, 0% 100%, 100% 100%);
  content: "";
  transform: translateX(-44%);
}
@media (max-width: 991px) {
  .header-style-1 .topbar:before, .header-style-3 .topbar:before, .header-style-2 .topbar:before {
    display: none;
  }
}
.header-style-1 .topbar:after, .header-style-3 .topbar:after, .header-style-2 .topbar:after {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 35%;
  height: 100%;
  content: "";
  background: #212f8f;
  z-index: -1;
}
@media (max-width: 991px) {
  .header-style-1 .topbar:after, .header-style-3 .topbar:after, .header-style-2 .topbar:after {
    display: none;
  }
}
.header-style-1 .topbar:after::after, .header-style-3 .topbar:after::after, .header-style-2 .topbar:after::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 35%;
  height: 100%;
  content: "";
  background: #212f8f;
  z-index: -1;
}
.header-style-1 .topbar .topbar-shape:before, .header-style-3 .topbar .topbar-shape:before, .header-style-2 .topbar .topbar-shape:before {
  position: absolute;
  right: 58%;
  top: 0px;
  height: 187%;
  width: 9%;
  background-color: #212f8f;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  content: "";
  transform: translateX(-44%);
  z-index: -1;
}
@media (max-width: 991px) {
  .header-style-1 .topbar .topbar-shape:before, .header-style-3 .topbar .topbar-shape:before, .header-style-2 .topbar .topbar-shape:before {
    display: none;
  }
}
.header-style-1 .topbar .topbar-shape::after, .header-style-3 .topbar .topbar-shape::after, .header-style-2 .topbar .topbar-shape::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 35%;
  height: 100%;
  content: "";
  background: #212f8f;
  z-index: -111;
}
@media (max-width: 991px) {
  .header-style-1 .topbar .topbar-shape::after, .header-style-3 .topbar .topbar-shape::after, .header-style-2 .topbar .topbar-shape::after {
    display: none;
  }
}
.header-style-1 .topbar .contact-intro, .header-style-3 .topbar .contact-intro, .header-style-2 .topbar .contact-intro {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 767px) {
  .header-style-1 .topbar .contact-intro, .header-style-3 .topbar .contact-intro, .header-style-2 .topbar .contact-intro {
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.2392156863);
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .header-style-1 .topbar .contact-intro .contact-info, .header-style-3 .topbar .contact-intro .contact-info, .header-style-2 .topbar .contact-intro .contact-info {
    width: 100%;
    padding-top: 20px;
  }
}
.header-style-1 .topbar .contact-intro .contact-info ul, .header-style-3 .topbar .contact-intro .contact-info ul, .header-style-2 .topbar .contact-intro .contact-info ul,
.header-style-1 .topbar .contact-intro .contact-info a,
.header-style-3 .topbar .contact-intro .contact-info a,
.header-style-2 .topbar .contact-intro .contact-info a {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .header-style-1 .topbar .contact-intro .contact-info ul, .header-style-3 .topbar .contact-intro .contact-info ul, .header-style-2 .topbar .contact-intro .contact-info ul,
  .header-style-1 .topbar .contact-intro .contact-info a,
  .header-style-3 .topbar .contact-intro .contact-info a,
  .header-style-2 .topbar .contact-intro .contact-info a {
    align-items: unset;
  }
}
.header-style-1 .topbar .contact-intro .contact-info ul li, .header-style-3 .topbar .contact-intro .contact-info ul li, .header-style-2 .topbar .contact-intro .contact-info ul li,
.header-style-1 .topbar .contact-intro .contact-info a li,
.header-style-3 .topbar .contact-intro .contact-info a li,
.header-style-2 .topbar .contact-intro .contact-info a li {
  list-style: none;
}
.header-style-1 .topbar .contact-intro .contact-info ul li i, .header-style-3 .topbar .contact-intro .contact-info ul li i, .header-style-2 .topbar .contact-intro .contact-info ul li i,
.header-style-1 .topbar .contact-intro .contact-info a li i,
.header-style-3 .topbar .contact-intro .contact-info a li i,
.header-style-2 .topbar .contact-intro .contact-info a li i {
  margin-left: 40px;
  width: 50px;
  height: 50px;
  background: #f5f6f8;
  border-radius: 50%;
  font-size: 20px;
  color: #212f8f;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .header-style-1 .topbar .contact-intro .contact-info ul li i, .header-style-3 .topbar .contact-intro .contact-info ul li i, .header-style-2 .topbar .contact-intro .contact-info ul li i,
  .header-style-1 .topbar .contact-intro .contact-info a li i,
  .header-style-3 .topbar .contact-intro .contact-info a li i,
  .header-style-2 .topbar .contact-intro .contact-info a li i {
    margin-left: 10px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .header-style-1 .topbar .contact-intro .contact-info ul li i, .header-style-3 .topbar .contact-intro .contact-info ul li i, .header-style-2 .topbar .contact-intro .contact-info ul li i,
  .header-style-1 .topbar .contact-intro .contact-info a li i,
  .header-style-3 .topbar .contact-intro .contact-info a li i,
  .header-style-2 .topbar .contact-intro .contact-info a li i {
    margin-left: 0;
  }
}
.header-style-1 .topbar .contact-intro .contact-info ul li .contact-dete, .header-style-3 .topbar .contact-intro .contact-info ul li .contact-dete, .header-style-2 .topbar .contact-intro .contact-info ul li .contact-dete,
.header-style-1 .topbar .contact-intro .contact-info a li .contact-dete,
.header-style-3 .topbar .contact-intro .contact-info a li .contact-dete,
.header-style-2 .topbar .contact-intro .contact-info a li .contact-dete {
  margin-left: 15px;
}
.header-style-1 .topbar .contact-intro .contact-info ul li .contact-dete span, .header-style-3 .topbar .contact-intro .contact-info ul li .contact-dete span, .header-style-2 .topbar .contact-intro .contact-info ul li .contact-dete span,
.header-style-1 .topbar .contact-intro .contact-info a li .contact-dete span,
.header-style-3 .topbar .contact-intro .contact-info a li .contact-dete span,
.header-style-2 .topbar .contact-intro .contact-info a li .contact-dete span {
  font-family: "Ubuntu", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: #ededef;
}
@media (max-width: 991px) {
  .header-style-1 .topbar .contact-intro .contact-info ul li .contact-dete span, .header-style-3 .topbar .contact-intro .contact-info ul li .contact-dete span, .header-style-2 .topbar .contact-intro .contact-info ul li .contact-dete span,
  .header-style-1 .topbar .contact-intro .contact-info a li .contact-dete span,
  .header-style-3 .topbar .contact-intro .contact-info a li .contact-dete span,
  .header-style-2 .topbar .contact-intro .contact-info a li .contact-dete span {
    color: #fff;
  }
}
.header-style-1 .topbar .contact-intro .contact-info ul li .contact-dete p, .header-style-3 .topbar .contact-intro .contact-info ul li .contact-dete p, .header-style-2 .topbar .contact-intro .contact-info ul li .contact-dete p,
.header-style-1 .topbar .contact-intro .contact-info a li .contact-dete p,
.header-style-3 .topbar .contact-intro .contact-info a li .contact-dete p,
.header-style-2 .topbar .contact-intro .contact-info a li .contact-dete p {
  font-family: "Ubuntu", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 20px;
  color: #030d4c;
  margin-bottom: 0;
  margin-top: 8px;
}
@media (max-width: 991px) {
  .header-style-1 .topbar .contact-intro .contact-info ul li .contact-dete p, .header-style-3 .topbar .contact-intro .contact-info ul li .contact-dete p, .header-style-2 .topbar .contact-intro .contact-info ul li .contact-dete p,
  .header-style-1 .topbar .contact-intro .contact-info a li .contact-dete p,
  .header-style-3 .topbar .contact-intro .contact-info a li .contact-dete p,
  .header-style-2 .topbar .contact-intro .contact-info a li .contact-dete p {
    color: #fff;
    font-size: 15px;
    margin-top: 0;
  }
}
.header-style-1 .topbar .info, .header-style-3 .topbar .info, .header-style-2 .topbar .info {
  float: right;
  margin-top: 4px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .header-style-1 .topbar .info, .header-style-3 .topbar .info, .header-style-2 .topbar .info {
    text-align: right;
  }
}
@media (max-width: 767px) {
  .header-style-1 .topbar .info, .header-style-3 .topbar .info, .header-style-2 .topbar .info {
    float: none;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eeecec;
  }
}
.header-style-1 .topbar .info > div, .header-style-3 .topbar .info > div, .header-style-2 .topbar .info > div {
  float: left;
}
@media (max-width: 767px) {
  .header-style-1 .topbar .info > div, .header-style-3 .topbar .info > div, .header-style-2 .topbar .info > div {
    float: none;
  }
}
.header-style-1 .topbar .info > div + div, .header-style-3 .topbar .info > div + div, .header-style-2 .topbar .info > div + div {
  margin-left: 38px;
}
@media (max-width: 767px) {
  .header-style-1 .topbar .info > div + div, .header-style-3 .topbar .info > div + div, .header-style-2 .topbar .info > div + div {
    margin: 15px 0 0;
  }
}
.header-style-1 .topbar .info span, .header-style-3 .topbar .info span, .header-style-2 .topbar .info span {
  color: #212f8f;
  display: inline-block;
  margin-bottom: 3px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .header-style-1 .topbar .info span, .header-style-3 .topbar .info span, .header-style-2 .topbar .info span {
    font-size: 14px;
  }
}
.header-style-1 .topbar .info p, .header-style-3 .topbar .info p, .header-style-2 .topbar .info p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3em;
  color: #5d5d5d;
  margin: 0;
}
@media (max-width: 991px) {
  .header-style-1 .topbar .info p, .header-style-3 .topbar .info p, .header-style-2 .topbar .info p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .header-style-1 .site-logo, .header-style-3 .site-logo, .header-style-2 .site-logo {
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .header-style-1 #navbar > ul > li > a, .header-style-3 #navbar > ul > li > a, .header-style-2 #navbar > ul > li > a {
    padding: 30px 15px;
  }
}
@media screen and (min-width: 1200px) {
  .header-style-1 #navbar > ul > li > a, .header-style-3 #navbar > ul > li > a, .header-style-2 #navbar > ul > li > a {
    padding: 30px 20px;
  }
}
.header-style-1 #navbar > ul > li a, .header-style-3 #navbar > ul > li a, .header-style-2 #navbar > ul > li a {
  color: #ededef;
}
.header-style-1 #navbar > ul > li.item-add-on, .header-style-3 #navbar > ul > li.item-add-on, .header-style-2 #navbar > ul > li.item-add-on {
  display: none;
}
@media (max-width: 991px) {
  .header-style-1 #navbar > ul > li.item-add-on, .header-style-3 #navbar > ul > li.item-add-on, .header-style-2 #navbar > ul > li.item-add-on {
    display: block;
  }
}
.header-style-1 .navigation .search-quote, .header-style-3 .navigation .search-quote, .header-style-2 .navigation .search-quote {
  float: right;
}
@media (max-width: 991px) {
  .header-style-1 .navigation .search-quote, .header-style-3 .navigation .search-quote, .header-style-2 .navigation .search-quote {
    width: 100%;
    float: left;
    position: relative;
  }
}
.header-style-1 .navigation .search-quote > div, .header-style-3 .navigation .search-quote > div, .header-style-2 .navigation .search-quote > div {
  float: left;
}
@media (max-width: 991px) {
  .header-style-1 .navigation .search-quote > div, .header-style-3 .navigation .search-quote > div, .header-style-2 .navigation .search-quote > div {
    display: none;
    width: 33%;
  }
}
@media (max-width: 542px) {
  .header-style-1 .navigation .search-quote > div, .header-style-3 .navigation .search-quote > div, .header-style-2 .navigation .search-quote > div {
    display: none;
    width: 38%;
  }
}
.header-style-1 .search-quote .search, .header-style-3 .search-quote .search, .header-style-2 .search-quote .search {
  position: absolute;
  right: 208px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
}
@media (max-width: 991px) {
  .header-style-1 .search-quote .search, .header-style-3 .search-quote .search, .header-style-2 .search-quote .search {
    right: -20px;
  }
}
.header-style-1 .search-quote .search > button, .header-style-3 .search-quote .search > button, .header-style-2 .search-quote .search > button {
  background: transparent;
  border: 0;
  outline: 0;
}
.header-style-1 .search-quote .search > button .fi:before, .header-style-3 .search-quote .search > button .fi:before, .header-style-2 .search-quote .search > button .fi:before {
  color: #b2b2b2;
}
.header-style-1 .search > div, .header-style-3 .search > div, .header-style-2 .search > div {
  background: #f8f8f8;
  width: 250px;
  padding: 20px;
  position: absolute;
  right: 0;
  top: 54px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .header-style-1 .search > div, .header-style-3 .search > div, .header-style-2 .search > div {
    right: -35px;
    top: 54px;
  }
}
.header-style-1 .search > div input, .header-style-3 .search > div input, .header-style-2 .search > div input {
  height: 42px;
  border-radius: 0;
  border-color: #e4e4e4;
  box-shadow: none;
}
.header-style-1 .search > div button, .header-style-3 .search > div button, .header-style-2 .search > div button {
  background: transparent;
  border: 0;
  outline: 0;
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header-style-1 .search > div .fi:before, .header-style-3 .search > div .fi:before, .header-style-2 .search > div .fi:before {
  font-size: 18px;
  color: #212f8f;
}
.header-style-1 .search:hover > div, .header-style-3 .search:hover > div, .header-style-2 .search:hover > div {
  opacity: 1;
  visibility: visible;
}
.header-style-1 .select-lg, .header-style-3 .select-lg, .header-style-2 .select-lg {
  margin-right: 36px;
}
@media (max-width: 542px) {
  .header-style-1 .select-lg, .header-style-3 .select-lg, .header-style-2 .select-lg {
    margin-right: 0;
  }
}
.header-style-1 .select-lg .form-control, .header-style-3 .select-lg .form-control, .header-style-2 .select-lg .form-control {
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 500;
  width: 85px;
  line-height: 18px;
  color: #ededef;
  padding: 14px 5px;
  margin: 5px;
  border-radius: 0;
}
@media (max-width: 542px) {
  .header-style-1 .select-lg .form-control, .header-style-3 .select-lg .form-control, .header-style-2 .select-lg .form-control {
    font-size: 16px;
  }
}
.header-style-1 .select-lg .form-control:focus, .header-style-3 .select-lg .form-control:focus, .header-style-2 .select-lg .form-control:focus {
  box-shadow: none;
}
.header-style-1 .select-lg select, .header-style-3 .select-lg select, .header-style-2 .select-lg select {
  display: inline-block;
  color: #a9a9a9;
  cursor: pointer;
  opacity: 1;
  padding: 6px 25px;
  font-size: 15px;
  font-size: calc-rem-value(15);
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 10px) center;
  position: relative;
}
.header-style-1 .select-lg select:focus, .header-style-3 .select-lg select:focus, .header-style-2 .select-lg select:focus {
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 10px) center;
}
.header-style-1 .quote .theme-btn, .header-style-3 .quote .theme-btn, .header-style-2 .quote .theme-btn, .header-style-1 .quote .view-cart-btn, .header-style-3 .quote .view-cart-btn, .header-style-2 .quote .view-cart-btn {
  border-radius: 0;
  padding: 20px 45px;
}
@media (max-width: 542px) {
  .header-style-1 .quote .theme-btn, .header-style-3 .quote .theme-btn, .header-style-2 .quote .theme-btn, .header-style-1 .quote .view-cart-btn, .header-style-3 .quote .view-cart-btn, .header-style-2 .quote .view-cart-btn {
    padding: 20px 15px;
  }
}

/**********************************
	header style 2
***********************************/
@media screen and (min-width: 992px) {
  .header-style-2 {
    background: rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    position: absolute;
    left: 0;
    top: 1px;
    z-index: 100;
  }
  .header-style-2 .topbar,
  .header-style-2 .navigation {
    background: transparent;
  }
  .header-style-2 .topbar .info p,
  .header-style-2 #navbar > ul > li > a {
    color: #ebebeb;
  }
  .header-style-2 .navigation > .container:before {
    content: "";
    background: rgba(255, 255, 255, 0.15);
    width: calc(100% - 30px);
    height: 1px;
    position: absolute;
    left: 15px;
    top: 0;
  }
  .header-style-2 .search-quote .search:before {
    background: rgba(255, 255, 255, 0.15);
  }
}

/**********************************
	header style 2
***********************************/
.header-style-3 .topbar {
  background-color: rgb(5.1010638298, 13.1170212766, 63.3989361702);
}
@media (max-width: 767px) {
  .header-style-3 .topbar .info {
    border-top: 1px solid #32394a;
  }
}
.header-style-3 .topbar .info p {
  color: #c1c1c1;
}
.header-style-3 .navigation {
  background-color: #071257;
}
.header-style-3 #navbar > ul > li > a {
  color: #dbdbdb;
}
.header-style-3 .search-quote .search:before {
  background: #434b5f;
}

/*--------------------------------------------------------------
3. content
--------------------------------------------------------------*/
.hero {
  position: relative;
  height: 700px;
  overflow: hidden;
  /** slider controls **/
  /*** hero slider animation ***/
}
@media (max-width: 1199px) {
  .hero {
    height: 600px;
  }
}
@media (max-width: 991px) {
  .hero {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .hero {
    height: 570px;
    margin-top: -1rem;
  }
}
.hero .slide {
  height: 700px;
  position: relative;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 991px) {
  .hero .slide {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .hero .slide {
    height: 450px;
  }
}
.hero .slide .slider-bg {
  display: none;
}
.hero .slide:focus {
  outline: none;
}
.hero .slide .container {
  height: 100%;
  display: table;
  padding: 0;
}
.hero .slide .row {
  display: table-cell;
  vertical-align: middle;
}
.hero .slick-prev,
.hero .slick-next {
  width: 55px;
  height: 55px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  z-index: 10;
}
@media (max-width: 991px) {
  .hero .slick-prev,
  .hero .slick-next {
    display: none !important;
  }
}
.hero .slick-prev {
  left: 25px;
}
.hero .slick-prev:before {
  font-family: "FontAwesome";
  content: "\f104";
  opacity: 1;
  color: #bfbfbf;
}
.hero .slick-next {
  right: 25px;
}
.hero .slick-next:before {
  font-family: "FontAwesome";
  content: "\f105";
  opacity: 1;
  color: #bfbfbf;
}
.hero .slick-prev:hover,
.hero .slick-next:hover {
  background: #212f8f;
  border-color: #212f8f;
}
.hero .slick-prev:hover:before,
.hero .slick-next:hover:before {
  color: #fff;
}
.hero .slick-dots {
  bottom: 30px;
}
@media screen and (min-width: 992px) {
  .hero .slick-dots {
    display: none !important;
  }
}
.hero .slick-dots li {
  margin: 0;
}
.hero .slick-dots button {
  background-color: #212f8f;
  width: 14px;
  height: 14px;
  border: 1px solid #fff;
  border-radius: 50%;
}
.hero .slick-dots button:before,
.hero .slick-dots button:before {
  display: none;
}
.hero .hero-slider .slide-caption > h2,
.hero .hero-slider .slide-caption > p,
.hero .hero-slider .slide-caption > .btns {
  opacity: 0;
}
.hero .hero-slider .slick-list .slick-current .slide-caption > p {
  -webkit-animation: fadeInTopSlow 1.5s 0.8s forwards;
  -moz-animation: fadeInTopSlow 1.5s 0.8s forwards;
  -o-animation: fadeInTopSlow 1.5s 0.8s forwards;
  -ms-animation: fadeInTopSlow 1.5s 0.8s forwards;
  animation: fadeInTopSlow 1.5s 0.8s forwards;
}
.hero .hero-slider .slick-list .slick-current .slide-caption > h2 {
  -webkit-animation: fadeInLeftSlow 1.5s 0.8s forwards;
  -moz-animation: fadeInLeftSlow 1.5s 0.8s forwards;
  -o-animation: fadeInLeftSlow 1.5s 0.8s forwards;
  -ms-animation: fadeInLeftSlow 1.5s 0.8s forwards;
  animation: fadeInLeftSlow 1.5s 0.8s forwards;
}
.hero .hero-slider .slick-list .slick-current .slide-caption > .btns {
  -webkit-animation: fadeInBottomSlow 1.5s 0.8s forwards;
  -moz-animation: fadeInBottomSlow 1.5s 0.8s forwards;
  -o-animation: fadeInBottomSlow 1.5s 0.8s forwards;
  -ms-animation: fadeInBottomSlow 1.5s 0.8s forwards;
  animation: fadeInBottomSlow 1.5s 0.8s forwards;
}

/******************************
	hero style 1
*******************************/
.hero-style-1,
.static-hero-s2 {
  position: relative;
  z-index: 1;
}
.hero-style-1 .slider-hero,
.static-hero-s2 .slider-hero {
  overflow: hidden;
  height: inherit;
  position: relative;
}
.hero-style-1 .slider-hero img,
.static-hero-s2 .slider-hero img {
  height: inherit;
  width: 100%;
  object-fit: cover;
}
.hero-style-1 .slider-hero img.object-position-custom,
.static-hero-s2 .slider-hero img.object-position-custom {
  object-position: 0 0;
}
@media (max-width: 1666px) {
  .hero-style-1 .slider-hero img.object-position-custom,
  .static-hero-s2 .slider-hero img.object-position-custom {
    object-position: -10rem 0;
  }
}
.hero-style-1 .slider-hero .banner-helper,
.static-hero-s2 .slider-hero .banner-helper {
  background-color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 1600px) {
  .hero-style-1 .slider-hero,
  .static-hero-s2 .slider-hero {
    margin: 0 0rem;
  }
}
@media (max-width: 991px) {
  .hero-style-1 .slider-hero,
  .static-hero-s2 .slider-hero {
    margin: 0;
    height: 100%;
  }
  .hero-style-1 .slider-hero .slick-list,
  .static-hero-s2 .slider-hero .slick-list {
    height: 100%;
  }
  .hero-style-1 .slider-hero .slick-list .slick-track,
  .static-hero-s2 .slider-hero .slick-list .slick-track {
    height: 100%;
  }
  .hero-style-1 .slider-hero .slick-list .slick-track img,
  .static-hero-s2 .slider-hero .slick-list .slick-track img {
    height: 100%;
    object-fit: cover;
  }
}
.hero-style-1 .slider-hero .hero-caption,
.static-hero-s2 .slider-hero .hero-caption {
  z-index: 99999;
  height: 100%;
  width: 100%;
  /* padding-left: 12rem; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  align-items: center;
  padding: 0 24rem;
  text-align: center;
}
.hero-style-1 .slider-hero .hero-caption .theme-btn-sm,
.static-hero-s2 .slider-hero .hero-caption .theme-btn-sm {
  width: fit-content;
  background-color: #fff;
  color: rgb(41, 47, 53);
}
@media (max-width: 991px) {
  .hero-style-1 .slider-hero .hero-caption,
  .static-hero-s2 .slider-hero .hero-caption {
    width: 100%;
    padding: 0 8px;
    gap: 6px;
    text-align: center;
    position: absolute;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
  }
}
.hero-style-1 .slider-hero .hero-caption h2,
.static-hero-s2 .slider-hero .hero-caption h2 {
  color: white;
  font-size: 3rem;
}
@media (max-width: 991px) {
  .hero-style-1 .slider-hero .hero-caption h2,
  .static-hero-s2 .slider-hero .hero-caption h2 {
    font-size: 2rem;
  }
}
.hero-style-1 .slider-hero div.hero-position-left,
.static-hero-s2 .slider-hero div.hero-position-left {
  padding: 0 8rem;
  align-items: start;
  width: 60%;
}
.hero-style-1 .slider-hero div.hero-position-left h2,
.static-hero-s2 .slider-hero div.hero-position-left h2 {
  text-align: start;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .hero-style-1 .slider-hero div.hero-position-left h2,
  .static-hero-s2 .slider-hero div.hero-position-left h2 {
    text-align: center;
  }
}
.hero-style-1 .slider-hero div.hero-position-left .theme-btn-sm:first-child,
.static-hero-s2 .slider-hero div.hero-position-left .theme-btn-sm:first-child {
  background-color: #212f8f;
  color: white;
}
@media (max-width: 767px) {
  .hero-style-1 .slider-hero div.hero-position-left,
  .static-hero-s2 .slider-hero div.hero-position-left {
    width: 100%;
    padding: 0 8px;
    align-items: center;
  }
}
.hero-style-1 .slide-caption,
.static-hero-s2 .slide-caption {
  padding: 76px 0 160px;
}
@media (max-width: 1199px) {
  .hero-style-1 .slide-caption,
  .static-hero-s2 .slide-caption {
    padding: 90px 0 125px;
  }
}
@media (max-width: 991px) {
  .hero-style-1 .slide-caption,
  .static-hero-s2 .slide-caption {
    padding: 50px 0 80px;
  }
}
@media (max-width: 767px) {
  .hero-style-1 .slide-caption,
  .static-hero-s2 .slide-caption {
    padding: 80px 0 80px;
  }
}
@media (max-width: 469px) {
  .hero-style-1 .slide-caption,
  .static-hero-s2 .slide-caption {
    padding: 95px 0 80px;
  }
}
.hero-style-1 .slide-caption p,
.static-hero-s2 .slide-caption p {
  font-size: 23px;
  color: #030d4c;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .hero-style-1 .slide-caption p,
  .static-hero-s2 .slide-caption p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .hero-style-1 .slide-caption p,
  .static-hero-s2 .slide-caption p {
    font-size: 18px;
  }
}
@media (max-width: 469px) {
  .hero-style-1 .slide-caption p,
  .static-hero-s2 .slide-caption p {
    font-size: 15px;
    line-height: 25px;
  }
}
.hero-style-1 .slide-caption h2,
.static-hero-s2 .slide-caption h2 {
  font-size: 45px;
  font-weight: 700;
  color: #030d4c;
  margin-bottom: 32px;
  line-height: 50px;
  margin-top: 17px;
}
@media (max-width: 1399px) {
  .hero-style-1 .slide-caption h2,
  .static-hero-s2 .slide-caption h2 {
    font-size: 33px;
    line-height: 50px;
  }
}
@media (max-width: 1199px) {
  .hero-style-1 .slide-caption h2,
  .static-hero-s2 .slide-caption h2 {
    font-size: 33px;
    line-height: 50px;
  }
}
@media (max-width: 991px) {
  .hero-style-1 .slide-caption h2,
  .static-hero-s2 .slide-caption h2 {
    font-size: 33px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .hero-style-1 .slide-caption h2,
  .static-hero-s2 .slide-caption h2 {
    font-size: 33px;
    line-height: 50px;
  }
}
@media (max-width: 469px) {
  .hero-style-1 .slide-caption h2,
  .static-hero-s2 .slide-caption h2 {
    font-size: 33px;
    line-height: 50px;
  }
}
@media (max-width: 425px) {
  .hero-style-1 .slide-caption h2,
  .static-hero-s2 .slide-caption h2 {
    font-size: 33px;
    line-height: 44px;
    margin-bottom: 4rem;
  }
}
.hero-style-1 .slide-caption .hero-style-btn,
.static-hero-s2 .slide-caption .hero-style-btn {
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 1199px) {
  .hero-style-1 .slide-caption .hero-style-btn .theme-btn, .hero-style-1 .slide-caption .hero-style-btn .view-cart-btn,
  .static-hero-s2 .slide-caption .hero-style-btn .theme-btn,
  .static-hero-s2 .slide-caption .hero-style-btn .view-cart-btn {
    padding: 15px 25px;
  }
}
@media (max-width: 991px) {
  .hero-style-1 .slide-caption .hero-style-btn .theme-btn, .hero-style-1 .slide-caption .hero-style-btn .view-cart-btn,
  .static-hero-s2 .slide-caption .hero-style-btn .theme-btn,
  .static-hero-s2 .slide-caption .hero-style-btn .view-cart-btn {
    padding: 15px 25px;
  }
}
@media (max-width: 469px) {
  .hero-style-1 .slide-caption .hero-style-btn .theme-btn, .hero-style-1 .slide-caption .hero-style-btn .view-cart-btn,
  .static-hero-s2 .slide-caption .hero-style-btn .theme-btn,
  .static-hero-s2 .slide-caption .hero-style-btn .view-cart-btn {
    padding: 15px 20px;
  }
}
.hero-style-1 .slide-caption .hero-style-btn .pop-up-video,
.static-hero-s2 .slide-caption .hero-style-btn .pop-up-video {
  margin-left: 35px;
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  .hero-style-1 .slide-caption .hero-style-btn .pop-up-video,
  .static-hero-s2 .slide-caption .hero-style-btn .pop-up-video {
    margin-left: 4px;
  }
}
@media (max-width: 991px) {
  .hero-style-1 .slide-caption .hero-style-btn .pop-up-video,
  .static-hero-s2 .slide-caption .hero-style-btn .pop-up-video {
    margin-left: 65px;
  }
}
.hero-style-1 .pop-up-video .video-holder,
.static-hero-s2 .pop-up-video .video-holder {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1399px) {
  .hero-style-1 .pop-up-video .video-holder,
  .static-hero-s2 .pop-up-video .video-holder {
    left: 62%;
  }
}
@media (max-width: 991px) {
  .hero-style-1 .pop-up-video .video-holder,
  .static-hero-s2 .pop-up-video .video-holder {
    left: 57%;
  }
}
@media (max-width: 767px) {
  .hero-style-1 .pop-up-video .video-holder,
  .static-hero-s2 .pop-up-video .video-holder {
    left: 39%;
  }
}
@media (max-width: 469px) {
  .hero-style-1 .pop-up-video .video-holder,
  .static-hero-s2 .pop-up-video .video-holder {
    left: 70%;
  }
}
.hero-style-1 .pop-up-video span,
.static-hero-s2 .pop-up-video span {
  font-family: "Ubuntu", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 20px;
  color: #030d4c;
  margin-left: 120px;
}
@media (max-width: 991px) {
  .hero-style-1 .pop-up-video span,
  .static-hero-s2 .pop-up-video span {
    margin-left: 40px;
  }
}
@media (max-width: 469px) {
  .hero-style-1 .pop-up-video span,
  .static-hero-s2 .pop-up-video span {
    display: none;
  }
}
.hero-style-1 .video-holder a,
.static-hero-s2 .video-holder a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #212f8f;
  text-align: center;
  line-height: 70px;
  color: #fff;
  font-size: 17px;
  border-radius: 50%;
  position: relative;
}
@media (max-width: 991px) {
  .hero-style-1 .video-holder a,
  .static-hero-s2 .video-holder a {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 469px) {
  .hero-style-1 .video-holder a,
  .static-hero-s2 .video-holder a {
    width: 45px;
    height: 45px;
  }
}
.hero-style-1 .video-holder a::before,
.static-hero-s2 .video-holder a::before {
  content: " ";
  width: 130%;
  height: 130%;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: -9px;
  top: -10px;
  -webkit-animation: pulse 1s infinite;
  animation: pulse 1s infinite;
  z-index: -1;
}
@media (max-width: 991px) {
  .hero-style-1 .video-holder a::before,
  .static-hero-s2 .video-holder a::before {
    left: -8px;
    top: -8px;
  }
}
.hero-style-1 .video-holder a i::before,
.static-hero-s2 .video-holder a i::before {
  font-size: 25px;
}
@media (max-width: 469px) {
  .hero-style-1 .video-holder a i::before,
  .static-hero-s2 .video-holder a i::before {
    font-size: 20px;
  }
}
.hero-style-1 .shepe-1,
.static-hero-s2 .shepe-1 {
  position: absolute;
  top: -39px;
  left: -176px;
  z-index: -1;
}
@media (max-width: 1824px) {
  .hero-style-1 .shepe-1,
  .static-hero-s2 .shepe-1 {
    left: -274px;
  }
}
.hero-style-1 .shepe-2,
.static-hero-s2 .shepe-2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.hero-style-1 .shepe-2 svg circle,
.static-hero-s2 .shepe-2 svg circle {
  fill: #eaee1f;
}
.hero-style-1 .shepe-3,
.static-hero-s2 .shepe-3 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.hero-style-1 .shepe-3 svg circle,
.static-hero-s2 .shepe-3 svg circle {
  fill: #6d1fee;
}
.hero-style-1 .shepe-4,
.static-hero-s2 .shepe-4 {
  position: absolute;
  bottom: -65px;
  right: 0;
  z-index: -1;
}
@media (max-width: 1824px) {
  .hero-style-1 .shepe-4,
  .static-hero-s2 .shepe-4 {
    bottom: -40px;
    right: -20px;
  }
}
@media (max-width: 1399px) {
  .hero-style-1 .shepe-4,
  .static-hero-s2 .shepe-4 {
    display: none;
  }
}
@media (max-width: 1824px) {
  .hero-style-1 .shepe-4 img,
  .static-hero-s2 .shepe-4 img {
    width: 200px;
  }
}
.hero-style-1 .hero-right-img,
.static-hero-s2 .hero-right-img {
  width: 160%;
  margin-left: -260px;
}
@media (max-width: 1824px) {
  .hero-style-1 .hero-right-img,
  .static-hero-s2 .hero-right-img {
    margin-left: -300px;
  }
}
@media (max-width: 1399px) {
  .hero-style-1 .hero-right-img,
  .static-hero-s2 .hero-right-img {
    margin-left: -249px;
    margin-top: 110px;
  }
}
@media (max-width: 1199px) {
  .hero-style-1 .hero-right-img,
  .static-hero-s2 .hero-right-img {
    margin-top: 137px;
  }
}
@media (max-width: 991px) {
  .hero-style-1 .hero-right-img,
  .static-hero-s2 .hero-right-img {
    margin-left: -267px;
    margin-top: 76px;
    width: 234%;
  }
}
@media (max-width: 767px) {
  .hero-style-1 .hero-right-img,
  .static-hero-s2 .hero-right-img {
    display: none;
  }
}
.hero-style-1 .hero-right-img img,
.static-hero-s2 .hero-right-img img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1824px) {
  .hero-style-1 .hero-right-img img,
  .static-hero-s2 .hero-right-img img {
    width: 99%;
  }
}

/*3.1 wpo-hero-slider*/
.static-hero-s2 {
  background: #030d4c;
  height: 830px;
  display: flex;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.static-hero-s2 .container-fluid {
  padding: 0;
}
.static-hero-s2 .hero-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}
.static-hero-s2 .hero-inner::before {
  display: none;
}
@media (max-width: 1199px) {
  .static-hero-s2 {
    height: 680px;
  }
}
@media (max-width: 991px) {
  .static-hero-s2 {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .static-hero-s2 {
    height: 400px;
  }
}
@media (max-width: 1440px) {
  .static-hero-s2 .slide-title {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .static-hero-s2 .slide-title {
    text-align: center;
  }
}
.static-hero-s2 .slide-title h2 {
  font-weight: 600;
  font-size: 80px;
  line-height: 130.5%;
  margin-bottom: 60px;
  color: #fff;
}
@media (max-width: 1750px) {
  .static-hero-s2 .slide-title h2 {
    font-size: 60px;
    line-height: 75px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1200px) {
  .static-hero-s2 .slide-title h2 {
    font-size: 60px;
    line-height: 75px;
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .static-hero-s2 .slide-title h2 {
    font-size: 35px;
    line-height: 43px;
    margin-bottom: 30px;
  }
}
@media (max-width: 450px) {
  .static-hero-s2 .slide-title h2 {
    font-size: 30px;
  }
}
.static-hero-s2 .slide-title h2 span {
  color: #4554b5;
}
@media (max-width: 767px) {
  .static-hero-s2 .slide-btns {
    text-align: center;
  }
}
.static-hero-s2 .wpo-static-hero-inner {
  padding-left: 245px;
  padding-bottom: 120px;
}
@media (max-width: 1750px) {
  .static-hero-s2 .wpo-static-hero-inner {
    padding-left: 20px;
  }
}
@media (max-width: 1200px) {
  .static-hero-s2 .wpo-static-hero-inner {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .static-hero-s2 .wpo-static-hero-inner {
    padding-left: 0px;
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .static-hero-s2 .wpo-static-hero-inner a {
    margin: 0 auto;
  }
}
.static-hero-s2 .slide-text p {
  font-size: 22px;
  color: #737373;
}
@media (max-width: 1400px) {
  .static-hero-s2 .slide-text p {
    max-width: 600px;
    margin: 0;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .static-hero-s2 .slide-text p {
    font-size: 16px;
  }
}
.static-hero-s2 .static-hero-slide-img {
  position: relative;
  right: 0px;
  max-width: 1130px;
  margin-left: auto;
}
@media (max-width: 991px) {
  .static-hero-s2 .static-hero-slide-img img {
    max-height: 500px;
    object-fit: cover;
  }
}
@media (max-width: 1600px) {
  .static-hero-s2 .static-hero-slide-img {
    right: 0;
  }
}
@media (max-width: 1200px) {
  .static-hero-s2 .static-hero-slide-img {
    right: 15px;
  }
}
@media (max-width: 767px) {
  .static-hero-s2 .static-hero-slide-img {
    display: none;
  }
}
.static-hero-s2 .static-hero-slide-img .owl-controls {
  width: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.static-hero-s2 .static-hero-slide-img .owl-nav [class*=owl-] {
  padding: 0;
  margin: 0;
  color: #212f8f;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  border: 0;
  background: none;
}
.static-hero-s2 .static-hero-slide-img .owl-nav [class*=owl-] .fi::before {
  font-size: 20px;
  color: #071257;
}
.static-hero-s2 .static-hero-slide-img .owl-nav .owl-prev,
.static-hero-s2 .static-hero-slide-img .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s;
}
@media (max-width: 575px) {
  .static-hero-s2 .static-hero-slide-img .owl-nav .owl-prev,
  .static-hero-s2 .static-hero-slide-img .owl-nav .owl-next {
    display: none;
  }
}
.static-hero-s2 .static-hero-slide-img .owl-nav .owl-prev {
  left: 15px;
}
.static-hero-s2 .static-hero-slide-img .owl-nav .owl-next {
  right: 15px;
}
.static-hero-s2 .static-hero-slide-img .owl-dots {
  margin-top: 0px;
  position: absolute;
  left: -45%;
  bottom: 0;
}
.static-hero-s2 .static-hero-slide-img .owl-dots button {
  width: 10px;
  height: 12px;
  border: 0;
  background: #d4e6f5;
  margin-right: 10px;
  border-radius: 50%;
}
.static-hero-s2 .static-hero-slide-img .owl-dots .owl-dot.active {
  background-color: #212f8f;
}
.static-hero-s2 .static-hero-slide-img:hover .owl-nav .owl-prev,
.static-hero-s2 .static-hero-slide-img:hover .owl-nav .owl-next {
  opacity: 1;
}

@-webkit-keyframes spineer {
  from {
    -webkit-box-shadow: 0 0 0 0 rgba(59, 81, 125, 0.99);
    box-shadow: 0 0 0 0 rgba(59, 81, 125, 0.99);
  }
  to {
    -webkit-box-shadow: 0 0 0 45px rgba(59, 81, 125, 0.01);
    box-shadow: 0 0 0 45px rgba(59, 81, 125, 0.01);
  }
}
@keyframes spineer {
  from {
    -webkit-box-shadow: 0 0 0 0 rgba(59, 81, 125, 0.99);
    box-shadow: 0 0 0 0 rgba(59, 81, 125, 0.99);
  }
  to {
    -webkit-box-shadow: 0 0 0 45px rgba(59, 81, 125, 0.01);
    box-shadow: 0 0 0 45px rgba(59, 81, 125, 0.01);
  }
}
/*--------------------------------------------------------------
4. wpo-footer
--------------------------------------------------------------*/
.wpo-site-footer {
  background: #030d4c;
  position: relative;
  font-size: 15px;
  overflow: hidden;
  z-index: 1;
  /*** blog-widget  ***/
  /*** newsletter-widget ***/
}
.wpo-site-footer .wpo-wrap-footer {
  background: #071257;
  padding: 95px 70px;
}
@media (max-width: 1199px) {
  .wpo-site-footer .wpo-wrap-footer {
    padding: 80px 40px;
  }
}
@media (max-width: 991px) {
  .wpo-site-footer .wpo-wrap-footer {
    padding: 70px 55px;
    padding-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .wpo-site-footer .wpo-wrap-footer {
    padding-bottom: 25px;
  }
}
@media (max-width: 445px) {
  .wpo-site-footer .wpo-wrap-footer {
    padding: 60px 50px;
    padding-bottom: 0;
  }
}
.wpo-site-footer ul {
  list-style: none;
}
.wpo-site-footer p {
  color: #fff;
}
.wpo-site-footer li {
  color: #fff;
}
.wpo-site-footer .container {
  position: relative;
}
.wpo-site-footer .wpo-upper-footer {
  padding: 70px 0 0;
}
@media (max-width: 991px) {
  .wpo-site-footer .wpo-upper-footer {
    padding: 50px 0 0;
  }
}
@media (max-width: 767px) {
  .wpo-site-footer .wpo-upper-footer {
    padding: 60px 0 0;
  }
}
@media (max-width: 991px) {
  .wpo-site-footer .wpo-upper-footer .col {
    min-height: 235px;
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .wpo-site-footer .wpo-upper-footer .col {
    min-height: auto;
    margin-bottom: 60px;
  }
}
.wpo-site-footer .widget-title {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .wpo-site-footer .widget-title {
    margin-bottom: 20px;
  }
}
.wpo-site-footer .widget-title h3 {
  font-size: 18px;
  color: #fff;
  margin: 0;
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
}
.wpo-site-footer .about-widget .logo {
  width: 100%;
}
.wpo-site-footer .about-widget p {
  margin-bottom: 0.8em;
  line-height: 1.9em;
}
.wpo-site-footer .about-widget p:last-child {
  margin-bottom: 0;
}
.wpo-site-footer .about-widget ul {
  overflow: hidden;
  padding-top: 10px;
}
.wpo-site-footer .about-widget ul li {
  font-size: 22px;
  float: left;
}
.wpo-site-footer .about-widget ul li a {
  color: #e7e7e7;
  width: 36px;
  height: 36px;
  line-height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: block;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  font-size: 18px;
}
.wpo-site-footer .about-widget ul li a:hover {
  color: #fff;
  background: #212f8f;
}
.wpo-site-footer .about-widget ul li + li {
  margin-left: 25px;
}
@media (max-width: 1200px) {
  .wpo-site-footer .about-widget ul li + li {
    margin-left: 15px;
  }
}
.wpo-site-footer .blog-widget {
  padding-right: 30px;
  padding-left: 20px;
}
@media (max-width: 1200px) {
  .wpo-site-footer .blog-widget {
    padding: 0;
  }
}
.wpo-site-footer .blog-widget ul li:last-child {
  margin-bottom: 0;
}
.wpo-site-footer .blog-widget ul li p {
  font-size: 16px;
  margin-bottom: 5px;
}
.wpo-site-footer .blog-widget ul li p a {
  color: #fff;
}
.wpo-site-footer .blog-widget ul li p a:hover {
  color: #212f8f;
}
.wpo-site-footer .blog-widget ul li span {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #f5f6f8;
}
.wpo-site-footer .blog-widget ul li span i {
  margin-right: 5px;
  color: #fff;
  margin-top: -2px;
}
.wpo-site-footer .newsletter-widget form {
  margin-top: 25px;
  position: relative;
}
.wpo-site-footer .newsletter-widget form input {
  background-color: #ede5fb;
  height: 55px;
  color: #030d4c;
  padding: 6px 15px;
  border: 1px solid #fff;
  box-shadow: none;
}
.wpo-site-footer .newsletter-widget form .submit {
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.wpo-site-footer .newsletter-widget form .submit button {
  background: #212f8f;
  border: 1px solid transparent;
  outline: 0;
  font-size: 20px;
  color: #fff;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
}
.wpo-site-footer .wpo-service-link-widget {
  padding-left: 70px;
}
.wpo-site-footer .link-widget {
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .wpo-site-footer .link-widget {
    padding-left: 75px;
  }
}
@media (max-width: 1199px) {
  .wpo-site-footer .link-widget {
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .wpo-site-footer .link-widget {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .wpo-site-footer .link-widget {
    max-width: 350px;
  }
}
.wpo-site-footer .link-widget ul li {
  position: relative;
}
.wpo-site-footer .link-widget ul li a {
  color: #fff;
  font-size: 15px;
}
.wpo-site-footer .link-widget ul li a:hover {
  color: #212f8f;
}
.wpo-site-footer .link-widget ul li + li {
  padding-top: 17px;
}
.wpo-site-footer .tag-widget ul {
  display: flex;
  flex-wrap: wrap;
}
.wpo-site-footer .tag-widget ul li a {
  display: block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 16px;
  color: #fff;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}
.wpo-site-footer .social-widget ul li a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.wpo-site-footer .social-widget ul li a:hover {
  color: #212f8f;
}
.wpo-site-footer .social-widget ul li a i {
  margin-right: 10px;
}
.wpo-site-footer .wpo-lower-footer {
  text-align: center;
  position: relative;
  background: transparent;
}
.wpo-site-footer .wpo-lower-footer .row {
  padding: 20px 0;
  position: relative;
}
.wpo-site-footer .wpo-lower-footer .copyright {
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  margin: 0;
}
.wpo-site-footer .wpo-lower-footer .copyright a {
  color: #eaee1f;
  text-decoration: none;
}
@media (max-width: 991px) {
  .wpo-site-footer .wpo-lower-footer .copyright {
    float: none;
    display: block;
  }
}
.wpo-site-footer .instagram ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -3px;
}
.wpo-site-footer .instagram ul li {
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  margin-bottom: 5px;
  padding: 0px 3px;
}
.wpo-site-footer .instagram ul li img {
  width: 100%;
}
.wpo-site-footer .shape-1,
.wpo-site-footer .shape-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.wpo-site-footer .shape-1 {
  left: 0;
  top: 50%;
}
.wpo-site-footer .shape-2 {
  left: 75%;
  top: -10%;
}

.sticky-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: -200px;
  z-index: 9999;
  opacity: 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  -ms-transition: all 1s;
  transition: all 1s;
}

.sticky-on {
  opacity: 1;
  top: 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  -ms-transition: all 1s;
  transition: all 1s;
}

.site-header .sticky-header {
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

@media screen and (min-width: 992px) {
  .header-style-2 .sticky-header {
    background-color: #272a2d;
    border-bottom: 0;
    box-shadow: none;
  }
}

.header-style-3 .sticky-header {
  border-bottom: 0;
  box-shadow: none;
}

.service-shape {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
}
.service-shape svg path {
  fill: #0dd7b2;
}

/* 3.2 wpo-about-section */
.wpo-about-section .wpo-about-wrap,
.wpo-about-section-s2 .wpo-about-wrap,
.wpo-about-section-s3 .wpo-about-wrap {
  text-align: start;
  margin-right: 80px;
}
@media (max-width: 1199px) {
  .wpo-about-section .wpo-about-wrap,
  .wpo-about-section-s2 .wpo-about-wrap,
  .wpo-about-section-s3 .wpo-about-wrap {
    margin-right: 0;
  }
}
.wpo-about-section .wpo-about-wrap .wpo-about-img,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-img,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-img {
  z-index: -1;
  overflow: hidden;
  height: 305px;
}
.wpo-about-section .wpo-about-wrap .wpo-about-img img,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-img img,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-img img {
  border-radius: 9px;
  width: 100%;
  object-fit: cover;
}
.wpo-about-section .wpo-about-wrap .wpo-about-exprience,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-exprience,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience {
  display: flex;
}
@media (max-width: 991px) {
  .wpo-about-section .wpo-about-wrap .wpo-about-exprience,
  .wpo-about-section-s2 .wpo-about-wrap .wpo-about-exprience,
  .wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience {
    width: 100%;
  }
}
@media (max-width: 470px) {
  .wpo-about-section .wpo-about-wrap .wpo-about-exprience,
  .wpo-about-section-s2 .wpo-about-wrap .wpo-about-exprience,
  .wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience {
    justify-content: space-between;
  }
}
.wpo-about-section .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids {
  margin-top: 17px;
  margin-left: 22px;
}
@media (max-width: 991px) {
  .wpo-about-section .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids,
  .wpo-about-section-s2 .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids,
  .wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids {
    width: 50%;
    margin-top: 66px;
    margin-left: 0;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .wpo-about-section .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids,
  .wpo-about-section-s2 .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids,
  .wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids {
    margin-top: 40px;
  }
}
@media (max-width: 470px) {
  .wpo-about-section .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids,
  .wpo-about-section-s2 .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids,
  .wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids {
    width: 50%;
    margin-left: 0;
  }
}
.wpo-about-section .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids h3,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids h3,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids h3 {
  color: #212f8f;
  position: relative;
}
@media (max-width: 470px) {
  .wpo-about-section .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids h3,
  .wpo-about-section-s2 .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids h3,
  .wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids h3 {
    text-align: center;
  }
}
.wpo-about-section .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids h3 span,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids h3 span,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids h3 span {
  font-family: "Ubuntu", sans-serif;
  font-size: 75px;
  font-weight: 700;
  line-height: 115px;
}
@media (max-width: 1199px) {
  .wpo-about-section .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids h3 span,
  .wpo-about-section-s2 .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids h3 span,
  .wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids h3 span {
    font-size: 80px;
    line-height: 85px;
  }
}
@media (max-width: 470px) {
  .wpo-about-section .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids h3 span,
  .wpo-about-section-s2 .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids h3 span,
  .wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids h3 span {
    font-size: 50px;
    line-height: 70px;
    text-align: center;
  }
}
.wpo-about-section .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids h3 i,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids h3 i,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids h3 i {
  position: absolute;
  font-size: 21px;
  font-weight: 500;
  line-height: 24px;
  top: 30px;
}
.wpo-about-section .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids p,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids p,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids p {
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  text-align: center;
  color: #867f93;
}
@media (max-width: 470px) {
  .wpo-about-section .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids p,
  .wpo-about-section-s2 .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids p,
  .wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids p {
    font-size: 15px;
  }
}
.wpo-about-section .wpo-about-wrap .wpo-about-exprience .about-lower-img,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-exprience .about-lower-img,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience .about-lower-img {
  margin-left: 118px;
  position: relative;
  z-index: 1;
  width: 235px;
  height: 195px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .wpo-about-section .wpo-about-wrap .wpo-about-exprience .about-lower-img,
  .wpo-about-section-s2 .wpo-about-wrap .wpo-about-exprience .about-lower-img,
  .wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience .about-lower-img {
    margin-left: 80px;
  }
}
@media (max-width: 1199px) {
  .wpo-about-section .wpo-about-wrap .wpo-about-exprience .about-lower-img,
  .wpo-about-section-s2 .wpo-about-wrap .wpo-about-exprience .about-lower-img,
  .wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience .about-lower-img {
    margin-left: 35px;
  }
}
@media (max-width: 991px) {
  .wpo-about-section .wpo-about-wrap .wpo-about-exprience .about-lower-img,
  .wpo-about-section-s2 .wpo-about-wrap .wpo-about-exprience .about-lower-img,
  .wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience .about-lower-img {
    width: 50%;
    margin-left: 0;
  }
}
@media (max-width: 470px) {
  .wpo-about-section .wpo-about-wrap .wpo-about-exprience .about-lower-img,
  .wpo-about-section-s2 .wpo-about-wrap .wpo-about-exprience .about-lower-img,
  .wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience .about-lower-img {
    width: 50%;
    margin-left: 0;
    margin-top: 17px;
  }
}
.wpo-about-section .wpo-about-wrap .wpo-about-exprience .about-lower-img::before,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-exprience .about-lower-img::before,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience .about-lower-img::before {
  position: absolute;
  top: -80px;
  right: -56px;
  width: 292px;
  height: 275px;
  content: "";
  background: #fff;
  z-index: -1;
}
@media (max-width: 1199px) {
  .wpo-about-section .wpo-about-wrap .wpo-about-exprience .about-lower-img::before,
  .wpo-about-section-s2 .wpo-about-wrap .wpo-about-exprience .about-lower-img::before,
  .wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience .about-lower-img::before {
    right: -39px;
    width: 274px;
  }
}
@media (max-width: 991px) {
  .wpo-about-section .wpo-about-wrap .wpo-about-exprience .about-lower-img::before,
  .wpo-about-section-s2 .wpo-about-wrap .wpo-about-exprience .about-lower-img::before,
  .wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience .about-lower-img::before {
    top: -86px;
    right: 0;
    width: 100%;
  }
}
@media (max-width: 470px) {
  .wpo-about-section .wpo-about-wrap .wpo-about-exprience .about-lower-img::before,
  .wpo-about-section-s2 .wpo-about-wrap .wpo-about-exprience .about-lower-img::before,
  .wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience .about-lower-img::before {
    display: none;
  }
}
.wpo-about-section .wpo-about-wrap .wpo-about-exprience .about-lower-img img,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-exprience .about-lower-img img,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience .about-lower-img img {
  z-index: 11;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .wpo-about-section .wpo-about-text,
  .wpo-about-section-s2 .wpo-about-text,
  .wpo-about-section-s3 .wpo-about-text {
    margin-bottom: 50px;
  }
}
.wpo-about-section .wpo-about-text h4,
.wpo-about-section-s2 .wpo-about-text h4,
.wpo-about-section-s3 .wpo-about-text h4 {
  font-family: "Ubuntu", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
  color: #212f8f;
  margin-bottom: 16px;
}
.wpo-about-section .wpo-about-text h4 i,
.wpo-about-section-s2 .wpo-about-text h4 i,
.wpo-about-section-s3 .wpo-about-text h4 i {
  font-size: 15px;
  font-weight: 500;
  line-height: 17px;
  text-align: left;
  padding-right: 15px;
  padding-left: 15px;
}
.wpo-about-section .wpo-about-text h2,
.wpo-about-section-s2 .wpo-about-text h2,
.wpo-about-section-s3 .wpo-about-text h2 {
  font-family: "Ubuntu", sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 45px;
  text-align: left;
  color: #030d4c;
  margin-right: 100px;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .wpo-about-section .wpo-about-text h2,
  .wpo-about-section-s2 .wpo-about-text h2,
  .wpo-about-section-s3 .wpo-about-text h2 {
    font-size: 40px;
    line-height: 55px;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .wpo-about-section .wpo-about-text h2,
  .wpo-about-section-s2 .wpo-about-text h2,
  .wpo-about-section-s3 .wpo-about-text h2 {
    font-size: 44px;
  }
}
@media (max-width: 435px) {
  .wpo-about-section .wpo-about-text h2,
  .wpo-about-section-s2 .wpo-about-text h2,
  .wpo-about-section-s3 .wpo-about-text h2 {
    font-size: 36px;
    line-height: 45px;
  }
}
.wpo-about-section .wpo-about-text p,
.wpo-about-section-s2 .wpo-about-text p,
.wpo-about-section-s3 .wpo-about-text p {
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #828086;
  padding-top: 22px;
}
@media (max-width: 470px) {
  .wpo-about-section .wpo-about-text p,
  .wpo-about-section-s2 .wpo-about-text p,
  .wpo-about-section-s3 .wpo-about-text p {
    font-size: 15px;
  }
}
.wpo-about-section .wpo-about-text .about-lower-text,
.wpo-about-section-s2 .wpo-about-text .about-lower-text,
.wpo-about-section-s3 .wpo-about-text .about-lower-text {
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 30px;
  text-decoration: underline;
  color: #030d4c;
  padding-top: 0;
  margin-bottom: 33px;
}
@media (max-width: 470px) {
  .wpo-about-section .wpo-about-text .about-lower-text,
  .wpo-about-section-s2 .wpo-about-text .about-lower-text,
  .wpo-about-section-s3 .wpo-about-text .about-lower-text {
    font-size: 15px;
  }
}

/* 3.3 wpo-services-section */
.wpo-service-section,
.wpo-service-section-s2,
.wpo-service-section-s3 {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .wpo-service-section,
  .wpo-service-section-s2,
  .wpo-service-section-s3 {
    padding-bottom: 30px;
  }
}
.wpo-service-section::before,
.wpo-service-section-s2::before,
.wpo-service-section-s3::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  width: 1540px;
  height: 100%;
  background: #f6f6f6;
  transform: translateX(-50%);
  z-index: -1;
}
.wpo-service-section .service-wrapper,
.wpo-service-section-s2 .service-wrapper,
.wpo-service-section-s3 .service-wrapper {
  position: relative;
}
.wpo-service-section .service-wrapper .service-grids .grid,
.wpo-service-section-s2 .service-wrapper .service-grids .grid,
.wpo-service-section-s3 .service-wrapper .service-grids .grid {
  text-align: center;
  position: relative;
  background: #fff;
  border: 2px solid #e3e8f1;
  border-radius: 8px;
  padding: 25px;
}
@media (max-width: 370px) {
  .wpo-service-section .service-wrapper .service-grids .grid,
  .wpo-service-section-s2 .service-wrapper .service-grids .grid,
  .wpo-service-section-s3 .service-wrapper .service-grids .grid {
    padding: 25px;
  }
}
.wpo-service-section .service-wrapper .service-grids .grid .service-img,
.wpo-service-section-s2 .service-wrapper .service-grids .grid .service-img,
.wpo-service-section-s3 .service-wrapper .service-grids .grid .service-img {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wpo-service-section .service-wrapper .service-grids .grid .service-img img,
.wpo-service-section-s2 .service-wrapper .service-grids .grid .service-img img,
.wpo-service-section-s3 .service-wrapper .service-grids .grid .service-img img {
  transition: all 0.4s ease-in-out;
  width: 100%;
}
.wpo-service-section .service-wrapper .service-grids .grid .service-text,
.wpo-service-section-s2 .service-wrapper .service-grids .grid .service-text,
.wpo-service-section-s3 .service-wrapper .service-grids .grid .service-text {
  padding-top: 35px;
}
.wpo-service-section .service-wrapper .service-grids .grid .service-text h2,
.wpo-service-section-s2 .service-wrapper .service-grids .grid .service-text h2,
.wpo-service-section-s3 .service-wrapper .service-grids .grid .service-text h2 {
  font-family: "Ubuntu", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: #030d4c;
  margin-bottom: 18px;
}
.wpo-service-section .service-wrapper .service-grids .grid .service-text p,
.wpo-service-section-s2 .service-wrapper .service-grids .grid .service-text p,
.wpo-service-section-s3 .service-wrapper .service-grids .grid .service-text p {
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #828086;
  padding: 0 2px;
}
@media (max-width: 767px) {
  .wpo-service-section .service-wrapper .service-grids .grid .service-text p,
  .wpo-service-section-s2 .service-wrapper .service-grids .grid .service-text p,
  .wpo-service-section-s3 .service-wrapper .service-grids .grid .service-text p {
    padding: 0 51px;
  }
}
@media (max-width: 510px) {
  .wpo-service-section .service-wrapper .service-grids .grid .service-text p,
  .wpo-service-section-s2 .service-wrapper .service-grids .grid .service-text p,
  .wpo-service-section-s3 .service-wrapper .service-grids .grid .service-text p {
    padding: 0;
  }
}
.wpo-service-section .service-wrapper .service-grids .grid .service-text .service-btn,
.wpo-service-section-s2 .service-wrapper .service-grids .grid .service-text .service-btn,
.wpo-service-section-s3 .service-wrapper .service-grids .grid .service-text .service-btn {
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: #828086;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.wpo-service-section .service-wrapper .service-grids .grid .service-text .service-btn i,
.wpo-service-section-s2 .service-wrapper .service-grids .grid .service-text .service-btn i,
.wpo-service-section-s3 .service-wrapper .service-grids .grid .service-text .service-btn i {
  font-size: 18px;
  padding-left: 10px;
}
.wpo-service-section .service-wrapper .service-grids .grid::before,
.wpo-service-section-s2 .service-wrapper .service-grids .grid::before,
.wpo-service-section-s3 .service-wrapper .service-grids .grid::before {
  position: absolute;
  bottom: 15px;
  left: 50%;
  width: 220px;
  height: 3px;
  background: #212f8f;
  content: "";
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.wpo-service-section .service-wrapper .service-grids .grid:hover .service-img,
.wpo-service-section-s2 .service-wrapper .service-grids .grid:hover .service-img,
.wpo-service-section-s3 .service-wrapper .service-grids .grid:hover .service-img {
  border-radius: 8px;
}
.wpo-service-section .service-wrapper .service-grids .grid:hover .service-img img,
.wpo-service-section-s2 .service-wrapper .service-grids .grid:hover .service-img img,
.wpo-service-section-s3 .service-wrapper .service-grids .grid:hover .service-img img {
  transform: scale(1.2);
}
.wpo-service-section .service-wrapper .service-grids .grid:hover .service-text .service-btn,
.wpo-service-section-s2 .service-wrapper .service-grids .grid:hover .service-text .service-btn,
.wpo-service-section-s3 .service-wrapper .service-grids .grid:hover .service-text .service-btn {
  color: #212f8f;
}
.wpo-service-section .service-wrapper .service-grids .grid:hover::before,
.wpo-service-section-s2 .service-wrapper .service-grids .grid:hover::before,
.wpo-service-section-s3 .service-wrapper .service-grids .grid:hover::before {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}
.wpo-service-section .service-wrapper .service-grids .service-slider .owl-nav button.owl-prev,
.wpo-service-section-s2 .service-wrapper .service-grids .service-slider .owl-nav button.owl-prev,
.wpo-service-section-s3 .service-wrapper .service-grids .service-slider .owl-nav button.owl-prev {
  left: -11%;
  bottom: 35%;
  transform: translateY(-50%);
}
@media (max-width: 1590px) {
  .wpo-service-section .service-wrapper .service-grids .service-slider .owl-nav button.owl-prev,
  .wpo-service-section-s2 .service-wrapper .service-grids .service-slider .owl-nav button.owl-prev,
  .wpo-service-section-s3 .service-wrapper .service-grids .service-slider .owl-nav button.owl-prev {
    left: -26px;
  }
}
.wpo-service-section .service-wrapper .service-grids .service-slider .owl-nav button,
.wpo-service-section-s2 .service-wrapper .service-grids .service-slider .owl-nav button,
.wpo-service-section-s3 .service-wrapper .service-grids .service-slider .owl-nav button {
  position: absolute;
  right: -11%;
  bottom: 35%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  line-height: 0;
  text-align: center;
  transition: all 0.3s;
  background: #dce0e8;
  color: #030d4c;
  text-decoration: none;
  border-radius: 50%;
  border: transparent;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1590px) {
  .wpo-service-section .service-wrapper .service-grids .service-slider .owl-nav button,
  .wpo-service-section-s2 .service-wrapper .service-grids .service-slider .owl-nav button,
  .wpo-service-section-s3 .service-wrapper .service-grids .service-slider .owl-nav button {
    right: -26px;
  }
}
.wpo-service-section .service-wrapper .service-grids .service-slider .owl-nav button i::before,
.wpo-service-section-s2 .service-wrapper .service-grids .service-slider .owl-nav button i::before,
.wpo-service-section-s3 .service-wrapper .service-grids .service-slider .owl-nav button i::before {
  font-size: 20px;
  line-height: 22px;
}
@media (max-width: 767px) {
  .wpo-service-section .service-wrapper .service-grids .service-slider .owl-nav button,
  .wpo-service-section-s2 .service-wrapper .service-grids .service-slider .owl-nav button,
  .wpo-service-section-s3 .service-wrapper .service-grids .service-slider .owl-nav button {
    display: none;
  }
}
.wpo-service-section .service-wrapper .service-grids .service-slider .owl-nav button::before,
.wpo-service-section-s2 .service-wrapper .service-grids .service-slider .owl-nav button::before,
.wpo-service-section-s3 .service-wrapper .service-grids .service-slider .owl-nav button::before {
  position: absolute;
  content: "";
  left: -10px;
  top: -11px;
  width: 82px;
  height: 82px;
  border: 1px solid #dce0e8;
  border-radius: 50%;
}
.wpo-service-section .service-wrapper .service-grids .service-slider .owl-nav button:hover,
.wpo-service-section-s2 .service-wrapper .service-grids .service-slider .owl-nav button:hover,
.wpo-service-section-s3 .service-wrapper .service-grids .service-slider .owl-nav button:hover {
  background: #212f8f;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
}
.wpo-service-section .service-wrapper .service-grids .service-slider .owl-dots,
.wpo-service-section-s2 .service-wrapper .service-grids .service-slider .owl-dots,
.wpo-service-section-s3 .service-wrapper .service-grids .service-slider .owl-dots {
  bottom: -35px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.wpo-service-section .service-wrapper .service-grids .service-slider .owl-dots .owl-dot,
.wpo-service-section-s2 .service-wrapper .service-grids .service-slider .owl-dots .owl-dot,
.wpo-service-section-s3 .service-wrapper .service-grids .service-slider .owl-dots .owl-dot {
  background: #212f8f;
}
.wpo-service-section .service-wrapper .service-grids .service-slider .owl-dots button,
.wpo-service-section-s2 .service-wrapper .service-grids .service-slider .owl-dots button,
.wpo-service-section-s3 .service-wrapper .service-grids .service-slider .owl-dots button {
  border: 0;
  width: 10px;
  height: 12px;
  margin: 5px;
  border-radius: 50%;
}
.wpo-service-section .service-wrapper .service-grids .service-slider .owl-dots button.active,
.wpo-service-section-s2 .service-wrapper .service-grids .service-slider .owl-dots button.active,
.wpo-service-section-s3 .service-wrapper .service-grids .service-slider .owl-dots button.active {
  background: #212f8f;
}

/* 3.4 wpo-fun-fact-section */
.wpo-fun-fact-section,
.wpo-fun-fact-section-s2 {
  padding-bottom: 0;
}
.wpo-fun-fact-section .fun-fact-wrap,
.wpo-fun-fact-section-s2 .fun-fact-wrap {
  background: linear-gradient(rgba(33, 48, 95, 0.8), rgba(33, 48, 95, 0.8)), url("/assets/images/banner/shape-banner.jpg");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .wpo-fun-fact-section .fun-fact-wrap,
  .wpo-fun-fact-section-s2 .fun-fact-wrap {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .wpo-fun-fact-section .fun-fact-wrap,
  .wpo-fun-fact-section-s2 .fun-fact-wrap {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}
.wpo-fun-fact-section .fun-fact-wrap .shepe-1,
.wpo-fun-fact-section-s2 .fun-fact-wrap .shepe-1 {
  position: absolute;
  left: 0;
  top: 50px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.wpo-fun-fact-section .fun-fact-wrap .fun-fact-video .wpo-fun-fact-img,
.wpo-fun-fact-section-s2 .fun-fact-wrap .fun-fact-video .wpo-fun-fact-img {
  position: relative;
  text-align: center;
}
.wpo-fun-fact-section .fun-fact-wrap .fun-fact-video .wpo-fun-fact-img img,
.wpo-fun-fact-section-s2 .fun-fact-wrap .fun-fact-video .wpo-fun-fact-img img {
  border-radius: 8px;
  width: 100%;
}
.wpo-fun-fact-section .fun-fact-wrap .fun-fact-video .wpo-fun-fact-img .pop-up-video .video-holder,
.wpo-fun-fact-section-s2 .fun-fact-wrap .fun-fact-video .wpo-fun-fact-img .pop-up-video .video-holder {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.wpo-fun-fact-section .fun-fact-wrap .fun-fact-video .wpo-fun-fact-img .pop-up-video .video-holder a,
.wpo-fun-fact-section-s2 .fun-fact-wrap .fun-fact-video .wpo-fun-fact-img .pop-up-video .video-holder a {
  display: block;
  width: 84px;
  height: 84px;
  background: #fff;
  text-align: center;
  line-height: 87px;
  color: #212f8f;
  font-size: 30px;
  border-radius: 50%;
  position: relative;
}
.wpo-fun-fact-section .fun-fact-wrap .fun-fact-video .wpo-fun-fact-img .pop-up-video .video-holder a::before,
.wpo-fun-fact-section-s2 .fun-fact-wrap .fun-fact-video .wpo-fun-fact-img .pop-up-video .video-holder a::before {
  content: " ";
  width: 130%;
  height: 130%;
  background: rgba(93, 196, 184, 0.3);
  border-radius: 50%;
  position: absolute;
  left: -12px;
  top: -12px;
  animation: pulse 1s infinite;
  z-index: -1;
}
.wpo-fun-fact-section .fun-fact-wrap .fun-fact-video .wpo-fun-fact-img .pop-up-video .video-holder a i,
.wpo-fun-fact-section-s2 .fun-fact-wrap .fun-fact-video .wpo-fun-fact-img .pop-up-video .video-holder a i {
  font-size: 25px;
}
@media (max-width: 991px) {
  .wpo-fun-fact-section .fun-fact-wrap .fun-fact-video .wpo-fun-factt-text,
  .wpo-fun-fact-section-s2 .fun-fact-wrap .fun-fact-video .wpo-fun-factt-text {
    margin-top: 30px;
    text-align: center;
    padding: 0 50px;
  }
}
@media (max-width: 767px) {
  .wpo-fun-fact-section .fun-fact-wrap .fun-fact-video .wpo-fun-factt-text,
  .wpo-fun-fact-section-s2 .fun-fact-wrap .fun-fact-video .wpo-fun-factt-text {
    padding: 0;
  }
}
.wpo-fun-fact-section .fun-fact-wrap .fun-fact-video .wpo-fun-factt-text h3,
.wpo-fun-fact-section-s2 .fun-fact-wrap .fun-fact-video .wpo-fun-factt-text h3 {
  font-family: "Ubuntu", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 51px;
  color: #fff;
  margin-bottom: 18px;
}
@media (max-width: 1199px) {
  .wpo-fun-fact-section .fun-fact-wrap .fun-fact-video .wpo-fun-factt-text h3,
  .wpo-fun-fact-section-s2 .fun-fact-wrap .fun-fact-video .wpo-fun-factt-text h3 {
    font-size: 35px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .wpo-fun-fact-section .fun-fact-wrap .fun-fact-video .wpo-fun-factt-text h3,
  .wpo-fun-fact-section-s2 .fun-fact-wrap .fun-fact-video .wpo-fun-factt-text h3 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .wpo-fun-fact-section .fun-fact-wrap .fun-fact-video .wpo-fun-factt-text h3,
  .wpo-fun-fact-section-s2 .fun-fact-wrap .fun-fact-video .wpo-fun-factt-text h3 {
    font-size: 25px;
    line-height: 35px;
  }
}
.wpo-fun-fact-section .fun-fact-wrap .fun-fact-video .wpo-fun-factt-text p,
.wpo-fun-fact-section-s2 .fun-fact-wrap .fun-fact-video .wpo-fun-factt-text p {
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .wpo-fun-fact-section .fun-fact-wrap .fun-fact-video .wpo-fun-factt-text p,
  .wpo-fun-fact-section-s2 .fun-fact-wrap .fun-fact-video .wpo-fun-factt-text p {
    font-size: 15px;
    line-height: 20px;
  }
}
.wpo-fun-fact-section .fun-fact-wrap .wpo-fun-fact-grids,
.wpo-fun-fact-section-s2 .fun-fact-wrap .wpo-fun-fact-grids {
  margin-top: 80px;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 991px) {
  .wpo-fun-fact-section .fun-fact-wrap .wpo-fun-fact-grids,
  .wpo-fun-fact-section-s2 .fun-fact-wrap .wpo-fun-fact-grids {
    margin-top: 0;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .wpo-fun-fact-section .fun-fact-wrap .wpo-fun-fact-grids,
  .wpo-fun-fact-section-s2 .fun-fact-wrap .wpo-fun-fact-grids {
    margin-top: 20px;
    padding: 20px;
  }
}
.wpo-fun-fact-section .fun-fact-wrap h2,
.wpo-fun-fact-section-s2 .fun-fact-wrap h2 {
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 1.8em;
}
@media (max-width: 767px) {
  .wpo-fun-fact-section .fun-fact-wrap h2,
  .wpo-fun-fact-section-s2 .fun-fact-wrap h2 {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .wpo-fun-fact-section .fun-fact-wrap h2,
  .wpo-fun-fact-section-s2 .fun-fact-wrap h2 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .wpo-fun-fact-section .fun-fact-wrap h2,
  .wpo-fun-fact-section-s2 .fun-fact-wrap h2 {
    font-size: 25px;
  }
}
.wpo-fun-fact-section .fun-fact-wrap .wpo-fun-fact-grids .grid,
.wpo-fun-fact-section-s2 .fun-fact-wrap .wpo-fun-fact-grids .grid {
  width: 25%;
  float: left;
}
@media (max-width: 767px) {
  .wpo-fun-fact-section .fun-fact-wrap .wpo-fun-fact-grids .grid,
  .wpo-fun-fact-section-s2 .fun-fact-wrap .wpo-fun-fact-grids .grid {
    width: 50%;
    margin-bottom: 20px;
  }
}
@media (max-width: 499px) {
  .wpo-fun-fact-section .fun-fact-wrap .wpo-fun-fact-grids .grid,
  .wpo-fun-fact-section-s2 .fun-fact-wrap .wpo-fun-fact-grids .grid {
    width: 100%;
  }
}
.wpo-fun-fact-section .fun-fact-wrap .grid h3,
.wpo-fun-fact-section-s2 .fun-fact-wrap .grid h3 {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.2em;
  font-family: "Ubuntu", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  .wpo-fun-fact-section .fun-fact-wrap .grid h3,
  .wpo-fun-fact-section-s2 .fun-fact-wrap .grid h3 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .wpo-fun-fact-section .fun-fact-wrap .grid h3,
  .wpo-fun-fact-section-s2 .fun-fact-wrap .grid h3 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .wpo-fun-fact-section .fun-fact-wrap .grid h3,
  .wpo-fun-fact-section-s2 .fun-fact-wrap .grid h3 {
    font-size: 35px;
  }
}
.wpo-fun-fact-section .fun-fact-wrap .grid h3 + p,
.wpo-fun-fact-section-s2 .fun-fact-wrap .grid h3 + p {
  font-size: 20px;
  margin: 0;
  color: #fff;
  font-family: "Ubuntu", sans-serif;
}
@media (max-width: 1200px) {
  .wpo-fun-fact-section .fun-fact-wrap .grid h3 + p,
  .wpo-fun-fact-section-s2 .fun-fact-wrap .grid h3 + p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .wpo-fun-fact-section .fun-fact-wrap .grid h3 + p,
  .wpo-fun-fact-section-s2 .fun-fact-wrap .grid h3 + p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .wpo-fun-fact-section .fun-fact-wrap .grid h3 + p,
  .wpo-fun-fact-section-s2 .fun-fact-wrap .grid h3 + p {
    font-size: 14px;
  }
}

/* 3.5 wpo-team-section */
.wpo-team-section {
  position: relative;
  z-index: 1;
}
.wpo-team-section .shepe-1 {
  position: absolute;
  top: -200px;
  right: 0;
  z-index: -1;
}
.wpo-team-section .shepe-1 svg path {
  fill: #0dd7b2;
}
.wpo-team-section .shepe-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.wpo-team-section .shepe-2 svg path {
  fill: #6d1fee;
}
.wpo-team-section .team-grids .team-1,
.wpo-team-section .team-grids .team-5 {
  margin-top: 155px;
  position: relative;
  z-index: 11;
}
@media (max-width: 991px) {
  .wpo-team-section .team-grids .team-1,
  .wpo-team-section .team-grids .team-5 {
    margin-top: 0;
  }
}
.wpo-team-section .team-grids .team-2,
.wpo-team-section .team-grids .team-4 {
  margin-top: 55px;
  position: relative;
  z-index: 11;
}
@media (max-width: 991px) {
  .wpo-team-section .team-grids .team-2,
  .wpo-team-section .team-grids .team-4 {
    margin-top: 0;
  }
}
.wpo-team-section .team-grids .grid {
  text-align: center;
  position: relative;
  z-index: 11;
}
@media (max-width: 991px) {
  .wpo-team-section .team-grids .grid {
    margin-bottom: 30px;
  }
}
.wpo-team-section .team-grids .grid .grid-img {
  z-index: 1;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wpo-team-section .team-grids .grid .grid-img::before {
  position: absolute;
  top: -100%;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 24.1%, rgba(109, 31, 238, 0.96) 90.6%);
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.wpo-team-section .team-grids .grid .grid-img img {
  transition: all 0.4s ease-in-out;
  width: 100%;
}
.wpo-team-section .team-grids .grid .grid-img .social-single-link {
  position: absolute;
  bottom: -40px;
  left: 50%;
  width: 40px;
  height: 40px;
  background: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  z-index: 1;
  transform: translateX(-50%);
  padding-top: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.wpo-team-section .team-grids .grid .grid-img .social-single-link a {
  color: #212f8f;
}
.wpo-team-section .team-grids .grid .grid-img .social-single-link a i {
  font-size: 16px;
}
.wpo-team-section .team-grids .grid .text {
  margin-top: 30px;
  text-align: center;
  transition: all 0.4s ease-in-out;
}
.wpo-team-section .team-grids .grid .text h3 a {
  font-family: "Ubuntu", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
  color: #030d4c;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .wpo-team-section .team-grids .grid .text h3 {
    font-size: 18px;
  }
}
.wpo-team-section .team-grids .grid .text span {
  font-family: "Ubuntu", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 16px;
  color: #828086;
}
.wpo-team-section .team-grids .grid:hover .grid-img::before {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.wpo-team-section .team-grids .grid:hover .grid-img img {
  transform: scale(1.2);
}
.wpo-team-section .team-grids .grid:hover .grid-img .social-single-link {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}
.wpo-team-section .team-grids .grid:hover h3 a {
  color: #212f8f;
}
.wpo-team-section .team-grids .team-grids-btn {
  margin-top: -80px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .wpo-team-section .team-grids .team-grids-btn {
    margin-top: 20px;
  }
}
.wpo-team-section .team-grids .team-grids-btn .shepe {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 991px) {
  .wpo-team-section .team-grids .team-grids-btn .shepe {
    top: 70%;
  }
}
.wpo-team-section .team-grids .team-grids-btn .shepe svg circle {
  fill: #6d1fee;
}
@media (max-width: 991px) {
  .wpo-team-section .team-grids .team-grids-btn a {
    text-align: center;
    display: flex;
    justify-content: center;
  }
}
.wpo-team-section .team-grids .team-grids-btn a .join-btn {
  background: #fff;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 55px 35px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 1399px) {
  .wpo-team-section .team-grids .team-grids-btn a .join-btn {
    padding: 44px 35px;
  }
}
@media (max-width: 1199px) {
  .wpo-team-section .team-grids .team-grids-btn a .join-btn {
    padding: 30px 35px;
  }
}
@media (max-width: 991px) {
  .wpo-team-section .team-grids .team-grids-btn a .join-btn {
    width: 150px;
    height: 150px;
  }
}
.wpo-team-section .team-grids .team-grids-btn a .join-btn h3 {
  font-family: "Ubuntu", sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  color: #030d4c;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .wpo-team-section .team-grids .team-grids-btn a .join-btn h3 {
    font-size: 15px;
  }
}
.wpo-team-section .team-grids .team-grids-btn a .join-btn i {
  font-size: 40px;
  color: #212f8f;
  text-align: center;
}
@media (max-width: 1399px) {
  .wpo-team-section .team-grids .team-grids-btn a .join-btn i {
    font-size: 35px;
  }
}
@media (max-width: 1199px) {
  .wpo-team-section .team-grids .team-grids-btn a .join-btn i {
    font-size: 30px;
  }
}
.wpo-team-section .team-grids .team-grids-btn a .join-btn::before {
  position: absolute;
  bottom: -175px;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: "";
  background: #212f8f;
  transition: all 0.4s ease-in-out;
  z-index: -111;
}
@media (max-width: 1399px) {
  .wpo-team-section .team-grids .team-grids-btn a .join-btn::before {
    bottom: -155px;
  }
}
@media (max-width: 1199px) {
  .wpo-team-section .team-grids .team-grids-btn a .join-btn::before {
    bottom: -120px;
  }
}
@media (max-width: 991px) {
  .wpo-team-section .team-grids .team-grids-btn a .join-btn::before {
    bottom: -130px;
  }
}
.wpo-team-section .team-grids .team-grids-btn a .join-btn:hover::before {
  bottom: 92%;
}

/* 3.6 wpo-partners-section */
.wpo-partners-section {
  padding: 50px 0;
  position: relative;
}
.wpo-partners-section h2 {
  display: none;
}
.wpo-partners-section .partners-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.wpo-partners-section .partners-img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.wpo-partners-section .partners-img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #030d4c;
  opacity: 0.9;
}
.wpo-partners-section .grid:hover img {
  filter: grayscale(100%);
}
.wpo-partners-section .grid img {
  width: auto;
  margin: 0 auto;
  transition: all 0.4s ease-in-out;
}
.wpo-partners-section .owl-nav button {
  display: none;
}

/* 3.7 wpo-portfolio-section */
.wpo-portfolio-section {
  padding-bottom: 90px;
  margin: 0 30px;
}
@media (max-width: 991px) {
  .wpo-portfolio-section {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .wpo-portfolio-section {
    padding-bottom: 30px;
  }
}
.wpo-portfolio-section .sortable-gallery .gallery-grids {
  margin: 0 -7.5px;
}
.wpo-portfolio-section .sortable-gallery .gallery-grids .grid {
  width: 33.3%;
  float: left;
}
@media (max-width: 1199px) {
  .wpo-portfolio-section .sortable-gallery .gallery-grids .grid {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .wpo-portfolio-section .sortable-gallery .gallery-grids .grid {
    width: 100%;
  }
}
.wpo-portfolio-section .sortable-gallery .gallery-grids .grid .grid-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin: 15px;
}
@media (max-width: 1500px) {
  .wpo-portfolio-section .sortable-gallery .gallery-grids .grid .grid-img {
    margin: 0 5.5px 10px;
  }
}
@media (max-width: 991px) {
  .wpo-portfolio-section .sortable-gallery .gallery-grids .grid .grid-img {
    margin: 0 4.5px 8px;
  }
}
@media (max-width: 767px) {
  .wpo-portfolio-section .sortable-gallery .gallery-grids .grid .grid-img {
    margin-bottom: 20px;
  }
}
.wpo-portfolio-section .sortable-gallery .gallery-grids .grid .grid-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 24.1%, rgba(109, 31, 238, 0.96) 90.6%);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.wpo-portfolio-section .sortable-gallery .gallery-grids .grid .grid-img img {
  width: 100%;
}
.wpo-portfolio-section .sortable-gallery .gallery-grids .grid .grid-img .grid-text {
  text-align: center;
  position: absolute;
  z-index: 1;
  width: 100%;
  bottom: 0;
  left: 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.wpo-portfolio-section .sortable-gallery .gallery-grids .grid .grid-img .grid-text h3 a {
  font-family: "Ubuntu", sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 29px;
  color: #fff;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 390px) {
  .wpo-portfolio-section .sortable-gallery .gallery-grids .grid .grid-img .grid-text h3 a {
    font-size: 18px;
    line-height: 25px;
  }
}
.wpo-portfolio-section .sortable-gallery .gallery-grids .grid .grid-img .grid-text h3:hover a {
  color: #212f8f;
}
.wpo-portfolio-section .sortable-gallery .gallery-grids .grid .grid-img .grid-text span {
  font-family: "Ubuntu", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 16px;
  color: #bebc99;
}
.wpo-portfolio-section .sortable-gallery .gallery-grids .grid:hover .grid-img::before {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.wpo-portfolio-section .sortable-gallery .gallery-grids .grid:hover .grid-img .grid-text {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}
@media (max-width: 991px) {
  .wpo-portfolio-section .sortable-gallery .gallery-grids .grid-wrap {
    display: none;
  }
}

/* 3.8 wpo-testimonial-section */
.wpo-testimonial-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #f6f6f6;
}
.wpo-testimonial-section .testimonial-title {
  text-align: center;
}
.wpo-testimonial-section .testimonial-title h3 {
  color: #212f8f;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
  margin: 0 auto;
  padding: 15px 0;
  width: 440px;
  background: #ede5fc;
  border: 1px solid #e0d8ec;
  z-index: -1;
  position: relative;
}
@media (max-width: 449px) {
  .wpo-testimonial-section .testimonial-title h3 {
    font-size: 15px;
    width: 300px;
  }
}
.wpo-testimonial-section .testimonial-title h3 .border-dot-1,
.wpo-testimonial-section .testimonial-title h3 .border-dot-2,
.wpo-testimonial-section .testimonial-title h3 .border-dot-3,
.wpo-testimonial-section .testimonial-title h3 .border-dot-4 {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #cdc1e0;
  transform: translate(-50%, -50%);
}
.wpo-testimonial-section .testimonial-title h3 .border-dot-1 {
  left: 0;
  top: 0;
}
.wpo-testimonial-section .testimonial-title h3 .border-dot-2 {
  left: 0;
  top: 100%;
}
.wpo-testimonial-section .testimonial-title h3 .border-dot-3 {
  left: 100%;
  top: 0;
}
.wpo-testimonial-section .testimonial-title h3 .border-dot-4 {
  left: 100%;
  top: 100%;
}
.wpo-testimonial-section .testimonial-wrap {
  margin-top: 90px;
}
@media (max-width: 991px) {
  .wpo-testimonial-section .testimonial-wrap .testimonial-slider-content {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .wpo-testimonial-section .testimonial-wrap .testimonial-slider-content img {
    margin: 0 auto;
  }
}
.wpo-testimonial-section .testimonial-wrap .testimonial-slider-content .text h3 {
  color: #030d4c;
  font-family: "Ubuntu", sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 46px;
  margin-bottom: 53px;
  margin-top: 15px;
  margin-right: 95px;
}
@media (max-width: 1399px) {
  .wpo-testimonial-section .testimonial-wrap .testimonial-slider-content .text h3 {
    font-size: 22px;
    line-height: 40px;
  }
}
@media (max-width: 1199px) {
  .wpo-testimonial-section .testimonial-wrap .testimonial-slider-content .text h3 {
    margin-bottom: 25px;
  }
}
@media (max-width: 991px) {
  .wpo-testimonial-section .testimonial-wrap .testimonial-slider-content .text h3 {
    margin-bottom: 53px;
    margin-top: 15px;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .wpo-testimonial-section .testimonial-wrap .testimonial-slider-content .text h3 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 575px) {
  .wpo-testimonial-section .testimonial-wrap .testimonial-slider-content .text h3 {
    font-size: 18px;
    line-height: 30px;
  }
}
@media (max-width: 449px) {
  .wpo-testimonial-section .testimonial-wrap .testimonial-slider-content .text h3 {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 33px;
  }
}
.wpo-testimonial-section .testimonial-wrap .testimonial-slider-content .icon i {
  color: #ff9900;
  font-size: 21px;
  padding-right: 10px;
}
.wpo-testimonial-section .testimonial-wrap .testimonial-slider-content .icon span i {
  color: #afa9a1;
}
.wpo-testimonial-section .testimonial-wrap .testimonial-img {
  margin-top: 108px;
  margin-right: -100px;
  margin-left: -100px;
}
@media (max-width: 991px) {
  .wpo-testimonial-section .testimonial-wrap .testimonial-img {
    margin-top: 60px;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 62px;
  }
}
@media (max-width: 575px) {
  .wpo-testimonial-section .testimonial-wrap .testimonial-img {
    margin-bottom: -14px;
  }
}
.wpo-testimonial-section .testimonial-wrap .testimonial-img ul {
  /** slider controls **/
}
.wpo-testimonial-section .testimonial-wrap .testimonial-img ul .image-grid img {
  border-radius: 50%;
  padding: 7px;
  border: 2px solid transparent;
  transition: all 0.4s ease-in-out;
  margin: 0 auto;
}
.wpo-testimonial-section .testimonial-wrap .testimonial-img ul .image-grid .image-text {
  margin-top: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  text-align: center;
  margin-bottom: 15px;
}
.wpo-testimonial-section .testimonial-wrap .testimonial-img ul .image-grid .image-text h2 {
  color: #030d4c;
  font-family: "Ubuntu", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
}
@media (max-width: 449px) {
  .wpo-testimonial-section .testimonial-wrap .testimonial-img ul .image-grid .image-text h2 {
    font-size: 15px;
  }
}
.wpo-testimonial-section .testimonial-wrap .testimonial-img ul .image-grid .image-text span {
  font-family: "Ubuntu", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #828086;
}
.wpo-testimonial-section .testimonial-wrap .testimonial-img ul .image-grid.slick-slide.slick-current.slick-active.slick-center img {
  border: 2px solid #212f8f;
}
.wpo-testimonial-section .testimonial-wrap .testimonial-img ul .image-grid.slick-slide.slick-current.slick-active.slick-center .image-text {
  opacity: 1;
  visibility: visible;
}
.wpo-testimonial-section .testimonial-wrap .testimonial-img ul .slick-prev,
.wpo-testimonial-section .testimonial-wrap .testimonial-img ul .slick-next {
  width: 55px;
  height: 55px;
  z-index: 10;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 20px;
  color: #635d6d;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
}
.wpo-testimonial-section .testimonial-wrap .testimonial-img ul .slick-prev:hover,
.wpo-testimonial-section .testimonial-wrap .testimonial-img ul .slick-next:hover {
  color: #212f8f;
}
.wpo-testimonial-section .testimonial-wrap .testimonial-img ul .slick-prev:hover:before,
.wpo-testimonial-section .testimonial-wrap .testimonial-img ul .slick-next:hover:before {
  color: #212f8f;
}
.wpo-testimonial-section .testimonial-wrap .testimonial-img ul .slick-prev {
  left: 145px;
  top: 139%;
}
@media (max-width: 1399px) {
  .wpo-testimonial-section .testimonial-wrap .testimonial-img ul .slick-prev {
    top: 133%;
  }
}
.wpo-testimonial-section .testimonial-wrap .testimonial-img ul .slick-prev:before {
  font-family: "themify";
  content: "\e629";
  opacity: 1;
  color: #635d6d;
  transition: all 0.3s;
  position: absolute;
  left: -33px;
  top: 18px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.wpo-testimonial-section .testimonial-wrap .testimonial-img ul .slick-next {
  right: 130px;
  top: 139%;
}
@media (max-width: 1399px) {
  .wpo-testimonial-section .testimonial-wrap .testimonial-img ul .slick-next {
    right: 150px;
    top: 133%;
  }
}
.wpo-testimonial-section .testimonial-wrap .testimonial-img ul .slick-next:before {
  font-family: "themify";
  content: "\e628";
  opacity: 1;
  color: #635d6d;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  right: -30px;
  top: 18px;
}
@media (max-width: 757px) {
  .wpo-testimonial-section .testimonial-wrap .testimonial-img .slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .wpo-testimonial-section .testimonial-wrap .testimonial-img .slick-dots li {
    margin: 0 0.25rem;
  }
  .wpo-testimonial-section .testimonial-wrap .testimonial-img .slick-dots button {
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: #212f8f;
    text-indent: -9999px;
  }
  .wpo-testimonial-section .testimonial-wrap .testimonial-img .slick-dots li.slick-active button {
    background-color: #212f8f;
  }
}
.wpo-testimonial-section .shape-1,
.wpo-testimonial-section .shape-2,
.wpo-testimonial-section .shape-3,
.wpo-testimonial-section .shape-4 {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: translate(-50%, 50%);
}
.wpo-testimonial-section .shape-1 {
  left: 50%;
  top: -55%;
}
.wpo-testimonial-section .shape-2 {
  left: 50%;
  top: -52%;
}
.wpo-testimonial-section .shape-3 {
  left: 125%;
  top: 28%;
}
.wpo-testimonial-section .shape-4 {
  left: 122%;
  top: 10%;
}

/* 3.9 wpo-blog-section */
.wpo-blog-section,
.wpo-blog-section-s2 {
  padding-bottom: 75px;
  margin: 0 150px;
}
@media (max-width: 1399px) {
  .wpo-blog-section,
  .wpo-blog-section-s2 {
    margin: 0 70px;
  }
}
@media (max-width: 1199px) {
  .wpo-blog-section,
  .wpo-blog-section-s2 {
    padding-bottom: 45px;
    margin: 0 10px;
  }
}
@media (max-width: 767px) {
  .wpo-blog-section,
  .wpo-blog-section-s2 {
    padding-bottom: 35px;
    margin: 0 30px;
  }
}
@media (max-width: 445px) {
  .wpo-blog-section,
  .wpo-blog-section-s2 {
    margin: 0;
  }
}
.wpo-blog-section .wpo-section-title,
.wpo-blog-section-s2 .wpo-section-title {
  text-align: start;
  margin-right: 115px;
}
@media (max-width: 1399px) {
  .wpo-blog-section .wpo-section-title,
  .wpo-blog-section-s2 .wpo-section-title {
    margin-right: 50px;
  }
}
@media (max-width: 991px) {
  .wpo-blog-section .wpo-section-title,
  .wpo-blog-section-s2 .wpo-section-title {
    margin-right: 20px;
    margin-left: 20px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .wpo-blog-section .wpo-section-title,
  .wpo-blog-section-s2 .wpo-section-title {
    margin-left: 0;
    margin-right: 0;
  }
}
.wpo-blog-section .wpo-section-title span,
.wpo-blog-section-s2 .wpo-section-title span {
  font-size: 17px;
  font-weight: 700;
  margin-left: -20px;
}
.wpo-blog-section .wpo-section-title h2,
.wpo-blog-section-s2 .wpo-section-title h2 {
  font-size: 45px;
  font-weight: 700;
  line-height: 60px;
  text-transform: unset;
  margin-top: 27px;
}
@media (max-width: 991px) {
  .wpo-blog-section .wpo-section-title h2,
  .wpo-blog-section-s2 .wpo-section-title h2 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .wpo-blog-section .wpo-section-title h2,
  .wpo-blog-section-s2 .wpo-section-title h2 {
    font-size: 35px;
    line-height: 50px;
  }
}
@media (max-width: 445px) {
  .wpo-blog-section .wpo-section-title h2,
  .wpo-blog-section-s2 .wpo-section-title h2 {
    font-size: 27px;
    line-height: 40px;
    margin-top: 15px;
  }
}
.wpo-blog-section .wpo-section-title p,
.wpo-blog-section-s2 .wpo-section-title p {
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  color: #828086;
  margin-top: 21px;
}
@media (max-width: 991px) {
  .wpo-blog-section .wpo-section-title p,
  .wpo-blog-section-s2 .wpo-section-title p {
    line-height: 25px;
  }
}
@media (max-width: 445px) {
  .wpo-blog-section .wpo-section-title p,
  .wpo-blog-section-s2 .wpo-section-title p {
    font-size: 15px;
  }
}
.wpo-blog-section .blog-grids .grid,
.wpo-blog-section-s2 .blog-grids .grid {
  margin-bottom: 45px;
}
.wpo-blog-section .blog-grids .grid .blog-img,
.wpo-blog-section-s2 .blog-grids .grid .blog-img {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  transition: all 0.4s ease-in-out;
  aspect-ratio: 16/9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wpo-blog-section .blog-grids .grid .blog-img::before,
.wpo-blog-section-s2 .blog-grids .grid .blog-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 24.1%, rgba(109, 31, 238, 0.96) 90.6%);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.wpo-blog-section .blog-grids .grid .blog-img img,
.wpo-blog-section-s2 .blog-grids .grid .blog-img img {
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease-in;
}
.wpo-blog-section .blog-grids .grid .text,
.wpo-blog-section-s2 .blog-grids .grid .text {
  text-align: left;
  padding-top: 30px;
}
.wpo-blog-section .blog-grids .grid .text span,
.wpo-blog-section-s2 .blog-grids .grid .text span {
  font-family: "Ubuntu", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 17px;
  color: #828086;
}
.wpo-blog-section .blog-grids .grid .text h2,
.wpo-blog-section-s2 .blog-grids .grid .text h2 {
  font-family: "Ubuntu", sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 30px;
  color: #030d4c;
  margin-top: 10px;
  margin-bottom: 18px;
}
@media (max-width: 1399px) {
  .wpo-blog-section .blog-grids .grid .text h2,
  .wpo-blog-section-s2 .blog-grids .grid .text h2 {
    font-size: 18px;
  }
}
.wpo-blog-section .blog-grids .grid .text .blog-btn,
.wpo-blog-section-s2 .blog-grids .grid .text .blog-btn {
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  color: #828086;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.wpo-blog-section .blog-grids .grid .text .blog-btn i,
.wpo-blog-section-s2 .blog-grids .grid .text .blog-btn i {
  padding-left: 10px;
}
.wpo-blog-section .blog-grids .grid:hover .blog-img img,
.wpo-blog-section-s2 .blog-grids .grid:hover .blog-img img {
  transform: scale(1.2);
}
.wpo-blog-section .blog-grids .grid:hover .blog-img::before,
.wpo-blog-section-s2 .blog-grids .grid:hover .blog-img::before {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.wpo-blog-section .blog-grids .grid:hover .blog-btn,
.wpo-blog-section-s2 .blog-grids .grid:hover .blog-btn {
  color: #212f8f;
}

/* 3.10 wpo-social-section */
.wpo-social-section {
  background: #212f8f;
  padding: 30px 0;
}
.wpo-social-section .social-title {
  text-align: center;
}
@media (max-width: 991px) {
  .wpo-social-section .social-title {
    margin-bottom: 25px;
  }
}
.wpo-social-section .social-title h2 {
  margin: 0;
  font-family: "Ubuntu", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  color: #fff;
}
@media (max-width: 991px) {
  .wpo-social-section .social-title h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .wpo-social-section .social-title h2 {
    font-size: 25px;
  }
}
.wpo-social-section .social-item {
  text-align: center;
}
.wpo-social-section .social-item li {
  list-style: none;
  margin-left: 15px;
  width: 56px;
  height: 56px;
  border: 2px solid #fffdd0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.wpo-social-section .social-item li a {
  color: #fff;
  font-size: 18px;
}
.wpo-social-section .social-item li a i {
  padding: 0;
}

/*======================================
5. Home-style-2
 =======================================*/
/* 5.1	wpo-about-section-s2 */
.wpo-about-section-s2 .wpo-about-img {
  position: relative;
}
.wpo-about-section-s2 .wpo-about-img .wpo-about-img-left {
  float: left;
}
@media (max-width: 575px) {
  .wpo-about-section-s2 .wpo-about-img .wpo-about-img-left {
    float: none;
  }
}
.wpo-about-section-s2 .wpo-about-img .wpo-about-img-left img {
  background: #F5F5F5;
  padding: 10px;
}
@media (max-width: 575px) {
  .wpo-about-section-s2 .wpo-about-img .wpo-about-img-left img {
    width: 100%;
  }
}
.wpo-about-section-s2 .wpo-about-img .wpo-about-img-left .wpo-about-img-text {
  display: flex;
  align-items: center;
  max-width: 260px;
  margin-top: 20px;
}
@media (max-width: 1400px) {
  .wpo-about-section-s2 .wpo-about-img .wpo-about-img-left .wpo-about-img-text {
    display: block;
  }
}
@media (max-width: 1200px) {
  .wpo-about-section-s2 .wpo-about-img .wpo-about-img-left .wpo-about-img-text {
    margin-top: 10px;
  }
}
@media (max-width: 575px) {
  .wpo-about-section-s2 .wpo-about-img .wpo-about-img-left .wpo-about-img-text {
    display: flex;
  }
}
.wpo-about-section-s2 .wpo-about-img .wpo-about-img-left .wpo-about-img-text h2 {
  font-size: 60px;
  color: #030d4c;
  font-weight: 600;
  margin-right: 30px;
}
@media (max-width: 1400px) {
  .wpo-about-section-s2 .wpo-about-img .wpo-about-img-left .wpo-about-img-text h2 {
    font-size: 40px;
    margin-right: 0;
  }
}
@media (max-width: 575px) {
  .wpo-about-section-s2 .wpo-about-img .wpo-about-img-left .wpo-about-img-text h2 {
    margin-right: 20px;
  }
}
.wpo-about-section-s2 .wpo-about-img .wpo-about-img-left .wpo-about-img-text p {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 170.9%;
}
@media (max-width: 1400px) {
  .wpo-about-section-s2 .wpo-about-img .wpo-about-img-left .wpo-about-img-text p {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .wpo-about-section-s2 .wpo-about-img .wpo-about-img-left .tp-fun-fact-grids {
    display: none;
  }
}
.wpo-about-section-s2 .wpo-about-img .wpo-about-img-left .wpo-about-exprience .tp-fun-fact-grids h3 span {
  font-size: 70px;
  line-height: 64px;
}
.wpo-about-section-s2 .wpo-about-img .wpo-about-img-right {
  position: absolute;
  top: 120px;
  right: 0;
}
@media (max-width: 1199px) {
  .wpo-about-section-s2 .wpo-about-img .wpo-about-img-right {
    width: 70%;
    top: 188px;
    right: -33px;
  }
}
@media (max-width: 991px) {
  .wpo-about-section-s2 .wpo-about-img .wpo-about-img-right {
    width: unset;
    right: 60px;
    top: 120px;
  }
}
@media (max-width: 767px) {
  .wpo-about-section-s2 .wpo-about-img .wpo-about-img-right {
    width: 70%;
    right: 0;
  }
}
@media (max-width: 575px) {
  .wpo-about-section-s2 .wpo-about-img .wpo-about-img-right {
    display: none;
  }
}
.wpo-about-section-s2 .wpo-about-img .wpo-about-img-right img {
  background: #F5F5F5;
  padding: 10px;
}
.wpo-about-section-s2 .wpo-about-text {
  padding-left: 80px;
}
@media (max-width: 991px) {
  .wpo-about-section-s2 .wpo-about-text {
    margin-top: 50px;
    padding-left: 0;
    margin-bottom: 0;
  }
}
.wpo-about-section-s2 .wpo-about-text h2 {
  margin-right: 0;
}
@media (max-width: 1199px) {
  .wpo-about-section-s2 .wpo-about-text h2 {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .wpo-about-section-s2 .wpo-about-text h2 {
    font-size: 37px;
  }
}
.wpo-about-section-s2 .wpo-about-text ul.ab-list {
  list-style: none;
  margin-bottom: 30px;
}
.wpo-about-section-s2 .wpo-about-text ul.ab-list li {
  padding: 5px 0;
  padding-left: 30px;
  position: relative;
  color: #828086;
}
.wpo-about-section-s2 .wpo-about-text ul.ab-list li:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  content: "";
  border: 1px solid #828086;
  border-radius: 50%;
}

/* 5.2	wpo-service-section-s2 */
.wpo-service-section-s2 .service-wrapper .service-grids .grid {
  padding: 0;
  border: 1px transparent;
}
.wpo-service-section-s2 .service-wrapper .service-grids .grid .service-img {
  position: relative;
  transition: all 0.4s ease-in-out;
}
.wpo-service-section-s2 .service-wrapper .service-grids .grid .service-img:before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 24.1%, rgba(109, 31, 238, 0.96) 90.6%);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.wpo-service-section-s2 .service-wrapper .service-grids .grid .service-text {
  text-align: center;
  position: absolute;
  z-index: 1;
  width: 100%;
  bottom: 0;
  left: 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  padding-top: 0;
}
.wpo-service-section-s2 .service-wrapper .service-grids .grid .service-text h2 {
  color: #fff;
}
.wpo-service-section-s2 .service-wrapper .service-grids .grid .service-text p {
  color: #fff;
  padding: 0 55px;
}
@media (max-width: 445px) {
  .wpo-service-section-s2 .service-wrapper .service-grids .grid .service-text p {
    padding: 0;
  }
}
.wpo-service-section-s2 .service-wrapper .service-grids .grid .service-text .service-btn {
  color: #fff;
}
.wpo-service-section-s2 .service-wrapper .service-grids .grid:hover .service-img:before {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.wpo-service-section-s2 .service-wrapper .service-grids .grid:hover .service-img img {
  transform: scale(1.2);
}
.wpo-service-section-s2 .service-wrapper .service-grids .grid:hover .service-text {
  bottom: 23%;
  opacity: 1;
  visibility: visible;
}
.wpo-service-section-s2 .service-wrapper .service-grids .grid:hover .service-text .service-btn {
  color: #fff;
}
.wpo-service-section-s2 .service-wrapper .service-grids .service-slider .owl-nav button.owl-next {
  bottom: 49%;
}
.wpo-service-section-s2 .service-wrapper .service-grids .service-slider .owl-nav button {
  bottom: 49%;
}

/* 5.3	wpo-fun-fact-section-s2 */
.wpo-fun-fact-section-s2 {
  overflow: hidden;
}
@media (max-width: 991px) {
  .wpo-fun-fact-section-s2 .fun-fact-wrap {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .wpo-fun-fact-section-s2 .fun-fact-wrap {
    padding: 40px 0;
  }
}
.wpo-fun-fact-section-s2 .fun-fact-wrap .wpo-fun-fact-grids {
  margin-top: 0;
}
@media (max-width: 991px) {
  .wpo-fun-fact-section-s2 .fun-fact-wrap .wpo-fun-fact-grids {
    margin-top: 0;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .wpo-fun-fact-section-s2 .fun-fact-wrap .wpo-fun-fact-grids {
    margin-top: 20px;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .wpo-fun-fact-section-s2 .fun-fact-wrap .wpo-fun-fact-grids .grid {
    width: 50%;
    margin-bottom: 20px;
  }
}
@media (max-width: 499px) {
  .wpo-fun-fact-section-s2 .fun-fact-wrap .wpo-fun-fact-grids .grid {
    width: 100%;
  }
}

/* 5.4	wpo-pricing-section  */
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item {
  box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  position: relative;
  z-index: 1;
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item:before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 24.1%, rgba(109, 31, 238, 0.96) 90.6%);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
@media (max-width: 991px) {
  .wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item {
    margin-bottom: 30px;
  }
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-top {
  padding: 30px;
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-top .pricing-thumb {
  display: inline-block;
  padding: 3px 30px 5px;
  background: #212f8f;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-top .pricing-thumb span {
  text-transform: uppercase;
  color: #fff;
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-top .wpo-pricing-text {
  margin-top: 30px;
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-top .wpo-pricing-text h2 {
  color: #030d4c;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-weight: 700;
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-top .wpo-pricing-text h2 span {
  font-weight: 500;
  color: #828086;
  font-size: 16px;
  text-transform: uppercase;
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-top .wpo-pricing-text p {
  padding-bottom: 30px;
  max-width: 282px;
  text-transform: capitalize;
  margin: 0 auto;
  border-bottom: 1px solid #212f8f;
  transition: all 0.4s ease-in-out;
  color: #030d4c;
}
@media (max-width: 1199px) {
  .wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-top .wpo-pricing-text p {
    font-size: 13px;
  }
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-bottom {
  padding: 40px;
  padding-top: 35px;
  text-align: center;
}
@media (max-width: 1199px) {
  .wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-bottom {
    padding-left: 28px;
    padding-right: 28px;
  }
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-bottom .wpo-pricing-bottom-text ul {
  list-style: none;
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-bottom .wpo-pricing-bottom-text ul li {
  color: #867f93;
  padding-bottom: 15px;
  transition: all 0.4s ease-in-out;
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-bottom .wpo-pricing-bottom-text a {
  font-size: 16px;
  color: #212f8f;
  font-weight: 500;
  display: inline-block;
  margin-top: 20px;
  position: relative;
  padding: 10px 25px;
  border: 1px solid #212f8f;
  transition: all 0.4s ease-in-out;
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item:hover:before {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item:hover .wpo-pricing-text p {
  border-bottom: 1px solid #fff;
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item:hover .wpo-pricing-bottom .wpo-pricing-bottom-text ul li {
  color: #fff;
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item:hover .wpo-pricing-bottom .wpo-pricing-bottom-text a {
  color: #fff;
  border: 1px solid #fff;
}
.wpo-pricing-section .wpo-pricing-wrap .col:last-child .wpo-pricing-item {
  margin-bottom: 0;
}

/* 5.5	wpo-blog-section-s2 */
.wpo-blog-section-s2 .wpo-section-title {
  text-align: center;
  margin-right: 0;
}
@media (max-width: 1399px) {
  .wpo-blog-section-s2 .wpo-section-title {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .wpo-blog-section-s2 .wpo-section-title {
    margin-right: 0;
  }
}
.wpo-blog-section-s2 .wpo-section-title span {
  font-size: 17px;
  font-weight: 700;
  margin-left: -20px;
}
.wpo-blog-section-s2 .wpo-section-title h2 {
  font-size: 45px;
  font-weight: 700;
  line-height: 60px;
  text-transform: unset;
  margin-top: 27px;
}
@media (max-width: 767px) {
  .wpo-blog-section-s2 .wpo-section-title h2 {
    font-size: 35px;
    line-height: 50px;
  }
}
@media (max-width: 445px) {
  .wpo-blog-section-s2 .wpo-section-title h2 {
    font-size: 20px;
    line-height: 30px;
    margin-top: 15px;
  }
}
.wpo-blog-section-s2 .wpo-section-title p {
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  color: #828086;
  margin-top: 21px;
}
@media (max-width: 445px) {
  .wpo-blog-section-s2 .wpo-section-title p {
    font-size: 15px;
    line-height: 25px;
  }
}
.wpo-blog-section-s2 .blog-grids .grid {
  border: 2px solid #E3E8F1;
  border-radius: 8px;
  padding: 15px 10px 10px;
}
.wpo-blog-section-s2 .blog-grids .grid .text h2 {
  font-size: 22px;
}
@media (max-width: 1461px) {
  .wpo-blog-section-s2 .blog-grids .grid .text h2 {
    font-size: 19px;
  }
}
@media (max-width: 1199px) {
  .wpo-blog-section-s2 .blog-grids .grid .text h2 {
    font-size: 17px;
  }
}

/*======================================
6. wpo-about-page
 =======================================*/
/* 6.1	wpo-about-section-s3 */
.wpo-about-section-s3 {
  padding-bottom: 0;
}
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-exprience .tp-fun-fact-grids p {
  font-size: 15px;
  margin: 0;
}

.wpo-about {
  padding: 40px 90px;
  /* Scrollbar untuk WebKit (Chrome, Safari, Edge) */
  /* Warna track (background scrollbar) */
  /* Warna thumb (bagian yang bisa digeser) */
}
@media (max-width: 767px) {
  .wpo-about {
    padding: 30px 15px;
  }
}
.wpo-about hr {
  flex-grow: 1;
  color: #071257;
}
.wpo-about .team-grid {
  display: flex;
  gap: 1rem;
  justify-content: center;
  overflow-x: auto;
}
@media (max-width: 767px) {
  .wpo-about .team-grid {
    justify-content: start;
    padding: 0 8px;
  }
}
.wpo-about .team-grid .team-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
  flex-shrink: 0;
}
.wpo-about .team-grid .team-item .image-thumbnail {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}
.wpo-about .team-structure {
  white-space: nowrap;
}
.wpo-about .scroll-wrapper {
  overflow-x: auto;
  white-space: nowrap;
}
.wpo-about .scroll-wrapper ul {
  display: flex;
  justify-content: center;
  min-width: max-content;
  padding: 0;
}
.wpo-about .scroll-wrapper li {
  display: inline-block;
  margin: 0 10px;
  list-style: none;
}
.wpo-about .tree {
  overflow: hidden;
  min-width: inherit;
  height: auto;
  text-align: center;
}
.wpo-about .tree ul {
  padding-top: 20px;
  position: relative;
  transition: 0.5s;
}
.wpo-about .tree li {
  display: inline-block; /* Ubah dari inline-table */
  text-align: center;
  list-style-type: none;
  position: relative;
  padding: 10px;
  transition: 0.5s;
}
@media (max-width: 870px) {
  .wpo-about .tree li {
    padding: 4px;
  }
}
.wpo-about .tree li::before,
.wpo-about .tree li::after {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  border-top: 3px solid #ccc;
  width: 55%;
  height: 10px;
}
@media (max-width: 870px) {
  .wpo-about .tree li::before,
  .wpo-about .tree li::after {
    width: 60%;
  }
}
.wpo-about .tree li::after {
  right: auto;
  left: 50%;
  border-left: 3px solid #ccc;
}
.wpo-about .tree li.border-0::after {
  border: none;
}
.wpo-about .tree li:only-child::after,
.wpo-about .tree li:only-child::before {
  display: none;
}
.wpo-about .tree li:only-child {
  padding-top: 0;
}
.wpo-about .tree li:first-child::before,
.wpo-about .tree li:last-child::after {
  border: 0 none;
}
.wpo-about .tree li:last-child::before {
  border-right: 1px solid #ccc;
  border-radius: 0 5px 0 0;
  -webkit-border-radius: 0 5px 0 0;
  -moz-border-radius: 0 5px 0 0;
}
.wpo-about .tree li.bendahara-umum::before {
  border-right: 1px solid #ccc;
  border-radius: 0 5px 0 0;
  -webkit-border-radius: 0 5px 0 0;
  -moz-border-radius: 0 5px 0 0;
}
.wpo-about .tree li:first-child::after {
  border-radius: 5px 0 0 0;
  -webkit-border-radius: 5px 0 0 0;
  -moz-border-radius: 5px 0 0 0;
}
.wpo-about .tree > ul > li > ul::before,
.wpo-about .tree > ul > li > ul > li > ul::before,
.wpo-about .scroll-wrapper ul > li > ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-left: 2px solid #ccc;
  width: 0;
  height: 302px;
}
@media (max-width: 870px) {
  .wpo-about .tree > ul > li > ul::before,
  .wpo-about .tree > ul > li > ul > li > ul::before,
  .wpo-about .scroll-wrapper ul > li > ul::before {
    height: 274px;
  }
}
.wpo-about .scroll-wrapper ul > li > ul::before,
.wpo-about .tree > ul > li > ul > li > ul::before {
  height: 1.3rem;
}
@media (max-width: 870px) {
  .wpo-about .scroll-wrapper ul > li > ul::before,
  .wpo-about .tree > ul > li > ul > li > ul::before {
    height: 26px;
  }
}
.wpo-about .tree li a {
  width: 260px;
  background-color: white;
  border: 2px solid #ccc;
  padding: 10px;
  display: inline-grid;
  border-radius: 5px;
  text-decoration-line: none;
  border-radius: 5px;
  transition: 0.5s;
}
@media (max-width: 870px) {
  .wpo-about .tree li a {
    width: 110px;
    margin-top: 5px;
  }
}
.wpo-about .tree li a .team-username {
  font-size: larger;
  margin-bottom: 10px;
  width: 100%;
  text-wrap: auto;
  color: #666 !important;
}
@media (max-width: 870px) {
  .wpo-about .tree li a .team-username {
    font-size: x-small;
  }
}
@media (max-width: 870px) {
  .wpo-about .scroll-wrapper li a {
    width: 170px;
    margin-top: 5px;
  }
}
.wpo-about .opacity-0 {
  opacity: 0;
}
.wpo-about .tree li a img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px !important;
  border: 2px solid #ccc;
  border-radius: 100px;
  margin: auto;
}
.wpo-about .tree li a span {
  font-weight: 500;
  color: #ccc;
  background-color: #212f8f;
  width: 100%;
  text-wrap: auto;
  border: 2px solid #ccc;
  border-radius: 5px;
  padding: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
@media (max-width: 870px) {
  .wpo-about .tree li a span {
    font-size: xx-small;
    padding: 4px;
  }
}
.wpo-about ::-webkit-scrollbar {
  width: 10px; /* Lebar scrollbar */
  height: 10px; /* Tinggi scrollbar (untuk horizontal) */
}
.wpo-about ::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.wpo-about ::-webkit-scrollbar-thumb {
  background: #212f8f;
  border-radius: 10px;
}

/*======================================
7. wpo-service-page
 =======================================*/
.wpo-service-section-s3 {
  margin-top: 120px;
}
@media (max-width: 991px) {
  .wpo-service-section-s3 {
    margin-top: 90px;
  }
}
@media (max-width: 767px) {
  .wpo-service-section-s3 {
    margin-top: 80px;
  }
}

/*=====================================================
8. wpo-service-single
======================================================*/
.wpo-service-single-area .wpo-service-single-wrap .wpo-service-single-title h3 {
  font-weight: 400;
  font-size: 35px;
  line-height: 130.5%;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .wpo-service-single-area .wpo-service-single-wrap .wpo-service-single-title h3 {
    font-size: 25px;
  }
}
.wpo-service-single-area .wpo-service-single-wrap .wpo-service-single-item {
  margin-bottom: 40px;
}
.wpo-service-single-area .wpo-service-single-wrap .wpo-service-single-item .wpo-service-single-main-img {
  margin-bottom: 30px;
}
.wpo-service-single-area .wpo-service-single-wrap .list-widget {
  max-width: 590px;
}
.wpo-service-single-area .wpo-service-single-wrap .list-widget ul {
  list-style: none;
}
.wpo-service-single-area .wpo-service-single-wrap .list-widget ul li {
  padding: 10px 0;
  padding-left: 35px;
  position: relative;
}
.wpo-service-single-area .wpo-service-single-wrap .list-widget ul li:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
  background: rgba(33, 47, 143, 0.1);
  content: "\e64c";
  font-family: "themify";
  text-align: center;
  color: #212f8f;
  font-size: 14px;
}
.wpo-service-single-area .wpo-service-single-wrap .wpo-p-details-img {
  margin-bottom: 10px;
}
.wpo-service-single-area .wpo-service-single-wrap .wpo-service-area {
  padding-bottom: 0;
}
.wpo-service-single-area .wpo-service-single-wrap .wpo-service-area .wpo-service-item {
  padding: 20px;
  box-shadow: 0px 0px 20px 0px rgba(20, 33, 43, 0.1);
}
@media (max-width: 1200px) {
  .wpo-service-single-area .wpo-service-single-wrap .wpo-service-area .wpo-service-item {
    padding: 20px 10px;
  }
}
@media (max-width: 991px) {
  .wpo-service-single-area .wpo-service-single-wrap .wpo-service-area .wpo-service-item {
    margin-bottom: 20px;
  }
}
.wpo-service-single-area .wpo-service-single-wrap .wpo-service-area .wpo-service-item h2 {
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 12px;
  margin-top: 10px;
}
@media (max-width: 1400px) {
  .wpo-service-single-area .wpo-service-single-wrap .wpo-service-area .wpo-service-item h2 {
    font-size: 19px;
    margin-bottom: 10px;
  }
}
@media (max-width: 1200px) {
  .wpo-service-single-area .wpo-service-single-wrap .wpo-service-area .wpo-service-item h2 {
    font-size: 17px;
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .wpo-service-single-area .wpo-service-single-wrap .wpo-service-area .wpo-service-item h2 {
    font-size: 22px;
  }
}
.wpo-service-single-area .wpo-service-single-wrap .wpo-service-area .wpo-service-item p {
  margin-bottom: 5px;
}
.wpo-service-single-area .wpo-service-single-wrap .wpo-service-area .wpo-service-item .fi:before {
  font-size: 40px;
  color: #212f8f;
}
.wpo-service-single-area .wpo-service-single-wrap .wpo-service-contact-area {
  padding: 30px;
  box-shadow: 0px 2px 8px 2px rgba(22, 14, 71, 0.1);
  border-radius: 20px;
  background: #fff;
}
.wpo-service-single-area .wpo-service-single-wrap .wpo-service-contact-area .wpo-contact-title {
  margin-bottom: 30px;
}
.wpo-service-single-area .wpo-service-single-wrap .wpo-service-contact-area .wpo-contact-title h2 {
  font-weight: 400;
}
.wpo-service-single-area .wpo-service-single-wrap .wpo-service-contact-area .wpo-contact-form-area .col {
  margin-bottom: 30px;
}
.wpo-service-single-area .wpo-service-single-wrap .wpo-service-contact-area .wpo-contact-form-area .form-control {
  height: 50px;
  border: 0;
  border-bottom: 1px solid #dce0e8;
  border-radius: 0;
}
.wpo-service-single-area .wpo-service-single-wrap .wpo-service-contact-area .wpo-contact-form-area .form-control:focus {
  outline: none;
  box-shadow: none;
}
.wpo-service-single-area .wpo-service-single-wrap .wpo-service-contact-area .wpo-contact-form-area textarea.form-control {
  height: 120px;
}
.wpo-service-single-area .wpo-service-single-wrap .wpo-service-contact-area .wpo-contact-form-area select.form-control {
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
}
.wpo-service-single-area .wpo-service-single-wrap .wpo-service-contact-area .wpo-contact-form-area .submit-area button {
  border-radius: 6px;
}

/*--------------------------------------------------------------
9. wpo-shop-page
--------------------------------------------------------------*/
.wpo-search-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .wpo-search-section {
    padding: 2rem 1rem;
  }
}
.wpo-search-section h3 {
  color: #f7f7f7;
  text-align: center;
}
.wpo-search-section .subtitle {
  color: #f7f7f7;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 14rem;
  text-align: center;
}
@media (max-width: 767px) {
  .wpo-search-section .subtitle {
    padding: 0;
  }
}
.wpo-search-section form {
  width: 100%;
  margin-top: 10px;
  padding: 0 8rem;
}
@media (max-width: 767px) {
  .wpo-search-section form {
    padding: 0;
  }
}
.wpo-search-section form .input-group-text {
  background-color: white;
  padding: 19px 16px;
  border-radius: 12px 0 0 12px;
}
.wpo-search-section form input {
  border-left: none;
  font-size: larger;
  outline: none;
  box-shadow: none;
  padding: 27px 3px;
  border-radius: 0 12px 12px 0;
}
.wpo-search-section form input:focus {
  outline: none;
  box-shadow: none;
}

.wpo-shop-section .title-section {
  margin-bottom: 1rem;
}
.wpo-shop-section section {
  position: relative;
  margin-bottom: 4rem;
}
.wpo-shop-section section .title-section {
  position: relative;
  margin-bottom: 1.5rem;
}
.wpo-shop-section section .title-section::after {
  content: "";
  position: absolute;
  width: 5rem;
  height: 3px;
  background-color: #071257;
  bottom: -5px;
  left: 2px;
}
.wpo-shop-section .custom-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
@media (max-width: 767px) {
  .wpo-shop-section .custom-grid {
    display: flex;
    overflow-x: auto;
    width: 100%;
    gap: 6px;
    padding-bottom: 10px;
    margin-bottom: 4rem;
  }
}
.wpo-shop-section .custom-grid .location-item {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.wpo-shop-section .custom-grid .location-item .img-holder {
  width: 126px;
  height: 96px;
  border: 1px solid lightgray;
  overflow: hidden;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wpo-shop-section .custom-grid .location-item .img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wpo-shop-section .guide-container {
  margin-bottom: 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
@media (max-width: 767px) {
  .wpo-shop-section .guide-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.wpo-shop-section .guide-container .guide-item {
  grid-column: span 1;
  border: 1px solid lightgrey;
  color: black;
  border-radius: 6px;
  padding: 0;
}
.wpo-shop-section .guide-container .guide-item .img-holder {
  height: 192px;
  border-bottom: 1px solid lightgrey;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wpo-shop-section .guide-container .guide-item .img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wpo-shop-section .guide-container .guide-item .guide-body {
  padding: 15px;
}
.wpo-shop-section .guide-container .guide-item .guide-body .guide-name {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}
.wpo-shop-section .guide-container .guide-item .guide-body .rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: small;
  margin-bottom: 8px;
}
.wpo-shop-section .guide-container .guide-item .guide-body .rating i {
  color: #f9d322;
}
.wpo-shop-section .guide-container .guide-item .guide-body .review-count {
  font-size: small;
  display: block;
  margin-bottom: 8px;
}
.wpo-shop-section .guide-container .guide-item .guide-body .badge {
  display: block;
  width: fit-content;
  padding: 8px;
  background-color: lightgrey;
  color: black;
  font-weight: 400;
  border-radius: 5px;
  font-size: small;
  margin-bottom: 8px;
}
.wpo-shop-section .shop-grids {
  margin: 0 -15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media (max-width: 767px) {
  .wpo-shop-section .shop-grids {
    grid-template-columns: repeat(1, 1fr);
    margin: 0 -7px;
  }
}
.wpo-shop-section .shop-grids .grid-item {
  grid-column: span 1;
}
.wpo-shop-section .shop-grids .grid-item .img-container {
  border: 1px solid #f1f0f0;
  margin: 0;
  background: #f7f7f7;
}
.wpo-shop-section .shop-grids .grid-item .img-container .img-holder {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border: 1px solid rgba(112, 128, 144, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
}
.wpo-shop-section .shop-grids .grid-item .img-container .img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wpo-shop-section .shop-grids .grid-item .img-container .img-mini {
  gap: 10px;
  display: grid;
  height: 60px;
  grid-template-columns: repeat(4, 1fr);
}
.wpo-shop-section .shop-grids .grid-item .img-container .img-mini .img-mini-item {
  grid-column: span 1;
  overflow: hidden;
  border: 1px solid rgba(112, 128, 144, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}
.wpo-shop-section .shop-grids .grid-item .img-container .img-mini .img-mini-item img {
  width: 100%;
  object-fit: cover;
}
.wpo-shop-section .shop-grids .grid .img-container {
  border: 1px solid #f1f0f0;
  margin: 0;
  background: #f7f7f7;
}
.wpo-shop-section .shop-grids .grid .img-container .img-holder {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border: 1px solid rgba(112, 128, 144, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
}
.wpo-shop-section .shop-grids .grid .img-container .img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wpo-shop-section .shop-grids .grid .img-container .img-mini {
  gap: 10px;
  display: grid;
  height: 60px;
  grid-template-columns: repeat(4, 1fr);
}
.wpo-shop-section .shop-grids .grid .img-container .img-mini .img-mini-item {
  grid-column: span 1;
  overflow: hidden;
  border: 1px solid rgba(112, 128, 144, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}
.wpo-shop-section .shop-grids .grid .img-container .img-mini .img-mini-item img {
  width: 100%;
  object-fit: cover;
}
.wpo-shop-section .details {
  background-color: #f7f7f7;
  text-align: center;
  padding: 24px;
}
.wpo-shop-section .details h3 {
  display: flex;
  font-size: 20px;
  font-size: calc-rem-value(20);
  margin: 0 0 0.5em;
  font-weight: 500;
}
@media (max-width: 991px) {
  .wpo-shop-section .details h3 {
    font-size: 16px;
    font-size: calc-rem-value(16);
  }
}
.wpo-shop-section .details .metadata {
  margin-top: 2rem;
  display: flex;
  gap: 8px;
}
.wpo-shop-section .details .metadata .badge {
  padding: 9px;
  background-color: #212f8f;
}
.wpo-shop-section .details .description {
  color: #828086;
  margin-top: 1rem;
  display: flex;
  text-wrap: wrap;
  text-align: left;
}
.wpo-shop-section .details .price {
  margin-top: 1rem;
  display: flex;
  gap: 8px;
}
.wpo-shop-section .details .price span {
  color: #828086;
}
.wpo-shop-section .details h3 a {
  color: #030d4c;
}
.wpo-shop-section .details h3 a:hover {
  color: #212f8f;
}
.wpo-shop-section .details del {
  color: #828086;
}
.wpo-shop-section .details del + span {
  display: inline-block;
  padding-left: 20px;
}
.wpo-shop-section .add-to-cart {
  margin-top: 20px;
}
.wpo-shop-section .add-to-cart a {
  font-family: "Ubuntu", sans-serif;
  font-size: 15px;
  font-size: calc-rem-value(15);
  font-weight: 500;
  color: #212f8f;
  padding: 12px 20px;
  border: 2px solid #212f8f;
  display: inline-block;
  border-radius: 50px;
}
@media (max-width: 767px) {
  .wpo-shop-section .add-to-cart a {
    font-size: 12px;
    font-size: calc-rem-value(12);
    padding: 8px 18px;
  }
}
.wpo-shop-section .add-to-cart a:hover {
  background-color: #212f8f;
  color: #fff;
}
.wpo-shop-section .add-to-cart a i {
  font-size: 15px;
  font-size: calc-rem-value(15);
  display: inline-block;
  padding-left: 5px;
}
.wpo-shop-section .grid:hover .add-to-cart a {
  background-color: #212f8f;
  color: #fff;
}

/*--------------------------------------------------------------
10. wpo-shop-single-page
--------------------------------------------------------------*/
.wpo-shop-single-section {
  /*** product slider ***/
  /*** guide information ***/
  /*** product info ***/
}
.wpo-shop-single-section .shop-single-slider .slider-for {
  text-align: center;
}
.wpo-shop-single-section .shop-single-slider .slider-for .main-img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid rgba(112, 128, 144, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
}
.wpo-shop-single-section .shop-single-slider .slider-for .main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: inline-block;
}
.wpo-shop-single-section .shop-single-slider .slider-nav {
  padding: 0 25px;
  margin-top: 35px;
}
.wpo-shop-single-section .shop-single-slider .slider-nav > i {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 100;
}
.wpo-shop-single-section .shop-single-slider .slider-nav > i:hover {
  cursor: pointer;
}
.wpo-shop-single-section .shop-single-slider .slider-nav .nav-btn-rt {
  left: auto;
  right: 0;
}
.wpo-shop-single-section .shop-single-slider .slider-nav .slick-slide {
  text-align: center;
}
.wpo-shop-single-section .shop-single-slider .slider-nav .slick-slide img {
  display: inline-block;
}
.wpo-shop-single-section .product-details {
  padding: 15px 30px 80px;
  /*** product option ***/
}
@media (max-width: 1199px) {
  .wpo-shop-single-section .product-details {
    padding: 10px 30px 15px;
  }
}
@media (max-width: 991px) {
  .wpo-shop-single-section .product-details {
    margin-top: 45px;
    padding: 40px 30px;
  }
}
@media (max-width: 767px) {
  .wpo-shop-single-section .product-details {
    padding: 0;
  }
}
.wpo-shop-single-section .product-details h2 {
  font-size: 35px;
  font-size: calc-rem-value(35);
  line-height: 1.4em;
  margin: 0 0 0.33em;
  font-weight: 500;
}
@media (max-width: 767px) {
  .wpo-shop-single-section .product-details h2 {
    font-size: 22px;
    font-size: calc-rem-value(22);
  }
}
.wpo-shop-single-section .product-details .price {
  font-size: 25px;
  font-size: calc-rem-value(25);
  color: #212f8f;
  margin: 7px 0 20px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .wpo-shop-single-section .product-details .price {
    font-size: 30px;
    font-size: calc-rem-value(30);
  }
}
@media (max-width: 767px) {
  .wpo-shop-single-section .product-details .price {
    font-size: 25px;
    font-size: calc-rem-value(25);
  }
}
.wpo-shop-single-section .product-details .price .old {
  font-size: 24px;
  font-size: calc-rem-value(24);
  font-weight: normal;
  color: rgb(181.4112903226, 180.2338709677, 183.7661290323);
  text-decoration: line-through;
  display: inline-block;
  margin-left: 5px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .wpo-shop-single-section .product-details .price .old {
    font-size: 20px;
    font-size: calc-rem-value(20);
  }
}
@media (max-width: 767px) {
  .wpo-shop-single-section .product-details .price .old {
    font-size: 18px;
    font-size: calc-rem-value(18);
  }
}
.wpo-shop-single-section .product-details .product-rt {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.wpo-shop-single-section .product-details .product-rt .rating {
  margin-right: 10px;
}
.wpo-shop-single-section .product-details .product-rt .rating i {
  color: #f9d322;
}
.wpo-shop-single-section .product-details p {
  margin-bottom: 1.3em;
}
.wpo-shop-single-section .product-details ul {
  list-style: none;
}
.wpo-shop-single-section .product-details ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}
.wpo-shop-single-section .product-details ul li:before {
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: #212f8f;
  content: "";
  border-radius: 50%;
}
.wpo-shop-single-section .product-details .product-option {
  margin-top: 30px;
}
.wpo-shop-single-section .product-details .user-info .user-info-container {
  padding: 6px;
  border-top: 1px solid #e4effb;
}
.wpo-shop-single-section .product-details .user-info .user-info-container i {
  font-size: x-large;
}
.wpo-shop-single-section .product-details .tg-btm {
  margin-top: 25px;
}
.wpo-shop-single-section .product-details .tg-btm p {
  margin-bottom: 0px;
}
.wpo-shop-single-section .product-details .tg-btm p span {
  font-weight: 500;
  color: #030d4c;
  margin-right: 5px;
}
.wpo-shop-single-section .product-details .tg-btm p .category {
  padding: 6px 12px;
  border: 1px solid #e4effb;
}
.wpo-shop-single-section .product-details .product-option .product-row button:after {
  display: none;
}
.wpo-shop-single-section .product-details .product-option .product-row > div {
  height: 35px;
  display: inline-block;
}
.wpo-shop-single-section .product-details .product-option .product-row > div + div {
  margin-left: 15px;
}
.wpo-shop-single-section .product-details .product-option .product-row > div + div .theme-btn, .wpo-shop-single-section .product-details .product-option .product-row > div + div .view-cart-btn {
  border-radius: 0;
  border-width: 1px;
  height: 40px;
  padding: 0 18px;
}
.wpo-shop-single-section .product-details .product-option .product-row > div:first-child {
  width: 85px;
}
.wpo-shop-single-section .product-details .product-option .product-row > div:last-child .theme-btn:hover, .wpo-shop-single-section .product-details .product-option .product-row > div:last-child .view-cart-btn:hover {
  background: #212f8f;
  border-color: #212f8f;
  color: #fff;
}
.wpo-shop-single-section .product-details .product-option .theme-btn, .wpo-shop-single-section .product-details .product-option .view-cart-btn {
  background-color: transparent;
  color: #333;
  font-size: 14px;
  font-size: calc-rem-value(14);
  padding: 0 20px;
  height: 35px;
  line-height: 32px;
  outline: 0;
  border: 2px solid #e6e6e6;
  border-radius: 0;
}
.wpo-shop-single-section .product-details .product-option .theme-btn:hover, .wpo-shop-single-section .product-details .product-option .view-cart-btn:hover {
  background-color: #212f8f;
  color: #fff;
  border-color: #212f8f;
}
@media (max-width: 767px) {
  .wpo-shop-single-section .product-details .product-option .theme-btn, .wpo-shop-single-section .product-details .product-option .view-cart-btn {
    font-size: 14px;
    font-size: calc-rem-value(14);
  }
}
.wpo-shop-single-section .product-details .product-option .theme-btn:before, .wpo-shop-single-section .product-details .product-option .view-cart-btn:before {
  display: none;
}
.wpo-shop-single-section .product-details .product-option .heart-btn i {
  font-size: 15px;
  font-size: calc-rem-value(15);
}
.wpo-shop-single-section .product-details .product-option .product-row > div:last-child .theme-btn, .wpo-shop-single-section .product-details .product-option .product-row > div:last-child .view-cart-btn {
  background-color: #fff;
  font-size: 18px;
  font-size: calc-rem-value(18);
  color: #828086;
  border: 1px solid rgb(229.5, 229.5, 229.5);
}
.wpo-shop-single-section .product-details #product-count {
  border-radius: 0;
  border: 1px solid rgb(229.5, 229.5, 229.5);
}
.wpo-shop-single-section .product-details #product-count:focus {
  box-shadow: none;
  outline: none;
}
.wpo-shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up,
.wpo-shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
  border-radius: 0;
  border-color: rgb(229.5, 229.5, 229.5);
  display: block;
  padding: 1px 4px;
  font-size: 10px;
}
.wpo-shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up:hover,
.wpo-shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down:hover {
  background-color: #212f8f;
  color: #fff;
}
.wpo-shop-single-section .guide-information {
  display: flex !important;
  gap: 1rem;
  align-items: center;
  flex-direction: row;
}
.wpo-shop-single-section .guide-information .foto-guide {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
}
.wpo-shop-single-section .guide-information .foto-guide img {
  width: 100%;
  object-fit: cover;
}
.wpo-shop-single-section .guide-information .joined-date {
  font-style: italic;
  font-size: smaller;
}
.wpo-shop-single-section .guide-information .rating i {
  color: #f9d322;
  font-size: smaller;
}
.wpo-shop-single-section .guide-information .rating span {
  font-size: smaller !important;
}
.wpo-shop-single-section .guide-information .rating span:last-child {
  text-decoration: underline;
  cursor: pointer;
  color: #212f8f;
  font-weight: bold;
}
.wpo-shop-single-section .guide-information .verified {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.wpo-shop-single-section .guide-information .verified i {
  color: #4554b5;
}
.wpo-shop-single-section .guide-information .verified i.not {
  color: red;
}
.wpo-shop-single-section .guide-information .verified span {
  font-size: smaller;
  font-style: italic;
}
.wpo-shop-single-section .product-info {
  margin-top: 75px;
  /*** tabs ***/
  /*** client rv ***/
  /*** review form ***/
}
@media (max-width: 991px) {
  .wpo-shop-single-section .product-info {
    margin-top: 40px;
  }
}
.wpo-shop-single-section .product-info h4 {
  font-size: 18px;
  font-size: calc-rem-value(18);
  margin: 0;
  line-height: 1.7em;
  font-weight: 500;
  margin-bottom: 10px;
}
.wpo-shop-single-section .product-info p {
  margin-bottom: 1.3em;
}
.wpo-shop-single-section .product-info .tab-pane p:last-child {
  margin-bottom: 0;
}
.wpo-shop-single-section .product-info .nav-tabs {
  font-family: "Ubuntu", sans-serif;
  border: 0;
}
@media (max-width: 767px) {
  .wpo-shop-single-section .product-info .nav-tabs {
    margin-bottom: 20px;
  }
}
.wpo-shop-single-section .product-info .nav-tabs li {
  margin-right: 1px;
}
.wpo-shop-single-section .product-info .nav-tabs li a.active {
  border: 0;
  outline: 0;
}
.wpo-shop-single-section .product-info .nav-tabs a {
  font-size: 15px;
  font-size: calc-rem-value(15);
  color: #828086;
  border: 0;
  border-radius: 0;
  margin: 0;
  display: block;
  padding: 12px 20px 11px;
  font-family: "Ubuntu", sans-serif;
  position: relative;
}
@media (max-width: 767px) {
  .wpo-shop-single-section .product-info .nav-tabs a {
    font-size: 14px;
    font-size: calc-rem-value(14);
    font-weight: normal;
    padding: 10px 10px 8px;
    text-transform: none;
  }
}
.wpo-shop-single-section .product-info .nav-tabs a:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #212f8f;
  border-radius: 4px;
  content: "";
  opacity: 0;
  visibility: hidden;
}
.wpo-shop-single-section .product-info .nav-tabs a:hover:before,
.wpo-shop-single-section .product-info .nav-tabs a.active:before {
  opacity: 1;
  visibility: visible;
}
.wpo-shop-single-section .product-info .nav-tabs .active,
.wpo-shop-single-section .product-info .nav-tabs li:hover {
  border-color: #212f8f;
}
.wpo-shop-single-section .product-info .tab-content {
  border-top: 1px solid rgba(33, 47, 143, 0.3);
  padding-top: 30px;
  margin-top: -1px;
}
@media (max-width: 767px) {
  .wpo-shop-single-section .product-info .tab-content {
    border: 0;
    padding: 0;
    margin: 0;
  }
}
.wpo-shop-single-section .product-info .tab-content i,
.wpo-shop-single-section .product-info .tab-content span {
  color: #828086;
  font-size: large;
}
.wpo-shop-single-section .product-info .tab-content i {
  color: #071257;
}
.wpo-shop-single-section .product-info .tab-content .itinerary ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .wpo-shop-single-section .product-info .tab-content .itinerary ul {
    padding: 0 30px;
  }
}
.wpo-shop-single-section .product-info .tab-content .itinerary ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}
.wpo-shop-single-section .product-info .tab-content .itinerary ul li::before {
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: #071257;
  top: 8px;
  left: -30px;
}
.wpo-shop-single-section .product-info .tab-content .itinerary ul li::after {
  content: "";
  position: absolute;
  height: 7rem;
  width: 4px;
  background-color: #071257;
  top: 24px;
  left: -26px;
}
.wpo-shop-single-section .product-info .tab-content .itinerary ul li:last-child {
  margin-bottom: 0;
}
.wpo-shop-single-section .product-info .tab-content .itinerary ul li:last-child::before {
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: #071257;
  top: 8px;
  left: -30px;
}
.wpo-shop-single-section .product-info .tab-content .itinerary ul li:last-child::after {
  content: "";
  position: absolute;
  height: 7rem;
  width: 4px;
  background-color: #071257;
  top: -108px;
  left: -26px;
}
.wpo-shop-single-section .product-info .tab-content .itinerary ul li .time {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 10px;
  background: #212f8f;
  color: #fff;
  font-size: smaller;
}
.wpo-shop-single-section .product-info .tab-content .itinerary ul li .title {
  font-weight: bold;
}
.wpo-shop-single-section .product-info .tab-content .cancellation-policy ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wpo-shop-single-section .product-info .tab-content .cancellation-policy ul li {
  position: relative;
  align-items: center;
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
}
.wpo-shop-single-section .product-info .tab-content .cancellation-policy ul li i {
  color: green;
  font-size: x-large;
}
.wpo-shop-single-section .product-info .tab-content .cancellation-policy ul li i.not {
  color: red;
}
.wpo-shop-single-section .product-info .tab-content .cancellation-policy ul li span {
  font-size: small;
}
.wpo-shop-single-section .product-info .tab-content .inclusions-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wpo-shop-single-section .product-info .tab-content .inclusions-info ul li {
  position: relative;
  align-items: center;
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
}
.wpo-shop-single-section .product-info .tab-content .inclusions-info ul li i {
  color: green;
  font-size: x-large;
}
.wpo-shop-single-section .product-info .tab-content .inclusions-info ul li i.not {
  color: red;
}
.wpo-shop-single-section .product-info .tab-content .inclusions-info ul li span {
  font-size: small;
}
.wpo-shop-single-section .product-info .client-rv {
  overflow: hidden;
  margin-bottom: 30px;
}
.wpo-shop-single-section .product-info .client-rv:last-child {
  margin-bottom: 0;
}
.wpo-shop-single-section .product-info .client-rv .client-pic {
  width: 100px;
  height: 100px;
  overflow: hidden;
  float: left;
  border-radius: 50%;
}
.wpo-shop-single-section .product-info .client-rv .client-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .wpo-shop-single-section .product-info .client-rv .client-pic {
    width: 100%;
    float: none;
    margin-bottom: 10px;
  }
}
.wpo-shop-single-section .product-info .client-rv .details {
  width: calc(100% - 130px);
  float: right;
}
@media (max-width: 767px) {
  .wpo-shop-single-section .product-info .client-rv .details {
    width: 100%;
    float: none;
  }
}
.wpo-shop-single-section .product-info .client-rv .name-rating .product-rt {
  display: flex;
}
@media (max-width: 767px) {
  .wpo-shop-single-section .product-info .client-rv .name-rating-time {
    padding-bottom: 3px;
  }
}
.wpo-shop-single-section .product-info .client-rv .name-rating-time > div,
.wpo-shop-single-section .product-info .client-rv .name-rating > div {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-size: calc-rem-value(14);
}
@media (max-width: 767px) {
  .wpo-shop-single-section .product-info .client-rv .name-rating-time > div,
  .wpo-shop-single-section .product-info .client-rv .name-rating > div {
    font-size: 12px;
    font-size: calc-rem-value(12);
    display: block;
  }
}
.wpo-shop-single-section .product-info .client-rv .rating {
  font-size: smaller;
}
.wpo-shop-single-section .product-info .client-rv .rating i {
  font-size: small;
  color: #f9d322;
}
@media (max-width: 767px) {
  .wpo-shop-single-section .product-info .client-rv .rating {
    padding-left: 0;
    margin: 4px 0 7px;
  }
}
.wpo-shop-single-section .product-info .client-rv .name-rating-time .time {
  float: right;
  color: rgb(178.5, 178.5, 178.5);
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .wpo-shop-single-section .product-info .client-rv .name-rating-time .time {
    float: none;
  }
}
.wpo-shop-single-section .product-info .client-rv .review-body {
  padding-top: 12px;
}
.wpo-shop-single-section .product-info .review-form {
  margin-top: 45px;
}
.wpo-shop-single-section .product-info .review-form h4 {
  font-size: 30px;
  font-weight: 500;
}
.wpo-shop-single-section .product-info .review-form p {
  margin-bottom: 1.73em;
}
.wpo-shop-single-section .product-info .review-form .give-rat-sec {
  margin-bottom: 10px;
}
.wpo-shop-single-section .product-info .review-form .give-rat-sec p {
  margin-bottom: 0;
}
.wpo-shop-single-section .product-info .review-form .give-rating {
  display: inline-block;
  position: relative;
  height: 50px;
  line-height: 50px;
  font-size: 30px;
  margin-bottom: 10px;
}
.wpo-shop-single-section .product-info .review-form .give-rating label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  cursor: pointer;
}
.wpo-shop-single-section .product-info .review-form .give-rating label:last-child {
  position: static;
}
.wpo-shop-single-section .product-info .review-form .give-rating label:nth-child(1) {
  z-index: 5;
}
.wpo-shop-single-section .product-info .review-form .give-rating label:nth-child(2) {
  z-index: 4;
}
.wpo-shop-single-section .product-info .review-form .give-rating label:nth-child(3) {
  z-index: 3;
}
.wpo-shop-single-section .product-info .review-form .give-rating label:nth-child(4) {
  z-index: 2;
}
.wpo-shop-single-section .product-info .review-form .give-rating label:nth-child(5) {
  z-index: 1;
}
.wpo-shop-single-section .product-info .review-form .give-rating label input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.wpo-shop-single-section .product-info .review-form .give-rating label .icon {
  float: left;
  color: transparent;
}
.wpo-shop-single-section .product-info .review-form .give-rating label:last-child .icon {
  color: #ddd;
}
.wpo-shop-single-section .product-info .review-form .give-rating:not(:hover) label input:checked ~ .icon,
.wpo-shop-single-section .product-info .review-form .give-rating:hover label:hover input ~ .icon {
  color: #ffd400;
}
.wpo-shop-single-section .product-info .review-form .give-rating label input:focus:not(:checked) ~ .icon:last-child {
  color: #ddd;
  text-shadow: 0 0 5px #ffd400;
}
.wpo-shop-single-section .product-info .review-form form input,
.wpo-shop-single-section .product-info .review-form form textarea {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  height: 50px;
  border: 1px solid #efefef;
}
.wpo-shop-single-section .product-info .review-form form input:focus,
.wpo-shop-single-section .product-info .review-form form textarea:focus {
  box-shadow: none;
  outline: none;
}
.wpo-shop-single-section .product-info .review-form form textarea {
  height: 130px;
}
.wpo-shop-single-section .product-info .review-form form > div {
  margin-bottom: 27px;
}
.wpo-shop-single-section .product-info .review-form form > div:last-child {
  margin-bottom: 0;
}
.wpo-shop-single-section .product-info .review-form form .theme-btn-s4 {
  background-color: transparent;
  color: #908f8f;
  outline: 0;
  box-shadow: none;
}
.wpo-shop-single-section .product-info .review-form form .theme-btn-s4:hover {
  background-color: #212f8f;
  color: #fff;
}
@media screen and (min-width: 767px) {
  .wpo-shop-single-section .product-info .review-form form .theme-btn-s4 {
    font-size: 15px;
    font-size: calc-rem-value(15);
    padding: 0 20px;
  }
}
.wpo-shop-single-section .slider-nav .slick-slide:focus {
  outline: none;
}

/*==========================================
11. wpo-team-single
===========================================*/
.team-pg-area {
  max-width: 1080px;
  margin: 0 auto;
}

.team-info-img {
  padding: 25px;
  box-shadow: 0px 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
}
@media (max-width: 991px) {
  .team-info-img {
    margin-bottom: 40px;
  }
}
.team-info-img .verified {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 35px 50px;
}
.team-info-img .verified img {
  width: 50px !important;
  height: 50px !important;
}
.team-info-img img {
  width: 100%;
  height: 465px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .team-info-img img {
    height: 100%;
  }
}

.team-info-text {
  box-shadow: 0px 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
  padding: 40px 50px;
}
.team-info-text ul li {
  font-size: 17px;
  color: #1d2327;
  font-weight: 700;
  list-style: none;
  border-top: 1px solid #f1f1f1;
  padding: 22px 11px;
}
.team-info-text ul li:last-child {
  padding-bottom: 0;
}
.team-info-text ul li span {
  font-size: 16px;
  color: #8c8c8c;
  display: inline-block;
  position: relative;
  padding-left: 5px;
  font-weight: 400;
}
.team-info-text ul li:last-child {
  margin-bottom: 0;
}
.team-info-text ul.no-border li {
  border: none;
  padding: 11px 11px;
}

.at-progress {
  box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
  padding: 40px 0;
}
@media (max-width: 991px) {
  .at-progress {
    padding-bottom: 0;
  }
}

.team-info-text .name-tag {
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #eee;
  padding: 12px;
}
.team-info-text .name-tag h2 {
  font-size: 34px;
  font-weight: 500;
  color: #1d2327;
  margin: 0;
}
.team-info-text .name-tag .qr-container {
  aspect-ratio: 1/1;
  width: 40px;
  height: 40px;
  max-width: 40px;
  max-height: 40px;
  background-color: red;
}

.team-info-wrap ul {
  padding-left: 0;
}

.exprience-wrap p {
  color: #5d5851;
}

.exprience-wrap h2 {
  margin-bottom: 20px;
  font-weight: 500;
}

/*progress-design*/
.progress {
  width: 150px;
  height: 150px;
  background: none;
  margin: 0 auto;
  box-shadow: none;
  position: relative;
  overflow: unset;
}

.progress:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid #ebebeb;
  position: absolute;
  top: 0;
  left: 0;
}

.progress > span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.progress .progress-left {
  left: 0;
}

.progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 6px;
  border-style: solid;
  position: absolute;
  top: 0;
}

.progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.progress .progress-right {
  right: 0;
}

.progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
  animation: loading-1 1.8s linear forwards;
}

.progress .progress-value {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: #fff;
  font-size: 30px;
  color: #212f8f;
  line-height: 135px;
  text-align: center;
  position: absolute;
  top: -5%;
  left: 5%;
  font-weight: 400;
  font-family: "Ubuntu", sans-serif;
}

.progress .progress-bar {
  border-color: #212f8f;
}

.progress-name {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25%;
  width: 100%;
  text-align: center;
}

.progress-name span {
  font-size: 15px;
  color: #131058;
  line-height: 15px;
}

.progress.blue .progress-left .progress-bar {
  animation: loading-2 1.5s linear forwards 1.8s;
}

.progress.yellow .progress-left .progress-bar {
  animation: loading-3 1s linear forwards 1.8s;
}

.progress.pink .progress-left .progress-bar {
  animation: loading-4 0.4s linear forwards 1.8s;
}

.progress.green .progress-left .progress-bar {
  animation: loading-5 1.2s linear forwards 1.8s;
}

@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg);
  }
}
@keyframes loading-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(46deg);
    transform: rotate(46deg);
  }
}
@keyframes loading-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(36deg);
    transform: rotate(36deg);
  }
}
@media only screen and (max-width: 990px) {
  .progress {
    margin-bottom: 60px;
  }
}
.progress:before {
  position: absolute;
  left: -14px;
  top: -15px;
  width: 120%;
  height: 120%;
  background: #fff;
  content: "";
  border-radius: 50%;
}

.education-area {
  max-width: 600px;
}

.education-area ul {
  list-style: none;
}

.education-area ul li {
  padding-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.education-area ul li:before {
  position: absolute;
  left: 0;
  top: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #212f8f;
  content: "";
}

.ex-wiget {
  padding-top: 30px;
}
.ex-wiget ul {
  list-style: none;
}

.ex-wiget h2 {
  font-size: 30px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 30px;
}

.wpo-contact-area .quote-form {
  padding-left: 0;
  margin-left: -10px;
}

.wpo-contact-area button {
  border-radius: 0;
}
.wpo-contact-area button:after {
  display: none;
}

.wpo-contact-area .quote-form .form-control {
  height: 55px;
  border: 1px solid #ebebeb;
  margin-bottom: 20px;
  padding: 15px;
}
.wpo-contact-area .quote-form .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #212f8f;
}

.wpo-contact-area .quote-form textarea.form-control {
  height: 125px;
}

.half-col {
  float: left;
  width: 50%;
  padding: 0 10px 5px;
}

.full-col {
  padding: 0 10px 5px;
}

.exprience-area {
  padding-top: 60px;
}

@media (max-width: 767px) {
  .team-info-text {
    padding: 40px 20px;
  }
  .team-info-img {
    padding: 40px;
  }
  .team-info-img img {
    width: 100%;
  }
  .custom-grid {
    float: left;
    width: 50%;
  }
  .exprience-area {
    padding-top: 30px;
  }
}
@media (max-width: 575px) {
  .half-col {
    float: none;
    width: 100%;
  }
  .lawyer-about.pt-150 {
    padding-top: 100px !important;
  }
}
@media (max-width: 375px) {
  .custom-grid {
    float: none;
    width: 100%;
  }
}
.service-sidebar .wpo-contact-widget {
  border: 0;
  background: url(../images/bg-2.jpg) no-repeat center center;
  position: relative;
  background-size: cover;
  z-index: 1;
}
.service-sidebar .wpo-contact-widget:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 57, 103, 0.9);
  content: "";
  z-index: -1;
}
.service-sidebar .wpo-contact-widget h2 {
  font-size: 36px;
  font-weight: 500;
  text-align: left;
  color: #fff;
  margin-bottom: 20px;
}
.service-sidebar .wpo-contact-widget h2::before {
  background: #fff;
}
.service-sidebar .wpo-contact-widget p {
  color: #fff;
  font-size: 18px;
}
.service-sidebar .wpo-contact-widget a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #fff;
  font-size: 18px;
  color: #fff;
  padding-right: 90px;
  position: relative;
  margin-top: 10px;
}
.service-sidebar .wpo-contact-widget a::before {
  font-family: "themify";
  content: "\e628";
  font-size: 18px;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*--------------------------------------------------------------
12. wpo-blog-pg-section
--------------------------------------------------------------*/
.wpo-blog-pg-section {
  /*** format-standard ***/
  /*** format-gallery ***/
  /*** format-quote ***/
  /*** format-video ***/
}
.wpo-blog-pg-section .wpo-blog-content .post {
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .wpo-blog-pg-section .wpo-blog-content .post {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .wpo-blog-pg-section .wpo-blog-content .post {
    margin-bottom: 40px;
  }
}
.wpo-blog-pg-section .entry-meta {
  list-style: none;
  overflow: hidden;
  margin: 35px 0;
}
@media (max-width: 767px) {
  .wpo-blog-pg-section .entry-meta {
    margin: 25px 0;
  }
}
.wpo-blog-pg-section .entry-meta ul {
  list-style: none;
}
.wpo-blog-pg-section .entry-meta ul li {
  font-weight: 500;
  font-size: 14px;
  font-size: calc-rem-value(14);
  float: left;
  text-transform: uppercase;
}
.wpo-blog-pg-section .entry-meta ul li a {
  color: #636893;
}
.wpo-blog-pg-section .entry-meta ul li a:hover {
  color: #212f8f;
}
.wpo-blog-pg-section .entry-meta ul li i {
  position: relative;
  margin-right: 3px;
}
.wpo-blog-pg-section .entry-meta ul li i:before {
  font-size: 13px;
}
.wpo-blog-pg-section .entry-meta ul li + li {
  margin-left: 20px;
  padding-left: 20px;
  position: relative;
}
.wpo-blog-pg-section .entry-meta ul li + li:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  content: "";
  background: #212f8f;
  border-radius: 50%;
}
@media (max-width: 440px) {
  .wpo-blog-pg-section .entry-meta ul li + li:before {
    display: none;
  }
}
@media (max-width: 440px) {
  .wpo-blog-pg-section .entry-meta ul li + li {
    margin-left: 0;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .wpo-blog-pg-section .entry-meta ul li {
    font-size: 12px;
    font-size: calc-rem-value(12);
  }
}
@media (max-width: 440px) {
  .wpo-blog-pg-section .entry-meta ul li {
    float: none;
    display: block;
    margin-bottom: 5px;
  }
}
.wpo-blog-pg-section .post h3 {
  font-size: 34px;
  font-size: calc-rem-value(34);
  line-height: 1.2em;
  font-weight: 700;
  margin: -0.27em 0 0.7em;
  font-family: "Ubuntu", sans-serif;
}
@media (max-width: 991px) {
  .wpo-blog-pg-section .post h3 {
    font-size: 25px;
    font-size: calc-rem-value(25);
  }
}
@media (max-width: 767px) {
  .wpo-blog-pg-section .post h3 {
    font-size: 22px;
    font-size: calc-rem-value(22);
  }
}
.wpo-blog-pg-section .post h3 a {
  color: #030d4c;
}
.wpo-blog-pg-section .post h3 a:hover {
  color: #212f8f;
}
.wpo-blog-pg-section .post p {
  margin-bottom: 1.5em;
}
@media (max-width: 991px) {
  .wpo-blog-pg-section .post p {
    font-size: 16px;
    font-size: calc-rem-value(16);
  }
}
.wpo-blog-pg-section .post a.read-more {
  color: #828086;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
}
.wpo-blog-pg-section .post a.read-more:hover {
  color: #212f8f;
}
.wpo-blog-pg-section .entry-media img {
  width: 100%;
}
.wpo-blog-pg-section .format-standard,
.wpo-blog-pg-section .format-quote {
  background-color: #f6f6f6;
  padding: 25px 35px 45px;
}
@media (max-width: 767px) {
  .wpo-blog-pg-section .format-standard,
  .wpo-blog-pg-section .format-quote {
    padding: 25px 20px 45px;
  }
}
.wpo-blog-pg-section .format-standard {
  position: relative;
}
.wpo-blog-pg-section .format-standard:before {
  position: absolute;
  right: 20px;
  top: 10px;
  content: "\f108";
  font-family: "flaticon";
  font-size: 90px;
  line-height: 80px;
  color: #e9e9e9;
}
.wpo-blog-pg-section .format-gallery {
  position: relative;
}
.wpo-blog-pg-section .format-gallery .owl-controls {
  width: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.wpo-blog-pg-section .format-gallery .owl-nav [class*=owl-]:hover {
  background: #212f8f;
  color: #fff;
}
.wpo-blog-pg-section .format-gallery .owl-nav [class*=owl-] {
  background: #fff;
  width: 50px;
  height: 50px;
  line-height: 58px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  color: #212f8f;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  border: 0;
}
.wpo-blog-pg-section .format-gallery .owl-nav [class*=owl-] .fi::before {
  font-size: 20px;
}
.wpo-blog-pg-section .format-gallery .owl-nav .owl-prev,
.wpo-blog-pg-section .format-gallery .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.wpo-blog-pg-section .format-gallery .owl-nav .owl-prev {
  left: 15px;
}
.wpo-blog-pg-section .format-gallery .owl-nav .owl-next {
  right: 15px;
}
.wpo-blog-pg-section .format-quote {
  text-align: center;
  padding: 80px 60px;
  position: relative;
}
@media (max-width: 767px) {
  .wpo-blog-pg-section .format-quote {
    padding: 40px 20px;
  }
}
.wpo-blog-pg-section .format-quote p {
  margin-bottom: 0;
}
.wpo-blog-pg-section .format-quote:before {
  font-family: "Flaticon";
  content: "\f120";
  font-size: 250px;
  font-size: calc-rem-value(250);
  color: #ecf3fb;
  margin-left: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.wpo-blog-pg-section .format-quote h3,
.wpo-blog-pg-section .format-quote p {
  position: relative;
}
.wpo-blog-pg-section .format-video .video-holder {
  position: relative;
  text-align: center;
}
.wpo-blog-pg-section .format-video .video-holder:before {
  content: "";
  background-color: #212f8f;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.5;
}
.wpo-blog-pg-section .format-video .video-holder:hover:before {
  opacity: 0.8;
}
.wpo-blog-pg-section .format-video .video-holder a {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 63px;
  height: 63px;
  line-height: 70px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}
.wpo-blog-pg-section .format-video .video-holder a:after {
  position: absolute;
  left: -12px;
  top: -12px;
  width: 140%;
  height: 140%;
  background: rgba(255, 255, 255, 0.3);
  content: "";
  -webkit-animation: spineer 2s infinite;
  animation: spineer 2s infinite;
  border-radius: 50%;
  z-index: -1;
}
.wpo-blog-pg-section .format-video .video-holder a:before {
  content: "";
  width: 0px;
  height: 0px;
  border-top: 9px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid #212f8f;
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.wpo-blog-pg-section .format-video .video-holder .fi:before {
  font-size: 20px;
  font-size: calc-rem-value(20);
  color: #212f8f;
}

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

@media screen and (min-width: 1200px) {
  .blog-pg-fullwidth .wpo-blog-content {
    padding: 0;
  }
}

@-webkit-keyframes save-the-date-pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(0.95, 0.95, 0.95);
    transform: scale3d(0.95, 0.95, 0.95);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes save-the-date-pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(0.95, 0.95, 0.95);
    transform: scale3d(0.95, 0.95, 0.95);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.grid-page .pagination-wrapper {
  margin-top: 150px;
}
@media (max-width: 1200px) {
  .grid-page .blog-sidebar {
    padding-left: 0;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
13. wpo-blog-single-section
--------------------------------------------------------------*/
.wpo-blog-single-section {
  /*** tag-share ***/
  /*** author-box ***/
  /*** more-posts ***/
  /*** comments area ***/
  /*** comment-respond ***/
}
.wpo-blog-single-section .entry-meta {
  list-style: none;
  overflow: hidden;
  margin: 35px 0;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .entry-meta {
    margin: 25px 0;
  }
}
.wpo-blog-single-section .entry-meta ul {
  list-style: none;
}
.wpo-blog-single-section .entry-meta ul li {
  font-weight: 500;
  font-size: 14px;
  float: left;
  text-transform: uppercase;
}
.wpo-blog-single-section .entry-meta ul li a {
  color: #636893;
}
.wpo-blog-single-section .entry-meta ul li a:hover {
  color: #212f8f;
}
.wpo-blog-single-section .entry-meta ul li i {
  position: relative;
  top: 0;
  margin-right: 3px;
}
.wpo-blog-single-section .entry-meta ul li i.fi:before {
  font-size: 13px;
}
.wpo-blog-single-section .entry-meta ul li + li {
  margin-left: 20px;
  padding-left: 20px;
  position: relative;
}
.wpo-blog-single-section .entry-meta ul li + li:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  content: "";
  background: #212f8f;
  border-radius: 50%;
}
@media (max-width: 440px) {
  .wpo-blog-single-section .entry-meta ul li + li:before {
    display: none;
  }
}
@media (max-width: 440px) {
  .wpo-blog-single-section .entry-meta ul li + li {
    margin-left: 0;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .wpo-blog-single-section .entry-meta ul li {
    font-size: 12px;
  }
}
@media (max-width: 440px) {
  .wpo-blog-single-section .entry-meta ul li {
    float: none;
    display: block;
    margin-bottom: 5px;
  }
}
.wpo-blog-single-section .entry-media {
  width: 730px;
  height: 400px;
  overflow: hidden;
  border: 1px solid #828086;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .entry-media {
    width: inherit;
  }
}
.wpo-blog-single-section .entry-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wpo-blog-single-section .post h2 {
  font-size: 35px;
  margin: -0.22em 0 0.7em;
  line-height: 1.3em;
  font-family: "Ubuntu", sans-serif;
}
@media (max-width: 991px) {
  .wpo-blog-single-section .post h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .wpo-blog-single-section .post h2 {
    font-size: 25px;
  }
}
.wpo-blog-single-section .post p {
  margin-bottom: 1.5em;
}
.wpo-blog-single-section .post h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3em;
  margin: 1.8em 0 1em;
}
@media (max-width: 991px) {
  .wpo-blog-single-section .post h3 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .wpo-blog-single-section .post h3 {
    font-size: 20px;
  }
}
.wpo-blog-single-section .post blockquote {
  background-color: #f6f6f6;
  color: #233d62;
  font-size: 20px;
  line-height: 1.6em;
  padding: 65px;
  margin-top: 60px;
  margin-bottom: 40px;
  border: 0;
  text-align: center;
  position: relative;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .post blockquote {
    padding: 55px 25px;
  }
}
.wpo-blog-single-section .post blockquote:before {
  font-family: "Flaticon";
  content: "\f108";
  font-size: 25px;
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 50%;
  top: -30px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  line-height: 60px;
  border: 2px solid #ededef;
  background: #fff;
  color: #212f8f;
  border-radius: 50%;
}
.wpo-blog-single-section .post .gallery {
  overflow: hidden;
  margin: 40px -7.5px 0;
}
.wpo-blog-single-section .post .gallery > div {
  width: calc(50% - 15px);
  float: left;
  margin: 0 7.5px 15px;
}
.wpo-blog-single-section .post .gallery img {
  width: 100%;
}
.wpo-blog-single-section .tag-share,
.wpo-blog-single-section .tag-share-s2 {
  border-bottom: 1px solid #f6f6f6;
  margin: 75px 0 0;
  padding-bottom: 30px;
  color: #030d4c;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .tag-share,
  .wpo-blog-single-section .tag-share-s2 {
    margin-top: 40px;
  }
}
.wpo-blog-single-section .tag-share ul,
.wpo-blog-single-section .tag-share-s2 ul {
  list-style: none;
  display: inline-block;
  overflow: hidden;
  margin-bottom: 0;
}
.wpo-blog-single-section .tag-share ul li,
.wpo-blog-single-section .tag-share-s2 ul li {
  float: left;
  padding: 4px 8px;
  background-color: #071257;
  color: white;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .tag-share ul li,
  .wpo-blog-single-section .tag-share-s2 ul li {
    margin: 2px;
  }
}
.wpo-blog-single-section .tag-share ul > li + li,
.wpo-blog-single-section .tag-share-s2 ul > li + li {
  margin-left: 10px;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .tag-share ul > li + li,
  .wpo-blog-single-section .tag-share-s2 ul > li + li {
    margin: 2px;
  }
}
.wpo-blog-single-section .tag-share .tag,
.wpo-blog-single-section .tag-share-s2 .tag {
  display: flex;
  align-items: center;
}
.wpo-blog-single-section .tag-share .tag > span,
.wpo-blog-single-section .tag-share-s2 .tag > span {
  font-family: "Ubuntu", sans-serif;
  color: #030d4c;
  font-weight: 600;
  display: inline-block;
  padding-right: 15px;
  text-transform: uppercase;
}
.wpo-blog-single-section .tag-share .tag ul,
.wpo-blog-single-section .tag-share-s2 .tag ul {
  list-style: none;
  position: relative;
}
.wpo-blog-single-section .tag-share .tag li,
.wpo-blog-single-section .tag-share-s2 .tag li {
  position: relative;
}
.wpo-blog-single-section .tag-share .tag a,
.wpo-blog-single-section .tag-share-s2 .tag a {
  font-size: 12px;
  display: inline-block;
  padding: 5px 18px;
  color: #030d4c;
  background: #ecf4fb;
  border-radius: 5px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .tag-share .tag a,
  .wpo-blog-single-section .tag-share-s2 .tag a {
    font-size: 13px;
  }
}
.wpo-blog-single-section .tag-share .tag a:hover,
.wpo-blog-single-section .tag-share-s2 .tag a:hover {
  color: #212f8f;
}
.wpo-blog-single-section .tag-share-s2 {
  margin: 0;
  margin-top: 30px;
  border-bottom: 0;
}
.wpo-blog-single-section .tag-share-s2 .tag a {
  padding: 0;
  font-size: 16px;
  text-transform: capitalize;
  background: none;
  text-decoration: underline;
  color: #828086;
}
.wpo-blog-single-section .author-box {
  margin: 35px 0 60px;
}
.wpo-blog-single-section .author-box .author-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid #828086;
  overflow: hidden;
  float: left;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .author-box .author-avatar {
    float: none;
  }
}
.wpo-blog-single-section .author-box .author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wpo-blog-single-section .author-box .author-content {
  display: block;
  overflow: hidden;
  padding-left: 25px;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .author-box .author-content {
    padding: 0;
    margin: 15px 0 0 0;
  }
}
.wpo-blog-single-section .author-box .author-content p {
  margin-bottom: 20px;
}
.wpo-blog-single-section .author-box .author-name {
  font-family: "Ubuntu", sans-serif;
  font-size: 24px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
  color: #030d4c;
}
.wpo-blog-single-section .author-box .social-link {
  display: inline-block;
  list-style: none;
}
.wpo-blog-single-section .author-box .social-link li {
  float: left;
  margin-right: 12px;
}
.wpo-blog-single-section .author-box .social-link a {
  display: block;
  font-size: 13px;
  color: #030d4c;
}
.wpo-blog-single-section .author-box .social-link a:hover {
  color: #212f8f;
}
.wpo-blog-single-section .more-posts {
  overflow: hidden;
  border: 1px solid #dce0e8;
  padding: 0 25px;
}
.wpo-blog-single-section .more-posts > div {
  width: 50%;
  float: left;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts > div {
    width: 100%;
    float: none;
  }
}
.wpo-blog-single-section .more-posts > div > a {
  display: inline-block;
}
.wpo-blog-single-section .more-posts .previous-post,
.wpo-blog-single-section .more-posts .next-post {
  padding: 40px 0;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .previous-post,
  .wpo-blog-single-section .more-posts .next-post {
    padding: 25px 15px !important;
  }
}
.wpo-blog-single-section .more-posts .next-post {
  text-align: right;
  border-left: 1px solid #dce0e8;
  padding-left: 15px;
  padding-right: 5px;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .next-post {
    border-left: 0;
    text-align: left;
    border-top: 1px solid #dce0e8;
  }
}
.wpo-blog-single-section .more-posts .next-post .post-control-link {
  padding-right: 25px;
  position: relative;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .next-post .post-control-link {
    padding-right: 0;
  }
}
.wpo-blog-single-section .more-posts .next-post .post-control-link:before {
  font-family: "themify";
  content: "\e628";
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .next-post .post-control-link:before {
    display: none;
  }
}
.wpo-blog-single-section .more-posts .previous-post {
  padding-right: 15px;
  padding-left: 5px;
}
.wpo-blog-single-section .more-posts .previous-post .post-control-link {
  padding-left: 25px;
  position: relative;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .previous-post .post-control-link {
    padding-left: 0;
  }
}
.wpo-blog-single-section .more-posts .previous-post .post-control-link:before {
  font-family: "themify";
  content: "\e629";
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .previous-post .post-control-link:before {
    display: none;
  }
}
.wpo-blog-single-section .more-posts .previous-post > a > span,
.wpo-blog-single-section .more-posts .next-post > a > span {
  display: block;
}
.wpo-blog-single-section .more-posts .post-control-link {
  font-size: 14px;
  color: #828086;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
}
.wpo-blog-single-section .more-posts .post-name {
  font-size: 16px;
  color: #030d4c;
  margin: 0.7em 0 0;
}
@media (max-width: 991px) {
  .wpo-blog-single-section .more-posts .post-name {
    font-size: 16px;
  }
}
.wpo-blog-single-section .more-posts a:hover .post-control-link {
  color: #212f8f;
}
.wpo-blog-single-section .comments-area {
  margin-top: 70px;
}
.wpo-blog-single-section .comments-area li > div {
  border-bottom: 1px solid #e4effb;
  padding: 35px;
}
@media (max-width: 991px) {
  .wpo-blog-single-section .comments-area li > div {
    padding: 35px 25px;
  }
}
.wpo-blog-single-section .comments-area ol {
  list-style-type: none;
  padding-left: 0;
}
.wpo-blog-single-section .comments-area ol ul {
  padding-left: 30px;
  list-style-type: none;
}
.wpo-blog-single-section .comments-area ol > li:last-child div {
  border-bottom: 0;
}
.wpo-blog-single-section .comments-area .comments-title {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 1em;
  text-transform: uppercase;
  letter-spacing: 3px;
}
@media (max-width: 991px) {
  .wpo-blog-single-section .comments-area .comments-title {
    font-size: 20px;
  }
}
.wpo-blog-single-section .comments-area li > #comment-container {
  display: flex;
  gap: 1rem;
  padding: 35px 0;
}
.wpo-blog-single-section .comments-area .comment-theme {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #828086;
  overflow: hidden;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .comments-area .comment-theme {
    position: static;
  }
}
.wpo-blog-single-section .comments-area .comment-theme img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .comments-area .comment-main-area {
    padding-left: 0;
  }
}
.wpo-blog-single-section .comments-area .comments-meta h4 {
  font-family: "Ubuntu", sans-serif;
  font-size: 20px;
  color: #030d4c;
  font-weight: bold;
  margin: 0 0 1em;
}
.wpo-blog-single-section .comments-area .comments-meta h4 span {
  font-size: 15px;
  color: #828086;
  font-weight: normal;
  text-transform: none;
  display: inline-block;
  padding-left: 5px;
  font-family: "Ubuntu", sans-serif;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .comments-area .comments-meta h4 span {
    padding-left: 0;
  }
}
.wpo-blog-single-section .comments-area .comment-reply-link {
  font-family: "Ubuntu", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #030d4c;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  font-family: "Ubuntu", sans-serif;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.wpo-blog-single-section .comments-area .comment-reply-link:hover {
  color: #212f8f;
}
.wpo-blog-single-section .comment-respond {
  margin-top: 70px;
}
.wpo-blog-single-section .comment-respond .comment-reply-title {
  font-size: 22px;
  margin: 0 0 1.5em;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 991px) {
  .wpo-blog-single-section .comment-respond .comment-reply-title {
    font-size: 20px;
  }
}
.wpo-blog-single-section .comment-respond form input,
.wpo-blog-single-section .comment-respond form textarea {
  background-color: #fff;
  width: 100%;
  height: 55px;
  border: 1px solid #a4adbe;
  padding: 6px 15px;
  margin-bottom: 15px;
  outline: 0;
  border-radius: 30px;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.wpo-blog-single-section .comment-respond form input:focus,
.wpo-blog-single-section .comment-respond form textarea:focus {
  box-shadow: none;
  border-color: #212f8f;
}
@media (max-width: 991px) {
  .wpo-blog-single-section .comment-respond form input,
  .wpo-blog-single-section .comment-respond form textarea {
    height: 40px;
  }
}
.wpo-blog-single-section .comment-respond form textarea {
  height: 220px;
  padding: 15px;
}
@media (max-width: 991px) {
  .wpo-blog-single-section .comment-respond form textarea {
    height: 150px;
  }
}
.wpo-blog-single-section .comment-respond .form-inputs {
  overflow: hidden;
}
.wpo-blog-single-section .comment-respond .form-inputs > input:nth-child(1) {
  width: 49%;
  float: left;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .comment-respond .form-inputs > input:nth-child(1) {
    width: 100%;
    float: none;
  }
}
.wpo-blog-single-section .comment-respond .form-inputs > input:nth-child(2) {
  width: 49%;
  float: right;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .comment-respond .form-inputs > input:nth-child(2) {
    width: 100%;
    float: none;
  }
}
.wpo-blog-single-section .comment-respond .form-submit input {
  font-family: "Ubuntu", sans-serif;
  max-width: 180px;
  background-color: #1e2845;
  color: #fff;
  margin-bottom: 0;
  border: 0;
  outline: 0;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 2px;
  border-radius: 30px;
}
.wpo-blog-single-section .comment-respond .form-submit input:hover {
  background-color: #030d4c;
}

@media screen and (min-width: 1200px) {
  .wpo-blog-single-left-sidebar-section .blog-sidebar {
    padding-right: 45px;
    padding-left: 0;
  }
}

/*--------------------------------------------------------------
14. error-404-section
--------------------------------------------------------------*/
.error-404-section {
  text-align: center;
}
.error-404-section .error-message {
  margin-top: 70px;
  padding: 0 200px;
}
@media (max-width: 991px) {
  .error-404-section .error-message {
    margin-top: 50px;
    padding: 0 100px;
  }
}
@media (max-width: 767px) {
  .error-404-section .error-message {
    padding: 0;
  }
}
.error-404-section .error-message h3 {
  font-size: 30px;
  font-size: calc-rem-value(30);
  margin: 0 0 0.8em;
}
.error-404-section .error-message p {
  margin-bottom: 1.8em;
}
.error-404-section .error-message .theme-btn, .error-404-section .error-message .view-cart-btn {
  display: inline-block;
}

/*--------------------------------------------------------------
15. wpo-faq-page
--------------------------------------------------------------*/
.wpo-faq-section .wpo-section-title {
  text-align: center;
}
.wpo-faq-section .wpo-section-title h2 {
  display: inline-block;
}
.wpo-faq-section .accordion-item {
  border: 0;
  border: 1px solid #e1e1e1;
  padding: 5px 20px;
  margin-bottom: 20px;
}
.wpo-faq-section .accordion-item .accordion-body {
  padding-left: 0;
  padding-right: 0;
}
.wpo-faq-section .accordion-item button {
  padding: 20px;
  border: 0;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  color: #030d4c;
  text-align: left;
  font-family: "Ubuntu", sans-serif;
}
.wpo-faq-section .accordion-item button::after {
  background: none;
  font-family: "themify";
  content: "\e622";
  font-size: 15px;
  transform: rotate(0deg);
  font-weight: 700;
}
.wpo-faq-section .accordion-item button.collapsed {
  color: #373b3e;
}
.wpo-faq-section .accordion-item button.collapsed::after {
  content: "\e61a";
}
.wpo-faq-section .accordion-item button:focus {
  box-shadow: none;
  outline: none;
  border-color: #e1e1e1;
}
.wpo-faq-section .accordion-item .accordion-collapse {
  border: 0;
}
.wpo-faq-section .accordion-button {
  background: transparent;
}

/*-----------------------------------------------------
#4.1 faq section
------------------------------------------------------*/
.question-area {
  background: #f5f6f8;
  padding-top: 100px;
}
@media (max-width: 991px) {
  .question-area {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .question-area {
    padding-top: 60px;
  }
}

.question-area .wpo-section-title {
  text-align: center;
}
.question-area .wpo-section-title h2 {
  display: inline-block;
}

.question-touch {
  max-width: 570px;
  margin: auto;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
  box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
  padding: 50px;
  text-align: center;
  padding-top: 60px;
  background: #fff;
  border-radius: 5px;
}

@media (max-width: 590px) {
  .question-touch {
    padding: 15px;
  }
}
@media (max-width: 991px) {
  .faq-pb {
    margin-top: 15px;
  }
}
.question-touch h2 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-top: 0;
  margin-bottom: 35px;
}

.question-touch .half-col {
  width: 100%;
}

.question-touch input,
.question-touch textarea {
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
  background: none;
  border-radius: 0;
  border-bottom: 1px solid #ddd;
  border-top: none;
  box-shadow: none;
  margin-bottom: 22px;
}

.question-touch input:focus,
.question-touch textarea:focus {
  outline: none;
  background: none;
  border-radius: 0;
  border-bottom: 1px solid #eeeeee;
  box-shadow: none;
}

.question-touch textarea {
  height: 160px;
}

.question-touch ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #888;
  font-size: 14px;
}

.question-touch ::-moz-placeholder {
  /* Firefox 19+ */
  color: #888;
  font-size: 14px;
}

.question-touch :-ms-input-placeholder {
  /* IE 10+ */
  color: #888;
  font-size: 14px;
}

.question-touch :-moz-placeholder {
  /* Firefox 18- */
  color: #888;
  font-size: 14px;
}

/*--------------------------------------------------------------
16. wpo-contact-pg-section
--------------------------------------------------------------*/
.wpo-contact-pg-section {
  padding-bottom: 0px;
}
.wpo-contact-pg-section .wpo-contact-title {
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .wpo-contact-pg-section .wpo-contact-title {
    margin-bottom: 30px;
  }
}
.wpo-contact-pg-section .wpo-contact-title h2 {
  font-size: 35px;
  font-size: calc-rem-value(35);
  font-weight: 500;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .wpo-contact-pg-section .wpo-contact-title h2 {
    font-size: 25px;
    font-size: calc-rem-value(25);
  }
}
.wpo-contact-pg-section form input,
.wpo-contact-pg-section form select,
.wpo-contact-pg-section form textarea {
  background: transparent;
  width: 100%;
  height: 50px;
  border: 1px solid transparent;
  border-radius: 0px;
  box-shadow: none !important;
  padding-left: 25px;
  border: 1px solid #ebebeb;
}
@media (max-width: 991px) {
  .wpo-contact-pg-section form input,
  .wpo-contact-pg-section form select,
  .wpo-contact-pg-section form textarea {
    height: 45px;
  }
}
.wpo-contact-pg-section form input:focus,
.wpo-contact-pg-section form select:focus,
.wpo-contact-pg-section form textarea:focus {
  border-color: #212f8f;
  background: transparent;
}
.wpo-contact-pg-section form textarea {
  height: 180px;
  padding-top: 15px;
}
.wpo-contact-pg-section form {
  margin: 0 -15px;
  overflow: hidden;
}
.wpo-contact-pg-section form ::-webkit-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}
.wpo-contact-pg-section form :-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}
.wpo-contact-pg-section form ::-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}
.wpo-contact-pg-section form :-ms-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}
.wpo-contact-pg-section form select {
  display: inline-block;
  color: #a9a9a9;
  cursor: pointer;
  opacity: 1;
  padding: 6px 25px;
  font-size: 15px;
  font-size: calc-rem-value(15);
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
  position: relative;
}
.wpo-contact-pg-section form select:focus {
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
}
.wpo-contact-pg-section form .submit-area {
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
  margin-left: 0;
}
@media (max-width: 767px) {
  .wpo-contact-pg-section form .submit-area {
    margin-bottom: 0;
  }
}
.wpo-contact-pg-section form .submit-area .theme-btn, .wpo-contact-pg-section form .submit-area .view-cart-btn {
  border-radius: 0px;
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
}
.wpo-contact-pg-section form .submit-area .theme-btn:after, .wpo-contact-pg-section form .submit-area .view-cart-btn:after {
  border-radius: 0px;
}
.wpo-contact-pg-section form > div {
  width: calc(50% - 30px);
  float: left;
  margin: 0 15px 25px;
}
@media (max-width: 600px) {
  .wpo-contact-pg-section form > div {
    width: calc(100% - 25px);
    float: none;
  }
}
.wpo-contact-pg-section form .fullwidth {
  width: calc(100% - 25px);
  float: none;
  clear: both;
}
.wpo-contact-pg-section .office-info {
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .wpo-contact-pg-section .office-info {
    padding-bottom: 60px;
  }
}
@media (max-width: 1200px) {
  .wpo-contact-pg-section .office-info .col .office-info-item {
    margin-bottom: 30px;
  }
}
@media (max-width: 1200px) {
  .wpo-contact-pg-section .office-info .col:last-child .office-info-item {
    margin-bottom: 0px;
  }
}
.wpo-contact-pg-section .office-info .office-info-item {
  text-align: center;
  box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
  padding: 40px;
}
.wpo-contact-pg-section .office-info .office-info-item .office-info-icon {
  width: 85px;
  height: 85px;
  background: #f5f5f5;
  line-height: 85px;
  text-align: center;
  margin: 0 auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.wpo-contact-pg-section .office-info .office-info-item .office-info-icon .icon .fi:before {
  font-size: 35px;
}
.wpo-contact-pg-section .office-info .office-info-item .office-info-text h2 {
  font-size: 30px;
  font-weight: 500;
  margin: 20px 0;
}
.wpo-contact-pg-section .office-info .office-info-item .office-info-text p {
  margin-bottom: 0;
}
.wpo-contact-pg-section .wpo-contact-form-area {
  padding: 50px;
  background: #fff;
  box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.1);
  padding-bottom: 0;
  margin-bottom: -125px;
  position: relative;
  z-index: 99;
}
@media (max-width: 767px) {
  .wpo-contact-pg-section .wpo-contact-form-area {
    padding: 30px;
    padding-top: 50px;
  }
}
.wpo-contact-pg-section .wpo-contact-form-area .theme-btn, .wpo-contact-pg-section .wpo-contact-form-area .view-cart-btn {
  display: inline-block;
}

.wpo-contact-map-section .wpo-contact-map {
  height: 550px;
}
.wpo-contact-map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
}
.wpo-contact-map-section h2.hidden {
  display: none;
}

/*======================================
            Register-Style
 =======================================*/
.wpo-register {
  display: flex;
}
.wpo-register .right-side-form {
  display: flex;
  flex-direction: column;
  width: 45%;
  padding: 4rem 2.5rem 1rem 1rem;
}
.wpo-register .right-side-form .logo {
  width: 100%;
  margin-bottom: 5rem;
  display: flex;
  gap: 6px;
  justify-content: center;
}
.wpo-register .right-side-form .logo h5 {
  margin: 0;
}
.wpo-register .right-side-form .logo p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: black;
}
@media (max-width: 1366px) {
  .wpo-register .right-side-form .logo {
    margin-bottom: 1rem;
  }
}
.wpo-register .right-side-form .form-container {
  width: 100%;
  margin-top: 3rem;
}
@media (max-width: 1366px) {
  .wpo-register .right-side-form .form-container {
    margin-top: 2rem;
  }
}
.wpo-register .right-side-form .row {
  row-gap: 16px;
}
@media (max-width: 1366px) {
  .wpo-register .right-side-form {
    padding-top: 1rem;
  }
}
@media (max-width: 991px) {
  .wpo-register .right-side-form {
    width: 100%;
  }
}
.wpo-register .left-side-form {
  flex: 1 1 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 100vh;
  padding: 1rem 1.5rem;
}
.wpo-register .left-side-form img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
}
@media (max-width: 991px) {
  .wpo-register .left-side-form {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .wpo-register .right-side-form {
    width: 100%;
    padding: 2rem;
  }
}

.wpo-page .team-grids .toggle-filter {
  display: none;
}
@media (max-width: 991px) {
  .wpo-page .team-grids .toggle-filter {
    display: block;
  }
}
.wpo-page .team-grids .content {
  width: 65%;
}
.wpo-page .team-grids .content .table img {
  border-radius: 10px;
  width: 50px;
  max-width: 50px;
  height: 50px;
  max-height: 50px;
  overflow: hidden;
  border: 1px solid #ccc;
  object-fit: cover;
}
@media (max-width: 767px) {
  .wpo-page .team-grids .content {
    width: 100%;
    overflow-y: auto;
  }
}
.wpo-page .team-grids .sidebar {
  flex: 1 1 0%;
}
@media (max-width: 767px) {
  .wpo-page .team-grids .sidebar {
    width: 100%;
  }
}

.img-container img {
  width: 33%;
}
@media (max-width: 767px) {
  .img-container img {
    width: 100%;
  }
}

.wpo-form-post {
  display: flex;
  gap: 1rem;
}
@media (max-width: 767px) {
  .wpo-form-post {
    flex-direction: column;
  }
}
.wpo-form-post .content {
  min-height: 36rem;
  height: 100% !important;
  width: 50%;
}
@media (max-width: 767px) {
  .wpo-form-post .content {
    width: 100%;
  }
}
.wpo-form-post .content .ql-form-container {
  min-height: inherit;
}
.wpo-form-post .content .ql-form-container .ql-container {
  min-height: inherit;
}
.wpo-form-post .content .ql-form-container .ql-container .ql-editor {
  min-height: inherit;
}
.wpo-form-post .metadata {
  flex: 1 1 0%;
}
.wpo-form-post .metadata #thumbnail-preview {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 1px solid lightgray;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.wpo-form-post .metadata #thumbnail-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wpo-form-post .metadata #thumbnail-preview:hover {
  background-color: rgba(211, 211, 211, 0.3);
}
.wpo-form-post .metadata #thumbnail {
  display: none;
}

.wpo-find-your-guide .wpo-section-title {
  padding: 0 7rem;
}
@media (max-width: 991px) {
  .wpo-find-your-guide .wpo-section-title {
    padding: 8px;
  }
}
.wpo-find-your-guide .wpo-section-title h2 {
  font-size: 38px;
}
@media (max-width: 991px) {
  .wpo-find-your-guide .wpo-section-title h2 {
    font-size: 27px;
  }
}
.wpo-find-your-guide .wpo-section-description {
  text-align: center;
  margin-bottom: 40px;
}
.wpo-find-your-guide form .input-group-text {
  background: transparent;
}
.wpo-find-your-guide form .form-control {
  border-left: none;
  padding-left: 0;
}

.wpo-page-search-guide .filter {
  padding: 0 15px;
  gap: 6px;
}
@media (max-width: 767px) {
  .wpo-page-search-guide .filter {
    gap: 6px;
  }
}
.wpo-page-search-guide .guide-container {
  margin-bottom: 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
@media (max-width: 767px) {
  .wpo-page-search-guide .guide-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.wpo-page-search-guide .guide-container .not-found,
.wpo-page-search-guide .guide-container .loading {
  grid-column: span 4;
  text-align: center;
}
.wpo-page-search-guide .guide-container .guide-item {
  overflow: hidden;
  grid-column: span 1;
  border: 1px solid lightgrey;
  color: black;
  border-radius: 6px;
  padding: 0;
}
.wpo-page-search-guide .guide-container .guide-item .img-holder {
  height: 192px;
  border-bottom: 1px solid lightgrey;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wpo-page-search-guide .guide-container .guide-item .img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wpo-page-search-guide .guide-container .guide-item .guide-body {
  padding: 15px;
}
.wpo-page-search-guide .guide-container .guide-item .guide-body .guide-name {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}
.wpo-page-search-guide .guide-container .guide-item .guide-body .rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: small;
  margin-bottom: 8px;
}
.wpo-page-search-guide .guide-container .guide-item .guide-body .rating i {
  color: #f9d322;
}
.wpo-page-search-guide .guide-container .guide-item .guide-body .review-count {
  font-size: small;
  display: block;
  margin-bottom: 8px;
}
.wpo-page-search-guide .guide-container .guide-item .guide-body .badge {
  display: block;
  width: fit-content;
  padding: 8px;
  background-color: lightgrey;
  color: black;
  font-weight: 400;
  border-radius: 5px;
  font-size: small;
  margin-bottom: 8px;
}

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