 a {
     color: #17161a;
     transition: .5s;
 }

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

 body {
     color: #888;
     font-family: 'Open Sans', sans-serif;
     font-weight: 400;
     font-size: 16px;
     line-height: 1.6;
 }

 p {
     font-style: normal;
 }

 h1,
 h1 a,
 h2,
 h2 a,
 h3,
 h3 a,
 h4,
 h4 a,
 h5,
 h5 a,
 h6,
 h6 a {
     font-family: Poppins, sans-serif;
     font-style: normal;
     line-height: 1.2;
     font-weight: 700;
     transition: .5s;
     font-size: 22px;
     margin-bottom: 5px;
     color: #1f2230;
 }

 .aqua-reviews-container {
     background: linear-gradient(to bottom right, #e0f7fa, #ffffff);
     padding: 2rem;
     border-radius: 1rem;
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
     max-width: 1280px;
     margin: 2rem auto;
     font-family: "Helvetica Neue", sans-serif;
 }

 .products-grid {
     display: grid;
     gap: 2rem;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
 }

 .product-card {
     background: #fff;
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     display: flex;
     flex-direction: column;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .product-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
 }

 .product-photo {
     position: relative;
     overflow: hidden;
 }

 .product-photo img {
     width: 100%;
     height: auto;
     display: block;
     transition: transform 0.3s ease;
 }

 .product-card:hover .product-photo img {
     transform: scale(1.05);
 }

 .product-badge {
     position: absolute;
     top: 12px;
     left: 12px;
     background: #ff4c60;
     color: #fff;
     font-size: 0.75rem;
     padding: 4px 8px;
     border-radius: 12px;
     text-transform: uppercase;
 }

 .product-content {
     padding: 1rem;
     flex: 1;
 }

 .product-name {
     font-size: 1.1rem;
     margin-bottom: 0.4rem;
     font-weight: 600;
 }

 .product-description {
     font-size: 0.9rem;
     color: #555;
     margin-bottom: 0.8rem;
 }

 .modal-content {
     border: none;
     border-radius: 20px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
     padding: 2rem;
     background: #fdfdfd;
     animation: fadeInScale 0.3s ease;
 }

 @keyframes fadeInScale {
     from {
         transform: scale(0.95);
         opacity: 0;
     }

     to {
         transform: scale(1);
         opacity: 1;
     }
 }

 .modal-header,
 .modal-footer {
     border: none;
 }

 .content-section {
     padding: 2rem 1rem;
 }

 .table-cart th {
     font-weight: 600;
     font-size: 1rem;
     color: #333;
     border-bottom: 2px solid #eee;
 }

 .table-cart td {
     vertical-align: middle;
     padding: 1rem;
     color: #444;
 }

 .cart-total {
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 1.2rem;
     font-weight: bold;
     margin-top: 2rem;
     padding-top: 1rem;
     border-top: 1px solid #ddd;
 }

 .btn-purchase button {
     background: linear-gradient(135deg, #e77009, #42a5f5);
     border: none;
     padding: 0.75rem 2rem;
     font-size: 1rem;
     color: white;
     border-radius: 50px;
     box-shadow: 0 8px 20px rgba(30, 136, 229, 0.4);
     transition: all 0.3s ease;
     width: 100%;
 }

 .btn-purchase button:hover {
     background: linear-gradient(135deg, #e77009, #2196f3);
     box-shadow: 0 12px 24px rgba(30, 136, 229, 0.5);
     transform: translateY(-2px);
 }

 /* Заголовок */
 #shopping-cart h3 {
     font-size: 1.6rem;
     font-weight: 700;
     color: #222;
     letter-spacing: 0.5px;
     margin-bottom: 2rem;
 }

 /* Media */
 @media (max-width: 576px) {
     .modal-content {
         padding: 1rem;
     }

     .btn-purchase button {
         font-size: 0.95rem;
         padding: 0.6rem 1.5rem;
     }

     .cart-total {
         flex-direction: column;
         gap: 0.5rem;
     }
 }

 .checkout-area {
     background: #f9fafc;
     padding: 60px 20px;
     font-family: 'Segoe UI', sans-serif;
 }

 /* Контейнер карточки */
 .checkout-card {
     max-width: 800px;
     margin: 0 auto;
     background: #ffffff;
     padding: 40px;
     border-radius: 16px;
     box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
 }

 /* Заголовок */
 .checkout-title {
     text-align: center;
     font-size: 2rem;
     margin-bottom: 30px;
     font-weight: 600;
     color: #2c3e50;
 }

 /* Сітка форми */
 .checkout-form .form-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
     gap: 20px;
 }

 /* Форм-група */
 .form-group {
     display: flex;
     flex-direction: column;
 }

 /* Повна ширина */
 .form-group.full-width {
     grid-column: 1 / -1;
 }

 /* Лейбли */
 .form-group label {
     font-weight: 500;
     margin-bottom: 8px;
     color: #34495e;
 }

 .required {
     color: #e74c3c;
 }

 /* Інпути та textarea */
 .form-group input,
 .form-group textarea {
     padding: 12px 16px;
     border-radius: 10px;
     border: 1px solid #dfe6e9;
     background: #fdfdfd;
     font-size: 1rem;
     transition: border-color 0.3s ease;
 }

 .form-group input:focus,
 .form-group textarea:focus {
     border-color: #3498db;
     outline: none;
     background: #fff;
 }

 /* Кнопка оформлення */
 .btn-checkout {
     background: #3498db;
     color: white;
     border: none;
     border-radius: 30px;
     padding: 12px 30px;
     font-size: 1rem;
     font-weight: 500;
     cursor: pointer;
     transition: background 0.3s ease;
     box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
 }

 .btn-checkout:hover {
     background: #2980b9;
 }

 /* Повідомлення */
 .form-message {
     font-size: 0.95rem;
     color: #2ecc71;
     margin-top: 10px;
 }

 /* Адаптив */
 @media (max-width: 600px) {
     .checkout-card {
         padding: 25px;
     }
 }

 .product-price {
     font-weight: 700;
     font-size: 1rem;
     color: #1e88e5;
 }

 .product-cta {
     padding: 0.8rem 1rem;
     border-top: 1px solid #eee;
     text-align: center;
 }

 .btn-buy {
     background: #1e88e5;
     color: #fff;
     border: none;
     border-radius: 30px;
     padding: 0.5rem 1.2rem;
     cursor: pointer;
     transition: background 0.3s ease;
 }

 .btn-buy:hover {
     background: #0c63cc;
 }

 .aqua-reviews-title {
     text-align: center;
     font-size: 1.8rem;
     font-weight: 700;
     color: #007c91;
     margin-bottom: 1.5rem;
 }

 .aqua-reviews-list {
     display: grid;
     grid-template-columns: 1fr;
     gap: 1.5rem;
 }

 .WqOIj5cCJt {
     background: #ffffff;
     border-bottom: 5px solid #e77009;
     padding: 1rem 1.2rem;
     border-radius: 0.75rem;
     transition: transform 0.3s ease;
 }

 .WqOIj5cCJt:hover {
     transform: translateY(-5px);
 }

 .WqOIj5cCJt p {
     color: #333333;
     margin-bottom: 0.75rem;
     line-height: 1.5;
 }

 .WqOIj5cCJt-footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .UAggF8rVWt {
     font-weight: 600;
     color: #007c91;
 }

 .aqua-stars {
     color: #ffb300;
     font-size: 1.1rem;
 }

 @media (min-width: 600px) {
     .aqua-reviews-list {
         grid-template-columns: 1fr 1fr;
     }
 }

 .UxFMMSlVEu {
     background: #444;
     color: #fff;
     padding: 6px;
     font-size: 13px;
     text-align: center;
     position: fixed;
     bottom: 0;
     width: 100%;
     z-index: 10;
     transition: opacity 0.3s ease-in-out;
 }

 .UxFMMSlVEu .cookie-checkbox {
     display: none;
 }

 .UxFMMSlVEu .LkAlcmViyf {
     display: inline-block;
     background: #222;
     color: #fff;
     border: 1px solid #000;
     cursor: pointer;
     padding: 4px 7px;
     margin: 2px 0;
     font-size: 13px;
     font-weight: 700;
     transition: background 0.07s, color 0.07s, border-color 0.07s;
 }

 .UxFMMSlVEu .LkAlcmViyf:hover {
     background: #fff;
     color: #222;
 }

 .cookie-checkbox:checked+.cookies-content {
     display: none;
 }


 .hdr-store {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     background: #fff;
     border-bottom: 2px solid #e77009;
     z-index: 1000;
     font-family: sans-serif;
 }

 /* Контейнер для десктоп-меню та лого */
 .HkdXLLnN9m {
     max-width: 1140px;
     margin: auto;
     height: 70px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0 20px;
 }

 /* Десктопна навігація */
 .LIGCNUmKoB {
     display: flex;
     gap: 24px;
     align-items: center;
 }

 .LIGCNUmKoB a {
     color: #333;
     text-decoration: none;
     font-weight: 600;
     transition: color 0.3s;
 }

 .LIGCNUmKoB a:hover {
     color: #e77009;
 }

 /* Бургер (по правому краю) */
 .nav-toggle-store {
     display: none;
 }

 .burger-store {
     display: none;
     position: fixed;
     top: 18px;
     right: 20px;
     flex-direction: column;
     gap: 5px;
     cursor: pointer;
     z-index: 1200;
 }

 .burger-store span {
     width: 28px;
     height: 3px;
     background: #e77009;
     border-radius: 2px;
     transition: all 0.3s ease;
 }

 /* Логотип */
 .logo-store {
     color: #e77009;
     text-decoration: none;
     font-size: 1.8rem;
     font-weight: bold;
     text-transform: uppercase;
 }

 /* Мобільне меню — збоку, поверх усього */
 .nav-mobile-store {
     position: fixed;
     top: 0;
     left: -100%;
     width: 260px;
     height: 100vh;
     background: #673306;
     padding: 80px 20px;
     display: flex;
     flex-direction: column;
     gap: 20px;
     transition: left 0.4s ease;
     z-index: 1300;
 }

 .nav-mobile-store a {
     color: #fff;
     font-size: 1.2rem;
     text-decoration: none;
     font-weight: 600;
 }

 .close-store {
     position: absolute;
     top: 20px;
     right: 20px;
     font-size: 2rem;
     color: #fff;
     cursor: pointer;
 }

 .logo-link {
     color: #000;
     font-weight: bold;
     font-size: 1.5em;
     display: flex;
     align-items: center;
 }

 .logo-img {
     width: 50px;
     height: auto;
     margin-right: 10px;
 }

 @media (max-width: 767px) {
     .logo-link {
         justify-content: center;
         /* центрує по горизонталі */
         text-align: center;
     }

     .logo-img {
         margin-right: 5px;
         /* трохи менший відступ на мобільному */
     }
 }

 /* Контейнер та базові стилі */
 .footer {
     background-color: #023047;
     /* Темно-синій фон */
     color: #fff;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     padding-top: 40px;
 }

 .footer a {
     color: #8ecae6;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer a:hover {
     color: #ffb703;
 }

 .footer-top {
     border-bottom: 1px solid #03506f;
     padding-bottom: 40px;
 }

 /* Логотип і про компанію */
 .footer-about {
     padding-right: 30px;
 }

 .footer-logo-link {
     display: flex;
     align-items: center;
     font-weight: 700;
     font-size: 1.6rem;
     margin-bottom: 15px;
     color: #fff !important;
 }

 .footer-logo-img {
     width: 50px;
     height: 50px;
     margin-right: 12px;
     object-fit: contain;
     border-radius: 8px;
     border: 2px solid #8ecae6;
 }

 .footer-company-name {
     margin: 0 0 15px 0;
     font-weight: 700;
 }

 .footer-description,
 .footer-registration,
 .footer-contact-phone,
 .footer-contact-address,
 .footer-contact-email {
     font-size: 0.9rem;
     line-height: 1.4;
     margin-bottom: 10px;
 }

 .footer-contact-phone a,
 .footer-contact-address a,
 .footer-contact-email a {
     font-weight: 600;
 }

 /* Меню посилань */
 .footer-links {
     padding-left: 30px;
     padding-top: 10px;
 }

 .footer-links-title {
     font-weight: 700;
     font-size: 1.2rem;
     margin-bottom: 15px;
     color: #ffb703;
 }

 .footer-links-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-links-list li {
     margin-bottom: 10px;
 }

 .footer-links-list li a {
     font-size: 1rem;
 }

 /* Нижня частина футера */
 .footer-bottom {
     padding: 15px 0;
 }

 .footer-bottom p {
     margin: 0;
     font-size: 0.9rem;
     color: #8ecae6;
 }

 .text-center {
     text-align: center !important;
 }

 /* Адаптивність */
 @media (max-width: 991px) {

     .footer-about,
     .footer-links {
         padding: 0 15px 30px 15px;
         text-align: center;
     }
 }

 @media (max-width: 576px) {
     .footer-logo-link {
         justify-content: center;
     }
 }

 /* Анімація бургеру в хрестик */
 .nav-toggle-store:checked+.burger-store span:nth-child(1) {
     transform: rotate(45deg) translate(5px, 5px);
 }

 .nav-toggle-store:checked+.burger-store span:nth-child(2) {
     opacity: 0;
 }

 .nav-toggle-store:checked+.burger-store span:nth-child(3) {
     transform: rotate(-45deg) translate(5px, -5px);
 }

 /* Показуємо мобільне меню поверх банера */
 .nav-toggle-store:checked~.nav-mobile-store {
     left: 0;
 }

 /* Адаптив */
 @media (max-width: 768px) {
     .LIGCNUmKoB {
         display: none;
     }

     .burger-store {
         display: flex;
     }
 }

 .aIHV9IE3ZO:focus,
 select:focus,
 textarea:focus,
 input:focus {
     box-shadow: none !important;
 }

 textarea,
 input {
     outline: none;
 }

 a:focus,
 .btn:focus {
     text-decoration: none;
     outline: none;
 }

 .uppercase {
     text-transform: uppercase;
 }

 .capitalize {
     text-transform: capitalize;
 }

 .witr_section_title_inner h1,
 .witr_section_title_inner h2,
 .witr_section_title_inner h3 {
     font-size: 40px;
     margin: auto;
     font-weight: 700;
     line-height: 1.4;
 }

 .witr_section_title_inner h1 span,
 .witr_section_title_inner h2 span,
 .witr_section_title_inner h3 span,
 .witr_section_title_inner p span,
 .witr_section_title_inner p span a {
     color: #e77009;
 }

 .witr_section_title_inner h2 {
     font-size: 16px;
     color: #e77009;
     width: 100%;
 }

 .witr_section_title {
     position: relative;
 }

 .witr_image_title {
     margin-top: 0;
     margin-bottom: 10px;
 }

 .witr_bar_main {
     margin: 10px 0;
 }

 .witr_bar_inner {
     height: 5px;
     width: 90px;
     background: #e77009;
     margin: 0px auto;
     position: relative;
     border-radius: 30px;
 }

 .witr_bar_innerc:before {
     left: 0;
     transform: translateY(-50%);
     animation-duration: 3s;
     animation-timing-function: linear;
     animation-iteration-count: infinite;
     animation-name: move_title_bg1;
 }

 .witr_bar_innerc:after {
     right: 0;
     transform: translateY(-50%);
     animation-duration: 3s;
     animation-timing-function: linear;
     animation-iteration-count: infinite;
     animation-name: move_title_bg2;
 }

 .witr_bar_innerc:after,
 .witr_bar_innerc:before {
     content: '';
     position: absolute;
     top: 50%;
     border-radius: 50%;
 }

 .witr_bar_innerc:after,
 .witr_bar_innerc:before {
     border: 6px solid #e77009;
 }

 @keyframes move_title_bg1 {
     from {
         left: 0
     }

     to {
         left: 100%
     }
 }

 @keyframes move_title_bg2 {
     from {
         right: 0
     }

     to {
         right: 100%
     }
 }

 .divider-separator {
     display: flex;
 }

 .divider-separator {
     position: relative;
 }

 span.divider_text {
     color: #e77009;
     font-family: "Barlow Semi Condensed", Sans-serif;
     font-size: 17px;
     font-weight: 700;
     margin: 0 10px;
 }

 .divider-separator:before {
     display: block;
     content: "";
     border-bottom: 0;
     flex-grow: 1;
     border-top: 2px solid #e77009;
     margin-top: 14px;
 }

 .divider-separator {
     width: 35%;
     margin: 0 auto;
     margin-left: 0;
 }

 .divider {
     text-align: left;
     padding-top: 5px;
     padding-bottom: 5px;
     display: flex;
 }

 .divider .divider-separator {
     display: flex;
     direction: ltr;
 }

 .witr_section_title {
     margin-bottom: 35px;
 }

 .witr_section_title_inner p {
     width: 100%;
     padding: 0 0 0 0;
     margin-top: 10px;
 }

 .witr_section_title_inner.text-center p {
     width: 74%;
     margin-right: auto;
     margin-left: auto;
 }

 .witr_all_pd0 {
     padding: 0;
 }

 @media (min-width: 1140px) {
     .container {
         max-width: 1140px;
     }
 }

 /* ===== 1. Top Menu CSS ===== */
 .em40_header_area_main.hdisplay_none {
     display: none;
 }

 .aplit-header-top {
     background: #e77009;
     padding: 10px 0;
 }

 .top-address p {
     margin-bottom: 0;
 }

 .top-address p a,
 .top-address p span {
     margin-right: 20px;
     font-size: 15px;
     color: #fff;
     font-weight: 500;
 }

 .top-address.em-login a {
     margin-right: 10px;
 }

 .top-right-menu ul.social-icons li a {
     color: #fff;
 }

 .top-right-menu ul.social-icons li {
     display: inline-block;
     margin-left: 11px;
     position: relative;
 }

 .top-right-menu ul.social-icons li a {
     display: inline-block;
     text-decoration: none;
     color: #fff;
     transition: all .2s ease-in-out;
     font-size: 15px;
     font-weight: 500;
 }

 .top-right-menu ul li a:hover {
     color: #17161a;
 }

 .top-address p a i,
 .top-address p span i,
 .top-welcome p span i,
 .top-welcomet p span i {
     font-size: 13px;
     margin-right: 5px;
     color: #fff;
 }

 .top_crt_style .main_sticky_l {
     display: none;
 }

 .top_crmenu_l ul,
 .top_crt_style {
     background: #e77009;
     padding: 20px 0;
 }

 .single_header_address {
     text-align: left;
 }

 .creative_header_icon {
     float: left;
     margin-right: 10px;
     overflow: hidden;
 }

 .creative_header_icon i {
     font-size: 30px;
     margin-top: 5px;
     margin-left: 2px;
     display: inline-block;
     color: #fff;
 }

 .creative_header_address_text>h3 {
     font-size: 18px;
     margin: 0;
     padding: 0;
     color: #fff;
 }

 .top_crt_style .site-title a,
 .top_crt_style p,
 .top_crt_style p a {
     color: #fff;
 }

 .creative_header_address_text>p {
     margin: 0;
     overflow: hidden;
 }

 .tx_menuc_btn {
     text-align: right;
 }

 .tx_menuc_btn .tx_mc_btn {
     border-radius: 5px;
     display: inline-block;
     font-size: 15px;
     font-weight: 600;
     margin-left: 0;
     padding: 12px 26px;
     transition: .5s;
     background: #006ff9;
     color: #fff;
 }

 .tx_menuc_btn .tx_mc_btn:hover {
     background: #131414;
 }

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

 .top-welcome p,
 .top-welcomet p {
     padding: 0;
     margin: 0;
     color: #fff;
 }

 .top-welcome p span {
     font-size: 15px;
     font-weight: 500;
     color: #fff;
 }

 .top-welcome p span i {
     color: #fff;
 }

 .top-address.em-login a+a {
     margin-right: 0;
 }

 .top-address.em-login a+a:before {
     content: "|";
     margin-right: 12px;
 }

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

 .top-address li span {
     font-size: 15px;
     font-weight: 500;
     margin-right: 20px;
     color: #fff;
 }

 .top-address li span i {
     font-size: 13px;
     margin-right: 5px;
 }

 .top-right-menu {
     text-align: right;
 }

 /* ===== 2. Menu Area CSS ===== */
 .aplit_nav_area.postfix {
     transition: .3s;
 }

 .aplit_nav_area {
     background: #fff none repeat scroll 0 0;
 }

 .hmenu_box_style {
     background: #fff;
 }

 .hmenu_box_style {
     margin-top: 80px;
     border-radius: 5px;
 }

 .hmenu_box_style.hbg2 {
     margin-top: 0;
     padding: 0;
 }

 .trp_nav_area {
     position: fixed;
     left: 0;
     right: 0;
     top: 0;
     z-index: 9999;
     transition: .5s;
 }

 .tx_menu_together,
 .tx_bs_together {
     display: flex;
     justify-content: right;
     align-items: center;
 }

 .search_popup_button,
 .tx_mmenu_together {
     align-items: center;
     display: flex;
     justify-content: flex-end;
 }

 .logo-right,
 .logo-left {
     align-items: center;
 }

 .mobile_menu_logo.text-center {
     padding: 20px 0;
 }

 /* LOGO CSS */
 .logo a {
     display: inline-block;
 }

 /* logo sticky */
 .aplit-main-menu .logo a.main_sticky_main_l {
     display: block;
 }

 .aplit-main-menu .logo a.main_sticky_l {
     display: none;
 }

 .hmenu_box_style.hbg2 .logo a.main_sticky_l {
     display: block;
 }

 .hmenu_box_style.hbg2 .logo a.main_sticky_main_l {
     display: none;
 }

 /* logo pre */
 .aplit-main-menu .prefix .logo a.main_sticky_main_l {
     display: none;
 }

 .aplit-main-menu .prefix .logo a.main_sticky_l {
     display: block;
 }

 /* MENU text CSS */
 .aplit_menu ul {
     text-align: right;
     list-style: none;
 }

 .aplit_menu>ul>li {
     display: inline-block;
     position: relative;
 }

 .aplit_menu>ul>li>a {
     display: block;
     margin: 35px 12px;
     transition: .5s;
     position: relative;
     font-size: 16px;
     font-weight: 600;
     color: #272727;
     text-transform: capitalize;
     font-family: Poppins, sans-serif;
 }

 .hmenu_box_style.hbg2 .aplit_menu>ul>li>a {
     color: #fff;
 }

 .aplit_menu ul .sub-menu li a:hover,
 .aplit_menu ul .sub-menu li.current-menu-item a,
 .aplit_menu>ul>li.current-menu-item>a,
 .aplit_menu>ul>li>a:hover,
 .aplit_nav_area.prefix .aplit_menu>ul>li.current-menu-item>a,
 .aplit_nav_area.prefix .aplit_menu>ul>li>a:hover,
 .hbg2 .aplit_menu>ul>li.current-menu-item>a,
 .hbg2 .aplit_menu>ul>li>a:hover,
 .heading_style_2 .aplit_menu>ul>li.current-menu-item>a,
 .heading_style_2 .aplit_menu>ul>li>a:hover,
 .heading_style_3 .aplit_menu>ul>li.current-menu-item>a,
 .heading_style_3 .aplit_menu>ul>li>a:hover,
 .heading_style_4 .aplit_menu>ul>li.current-menu-item>a,
 .heading_style_4 .aplit_menu>ul>li>a:hover {
     color: #e77009;
 }

 .aplit_menu>ul>li>a:before,
 .aplit_menu>ul>li.current>a:before {
     background: #ffb600 none repeat scroll 0% 0;
     bottom: -7px;
     content: "";
     height: 2px;
     left: 0;
     margin: auto;
     opacity: 0;
     position: absolute;
     right: 0;
     transition: all 0.5s ease 0s;
     width: 15%;
     display: none;
 }

 .aplit_menu ul li:last-child a {
     margin-right: 0;
 }

 .aplit_menu>ul>li.current>a,
 .aplit_menu>ul>li:hover>a,
 .creative_header_menu>ul>li:hover>a {
     color: #e77009;
     background-color: transparent;
     color: #e77009;
 }

 .aplit_menu>ul>li:hover>a:before,
 .aplit_menu>ul>li.current>a:before {
     opacity: 1;
 }

 .transprent-menu .aplit_nav_area {
     left: 0;
     right: 0;
     top: 0;
     z-index: 9999;
     background-color: transparent;
     padding: 0;
     transition: .5s;
     position: absolute;
 }

 .aplit_nav_area.postfix {
     transition: .3s;
 }

 .aplit_nav_area.prefix,
 .hbg2 {
     background: rgba(0, 0, 0, 0.7);
 }

 .aplit_nav_area.prefix .right_sideber_menu i,
 .witr_search_wh .prefix .em-header-quearys .em-quearys-menu i {
     color: #fff;
 }

 .aplit_nav_area.prefix .aplit_menu>ul>li>a {
     color: #fff;
 }

 .aplit_nav_area.prefix .aplit_menu>ul>li.current>a {
     color: #e77009;
 }

 .witr_h_h2 .aplit_menu {
     justify-content: space-around;
     display: flex;
     align-items: center;
 }

 .landing_page .aplit_menu {
     justify-content: flex-end;
 }

 .tx_mmenu_together .donate-btn-header {
     padding: 0;
 }

 .prefix .main_menu_header_address_text h3,
 .prefix .main_menu_header_address_text h4 a,
 .prefix .main_menu_header_icon i {
     color: #fff;
 }

 .aplit_menu,
 .witr_h_h4 .aplit_menu {
     justify-content: flex-end;
     display: flex;
     align-items: center;
 }

 /* sub menu style */
 .aplit_menu ul .sub-menu {
     position: absolute;
     left: 0;
     top: 130%;
     width: 240px;
     text-align: left;
     background: #fff;
     margin: 0;
     padding: 15px 0;
     z-index: 9999;
     box-shadow: 0 0 30px rgb(0 0 0 / 9%);
     transition: .2s;
     opacity: 0;
     visibility: hidden;
 }

 .aplit_menu ul li:hover>.sub-menu {
     transition: .5s;
     opacity: 1;
     visibility: visible;
     top: 100%;
 }

 .aplit_menu ul .sub-menu li {
     position: relative;
     transition: .5s;
 }

 .aplit_menu ul .sub-menu li a {
     display: block;
     margin: 0;
     margin-bottom: 0;
     letter-spacing: normal;
     font-size: 15px;
     font-weight: 600;
     transition: .5s;
     color: #272727;
     visibility: inherit !important;
     padding: 7px 17px;
     text-transform: capitalize;
     font-family: Poppins, sans-serif;
 }

 .aplit_menu ul .sub-menu li:hover>a,
 .aplit_menu ul .sub-menu .sub-menu li:hover>a,
 .aplit_menu ul .sub-menu .sub-menu .sub-menu li:hover>a,
 .aplit_menu ul .sub-menu .sub-menu .sub-menu .sub-menu li:hover>a {
     color: #e77009;
 }

 .aplit_menu ul .sub-menu li:hover {
     margin-left: 8px;
 }

 /* sub menu 2 */
 .aplit_menu ul .sub-menu .sub-menu {
     left: 100%;
     top: 130%;
     opacity: 0;
     visibility: hidden;
 }

 .aplit_menu ul .sub-menu li:hover>.sub-menu {
     opacity: 1;
     visibility: visible;
     top: 0%;
 }

 /* sub menu 3 */
 .aplit_menu ul .sub-menu .sub-menu li {
     position: relative;
 }

 .aplit_menu ul .sub-menu .sub-menu .sub-menu {
     right: 100%;
     left: auto;
     top: 130%;
     opacity: 0;
     visibility: hidden;
 }

 .aplit_menu ul .sub-menu .sub-menu li:hover>.sub-menu {
     opacity: 1;
     visibility: visible;
     top: 0%;
 }

 /* sub menu 4 */
 .aplit_menu ul .sub-menu .sub-menu .sub-menu li {
     position: relative;
 }

 .aplit_menu ul .sub-menu .sub-menu .sub-menu li:hover>.sub-menu {
     opacity: 1;
     visibility: visible;
     top: 0%;
 }

 /* has menu icon */
 .aplit-main-menu .menu-item-has-children>a:after {
     margin-left: 5px;
     content: "\eac8";
     font-family: IcoFont !important;
     opacity: 1;
     font-size: 13px;
     font-weight: 600;
     width: 13px;
     height: 13px;
 }

 /* quearys area css */
 .aplit_menu.main-search-menu>.em-header-quearys,
 .em-quearys-top.msin-menu-search {
     display: inline-block;
 }

 .em-top-quearys-area {
     position: relative;
 }

 .aplit_menu div.em-header-quearys {
     text-align: center;
 }

 .em-quearys-inner {
     visibility: hidden;
     opacity: 0;
     display: flex;
     align-items: center;
     position: fixed;
     top: 0;
     left: -150%;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0);
     z-index: 10000;
     transition: all 0s 0s cubic-bezier(0.32, 0, 0, 1), transform .3s .15s cubic-bezier(0.32, 0, 0, 1), background .3s 0s cubic-bezier(0.32, 0, 0, 1);
     transform: scale(1.1);
     visibility: hidden;
     opacity: 0;
     left: -150%;
     background: rgba(0, 0, 0, 0);
 }

 .em-s-open {
     visibility: visible;
     opacity: 1;
     left: 0;
     background: #000000e6 !important;
     transform: scale(1);
 }

 .em-quearys-form {
     width: 100%;
     max-width: 895px;
     margin: auto;
     padding: 30px 0;
 }

 .top-form-control {
     position: relative;
 }

 .top-form-control input {
     background: transparent;
     color: #fff;
     font-size: 50px;
     font-weight: 500;
     height: 100px;
     padding: 0 40px 0 15px;
     width: 100%;
     border: none;
     transition: .5s;
     border-bottom: 3px solid #fff;
 }

 .top-form-control input::placeholder {
     color: #fff;
 }

 textarea,
 input {
     outline: none;
 }

 .top-form-control button.top-quearys-style {
     position: absolute;
     right: 6px;
     top: 50%;
     background: transparent;
     font-size: 45px;
     border: none;
     color: #fff;
     transform: translateY(-50%);
 }

 .main-search-menu .em-header-quearys .em-quearys-menu i {
     cursor: pointer;
     padding: 0;
     border-radius: 100px;
     height: 36px;
     width: 36px;
     line-height: 36px;
     display: inline-block;
     margin-left: 10px;
     font-size: 20px;
     color: #272727;
 }

 .em-quearys-top.msin-menu-search .em-quearys-menu i {
     margin-left: 10px;
     cursor: pointer;
     display: inline-block;
 }

 .mrt10 {
     margin-top: 10px;
 }

 .em-quearys-menu i {
     border-radius: 50px;
     text-align: center;
     height: 36px;
     width: 36px;
     line-height: 36px;
     font-size: 17px;
     background: #e77009;
     color: #fff;
 }

 .main-search-menu .em-header-quearys .em-quearys-menu i {
     cursor: pointer;
     background: transparent;
     color: #fff;
     padding: 0;
     border-radius: 100px;
     height: inherit;
     width: inherit;
     line-height: inherit;
     display: inline-block;
     margin-left: 25px;
     font-size: 20px;
     color: #272727 !important;
 }

 .kender_nav_area.prefix .right_sideber_menu i,
 .witr_search_wh .prefix .em-header-quearys .em-quearys-menu i {
     color: #fff !important;
 }

 .main_menu_address_a {
     display: flex;
     align-items: center;
     position: relative;
 }

 .main_menu_address_a::before {
     background: #fbfbfb40;
 }

 .main_menu_address_a:before {
     content: "";
     position: absolute;
     width: 1px;
     height: 107px;
     left: 0;
 }

 .main_menu_header_icon {
     margin-left: 25px;
     margin-right: 10px;
 }

 .main_menu_header_icon i {
     color: #e77009;
     font-size: 30px;
 }

 .main_menu_header_address_text h3,
 .main_menu_header_address_text h4 a {
     margin: 0;
     font-weight: 600;
     font-size: 18px;
 }

 .main_menu_header_address_text h3 {
     color: #e77009;
 }

 .main_menu_header_address_text h4 {
     margin-bottom: 0;
     color: #030925;
 }

 /*=======================
#2 aplit mobile menu css
========================*/
 .mobile-menu {
     display: none !important;
 }

 @media (max-width: 991px) {

     .search_popup_button,
     .tx_mmenu_together {
         display: none;
     }

 }

 .mobile_logo_area {
     display: none !important;
 }

 .mean-container a.meanmenu-reveal {
     display: none !important;
 }

 .mean-container .mean-nav>ul {
     padding: 0;
     margin: 0;
     width: 100%;
     list-style-type: none;
     display: block !important;
 }

 .mean-container .mean-bar {
     background: #fff;
     padding: 0;
 }

 .mean-container .mean-nav ul li {
     border-top: 0px solid #ddd;
 }

 .mean-container .mean-nav ul li li a,
 .mean-container .mean-nav ul li a {
     color: #444;
 }

 .mean-container .mean-nav ul li li a {
     border-top: 1px solid #ddd;
 }

 .mean-container .mean-nav ul li a:hover {
     color: #ff4a17;
 }

 .mobile_p {
     position: fixed;
     right: 0;
     width: 300px;
     padding: 80px 20px 0px;
     overflow-y: scroll;
     top: 0;
     height: 100%;
     z-index: 9999;
     display: block;
     transition: 0.5s all;
     box-shadow: 0 0 30px rgb(0 0 0 / 7%);
     transform: translateX(100%);
     background: #ffffff;
 }

 .tx-s-open {
     transform: translateX(0);
 }

 .mobile_p .tuetion_theme_widget>div.widget_block {
     padding: 0;
 }

 .mobile_p .tuetion_theme_widget>div {
     padding: 20px 0px 20px;
     box-shadow: none;
 }

 .mobile_p {}

 .mean-container .mean-nav ul li a {
     border: 0;
     width: 100%;
     border-top: 1px solid #ddd;
     font-size: 14px;
     padding: 12px 5px;
     font-weight: 500;
     display: block;
 }

 .mean-container .mean-nav ul li a.mean-expand {
     width: auto;
 }

 .mean-container .mean-nav ul li li a {}

 .mobile_opicon {
     text-align: right;
     padding: 4px 0;
 }

 .mean-container .mean-nav>ul>li:first-child>a {
     border-top: 0;
 }

 .mobilemenu_con {
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .T1Hhmma1Qv i {
     font-size: 26px;
 }

 .JPiKgYOAIa .mobile_menu_logo {
     margin-bottom: 20px;
 }

 .zxGgqVlgD4 {
     position: absolute;
     right: 30px;
     top: 50px;
 }

 .mobile_overlay {
     top: 0px;
     left: 0px;
     right: 0px;
     bottom: 0px;
     opacity: 0;
     z-index: 999;
     width: 100vw;
     height: 100vh;
     visibility: hidden;
     position: fixed;
     background: rgba(0, 0, 0, 0.8);
     transition: all 0.3s ease-out 0s;
 }

 .mobile_overlay.mactive {
     opacity: 1;
     visibility: visible;
 }

 /* menu button */
 a.dtbtn {
     border: none;
     display: block;
     font-size: 16px;
     font-weight: 500;
     border-radius: 5px;
     padding: 11px 25px;
     color: #fff;
     background: #e77009;
     margin-left: 20px;
 }

 a.dtbtn:hover {
     background: #1f2230;
     color: #fff;
 }

 /* popup menu css */
 .menu_popup_option {
     margin-left: 10px;
 }

 .right_sideber_menu i {
     font-size: 22px;
     cursor: pointer;
     color: #272727;
 }

 .right_sideber_menu_inner {
     background: #fff;
     position: fixed;
     right: 0;
     width: 400px;
     top: 0;
     height: 100%;
     z-index: 999;
     overflow: auto;
     padding: 80px 40px 0;
     display: block;
     -webkit-transition: .5s all;
     transition: .5s all;
     box-shadow: 0 0 30px rgb(0 0 0 / 7%);
     -webkit-transform: translateX(100%);
     transform: translateX(100%);
 }

 .tx-s-open {
     -webkit-transform: translateX(0);
     transform: translateX(0);
 }

 .right_sideber_content .blog-left-side>div {
     padding: 0;
     box-shadow: none;
     background: #fff;
     margin-bottom: 30px;
     border-radius: 8px;
 }

 .blog-left-side .widget h2 {
     line-height: 17px;
     margin-bottom: 20px;
     padding-bottom: 12px;
     position: relative;
     margin-top: 0;
 }

 .blog-left-side .widget h2:after,
 .blog-left-side .widget h2:before {
     content: '';
     position: absolute;
     top: 50%;
     -webkit-transform: translateY(-50%);
     transform: translateY(-50%);
     border-radius: 0;
     -webkit-animation-duration: 3s;
     animation-duration: 3s;
     -webkit-animation-timing-function: linear;
     animation-timing-function: linear;
     -webkit-animation-iteration-count: infinite;
     animation-iteration-count: infinite;
     margin-top: 17px;
     left: 0;
 }

 .blog-left-side h2.widget-title:before {
     width: 26%;
     border: 0;
     height: 2px;
 }

 .blog-left-side .widget ul {
     list-style: none;
     margin: 0;
     padding: 0;
 }

 .blog-left-side .widget h2 {
     border-bottom: 0;
 }

 .blog-left-side>.widget>ul>li {
     margin: 0 0 10px;
     padding-bottom: 10px;
 }

 .blog-left-side .widget ul li {
     padding-left: 20px;
     position: relative;
 }

 .blog-left-side .widget>ul>li:not(:last-child) {
     border-bottom: 1px solid rgba(0, 0, 0, .12);
 }

 .blog-left-side .widget ul li:before {
     content: "\eaa0";
     font-family: IcoFont !important;
     font-size: 18px;
     left: 0;
     position: absolute;
 }

 .blog-left-side .widget a {
     color: #17161a;
 }

 table {
     border-collapse: collapse;
     border-spacing: 0;
     font-size: 18px;
     line-height: 2;
     margin: 0 0 20px;
     width: 100%;
 }

 #wp-calendar {
     margin-bottom: 20px;
     overflow: auto;
     vertical-align: top;
     width: 100%;
     margin: 0;
     font-size: 13px;
 }

 #wp-calendar caption {
     font-size: 14px;
     font-weight: 400;
     margin-bottom: 10px;
     text-align: left;
     text-transform: uppercase;
 }

 table#wp-calendar th {
     font-size: 13px;
     font-weight: 700;
     padding: 5px 10px;
     text-align: center;
     text-transform: uppercase;
     vertical-align: middle;
     border: 1px solid #e5e5e5;
 }

 table#wp-calendar td#today {
     background: #e53e29;
 }

 .right_sideber_menu_inner .blog-left-side .widget a {
     color: #454545;
 }

 .right_sideber_menu_inner .blog-left-side .widget ul li {
     position: relative;
 }

 .right_sideber_menu_inner .blog-left-side .widget ul li:before {
     content: "\eaa0";
     font-family: IcoFont !important;
     font-size: 18px;
     left: 0;
     position: absolute;
 }

 .right_side_icon.right_close_class {
     position: absolute;
     right: 30px;
     top: 50px;
 }

 .prefix .right_close_class .right_sideber_menu i,
 .right_close_class .right_sideber_menu i {
     font-size: 22px;
     font-weight: 700;
     color: #e53e29;
 }

 .right_sideber_menu i {
     font-size: 22px;
     cursor: pointer;
 }

 .right_sideber_menu i:hover {
     color: #000000;
 }

 .witr_slick_content .rhyarXYtHR.active {
     color: #fff;
     border-style: solid;
     border-width: 1px 1px 1px 1px;
     border-color: #fff;
     background: transparent;
 }

 .witr_slick_content .rhyarXYtHR.active:hover {
     background: #e77009;
     border-color: #e77009;
 }

 /* ===== 3. Slider Area CSS ===== */
 .witr_swiper_area {
     overflow: hidden;
     position: relative;
 }

 .witr_swiper_height {
     height: 850px;
 }

 .witr_swiper_height,
 .wittr_gallery_swiper {
     background-size: cover;
     background-position: center center;
     position: relative;
 }

 .witr_sw_text_area {
     margin: auto;
     height: 100%;
     width: 60%;
 }

 .witr_swiper_content {
     position: relative;
     top: 50%;
     transform: translateY(-50%);
     z-index: 1;
 }

 .witr_swiper_content h1 {
     color: #fff;
     font-weight: 600;
 }

 .text-left .witr_swiper_content h1,
 .text-left .witr_swiper_content h2,
 .text-left .witr_swiper_content h3,
 .text-left .witr_swipers_title h4 {
     margin: 21px auto 3px 0;
 }

 .witr_swiper_content h1 {
     font-size: 20px;
     display: inline;
 }

 .witr_swiper_content h2,
 .witr_swiper_content h3 {
     font-size: 50px;
     font-weight: 700;
     line-height: 1;
     color: #fff;
 }



 .witr_swiper_content p {
     color: #fff;
 }



 .text-left .witr_swiper_content p {
     margin: 37px auto 15px 0;
 }

 .witr_swiper_content p {
     font-weight: 700;
     font-size: 19px;
 }

 .DfqESGgWRq {
     margin-top: 53px;
 }

 .text-left .SPO7gtUFcd {
     text-align: left;
 }

 .witr_swiper_content .rhyarXYtHR {
     color: #1F2230;
     background: #fff;
 }

 .rhyarXYtHR {
     border-radius: 5px;
     font-size: 16px;
     font-weight: 500;
 }

 .rhyarXYtHR {
     padding: 16px 45px;
     text-align: center;
     position: relative;
     margin-right: 15px;
     z-index: 2;
     transition: 1s;
     display: inline-block;
     background: #e77009;
     color: #fff;
 }

 .rhyarXYtHR:hover {
     background: #1F2230;
     color: #fff;
 }

 .witr_swiper_area .text-left .witr_slider_thumb {
     right: 100px;
 }

 .text-left .witr_slider_thumb {
     position: absolute;
     right: 100px;
     top: 52%;
     transform: translateY(-50%);
     z-index: 99;
 }

 .witr_slider_thumb_inner img {
     border-radius: 10px;
 }

 .witr_shape_item_inner {
     position: absolute;
     content: "";
     transition: .5s;
     z-index: 9;
     top: 51px;
 }

 .witr_shape_image {
     animation: witr_movelr_box45 5s linear 1s infinite alternate running;
 }

 @keyframes witr_movelr_box45 {
     0% {
         transform: translateX(0px);
     }

     100% {
         transform: translateX(45px);
     }
 }

 /* ===== 4. Feature Area CSS ===== */
 .ap_fe_area {
     padding: 115px 0 90px 0;
 }

 .em-service2 {
     box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.09);
     background: #fff;
     border-radius: 10px;
     border-style: solid;
     border-width: 0 0 5px 5px;
     border-color: #fff;
     padding: 40px 0 20px 30px;
     text-align: left;
     transition: .5s;
     margin-bottom: 30px;
 }

 .witr_s_flex {
     display: flex;
 }

 .service_top_text {
     display: block;
 }

 .em-service2.sleft .em-service-icon {
     margin: 0 14px 0 0;
 }

 .em-service-icon i {
     font-size: 60px;
     height: auto;
     width: auto;
     line-height: normal;
     background: 0 0;
     border: none;
     color: #e77009;
     display: inline-block;
     text-align: center;
 }

 .service_top_text i,
 .em-service2.sleft .em-service-icon {
     margin: 0 14px 0 0;
 }

 .em-service-title h3 {
     padding: 8px 0 0 0;
     transition: .5s;
     margin-bottom: 8px;
 }

 .em-service2:hover {
     border-color: #e77009;
 }

 /* ===== 5. About Area CSS ===== */
 .bpQENp60Wf {
     padding: 0 0 90px 0;
 }

 .mqRYkbUcmT {
     position: relative;
     padding: 0 60px 0 0;
 }

 .ap_ab_witr .witr_section_title {
     margin-bottom: 35px;
 }

 .ap_ab_witr .witr_section_title_inner h3 {
     padding: 15px 0 0 0;
 }

 .ap_ab_witr .witr_section_title_inner p {
     padding: 15px 0 0 0;
 }

 .ap_ab_witr .em-service2 {
     box-shadow: none;
     border-width: 0;
     padding: 0;
     margin-bottom: 18px;
 }

 .witr_s_flex {
     display: flex;
 }

 .ap_ab_witr .all_icon_color i,
 .ap_ab_witr .em-service2.sleft .em-service-icon {
     margin: 0 5px 0 0;
 }

 .ap_ab_witr .em-service2 .em-service-icon i {
     display: inline-block;
     height: 20px;
     width: 20px;
     text-align: center;
     border-radius: 50%;
     line-height: 20px;
     font-size: 16px;
     transition: all .5s ease 0s;
     background: #e77009;
     color: #fff;
 }

 .ap_ab_witr .em-service2 .em-service-inner {
     overflow: hidden;
     width: 100%;
 }

 .ap_ab_witr .em-service2 h3 {
     margin: 0;
     padding: 0;
 }

 .ap_ab_witr .em-service2 h3 a {
     color: #888888;
     font-size: 16px;
     font-weight: 600;
 }

 .ap_ab_witr .em-service2 h3:hover,
 .ap_ab_witr .em-service2 h3 a:hover {
     color: #e77009;
 }

 .ap_ab_witr .rhyarXYtHR {
     margin-top: 30px;
 }

 .mqRYkbUcmT .witr_shape_item_inner {
     top: 175px;
     right: 35px;
 }

 .ap_ab_witr {
     padding: 15px 0 0;
 }

 .ab_page_ab {
     padding: 120px 0 120px 0;
 }

 .ab_page_ab .mqRYkbUcmT .witr_shape_item_inner {
     top: 40px;
     right: 35px;
 }

 .cont_page_ab .mqRYkbUcmT .witr_shape_item_inner {
     top: 55px;
     right: 35px;
 }

 /* ===== 6. Service Area CSS ===== */
 .ap_ser_area {
     padding: 115px 0 60px 0;
 }

 .ap_ser_area .witr_section_title {
     margin-bottom: 40px;
 }

 .singleSS {
     padding: 48px 20px 40px 20px;
     box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.15);
     position: relative;
     z-index: 1;
     transition: .5s;
     margin-bottom: 30px;
 }

 .detail_SS {
     position: relative;
     padding: 0 0 0;
     z-index: 99;
 }

 .detail_SS h3 {
     line-height: 31px;
     margin-bottom: 10px;
     margin-top: 8px;
     padding: 15px 0px 10px 0px;
 }

 .detail_SS p {
     margin-bottom: 28px;
 }

 .service-btn {
     position: relative;
 }

 .witr_sbtn_s8 a {
     padding: 12px 30px;
     position: relative;
     transition: .5s;
     overflow: hidden;
     text-align: center;
     border: 1px solid #e77009;
     display: inline-block;
     border-radius: 5px;
     font-size: 16px;
     font-weight: 500;
 }

 .witr_sbtn_s8 a i {
     position: absolute;
     display: inline-block;
     height: 100%;
     transition: .5s;
     padding: 16px 15px;
     left: 0;
     right: 0;
     top: 0;
     background: #e77009;
     color: #fff;
     transition: .5s;
 }

 .service-btn>a:hover {
     background: #e77009;
     color: #fff;
 }

 .witr_sbtn_s8 a:hover i {
     opacity: 0;
 }

 /* ===== 7. Team Area CSS ===== */
 .ap_team_area {
     background-image: url("../images/team-bg.png");
     background-position: center center;
     background-size: cover;
     padding: 140px 0 200px 0;
     position: relative;
 }

 .ap_team_area .witr_shape_item_inner {
     position: absolute;
     content: "";
     transition: .5s;
     z-index: 9;
     top: 95px;
     left: 0;
 }

 .ap_team_area .slick-dots {
     bottom: -80px;
 }

 .ap_team_area .slick-dots li button {
     background: #1F2230;
 }

 .ap_team_area .witr_section_title {
     margin-bottom: 40px;
 }

 .ap_team_area .witr_section_title_inner h2,
 .ap_team_area .witr_section_title_inner h3 {
     color: #fff;
 }

 .team-part {
     border-radius: 5px;
     overflow: hidden;
     box-shadow: 0 5px 4px 0 rgba(0, 0, 0, .05);
     transition: .5s;
 }

 .witr_team_section {
     position: relative;
     text-align: center;
 }

 .witr_team_section:before {
     content: "";
     position: absolute;
     height: 100%;
     width: 100%;
     left: 0;
     top: 0;
     opacity: 0;
     transition: .5s;
     background: #02010100;
 }

 .post_team10_area .team_o_icons {
     margin-top: 0;
     padding: 0;
     position: absolute;
     top: 50%;
     left: -25%;
     transform: translateY(-50%);
     transition: .5s;
 }

 .post_team10_area .team_o_icons ul li {
     display: block;
 }

 .post_team10_area .team_o_icons ul li a {
     width: 55px;
     height: 55px;
     line-height: 55px;
     border: none;
     border-radius: 30px;
     margin: 0;
     font-size: 20px;
     margin: 10px 0 0 10px;
     background: #e77009;
     display: block;
     color: #fff;
     text-align: center;
 }

 .witr_team_content {
     padding: 23px 5px 23px;
     background: #fff;
 }

 .witr_team_content h5 {
     margin: 0;
 }

 .witr_team_content span {
     font-size: 18px;
     color: #e77009;
 }

 .post_team10_area .team-part:hover .team_o_icons {
     left: 0;
 }

 .team_o_icons ul li a:hover {
     background: #1F2230;
 }

 /* ===== Team Area CSS ===== */
 .ab_page_team {
     background-image: none;
     padding: 115px 0 170px 0;
 }

 .ab_page_team .witr_section_title_inner h2 {
     color: #e77009;
 }

 .ab_page_team .witr_section_title_inner h3 {
     color: #1f2230;
 }

 .ab_page_team .team-part {
     margin-bottom: 30px;
 }

 .ab_page_team .slick-dots li.slick-active button {
     background: #e77009;
 }

 .ab_page_team .slick-dots {
     bottom: -50px;
 }

 .ab_page_team .slick-dots li.slick-active button {
     background: #e77009;
 }

 /* ===== 8. Brand Area CSS ===== */
 .ap_brand_area {
     background: #e77009;
     padding: 55px 0 68px 0;
 }

 /* ===== Area CSS ===== */
 .slide_items {
     text-align: center;
 }

 .solu_pag_brnd {
     padding: 85px 0 100px;
 }

 /* ===== 9. Video Area CSS ===== */
 .witr_videobg_image img {
     width: 100%;
 }

 .witr_play_vi {
     position: relative;
 }

 .witr_about_image img {
     width: 100%;
 }

 .play-overlay {
     position: absolute;
     left: 50%;
     top: 50%;
     transform: translateX(-50%) translateY(-50%);
 }

 .play-overlay a {
     position: relative;
     display: inline-block;
     width: 75px;
     height: 75px;
     font-size: 23px;
     border-radius: 100%;
     background: #e77009;
 }

 .play-overlay i {
     color: #fff;
     position: absolute;
     left: 50%;
     top: 50%;
     transform: translateX(-50%) translateY(-50%);
 }

 @keyframes witr_squares {
     0% {
         transform: scale(1);
         opacity: 0
     }

     20% {
         transform: scale(1.24);
         opacity: 1
     }

     100% {
         transform: scale(2.1);
         opacity: 0
     }
 }

 .vd_left_cont {
     padding: 20px 20px 20px 0;
 }

 /* ===== Video Area CSS ===== */
 .video-item a {
     position: relative;
     display: inline-block;
     width: 100px;
     height: 100px;
     font-size: 28px;
     border-radius: 100%;
     background: #e77009;
 }

 .video-item a::before {
     position: absolute;
     content: '';
     width: 100%;
     height: 100%;
     background: #e77009;
     border-radius: 50%;
     top: 0;
     animation-fill-mode: both;
     animation: witr_squares 1.5s ease-in-out infinite;
     left: 0;
     right: 0;
     bottom: 0;
 }

 @keyframes witr_squares {
     0% {
         transform: scale(1);
         opacity: 0
     }

     20% {
         transform: scale(1.24);
         opacity: 1
     }

     100% {
         transform: scale(2.1);
         opacity: 0
     }
 }

 .if_histr_area {
     padding: 97px 0 50px;
 }

 /* ===== 10. Counter Area CSS ===== */
 .ap_coun_area {
     padding: 0 0 80px 0;
 }

 .witr_counter_single {
     text-align: center;
     margin-bottom: 30px;
 }

 .witr_counter_number_inn {
     overflow: hidden;
 }

 .witr_counter_number_inn h3,
 .witr_counter_number_inn span {
     font-size: 40px;
     display: inline-block;
     font-weight: 700;
     margin-bottom: 0;
     color: #e77009;
 }

 .witr_counter_number_inn span {
     line-height: 0;
 }

 .all_counter_color h4,
 .all_counter_color h1 {
     font-family: "Poppins", Sans-serif;
     font-size: 20px;
     font-weight: 600;
     margin: 7px 0 0 0;
 }

 /* ===== Counter Area CSS ===== */
 .ab_page_coun {
     background: #e77009;
     padding: 80px 0 60px 0;
 }

 .ab_page_coun .witr_counter_single {
     text-align: left;
 }

 .ab_page_coun .witr_counter_icon {
     float: left;
 }

 .ab_page_coun .witr_counter_number_inn {
     overflow: hidden;
 }

 .ab_page_coun .witr_counter_number_inn h3,
 .ab_page_coun .witr_counter_number_inn span {
     font-size: 36px;
     display: inline-block;
     font-weight: 700;
     margin-bottom: 0;
     color: #fff;
 }

 .ab_page_coun .witr_counter_number_inn span {
     line-height: 0;
 }

 .ab_page_coun .all_counter_color h4,
 .ab_page_coun .all_counter_color h1 {
     color: #fff;
     font-family: "DM Sans", Sans-serif;
     font-size: 18px;
     margin: 7px 0 0 0;
 }

 .ab_page_coun .all_counter_color i {
     color: #fff;
     font-size: 40px;
     transform: rotate(0deg);
     margin: 17px 23px 0 0;
     display: inline-block;
 }

 /* ===== 11. Portfolio Area CSS ===== */
 .ap_proj_area {
     background-image: url("../images/project-bg.png");
     background-position: center center;
     background-size: cover;
     padding: 150px 0 205px 0;
 }

 .ap_proj_area .witr_section_title {
     margin-bottom: 35px;
 }

 .ap_proj_area .witr_section_title_inner h1,
 .ap_proj_area .witr_section_title_inner h2,
 .ap_proj_area .witr_section_title_inner h3 {
     color: #fff;
 }

 .witr_single_pslide {
     margin-bottom: 0;
     overflow: inherit;
 }

 .witr_pslide_image {
     overflow: hidden;
     position: relative;
     transition: .5s;
 }

 .toggle_pslide {
     display: flex;
     align-items: center;
 }

 .witr_pslide_image::before {
     position: absolute;
     content: '';
     top: 0;
     left: 0;
     bottom: 0;
     right: 0;
     transform: scale(0);
     transition: .5s;
     z-index: 1;
     opacity: 0.5;
     background: #222429;
 }

 .witr_pslide .witr_pslide_custom a span:hover {
     background: #3cdce0;
 }

 .witr_single_pslide:hover .witr_pslide_image img,
 .witr_single_pslide:hover .witr_pslide_image:before {
     transform: scale(1.1);
 }

 .witr_pslide_image img {
     margin-right: auto;
     margin-left: auto;
     transition: .5s;
     width: 100%;
 }

 .witr_pslide4.ps3.ps1 .witr_content_pslide_text {
     bottom: -170px;
     padding: 40px 30px 15px;
     border-radius: 5px;
     left: 20px;
     right: 20px;
     text-align: left;
     opacity: 1;
     box-shadow: 0 0 65px 0 #00000017;
     background: #fff;
     z-index: 2;
     position: absolute;
     transition: .5s;
 }

 .witr_pslide4.witr_pslide3 .witr_pslide_custom {
     bottom: auto;
     top: 37px;
     z-index: -1;
     right: 10%;
     position: absolute;
     transition: .5s;
 }

 .witr_content_pslide_text a {
     display: inline-block;
     color: #222429;
 }

 .witr_pslide3 .witr_pslide_custom a span {
     width: 45px;
     height: 45px;
     line-height: 45px;
     font-size: 18px;
     box-shadow: 0 0 65px 0 #00000014;
     text-align: center;
     border-radius: 30px;
     background: #e77009;
     color: #fff;
     display: inline-block;
     transition: .5s;
 }

 .witr_pslide3 .witr_pslide_custom a span:hover {
     background: #1f2230;
 }

 .ps1 .witr_content_pslide {
     float: left;
 }

 .witr_content_pslide_text h3 {
     margin-bottom: 0;
     color: #222429;
 }

 .ps3 .witr_content_pslide_text h3 a {
     margin-bottom: 3px;
     color: #222429;
     display: inline-block;
 }

 .witr_content_pslide_text p {
     margin-bottom: 4px;
     color: #222429;
 }

 .witr_pslide4.ps3.ps1 .witr_single_pslide:hover .witr_content_pslide_text {
     bottom: 20px;
 }

 .ps1 .witr_content_pslide_text a:hover,
 .ps1 .witr_content_pslide_text h3:hover,
 .ps3.ps1 .witr_content_pslide_text a:hover {
     color: #e77009;
 }

 /* ===== Portfolio Area CSS ===== */
 .port_area {
     padding: 98px 0 85px 0;
 }

 .port_area .witr_section_title_inner h3 {
     padding: 15px 0 0 0;
 }

 .port_grid .witr_section_title_inner h2 {
     font-size: 23px;
 }

 .port_area .witr_section_title {
     margin-bottom: 25px;
 }

 .port_grid .witr_section_title {
     margin-bottom: 45px;
 }

 .port2clmn .pstyle2 .prot_content_inner {
     top: 60%;
     transition: all .3s ease-in-out .3s;
     opacity: 0;
 }

 .port2clmn .picon a {
     font-size: 20px;
     color: #fff;
     background: #e77009;
 }

 .port2clmn .witr_section_title {
     margin-bottom: 55px;
 }

 .port2clmn .portfolio_nav ul li {
     margin: 0 5px 10px;
     transition: .5s;
     border: 1px solid #f3eaea;
 }

 .port2clmn .portfolio_nav ul li.current_menu_item,
 .port2clmn .portfolio_nav ul li:hover {
     border-color: #e77009;
     background: #e77009;
     color: #fff;
 }

 .p3clmn .pstyle2 .prot_content_inner {
     top: 50%;
     transition: all .3s ease-in-out .3s;
     opacity: 1;
 }

 .p3clmn .picon a {
     font-size: 20px;
 }

 .positi_3.pprotfolio4 {
     padding: 20px 10px 23px;
     border: none;
     position: absolute;
     bottom: -100px;
     left: 0;
     right: 0;
     z-index: 9;
     transition: .5s;
     text-align: center;
 }

 .single_protfolio:hover .positi_3.pprotfolio4 {
     bottom: 0;
 }

 .positi_3.pprotfolio4 {
     background: #e77009;
 }

 .positi_3 .porttitle_inner4 h3 a,
 .positi_3 .porttitle_inner4 p span {
     color: #fff;
 }

 .portfolio_nav ul {}

 .portfolio_nav ul li {
     display: inline;
 }

 .portfolio_nav ul li {
     cursor: pointer;
     display: inline-block;
     font-weight: 500;
     margin: 0 5px 10px;
     padding: 10px 20px;
     position: relative;
     transition: .5s;
     border: 1px solid #f3eaea;
     background: #FFFFFF00;
     border-radius: 5px;
 }

 .prot_wrap {
     overflow: hidden;
 }

 .single_protfolio {
     position: relative;
     overflow: hidden;
     margin-bottom: 25px;
 }

 .prot_thumb {}

 .prot_thumb img {
     display: block;
     transform: scale(1);
     transition: all 0.5s ease 0s;
     width: 100%;
 }

 .single_protfolio:hover .prot_thumb img {
     transform: scale(1.1);
 }

 .prot_content {
     position: absolute;
     text-align: center;
     transition: .5s;
     right: 0;
     top: 0;
     bottom: 0;
     left: 0;
     opacity: 0;
     z-index: 9;
 }

 .multi_gallery.prot_content {
     height: 90%;
     width: 80%;
     right: 10%;
     top: 5%;
     bottom: 5%;
     left: 10%;
 }

 .single_protfolio:hover .prot_content {
     opacity: 1;
 }

 .prot_content h3 {
     margin: 0;
     text-transform: capitalize;
     font-size: 23px;
     margin-bottom: 0;
 }

 .prot_content h3 a {
     font-size: 23px;
     font-weight: 700;
     text-transform: capitalize;
     transition: .5s;
     color: #fff;
     margin-bottom: 0;
     display: inline-block;
 }

 .prot_content h3 a:hover {
     color: #e77009;
 }

 .prot_content p {
     line-height: 1.2;
     margin: 5px 0 0;
 }

 .prot_content p span {
     display: inline-block;
     color: #fff;
 }

 .single_protfolio:hover .prot_content {
     opacity: 1;
     transform: scale(1, 1);
 }

 .porttitle_inner span,
 .porttitle_inner4 span,
 .prot_content span {
     position: relative;
     margin: 0 2px;
 }

 .prot_content span:before,
 .porttitle_inner4 span:before,
 .porttitle_inner span:before {
     bottom: 0;
     content: ",";
     position: absolute;
     right: -5px;
 }

 .porttitle_inner span:last-child:before,
 .prot_content span:last-child:before,
 .porttitle_inner4 span:last-child:before {
     content: "";
 }

 .nospace.col-xs-12 {
     padding: 0px;
 }

 .nospace .single_protfolio {
     margin-bottom: 0px;
 }

 .portfolio_nav {
     margin-bottom: 30px;
 }

 /* load button css */
 .gallery_load_button a {
     padding: 7px 15px;
     display: inline-block;
     font-size: 17px;
     margin-top: 0px;
 }

 .prot_wrap.nospace .gallery_load_button a {
     margin-top: 30px;
 }

 .prots-contentg p {}

 /*style 1 */
 .em_port_content {
     height: 100%;
     opacity: 1;
     position: absolute;
     right: 0;
     text-align: center;
     top: 0;
     transition: all 0.5s ease 0s;
     width: 100%;
     z-index: 9;
     left: 0;
     top: -100%;
     width: 100%;
     transition: .5s;
     text-align: center;
 }

 .pstyle_1 .porttitle_inner h3 {
     padding-bottom: 0px;
 }

 .pstyle_1 .prot_content p {
     margin: 2px 0 0;
 }

 .pstyle_1 .single_protfolio {
     transition: .5s;
 }

 .portfolio_readmore_btn {
     padding-top: 23px;
 }

 .portfolio_readmore_btn>a {
     border-radius: 5px;
     display: inline-block;
     padding: 6px 21px;
     text-transform: uppercase;
     transition: .3s;
     border: 1px solid transparent;
 }

 .pstyle_1 .picon a {
     background: 0 0;
     border-radius: 5px;
     display: inline-block;
     font-size: 25px;
     height: 50px;
     line-height: 50px;
     margin: 0 8px 11px;
     width: 50px;
     transition: .5s;
     color: #fff;
 }

 .picon a:hover {
     border-color: #191f2d;
     background: #191f2d;
 }

 .prot_thumb {
     overflow: hidden;
     position: relative;
 }

 .port_2.pprotfolio4 {
     box-shadow: 0px 0px 109px 0px rgba(35, 88, 94, 0.12);
     padding: 20px 10px 23px;
     text-align: center;
     background: #ffffff;
     position: relative;
     margin: 0 30px;
     z-index: 999;
     border-radius: 5px;
     transition: 3s;
     display: none;
 }

 .porttitle_inner4 p {
     margin: 0;
 }

 .porttitle_inner4 h3 a:hover {
     color: #e77009;
 }

 .single_protfolio:hover .port_2.pprotfolio4 {
     display: block;
     margin-top: -50px;
     transition: 3s;
 }

 .porttitle_inner4 h3 {
     margin: 0;
     text-transform: capitalize;
     color: #454545;
     font-size: 25px;
     line-height: 1;
 }

 .porttitle_inner4 h3 a {
     color: #454545;
     font-size: 25px;
     font-weight: 900;
 }

 .porttitle_inner4 p span {
     display: inline-block;
     padding-top: 5px;
     color: #e77009;
 }

 .porttitle_inner4 p span {
     display: inline-block;
     padding-top: 5px;
     color: #e77009;
 }

 .portfolio_nav ul li.current_menu_item,
 .portfolio_nav ul li:hover {
     color: #e77009;
 }

 .prot_content {
     background: #e7700980;
 }

 .pprotfolio4 {
     box-shadow: 0 10px 16px 0 rgba(0, 0, 0, .7);
     padding: 20px 10px 23px;
     border: none;
 }

 .portfolio_nav {
     text-align: center;
 }

 .page-numbers span.current,
 .paginations a.current,
 .paginations a:hover {
     border-color: #e77009;
     background: #e77009;
     color: #fff;
 }

 ul.page-numbers a.page-numbers {
     box-shadow: 0 10px 40px 0 rgba(50, 65, 141, .12);
 }

 .page-numbers,
 .tutor-pagination-wrap a,
 .tutor-pagination-wrap span.page-numbers.current,
 a.page-numbers {
     border-radius: 5px;
     margin-right: 10px;
     padding: 15px 24px;
     font-size: 19px;
     line-height: 1;
     transition: .5s;
 }

 .page-numbers span.current,
 .paginations a {
     display: inline-block;
     font-weight: 500;
     margin: auto 5px;
 }

 .paginations a {
     color: #888;
 }

 .page-numbers li {
     display: inline-block;
 }

 .paginations {
     text-align: center;
     margin-top: 20px;
 }

 .portfolio_4column_gutter .single_protfolio {
     margin-bottom: 0px;
 }

 /* port style 3 */
 .em_plus_port {
     position: absolute;
     bottom: 20px;
     right: 30px;
     z-index: 99;
 }

 .prot_content_inner {
     left: 50%;
     position: absolute;
     top: 60%;
     transform: translateX(-50%) translateY(-50%);
     width: 100%;
     z-index: 10;
     opacity: 0;
     transition: all .3s ease-in-out .3s;
 }

 .single_protfolio:hover .prot_content_inner {
     top: 50%;
     opacity: 1;
 }

 .picon a {
     border-radius: 5px;
     display: inline-block;
     font-size: 20px;
     height: 50px;
     line-height: 50px;
     margin: 0 3px 11px;
     width: 50px;
     text-align: center;
     color: #fff;
     background: #e77009;
 }

 .picon a:hover {
     border-color: #1f2230;
     background: #1f2230;
 }

 /* style 1 */
 .em_port_content {
     height: 100%;
     width: 100%;
 }

 .pstyle_1 .porttitle_inner h3 {
     padding-bottom: 0px;
 }

 .pstyle_1 .prot_content p {
     margin: 2px 0 0;
 }

 .pstyle_1 .single_protfolio {
     transition: .5s;
     margin-bottom: 30px;
 }

 .portfolio_readmore_btn {
     padding-top: 23px;
 }

 .portfolio_readmore_btn>a {
     border-radius: 5px;
     display: inline-block;
     padding: 6px 21px;
     text-transform: uppercase;
     transition: .3s;
     border: 1px solid transparent;
 }

 .portfolio_grid_area .portfolio_nav {
     padding: 0px 0 30px;
 }

 /* ===== Portfolio Area CSS ===== */
 .pstyle2.pstyle3 .prot_content_inner {
     left: 3000px;
     position: absolute;
     top: 60%;
     transform: translateX(-50%) translateY(-50%);
     width: 100%;
     z-index: 10;
     transition: all .3s ease-in-out .3s;
     opacity: 0;
     padding: 15px 0 20px 20px;
     transition: .5s;
 }

 .pstyle2.pstyle3 .prot_content_inner {
     text-align: left;
 }

 .pstyle2.pstyle3 .prot_content_inner {
     background: #e77009;
 }

 .pstyle2.pstyle3 .single_protfolio:hover .prot_content_inner {
     left: 75%;
 }

 .pstyle2 .single_protfolio:hover .prot_content_inner {
     top: 50%;
     opacity: 1;
 }

 /* portfolio grid area css */
 .port_style02 .pstyle2 .prot_content_inner {
     left: 50%;
     position: absolute;
     top: 60%;
     transform: translateX(-50%) translateY(-50%);
     width: 100%;
     z-index: 10;
     transition: all .3s ease-in-out .3s;
     opacity: 0;
 }

 .port_style02 .prot_content h3 a {
     font-size: 23px;
     font-weight: 700;
     text-transform: capitalize;
     transition: .5s;
     color: #fff;
     margin-bottom: 0px;
     display: inline-block;
 }

 .port_style02 .picon a:hover {
     border-color: #0a0a0a;
     background: #0a0a0a;
 }

 .port_style02 .single_protfolio {
     position: relative;
     overflow: hidden;
     margin-bottom: 20px;
 }

 .port_style02 .prot_content h3 a:hover {
     color: #e77009;
 }

 .portfolio_style2 .port_style02 .pstyle_1 .prot_content_inner {
     position: absolute;
     top: 50%;
     width: 100%;
     left: 50%;
     transform: translateX(-50%) translateY(-50%);
     z-index: 10;
 }

 .portfolio_style2 .prot_content {
     position: absolute;
     text-align: center;
     transition: .5s;
     right: 0;
     top: 0;
     bottom: 0;
     left: 0;
     opacity: 0;
     z-index: 9;
 }

 .portfolio_style2.pstyle2 .single_protfolio:hover .prot_content_inner {
     top: 50%;
     opacity: 1;
     left: 50%;
     right: 50%;
     transform: translateX(-50%) translateY(-50%);
 }

 .portfolio_style2 .prot_content h3 a {
     margin-bottom: 0;
 }

 .portfolio_style2 .single_protfolio:hover .prot_content {
     opacity: 1;
     transform: scale(1, 1);
 }

 .portfolio_style2 .prot_content h3 a:hover {
     color: #e77009;
 }

 .p2clmn .prot_content_inner {
     top: 50%;
     opacity: 1;
 }

 .port_grid .pprotfolio4 {
     padding: 20px 10px 23px;
     box-shadow: 0 10px 16px 0 rgba(0, 0, 0, .7);
     border: 1px solid #f1f1f1;
     border-top: 0 solid #f1f1f1;
 }

 .port_grid .portfolio_nav ul li {
     border-radius: 5px;
 }

 .port_grid .prot_content {
     background: #e7700980;
 }

 .p4clmn .witr_section_title_inner p {
     width: 39%;
 }

 .port4clmn .witr_section_title_inner h2 {
     color: #000000;
 }

 .portfolio_nav ul li:hover,
 .portfolio_nav ul li.current_menu_item {
     color: #fff;
     background: #e77009 none repeat scroll 0 0;
     border-color: #e77009;
 }

 .p2clmn .prot_content_inner {
     left: 300px;
     position: absolute;
     top: 60%;
     transform: translateX(-50%) translateY(-50%);
     width: 100%;
     z-index: 10;
     opacity: 0;
     background: rgb(255 102 102 / 50%);
     padding: 20px;
     transition: .5s;
     text-align: left;
 }

 .p2clmn .single_protfolio:hover .prot_content_inner {
     left: 75%;
 }

 .p2clmn .prot_content h3 a {
     font-size: 25px;
     font-weight: 900;
 }

 .p2clmn .portfolio_nav {
     margin-bottom: 40px;
 }

 .p3clmn .pstyle2 .prot_content_inner {
     left: 50%;
     position: absolute;
     top: 60%;
     transform: translateX(-50%) translateY(-50%);
     width: 100%;
     z-index: 10;
     transition: all 0.3s ease-in-out 0.3s;
     opacity: 0;
 }

 .p3clmn .prot_content h3 a {
     font-size: 25px;
     font-weight: 900;
     text-transform: capitalize;
     transition: .5s;
     color: #fff;
     margin-bottom: 0;
     display: inline-block;
 }

 .p3clmn .prot_content h3 a:hover {
     color: #e77009;
 }

 .p3clmn .picon a:hover {
     border-color: #ff7e00;
     background: #ff7e00;
     color: #fff;
 }

 /* recent project css */
 .aplit-blog-area.aplit-blog-single.single-blog-details {
     padding: 120px 0 95px;
 }

 .portfolio-details-box h2 {
     font-size: 25px;
 }

 .prots-contentg ul {
     display: inline-block;
     margin-bottom: 20px;
 }

 .portfolio-details-box ul li,
 .right_popupmenu_area .witr_sub_table {
     border-bottom: 1px solid #ddd;
 }

 .portfolio-details-box ul li {
     padding-top: 15px;
     padding-bottom: 10px;
     list-style: none;
 }

 .portfolio-details-box ul li b {
     font-size: 18px;
     font-weight: 600;
 }

 .portfolio-details-box ul li span.eright {
     font-weight: 400;
     font-size: 16px;
     margin-left: 5px;
 }

 .aplit-blog-social {
     margin-bottom: 25px;
     margin-top: 25px;
 }

 .aplit-single-icon a {
     border: 1px solid #e6e6e6;
     display: inline-block;
     font-size: 15px;
     height: 40px;
     line-height: 41px;
     margin: 0 9px 0 0;
     text-align: center;
     width: 40px;
     border-radius: 5px;
     color: #e77009;
 }

 .aplit-single-icon a:hover {
     background: #e77009;
     color: #fff;
 }

 .pr-title h2 {
     margin-top: 15px;
     margin-bottom: 15px;
 }

 /* ===== 12. Faq Area CSS ===== */
 .ap_faq_area {
     padding: 115px 0 110px 0;
     position: relative;
 }

 .faq_left_con {
     box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.09);
     transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
     padding: 100px 225px 90px 65px;
 }

 .faq_left_con .witr_section_title {
     margin-bottom: 38px;
 }

 .faq_left_con .witr_section_title_inner h3 {
     padding: 15px 0 0 0;
 }

 .accordion_area .card-2 {
     margin-bottom: 15px;
     border-radius: 5px;
     border: none;
     background: #F3F3F3;
 }

 .witr_ac_style {
     color: #222429;
 }

 .witr_ac_style {
     display: flex;
     align-items: center;
     padding: 11px 15px;
     transition: .5s;
     background: #F3F3F3;
 }

 .witr_ac_style,
 .witr_ac_style::before {
     font-size: 18px;
     font-weight: 600;
 }

 .witr_ac_style:before {
     position: absolute;
     content: '\ea99';
     right: 30px;
     font-family: IcoFont !important;
     font-weight: 400;
     font-size: 17px;
 }

 .active .witr_ac_style:before {
     content: '\eaa1';
 }

 .witr_ac_card i {
     font-size: 20px;
     display: inline-block;
 }

 .accordion_area .card-header.witr_ac_card {
     background: #fff;
     padding: 0;
     border-bottom: 0;
     text-align: left;
 }

 .witr_ac_card i {
     margin-right: 10px;
     font-size: 20px;
 }

 .witr_ac_style:hover {
     color: #e77009;
 }

 .accordion_area .card-2 p {
     padding: 15px 20px 15px 25px;
 }

 .faq_img {
     padding: 90px 0 0 0;
 }

 .faq_img .tLfEUnnG2u {
     margin-left: -265px;
 }

 .faq_img .tLfEUnnG2u img {
     width: 200%;
     max-width: 120%;
     transition: 0.5s;
 }

 .ap_faq_area .witr_shape_item_inner {
     top: 500px;
     left: 152px;
 }

 .witr_shape_image {
     animation: witr_movetb_box90 5s ease 1s infinite alternate running;
 }

 @keyframes witr_movetb_box90 {
     0% {
         transform: translateY(0px);
     }

     100% {
         transform: translateY(90px);
     }
 }

 /* ===== Faq Area CSS ===== */
 .faq_area1.single_service_faq1 {
     padding: 120px 0 100px;
 }

 .accordion_area_02 .witr_ac_style {
     padding: 10px 15px;
     border-bottom: none;
 }

 .accordion_area_02 .accordion_02_shadow {
     border: none;
     box-shadow: 0px 0px 20px 0px #dddddd80;
     background: none;
 }

 .accordion_area_02 .card-header.witr_ac_card a:hover {
     color: #232323;
 }

 .border_bottom_0 {
     border-bottom: none;
 }

 .writ_ac_style_02 {
     margin-left: 25px;
     font-size: 20px;
     font-weight: 600;
     display: block;
     background: none !important;
 }

 .writ_ac_style_02:before {
     position: absolute;
     content: '\f067';
     left: 20px;
     margin-right: 10px;
     font-family: fontawesome !important;
     font-weight: 200;
 }

 .active .writ_ac_style_02:before {
     content: '\f068';
 }

 .card-header.witr_ac_card.border_bottom_0 {
     background: 0;
     padding: 0px 10px;
 }

 .content_style p,
 .conent_style p {
     padding-left: 18px;
     padding: 15px 20px 0;
 }

 .card.card-2.accordion_02_shadow {
     margin-bottom: 20px;
     box-shadow: 1px 1px 7px -5px rgba(0, 0, 0, 0.75);
     border-radius: 0;
 }

 .faq_area2 .witr_ac_style2 {
     padding-left: 30px;
     font-size: 20px;
     font-weight: 600;
     display: flex;
     align-items: center;
     padding: 11px 15px;
     transition: .5s;
     padding: 12px 20px 12px 20px;
     color: #232323;
 }

 .writ_ac_style_02:before {
     font-weight: 200;
     font-size: 17px;
     color: #3a4268;
     margin-top: 3px;
 }

 .faq_area2 .active .witr_ac_style {
     color: #232323;
     background: #A4282800;
 }

 .faq_area2 .card-header.witr_ac_card a:hover {
     color: #232323;
 }

 /* ===== 13. Testimonial Area CSS ===== */
 .ap_test_area {
     background-image: url("../images/testi-bg.png");
     background-position: center center;
     background-size: cover;
     padding: 150px 0 40px 0;
 }

 .ap_test_area .witr_section_title_inner h2,
 .ap_test_area .witr_section_title_inner h3 {
     color: #fff;
 }

 .witr_testi_itemt {
     padding: 0 10px;
 }

 .em_single_testimonial {
     border-radius: 15px;
     padding: 40px 20px 40px 60px;
     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0);
     background: #fff;
     margin-bottom: 0;
     overflow: hidden;
     position: relative;
     text-align: left;
     transition: all .5s ease 0s;
 }

 .test-part {
     display: inline-block;
     margin-bottom: 10px;
 }

 .test-part ul li {
     display: inline-block;
     padding-top: 0;
 }

 .execllent_toggol {
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .witr_testi_itemt i {
     font-size: 25px;
     color: #e77009;
 }

 .em_testi_content {
     position: relative;
     text-align: center;
 }

 .em_testi_text {
     overflow: hidden;
     padding-top: 15px;
     text-align: left;
 }

 .all_color_testimonial p {
     padding: 0 0 10px 0;
 }

 .em_test_thumb {
     float: left;
     margin-right: 20px;
 }

 .em_test_thumb img {
     border-radius: 50%;
     width: 100%;
 }

 .all_color_testimonial h6,
 .all_color_testimonial h2 {
     padding: 10px 0 0 0;
 }

 .em_testi_title span {
     color: #e77009;
     display: block;
     margin-top: 5px;
     font-size: 18px;
     font-weight: 600;
 }

 .test_witr_inn {
     margin: 131px 0 0 0;
     position: relative;
 }

 .test_witr_inn .witr_shape_item_inner {
     z-index: 1;
     top: -158px;
     right: -160px;
 }

 .test_witr_inn .witr_shape_image {
     animation: witr_rotate_180 5s linear 1s infinite alternate running;
 }

 @keyframes witr_rotate_180 {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(180deg);
     }
 }

 /* ===== Testimonial Area CSS ===== */
 .ap_test_area2 {
     padding: 115px 0 90px 0;
 }

 .ap_test_area2 .witr_section_title {
     margin-bottom: 20px;
 }

 .ap_test_area2 .test_witr_inn {
     margin: 0;
     position: relative;
 }

 .ap_test_area2 .em_single_testimonial {
     margin-bottom: 30px;
     transition: all .5s ease 0s;
     padding: 37px 30px 26px;
     margin-top: 20px;
     box-shadow: 0 0 10px 0 rgb(240 241 243);
     overflow: hidden;
     position: relative;
     text-align: left;
     background: #fff;
     border-radius: 0;
 }

 .ap_test_area2 .test-part {
     display: inline-block;
     margin-bottom: 10px;
 }

 .ap_test_area2 .test-part ul li {
     display: inline-block;
     padding-top: 0;
 }

 .ap_test_area2 .execllent_toggol {
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .ap_test_area2 .em_crating i {
     font-size: 18px;
 }

 .ap_test_area2 .em_test_thumb {
     float: left;
     margin-right: 20px;
 }

 .ap_test_area2 .em_test_thumb img {
     border-radius: 50%;
     width: 59px;
 }

 .ap_test_area2 .em_single_testimonial:hover {
     box-shadow: 0 0 20px 0 rgba(0, 0, 0, .13);
 }

 .ap_test_area2 .all_color_testimonial h6,
 .ap_test_area2 .all_color_testimonial h2 {
     padding: 0;
 }

 .ser_page_test {
     padding: 0 0 90px 0;
 }

 .cont_mrk_test {
     padding: 0px 0 90px 0;
 }

 /* ===== 14. Case Area CSS ===== */
 .ap_case_area {
     padding: 105px 0 75px;
 }

 .ap_case_area .witr_section_title_inner h3 {
     padding: 15px 0 0 0;
 }

 .witr_case {
     position: relative;
     overflow: hidden;
     padding-bottom: 45px;
     margin-bottom: 20px
 }

 .witr_case {
     position: relative;
     overflow: hidden;
     padding-bottom: 95px;
     margin-bottom: 20px;
 }

 .witr_case_image {
     overflow: hidden;
     position: relative;
 }

 .witr_case_image:before {
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 0%;
     content: "";
     transition: .5s;
     background: #e77009a6;
 }

 .witr_case_image img {
     width: 100%;
 }

 .witr_content_casem {
     padding: 30px;
     position: absolute;
     bottom: -80px;
     left: 15px;
     margin: auto;
     transition: .5s;
     right: 15px;
     text-align: left;
     border-radius: 10px;
     bottom: 15px;
     box-shadow: 0 5px 20px 0 #0049ff14;
     background: #fff;
 }

 .witr_content_casei p {
     font-size: 15px;
     font-weight: 700;
     margin-bottom: 4px;
     color: #e77009;
 }

 .witr_content_casei h3 {
     font-size: 21px;
 }

 .witr_case_btnb {
     margin-top: 20px;
 }

 .witr_case_btnb a {
     font-size: 16px;
     font-weight: 600;
     padding: 13px 25px;
     border-radius: 5px;
     display: inline-block;
     transition: .5s;
     border: 1px solid #ececec;
     color: #e77009;
     background: #fff;
 }

 .witr_case_btnb a i {
     margin-left: 5px;
     transition: 1s;
 }

 .witr_case:hover .witr_case_image:before {
     height: 100%;
 }

 .witr_case:hover .witr_content_casem {
     bottom: -4px;
 }

 .witr_case_btnb a:hover {
     color: #fff;
     border: 1px solid #e77009;
     background: #e77009;
 }

 .witr_case_btnb a:hover i {
     margin-left: 15px;
 }

 /* ===== 15. Pricing Area CSS ===== */
 .ap_pric_area {
     padding: 105px 0 80px;
 }

 .ap_pric_area .witr_section_title {
     margin-bottom: 45px;
 }

 .pricing_area {
     border-radius: 5px;
     box-shadow: 0 0 30px 0 rgb(0 0 0 / 8%);
     margin-bottom: 30px;
 }

 .pricing-part {
     position: relative;
     overflow: hidden;
     text-align: center;
 }

 .witr_pricing_icon i {
     font-size: 40px;
     padding-top: 40px;
     display: block;
     color: #e77009;
 }

 .pricing-part span {
     font-size: 24px;
     margin-right: 5px;
 }

 .pricing_bar_title {
     position: relative;
     margin: 50px 0;
 }

 .pricing_bar_title::before {
     position: absolute;
     content: '';
     width: 100%;
     height: 1px;
     background: #ddd;
     left: 0;
     right: 0;
     top: 50%;
 }

 .pricing_style_7.pricing-part h4 {
     font-size: 16px;
     padding: 13px 30px;
     display: inline-block;
     border-radius: 30px;
     color: #fff;
     z-index: 1;
     position: relative;
     background: #e77009;
 }

 .all_pricing_color h2,
 .all_pricing_color h3,
 .all_pricing_color h4,
 .all_pricing_color h5 {
     margin: 0;
 }

 .witri_texti_list {
     margin-top: 25px;
 }

 .pricing-part ul {
     padding: 0 30px;
     text-align: left;
 }

 .witri_texti_list ul li {
     list-style: none;
     font-size: 17px;
     margin-bottom: 17px;
 }

 .witri_texti_list ul li i {
     margin-right: 10px;
 }

 .witr_btnp_color {
     padding-top: 37px;
     padding-bottom: 40px;
 }

 .witr_btnp_color a.btn {
     border-style: solid;
     border-width: 0;
     padding: 17px 30px;
     display: inline-block;
     cursor: pointer;
     border: 1px solid #e77009;
     background: #e77009;
     border-radius: 5px;
     font-size: 16px;
     font-weight: 500;
     color: #fff;
 }

 .witr_btnp_color a.btn:hover {
     color: #fff;
     background: #1F2230;
     border-style: solid;
 }

 .pricing-part h5 {
     font-size: 35px;
     margin: 30px 0 0 0;
 }

 /* ===== 16. Contact Area CSS ===== */
 .cont_pag_top {
     padding: 120px 0 0;
 }

 .cont_pag_top .service-item {
     padding: 50px 30px 25px 30px;
     box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
     transition: .5s;
     margin-bottom: 30px;
 }

 .cont_pag_top .service-item i {
     font-size: 30px;
     height: 80px;
     width: 80px;
     text-align: center;
     border-radius: 5px;
     line-height: 80px;
     display: inline-block;
     transition: .5s;
     background: #e77009;
     color: #fff;
 }

 .cont_pag_top .service-item h3 {
     padding: 20px 0 0 0;
     transition: .5s;
 }

 .cont_pag_top .service-item p {
     padding-top: 0;
     margin-bottom: 0;
 }

 .cont_pag_top .service-item:hover i {
     background: #111111;
 }

 /* ===== Contact Area CSS ===== */
 .StQN88uayo {
     padding: 130px 0 130px 0;
 }

 .apartment_area {
     position: relative;
     background-size: cover;
     padding: 60px 35px 75px;
     border-radius: 10px;
     text-align: left;
     box-shadow: 0 0 30px 0 rgb(0 0 0 / 6%);
 }

 .x7FUSFFr6p h1 {
     font-size: 17px;
     margin-bottom: 5px;
     color: #e77009;
 }

 .x7FUSFFr6p h2 {
     margin-bottom: 40px;
     font-size: 38px;
 }

 .witr_apartment_form .btn:hover {
     background-color: #14b1bb;
     ;
 }

 .witr_apartment_form form select,
 .witr_apartment_form form select,
 .witr_apartment_form input,
 .witr_apartment_form textarea {
     width: 100%;
     height: 45px;
     border-radius: 5px;
     outline: none;
     margin-bottom: 16px;
     background: #fff;
     outline: none;
     padding-left: 30px;
     color: #888;
     border: 1px solid #f1f1f1;
     margin-bottom: 23px;
 }

 .twr_form_box textarea {
     margin-bottom: 0;
     height: 150px;
     width: 100%;
     padding: 10px 30px 30px;
 }

 .witr_apartment_form input,
 .witr_apartment_form form select,
 .wpcf7-not-valid-tip,
 .witr_apartment_form input::-webkit-input-placeholder,
 .wpcf7-form-control-wrap input,
 .wpcf7-form-control-wrap input::-webkit-input-placeholder,
 .wpcf7-form-control-wrap a,
 .wpcf7-form-control-wrap a::-webkit-input-placeholder,
 .wpcf7-form-control-wrap textarea,
 .wpcf7-form-control-wrap textarea::-webkit-input-placeholder,
 .wpcf7-submit::-webkit-input-placeholder,
 .witr_apartment_form form select option {
     color: #929292;
 }

 .witr_apartment_form textarea {
     color: #232323;
 }

 .witr_apartment_form textarea::placeholder {
     color: #888;
 }

 .witr_apartment_form .btn {
     border: 0 none;
     display: inline-block;
     padding: 15px 30px;
     background: #e77009;
     color: #fff;
     font-size: 16px;
     font-weight: 600;
     border-radius: 5px;
     margin-top: 15px;
 }

 .witr_apartment_form .btn:hover {
     color: #fff;
     background: #02101e;
 }

 input:-webkit-autofill,
 input:-webkit-autofill:hover,
 input:-webkit-autofill:focus,
 input:-webkit-autofill:active,
 textarea:-webkit-autofill,
 textarea:-webkit-autofill:hover,
 textarea:-webkit-autofill:focus,
 textarea:-webkit-autofill:active,
 select:-webkit-autofill,
 select:-webkit-autofill:hover,
 select:-webkit-autofill:focus,
 select:-webkit-autofill:active {
     transition: background-color 50000s ease-in-out 0s, color 5000s ease-in-out 0s;
 }

 p.form-messege {
     margin-top: 8px;
 }

 .cont_page_cont {
     padding: 90px 0 130px 0;
 }

 /* map area css */
 .map_inner_area iframe {
     border: none;
     width: 100%;
     height: 600px;
     margin-bottom: -8px;
 }

 /* ===== 17. Single Service Area CSS ===== */
 .single_service_area {
     padding: 100px 0 80px;
 }

 .single_service_area .witr_text_widget_inner img {
     width: 100%;
 }

 .single_service_area .witr_text_widget p {
     line-height: 1.7em;
 }

 .single_service_area .witr_text_widget_inner h2 {
     font-size: 40px;
     padding: 40px 0px 13px 0px;
 }

 /* ===== Video Area CSS ===== */
 .video-item a {
     position: relative;
     display: inline-block;
     width: 100px;
     height: 100px;
     font-size: 28px;
     border-radius: 100%;
     background: #e77009;
 }

 .tx_svd_icon {
     line-height: 75px;
     text-align: center;
     animation: witr-shadow 1s linear infinite;
 }

 .tx_svd_icon,
 .tx_svd_icon i {
     color: #fff;
 }

 .video-item i {
     position: absolute;
     left: 50%;
     top: 50%;
     transform: translateX(-50%) translateY(-50%);
     color: #fff;
 }

 .video-item i {
     position: absolute;
     left: 50%;
     top: 50%;
     transform: translateX(-50%) translateY(-50%);
 }

 .witr_all_color_v i {
     color: #fff;
 }

 /* ===== Video Area CSS ===== */
 .video-overlay {
     padding: 70px 0 50px;
 }

 .video-item a {
     position: relative;
     display: inline-block;
     background: #e77009;
 }

 .video-item a::before {
     background: #e77009;
     border-radius: 100%;
 }

 .video-item h3 {
     font-size: 19px;
     margin-top: 35px;
     color: #fff;
     font-weight: 700;
 }

 @keyframes witr-shadow {
     0% {
         box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
     }

     100% {
         box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
     }
 }

 .witr_youtube_video {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     pointer-events: none;
     z-index: -99;
 }

 .witr_youtube_video iframe {
     width: 100%;
     height: 100%;
     border: none;
 }

 .video_page_area .witr_swiper_height {
     z-index: -1;
 }

 .bvideo_page_area {
     position: relative;
 }

 .video_page_area .witr_swiper_content h1,
 .video_page_area .witr_swiper_content h2,
 .video_page_area .witr_swiper_content h3,
 .video_page_area .witr_swiper_content p,
 .video_page_area .witr_flow_text h5 {
     color: #fff;
     z-index: 999;
 }

 .video_page_area .witr_swiper_content_icon a i {
     color: #fff;
     background: #C0131300;
     font-size: 16px;
     width: 40px;
     height: 40px;
     line-height: 40px;
     border-style: solid;
     border-width: 1px 1px 1px 1px;
     border-color: #F5F5F563;
 }

 .video_page_area .witr_swiper_content_icon a i:hover {
     color: #fff;
     background: #e77009;
 }

 .video_page_area .witr_swiper_content {
     top: 55%;
     background: 0 0;
 }

 .video_page_area .witr_swiper_content p {
     width: 36%;
 }

 .video_page_area .witr_ds_content_inner h2,
 .video_page_area .witr_ds_content_inner h3 {
     color: #fff;
 }

 .video_page_area .witr_ds_content_inner p {
     color: #fff;
 }

 /* ===== 18. Blog Area CSS ===== */
 .ap_blog_area {
     padding: 115px 0 100px;
 }

 .ap_blog_area .witr_section_title {
     margin-bottom: 30px;
 }

 .busi_singleBlog {
     transition: .5s;
     box-shadow: 0 5px 10px 0 rgba(50, 65, 141, .07);
     position: relative;
     overflow: hidden;
     background: #fff;
     margin-bottom: 20px;
 }

 .witr_sb_thumb {
     overflow: hidden;
     position: relative;
 }

 .witr_sb_thumb:before {
     position: absolute;
     content: '';
     top: 0;
     left: 0;
     bottom: 0;
     right: 0;
     transform: scale(0);
     transition: .5s;
     z-index: 1;
 }

 .blog-img a:before,
 .mobile-slide-7 .mobile-thumb .mobile-slide-overlay,
 .video_image:before,
 .witr_sb_thumb:before {
     background: rgba(0, 0, 0, .5);
 }

 .witr_sb_thumb img {
     width: 100%;
     transition: .5s;
 }

 .all_blog_color {
     text-align: left;
 }

 .yHc8jOBhLz {
     padding: 20px 15px 5px 25px;
     margin-bottom: 0;
 }

 .yHc8jOBhLz span {
     color: #888;
     line-height: 26px;
     margin-bottom: 15px;
     margin-right: 2px;
     font-size: 16px;
 }

 .yHc8jOBhLz span a i {
     color: #e77009;
 }

 .epycX7QZZr .yHc8jOBhLz h2 {
     margin: 5px 0 0;
     padding: 10px 0 0 0;
 }

 .banner-content input,
 .yHc8jOBhLz h2,
 .witr_post_Author .comment {
     color: #222429;
 }

 .yHc8jOBhLz h2 a {
     display: inline-block;
 }

 .all_blog_color p {
     padding: 10px 0 5px 0;
 }

 .epycX7QZZr .em-blog-content-area_adn {
     padding: 0 10px 22px 20px;
 }

 .epycX7QZZr .learn_btn {
     padding: 10px 30px;
     border-radius: 5px;
     margin: 0 0 10px 0;
     background: #e7700914;
     color: #e77009;
     font-size: 16px;
     font-weight: 500;
     display: inline-block;
     text-align: center;
 }

 .yHc8jOBhLz span i {
     padding-right: 5px;
     padding-left: 5px;
     transition: .5s;
     color: #e77009;
 }

 .busi_singleBlog:hover {
     box-shadow: 0 0px 4px 0 rgba(0, 0, 0, .05);
 }

 .learn_btn:hover {
     color: #fff;
     background: #e77009;
 }

 .busi_singleBlog:hover .witr_sb_thumb img,
 .busi_singleBlog:hover .witr_sb_thumb:before {
     transform: scale(1.2);
 }

 /* ===== Blog Area CSS ===== */
 .witr-blog-side-area.blog_sidebar {
     padding: 100px 0px 100px;
 }

 .blog-left-side>div {
     background-color: #fff;
     margin-bottom: 30px;
     padding: 15px;
     box-shadow: 0 0 5px 0 rgba(148, 146, 245, 0.2);
 }

 .blog-left-side>div:last-child {
     margin-bottom: 0;
 }

 .blog-left-side h2 {
     margin-bottom: 10px;
     text-transform: uppercase;
 }

 .blog-left-side .content {
     padding: 0;
 }

 .blog-left-side .push-bottom-large {
     margin-bottom: 0;
 }

 .blog-left-side>div:last-child {
     margin-bottom: 0;
 }

 .blog-left-side>aside:last-child {
     margin-bottom: 0 !important;
 }

 .blog-left-side .nav .children li a:hover,
 .blog-left-side .sub-menu li a:hover {
     background: 0 0;
     color: #e77009;
 }

 .defaultsearch {
     background: #f7f7f7;
     position: relative;
 }

 .defaultsearch input {
     background: #f7f7f7 none repeat scroll 0 0;
     border: 0 none;
     height: 54px;
     position: relative;
     width: 100%;
 }

 .defaultsearch button {
     background: transparent none repeat scroll 0 0;
     border: 0 none;
     color: #858585;
     font-size: 18px;
     padding: 1px 15px;
     position: absolute;
     right: 0;
     top: 50%;
     cursor: pointer;
     transform: translateY(-50%);
 }

 .defaultsearch input[type="text"] {
     padding-left: 10px;
 }

 .blog-left-side .widget h2 {
     bottom: -1px;
     display: block;
     line-height: 17px;
     margin-bottom: 20px;
     padding-bottom: 14px;
     position: relative;
     text-transform: capitalize;
 }

 .blog-left-side .widget h2::before {
     background: #e77009;
     bottom: 0;
     content: "";
     height: 2px;
     left: 0px;
     position: absolute;
     width: 26%;
     top: 20px;
 }

 .em-blog-content-area {
     padding: 20px 15px 0;
     overflow: hidden;
 }

 .fSVvixJK9i .widget h5 {
     text-transform: capitalize;
 }

 .blog-left-side .widget ul {
     list-style: none;
 }

 .blog-left-side .widget ul li {
     margin: 0 0 5px;
     padding-left: 20px;
     position: relative;
 }

 .blog-left-side .widget>ul>li:not(:last-child) {
     border-bottom: 1px solid rgba(0, 0, 0, .12);
 }

 .blog-left-side .widget ul li span {
     font-weight: 300;
 }

 .blog-left-side .widget ul li:last-child {
     padding-bottom: 0;
     margin-bottom: 0;
 }

 .blog-left-side>.widget>ul>li {
     margin: 0 0 10px;
     padding-bottom: 10px;
 }

 .blog-left-side .widget ul li a:hover,
 .blog-left-side .widget ul li:hover::before {
     color: #e77009;
 }

 .blog-left-side .widget select {
     width: 100%;
     height: 40px;
     background: #fff;
     border: 1px solid #ddd;
     padding-left: 5px;
 }

 .aplit-blog-meta-left i {
     color: #e77009;
 }

 .aplit-blog-meta-left i {
     font-size: 13px;
     margin-right: 5px;
 }

 .aplit-blog-meta-left {
     margin-bottom: 10px;
     margin-top: 5px;
 }

 .recent-post-text h4 a:hover {
     color: #e77009;
 }

 .recent-post-item {
     padding-bottom: 0;
 }

 .recent-post-text h4 {
     margin-bottom: 0;
     line-height: 1;
 }

 .aplit-blog-meta-left a,
 .aplit-blog-meta-left span {
     color: #888;
 }

 .widget .screen-reader-text {
     display: none;
 }

 .textwidget select {
     width: 100%;
 }

 #wp-calendar {
     width: 100%;
 }

 .tagcloud a {
     display: inline-block;
     font-size: 14px !important;
     margin: 0 8px 10px 0;
     padding: 7px 15px;
     text-align: center;
     font-weight: 400;
     border: 1px solid #ddd;
     text-transform: capitalize;
 }

 .r-post-content h3 a:hover,
 .r-post-content h3:hover,
 .tagcloud a:hover,
 .widget_archive ul li a:hover,
 .widget_archive ul li:hover:before,
 .widget_categories ul li a:hover,
 .widget_categories ul li:hover:before {
     color: #DB2D2E;
 }

 .tagcloud a:hover {
     background: #DB2D2E;
     color: #fff;
 }

 #wp-calendar caption {
     font-size: 14px;
     font-weight: 400;
     margin-bottom: 10px;
     text-align: left;
     text-transform: uppercase;
 }

 #wp-calendar {
     font-size: 13px;
 }

 #wp-calendar {
     border: 0 solid #e5e5e5;
     margin-bottom: 20px;
     overflow: auto;
     vertical-align: top;
     width: 100%;
     margin: 0;
 }

 table#wp-calendar td {
     border: 1px solid #e5e5e5;
     padding: 5px 10px;
     text-align: center;
     vertical-align: top;
     font-size: 14px;
 }

 #wp-calendar td,
 #wp-calendar th {
     padding: 8px;
 }

 table#wp-calendar th {
     border: 1px solid #e5e5e5;
     font-size: 13px;
     font-weight: 700;
     padding: 5px 10px;
     text-align: center;
     text-transform: uppercase;
     vertical-align: middle;
 }

 table#wp-calendar td#today {
     color: #fff;
     background-color: #e77009;
 }

 table#wp-calendar td#today a {
     color: #fff;
 }

 .textwidget img {
     margin-bottom: 15px;
 }

 .textwidget p {
     margin-bottom: 0.5rem;
 }

 .aplit-blog-thumb img {
     width: 100%;
     transition: .5s;
 }

 .witr-blog-side-area .imagess_area .slick-slide img {
     display: inline-block;
     margin: auto;
     width: 100%;
 }

 .witr-blog-side-area.blog_sidebar .aplit-single-blog {
     margin-bottom: 30px;
     box-shadow: none;
     border-bottom: 1px solid #e7e7e7;
     background: transparent;
 }

 .aplit-single-blog {
     overflow: hidden;
     text-align: left;
     transition: all .3s ease-in-out 0s;
 }

 .aplit-blog-thumb {
     overflow: hidden;
 }

 .single_blog_thumb img {
     width: 100%;
 }

 .aplit-blog-thumb a {
     display: block;
     position: relative;
 }

 .aplit-blog-thumb a:before {
     content: "";
     left: 0;
     top: 0;
     right: 0;
     bottom: 0;
     width: 100%;
     height: 100%;
     position: absolute;
     opacity: 0;
     z-index: 999;
     transition: .5s;
 }

 .aplit-blog-thumb a:before {
     background: rgba(0, 0, 0, .7);
 }

 .aplit-blog-thumb img {
     width: 100%;
 }

 .aplit_blog_area .em-blog-content-area {
     padding: 20px 15px 0;
     overflow: hidden;
     box-shadow: 0 0 10px 0 rgb(148 146 245 / 20%);
 }

 .aplit-blog-meta.post_blog h2 a {
     font-weight: 700;
     transition: .5s;
 }

 .aplit-blog-meta-left {
     margin-bottom: 10px;
     margin-top: 5px;
 }

 .aplit-blog-meta-left a,
 .aplit-blog-meta-left span {
     color: #888888;
     font-size: 16px;
     margin-right: 5px;
     margin-bottom: 0;
     display: inline-block;
 }

 .aplit-blog-meta-left i {
     color: #e77009;
     margin-right: 5px;
     font-size: 13px;
 }

 .aplit-blog-meta-left a,
 .aplit-blog-meta-left span {
     color: #888;
 }

 .em-blog-content-area .rhyarXYtHR {
     background: #e77009;
     border-radius: 5px;
     color: #fff;
     display: inline-block;
     font-size: 20px;
     padding: 10px 30px;
     text-align: center;
     position: relative;
     margin-right: 20px;
     z-index: 2;
     transition: 1s;
     font-weight: 400;
     margin-bottom: 20px;
 }

 .aplit-single-blog:hover .aplit-blog-thumb a:before {
     opacity: 1;
 }

 .aplit-single-blog:hover .aplit-blog-thumb img {
     transform: scale(1.1);
 }

 .em-blog-content-area .rhyarXYtHR:hover {
     background: #323232;
     color: #fff;
 }

 .aplit-blog-meta.post_blog h2 a {
     font-weight: 700;
     transition: .5s;
 }

 .video-open-inline iframe {
     width: 100%;
     height: 400px;
     border: none;
 }

 .witr-blog-side-area.blog_sidebar .markit-single-blog {
     margin-bottom: 30px;
     box-shadow: none;
     border-bottom: 1px solid #e7e7e7;
     background: transparent;
 }

 .witr-blog-side-area blockquote {
     background-color: #f7f7f7;
     border-left: 3px solid #e77009;
     padding: 1em 1em;
     margin-top: 15px;
 }

 blockquote {
     margin: 0 0 30px;
     font-size: 17px;
     font-weight: 400;
     box-shadow: 0 0 5px 0px rgb(0 0 0 / 7%);
 }

 .blog-left-side .widget a {
     color: #17161a;
 }

 .blog-left-side>div {
     margin-bottom: 30px;
     padding: 35px 30px 35px;
     border-radius: 8px;
     box-shadow: 0 0 30px rgb(0 0 0 / 7%);
 }

 .recent-post-text h4 a {
     font-size: 17px;
     font-weight: 600;
 }

 .recent-post-text .rcomment {
     font-size: 14px;
 }

 .widget_recent_data .recent-post-image img {
     margin-bottom: 8px;
     width: 75px;
 }

 .widget_recent_data .recent-post-item {
     margin-bottom: 0;
 }

 .blog-left-side .single-widget-item h2 {
     color: #030925;
 }

 .footer_s_inner {
     margin-top: 10px;
 }

 /* ===== single blog css ===== */
 .witr-blog-side-area.blog_area.single_blog.single_blog_page {
     padding: 100px 0 70px;
 }

 .aplit-single-blog-details-inner {
     padding: 38px 45px 45px;
     box-shadow: 0 3px 19px rgb(0 0 0 / 8%);
     border-radius: 0 0 10px 10px;
 }

 .block .wp-block-quote.is-large p,
 .block .wp-block-quote.is-style-large p {
     font-size: 1.5em;
     font-style: italic;
     line-height: 1.6;
     color: #5c727d;
 }

 .wp-block-group__inner-container {
     text-align: center;
 }

 .aplit-single-icon-inner {
     text-align: center;
 }

 .aplit-single-icon-inner a {
     border: 1px solid #e6e6e6;
     color: #17161a;
     display: inline-block;
     font-size: 15px;
     height: 40px;
     line-height: 41px;
     margin: 0 9px 0 0;
     text-align: center;
     width: 40px;
     border-radius: 5px;
 }

 .aplit-single-icon-inner a:hover {
     background: #e77009;
     border-color: #e77009;
     color: #fff;
 }

 .comment-respond {
     border: 1px solid #ddd;
     margin-bottom: 30px;
     padding: 25px 10px 30px;
     background-color: #f1f1f1;
 }

 .comment_field .input-field {
     width: 33.33%;
     float: left;
     margin-bottom: 25px;
 }

 .comment_field .input-field label,
 .comment_field .textarea-field label {
     color: #606060;
     font-size: 14px;
     margin-top: 15px;
     margin-bottom: 0;
     font-weight: 500;
 }

 .comment_field .input-field label,
 .comment_field .textarea-field label {
     color: #606060;
     font-size: 14px;
     margin-top: 15px;
     margin-bottom: 0;
     font-weight: 500;
 }

 .comment_field .input-field input,
 .comment_field .textarea-field textarea {
     color: #555555;
 }

 .comment_field .input-field input {
     width: 100%;
     border: 1px solid #e5e5e5;
     padding: 6px 20px;
     height: 54px;
     font-size: 17px;
 }

 .comment_field .textarea-field textarea {
     width: 100%;
     border: 1px solid #e5e5e5;
     height: 150px;
     padding: 10px;
 }

 .comment_field .input-field input,
 .comment_field .textarea-field textarea {
     color: #555555;
 }

 .aplit_btn {
     background: transparent;
     border: 1px solid #ddd;
     display: inline-block;
     text-align: center;
     padding: 12px 20px;
     margin-top: 15px;
     border-radius: 5px;
     transition: .5s;
     color: #444;
 }

 .aplit_btn:hover {
     background: #e77009;
     border-color: #e77009;
     color: #fff;
 }

 /* end sidebar css */
 /* ===== 19. Footer Area CSS ===== */
 .footer-top {
     background: #1b1919;
     padding: 100px 0;
 }

 .footer-top-inner h2 {
     font-size: 35px;
     height: 60px;
     padding: 0 15px;
     text-transform: uppercase;
     color: #e77009;
     margin-bottom: 11px;
 }

 .footer-top-inner p {
     margin-bottom: 11px;
     margin-left: auto;
     margin-right: auto;
     width: 84%;
     font-size: 16px;
     text-align: center;
     color: #fff;
 }

 .footer-social-icon {
     padding: 10px 0 20px;
     text-align: center;
 }

 .footer-social-icon a i {
     border-radius: 50px;
     display: inline-block;
     font-size: 18px;
     height: 45px;
     line-height: 45px;
     margin: 0 7px;
     text-align: center;
     width: 45px;
     transition: .3s;
     color: #fff;
     background: #e77009;
 }

 .footer-social-icon a i:hover {
     background: #000;
     color: #fff;
 }

 .epxinnZu79 {
     background-repeat: no-repeat;
     background-position: center center;
     background-color: #000;
     background-size: cover;
     position: relative;
 }

 .epxinnZu79:before {
     content: "";
     position: absolute;
     top: 0;
     height: 100%;
     width: 100%;
     left: 0;
     right: 0;
     margin: auto;
 }

 .fSVvixJK9i {
     background-repeat: no-repeat;
     background-position: center center;
     background-size: cover;
     padding: 65px 0 73px;
 }

 .fSVvixJK9i .widget h2 {
     margin-bottom: 25px;
     margin-top: 28px;
     position: relative;
     color: #fff;
     font-size: 22px;
 }

 .single-widget-item h2 {
     margin-bottom: 33px;
     margin-top: 28px;
 }

 .fSVvixJK9i .widget ul li,
 .fSVvixJK9i .widget ul li a,
 .fSVvixJK9i .widget ul li::before,
 .fSVvixJK9i .tagcloud a,
 .fSVvixJK9i caption,
 .fSVvixJK9i table,
 .fSVvixJK9i table td a,
 .fSVvixJK9i cite,
 .fSVvixJK9i .rssSummary,
 .fSVvixJK9i span.rss-date,
 .fSVvixJK9i span.comment-author-link,
 .fSVvixJK9i .textwidget p,
 .fSVvixJK9i .widget .screen-reader-text,
 mc4wp-form-fields p,
 .mc4wp-form-fields,
 .footer-m-address p,
 .footer-m-address,
 .footer-widget.address,
 .footer-widget.address p,
 .mc4wp-form-fields p,
 .cUTAG4V8jb p,
 .cUTAG4V8jb .phone a,
 .cUTAG4V8jb .social-icons a {
     color: #ffffff;
 }

 .cUTAG4V8jb a img {
     margin: 26px 0;
 }

 .gallery-item {
     display: inline-block;
     padding: 1.79104477%;
     text-align: center;
     vertical-align: top;
     margin: 0;
     float: left;
 }

 .gallery-icon img {
     margin: 0 auto;
 }

 .gallery-columns-3 .gallery-item {
     max-width: 33.33%;
 }

 .fSVvixJK9i .recent-post-text h4 a {
     font-weight: 400;
     font-size: 15px;
     color: #fff;
 }

 .fSVvixJK9i .recent-post-text>h4 {
     margin-bottom: 0;
     font-weight: 400;
     margin-top: 10px;
 }

 .recent-post-image {
     float: left;
     margin-right: 15px;
     margin-top: 0;
 }

 .recent-post-image img {
     border-radius: 0;
     width: 100%;
 }

 .recent-post-item {
     clear: both;
     margin-bottom: 15px;
 }

 .footer-sociala-icon {
     clear: both;
     float: left;
     font-size: 18px;
     margin-right: 12px;
 }

 .footer-sociala-info {
     overflow: hidden;
 }

 .recent-portfolio-area {
     display: flex;
     flex-flow: row;
     flex-wrap: wrap;
 }

 .recent-portfolio {
     margin-bottom: 10px;
     margin-right: 10px;
 }

 .fSVvixJK9i .recent-post-text>h4 a:hover {
     color: #e77009;
 }

 .fSVvixJK9i .recent-post-text .rcomment {
     font-size: 12px;
     font-weight: 400;
     color: #fff;
 }

 .fSVvixJK9i .widget ul li {
     margin-bottom: 10px;
 }

 .footer-widget.address p {
     margin-bottom: 6px;
 }

 .fSVvixJK9i .widget ul li a:hover,
 .fSVvixJK9i .widget ul li:hover:before {
     color: #e77009;
 }

 .aplit-desaplitiption-area a img {
     margin: 26px 0;
 }

 .cUTAG4V8jb .social-icons a {
     width: 40px;
     height: 40px;
     line-height: 40px;
     display: inline-block;
     text-align: center;
     border-radius: 4px;
     margin-bottom: 5px;
     margin-top: 0;
     background: #44464e;
     color: #fff;
     border: none;
     margin: 0 5px;
     cursor: pointer;
 }

 .cUTAG4V8jb .social-icons a:hover {
     background: #e77009;
     color: #fff;
 }

 .twr_footer_contact input {
     background: 0 0;
     color: #fff;
     border: 1px solid #fff;
     height: 60px;
     width: 100%;
     padding-left: 30px;
     color: #fff;
     border-radius: 4px;
 }

 .twr_footer_contact input::placeholder {
     color: #fff;
 }

 .twr_footer_contact button {
     padding: 15px 30px;
     margin-top: 10px;
     outline: 0;
     border: none;
     background: #e77009;
     color: #fff;
 }

 .witr_sub_table {
     border-bottom: 1px solid #ffffff8c;
 }

 .witr_sub_table {
     display: flex;
     justify-content: space-between;
     padding-bottom: 8px;
     margin-bottom: 8px;
 }

 .witr_sub_table span {
     color: #fff;
 }

 .fSVvixJK9i .mc4wp-form-fields {
     margin-top: 20px;
 }

 .fSVvixJK9i .mc4wp-form-fields p {
     position: relative;
     line-height: 27px;
     margin-bottom: 22px;
 }

 .fSVvixJK9i .mc4wp-form-fields input {
     height: 50px;
     position: relative;
     background: 0 0;
     width: 100%;
     line-height: 43px;
     border-radius: 0;
     padding-left: 10px;
     border: 1px solid #ddddddcf;
     color: #b0afaf;
     font-size: 16px;
     padding: 15px 30px;
     outline: 0;
 }

 .fSVvixJK9i .mc4wp-form-fields button {
     position: absolute;
     background: #e77009;
     right: 0;
     top: 0;
     width: 30%;
     height: 50px;
     border-radius: 0 5px 5px 0;
     cursor: pointer;
     padding: 10px 10px;
     line-height: 0;
     transition: .5s;
     color: #fff;
     bottom: 0;
     font-size: 18px;
     text-align: center;
     z-index: 2;
     border: none;
 }

 .fSVvixJK9i .mc4wp-form-fields button:hover {
     background: #1d3ede;
     color: #fff;
 }

 /* footer bottom area css */
 .footer-bottom {
     padding: 23px 0 22px;
     position: relative;
 }

 .footer-bottom:before {
     content: "";
     position: absolute;
     top: 0;
     height: 1px;
     width: 61%;
     left: 0;
     right: 0;
     margin: auto;
     background: #ffffff61;
 }

 .copy-right-text p {
     margin: 0;
     padding: 0;
     color: #fff;
 }

 .footer-menu ul li {
     display: inline-block;
 }

 .footer-menu ul {
     list-style: none;
     margin: 0;
     padding: 0;
 }

 .footer-menu ul li a {
     padding: 0 10px;
     display: block;
     color: #fff;
 }

 .copy-right-text a,
 .footer-menu ul li a:hover {
     color: #e77009;
 }

 /* saplitoll up css */
 #scrollUp {
     bottom: 30px;
     font-size: 30px;
     height: 40px;
     line-height: 40px;
     right: 100px;
     text-align: center;
     border-radius: 5px;
     width: 40px;
     background: #e77009;
 }

 #scrollUp i {
     color: #fff;
 }

 /* slick slide css */
 .slick-dots li button {
     font-size: 0;
     width: 18px;
     height: 18px;
     border: 0 solid #F0F0F0;
     margin: 0 5px;
     cursor: pointer;
     border-radius: 50px;
     padding: 0;
     transition: .5s;
     outline: 0;
     background: #e770095c;
 }

 .slick-dots li.slick-active button {
     background: #fff;
 }

 .slick-dots li {
     display: inline-block;
 }

 .slick-dots {
     position: absolute;
     left: 50%;
     transform: translateX(-50%);
     bottom: -85px;
     display: inline-block;
     z-index: 11;
     text-align: center;
 }

 /* slick prev slick next css */
 /*======== slick ========*/
 .slick-prev,
 .slick-next {
     font-size: 0;
     position: absolute;
     display: block;
     padding: 0;
     cursor: pointer;
     color: #fff;
     outline: none;
     z-index: 9;
     opacity: 0;
     border-radius: 5px;
     box-shadow: 0 0 5px rgba(0, 0, 0, .1);
     width: 50px;
     height: 50px;
     line-height: 45px;
     top: 50%;
     transform: translate(0px, -50%);
     transition: .5s;
     border: 2px solid #e77009;
     background: transparent;
 }

 .slick-prev {
     left: -65px;
 }

 .slick-next {
     right: -65px;
 }

 .slick-prev:before,
 .slick-next:before {
     color: #fff;
     font-size: 25px;
     transition: all 0.3s ease 0s;
     content: "\f177";
     font-family: FontAwesome;
 }

 .slick-next:before {
     content: "\f178";
     font-family: FontAwesome;
 }

 .slick-next:focus,
 .slick-next:hover,
 .slick-prev:focus,
 .slick-prev:hover {
     background: #e77009;
     border-color: #e77009;
 }

 .slick-prev:hover:before,
 .slick-next:hover:before {
     color: #fff;
 }

 button:focus {
     outline: 0;
 }

 .ap_brand_area:hover .slick-prev,
 .ap_brand_area:hover .slick-next {
     opacity: 1;
 }

 .wb_blog_area:hover .slick-prev,
 .wb_blog_area:hover .slick-next {
     opacity: 1;
 }

 .h2_blog:hover .slick-prev,
 .h2_blog:hover .slick-next {
     opacity: 1;
 }

 /*===== 20. Breadcumb Area CSS =====*/
 .breadcumb-inner h2 {
     font-size: 36px;
 }

 .breadcumb-area {
     padding-top: 120px;
     padding-bottom: 60px;
     background-color: #000;
     position: relative;
     background-position: center center;
     background-size: cover;
     background-repeat: no-repeat;
 }

 .breadcumb-area:before,
 .breadcumb-blog-area:before {
     position: absolute;
     left: 0;
     top: 0;
     right: 0;
     bottom: 0;
     content: "";
 }

 .breadcumb-inner ul,
 .breadcumb-inner ul span a,
 .breadcumb-inner li,
 .breadcumb-inner li a {
     color: #fff;
 }

 .breadcumb-inner li {
     display: inline-block;
     margin: 0;
     color: #fff;
 }

 .breadcumb-inner li:nth-last-child(-n+1) {
     color: #fff;
 }

 .breadcumb-inner li a {
     color: #fff;
 }

 .breadcumb-inner li a:hover {
     color: #e77009;
 }

 .brpt h2 {
     font-size: 30px;
     color: #fff;
     margin-bottom: 5px;
 }

 .lcase {
     text-transform: lowercase;
 }

 .ucase {
     text-transform: uppercase;
 }

 .j12xUVpzU7 {
     text-transform: capitalize;
 }



 .tx_golobal_color {
     background: #e77009;
 }

 .tx_btn_global_color:hover {
     background: #000;
 }