 :root {
     --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
     --font-primary: "Montserrat", sans-serif;
     --font-secondary: "Raleway", sans-serif;
 }

 :root {
     --color-default: #232323;
     --color-primary: #253960;
     --color-secondary: #308FCE;
     --color-secondary-hover: #4ba7e5;
 }

 :root {
     scroll-behavior: smooth;
 }

 body {
     font-family: var(--font-default);
     color: var(--color-default);
 }

 a {
     color: var(--color-primary);
     text-decoration: none;
     transition: 0.3s;
 }

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

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

 section {
     overflow: hidden;
     padding: 80px 0;
 }

 .section-header {
     text-align: center;
     padding-bottom: 30px;
 }

 .section-header h2 {
     font-size: 32px;
     font-weight: 600;
     margin-bottom: 20px;
     padding-bottom: 20px;
     position: relative;
 }

 .section-header h2:after {
     content: "";
     position: absolute;
     display: block;
     width: 60px;
     height: 2px;
     background: var(--color-primary);
     left: 0;
     right: 0;
     bottom: 0;
     margin: auto;
 }

 .section-header p {
     margin-bottom: 0;
 }

 .breadcrumbs {
     padding: 140px 0 60px 0;
     min-height: 40vh;
     position: relative;
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
 }

 .breadcrumbs:before {
     content: "";
     background-color: #15518d98;
     position: absolute;
     inset: 0;
 }

 .breadcrumbs h2 {
     font-size: 56px;
     font-weight: 500;
     color: #fff;
     font-family: var(--font-secondary);
 }

 .breadcrumbs ol {
     display: flex;
     flex-wrap: wrap;
     list-style: none;
     padding: 0 0 10px 0;
     margin: 0;
     font-size: 16px;
     font-weight: 600;
     color: var(--color-secondary);
 }

 .breadcrumbs ol a {
     color: rgba(255, 255, 255, 0.8);
     transition: 0.3s;
 }

 .breadcrumbs ol a:hover {
     text-decoration: underline;
 }

 .breadcrumbs ol li+li {
     padding-left: 10px;
 }

 .breadcrumbs ol li+li::before {
     display: inline-block;
     padding-right: 10px;
     color: #fff;
     content: "/";
 }

 .scroll-top {
     position: fixed;
     visibility: hidden;
     opacity: 0;
     right: 15px;
     bottom: 15px;
     z-index: 99999;
     background: var(--color-secondary);
     width: 60px;
     height: 60px;
     border-radius: 4px;
     transition: all 0.4s;
 }

 .scroll-top i {
     font-size: 24px;
     color: #fff;
     line-height: 0;
 }

 .scroll-top:hover {
     background: var(--color-secondary-hover);
     color: #fff;
 }

 .scroll-top.active {
     visibility: visible;
     opacity: 1;
 }

 #preloader {
     position: fixed;
     inset: 0;
     z-index: 9999;
     overflow: hidden;
     background: #fff;
     transition: all 0.6s ease-out;
 }

 #preloader:before {
     content: "";
     position: fixed;
     top: calc(50% - 30px);
     left: calc(50% - 30px);
     border: 6px solid var(--color-primary);
     border-top-color: #fff;
     border-radius: 50%;
     width: 60px;
     height: 60px;
     animation: animate-preloader 1s linear infinite;
 }

 @keyframes animate-preloader {
     0% {
         transform: rotate(0deg);
     }

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

 @media screen and (max-width: 768px) {
     [data-aos-delay] {
         transition-delay: 0 !important;
     }
 }

 .header {
     transition: all 0.5s;
     z-index: 997;
     padding: 24px 0;
 }

 @media (max-width: 1200px) {
     .header {
         padding: 12px 0;
     }
 }

 .header.sticked {
     background: var(--color-primary);
     padding: 12px 0;
 }

 .header .logo img {
     max-height: 60px;
     margin-right: 6px;
 }

 @media (min-width: 1280px) {
     .navbar {
         padding: 0;
     }

     .navbar ul {
         margin: 0;
         padding: 0;
         display: flex;
         list-style: none;
         align-items: center;
     }

     .navbar li {
         position: relative;
     }

     .navbar a,
     .navbar a:focus {
         display: flex;
         align-items: center;
         justify-content: space-between;
         padding: 15px 0 15px 30px;
         font-family: var(--font-default);
         font-size: 15px;
         font-weight: 500;
         color: rgba(255, 255, 255, 0.6);
         white-space: nowrap;
         transition: 0.3s;
     }

     .navbar a i,
     .navbar a:focus i {
         font-size: 12px;
         line-height: 0;
         margin-left: 5px;
     }

     .navbar a:hover,
     .navbar .active,
     .navbar .active:focus,
     .navbar li:hover>a {
         color: #fff;
     }

     .navbar .dropdown ul {
         display: block;
         position: absolute;
         left: 14px;
         top: calc(100% + 30px);
         margin: 0;
         padding: 10px 0;
         z-index: 99;
         opacity: 0;
         visibility: hidden;
         background: #fff;
         box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
         transition: 0.2s;
     }

     .navbar .dropdown ul li {
         min-width: 200px;
     }

     .navbar .dropdown ul a {
         padding: 10px 20px;
         font-size: 15px;
         text-transform: none;
         color: var(--color-secondary);
     }

     .navbar .dropdown ul a i {
         font-size: 12px;
     }

     .navbar .dropdown ul a:hover,
     .navbar .dropdown ul .active:hover,
     .navbar .dropdown ul li:hover>a {
         color: var(--color-primary);
     }

     .navbar .dropdown:hover>ul {
         opacity: 1;
         top: 100%;
         visibility: visible;
     }

     .navbar .dropdown .dropdown ul {
         top: 0;
         left: calc(100% - 30px);
         visibility: hidden;
     }

     .navbar .dropdown .dropdown:hover>ul {
         opacity: 1;
         top: 0;
         left: 100%;
         visibility: visible;
     }
 }

 @media (min-width: 1280px) and (max-width: 1366px) {
     .navbar .dropdown .dropdown ul {
         left: -90%;
     }

     .navbar .dropdown .dropdown:hover>ul {
         left: -100%;
     }
 }

 @media (min-width: 1280px) {

     .mobile-nav-show,
     .mobile-nav-hide {
         display: none;
     }
 }

 @media (max-width: 1279px) {
     .navbar {
         position: fixed;
         top: 0;
         right: -100%;
         width: 100%;
         max-width: 400px;
         bottom: 0;
         transition: 0.3s;
         z-index: 9997;
     }

     .navbar ul {
         position: absolute;
         inset: 0;
         padding: 50px 0 10px 0;
         margin: 0;
         background: rgba(27, 47, 69, 0.9);
         overflow-y: auto;
         transition: 0.3s;
         z-index: 9998;
     }

     .navbar a,
     .navbar a:focus {
         display: flex;
         align-items: center;
         justify-content: space-between;
         padding: 10px 20px;
         font-family: var(--font-default);
         font-size: 15px;
         font-weight: 600;
         color: rgba(255, 255, 255, 0.7);
         white-space: nowrap;
         transition: 0.3s;
     }

     .navbar a i,
     .navbar a:focus i {
         font-size: 12px;
         line-height: 0;
         margin-left: 5px;
     }

     .navbar a:hover,
     .navbar .active,
     .navbar .active:focus,
     .navbar li:hover>a {
         color: #fff;
     }

     .navbar .dropdown ul,
     .navbar .dropdown .dropdown ul {
         position: static;
         display: none;
         padding: 10px 0;
         margin: 10px 20px;
         background-color: rgba(20, 35, 51, 0.6);
     }

     .navbar .dropdown>.dropdown-active,
     .navbar .dropdown .dropdown>.dropdown-active {
         display: block;
     }

     .mobile-nav-show {
         color: rgba(255, 255, 255, 0.9);
         font-size: 28px;
         cursor: pointer;
         line-height: 0;
         transition: 0.5s;
     }

     .mobile-nav-hide {
         color: rgba(255, 255, 255, 0.9);
         font-size: 32px;
         cursor: pointer;
         line-height: 0;
         transition: 0.5s;
         position: fixed;
         right: 15px;
         top: 15px;
         z-index: 9999;
     }

     .mobile-nav-active {
         overflow: hidden;
     }

     .mobile-nav-active .navbar {
         right: 0;
     }

     .mobile-nav-active .navbar:before {
         content: "";
         position: fixed;
         inset: 0;
         background: rgba(27, 47, 69, 0.7);
         z-index: 9996;
     }
 }

 .hero {
     width: 100%;
     min-height: 100vh;
     background: url("../img/hero-bg.jpg") top center;
     background-size: cover;
     position: relative;
     padding: 120px 0;
     z-index: 3;
 }

 .hero .video-bg {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     min-width: 100%;
     min-height: 100%;
     width: auto;
     height: auto;
     z-index: -1;
 }

 @media (min-width: 1034px) {
     .hero:after {
         position: absolute;
         content: "";
         width: 40%;
         background: var(--color-primary);
         top: 0;
         bottom: 0;
     }
 }

 .hero:before {
     position: absolute;
     content: "";
     background: rgba(27, 47, 69, 0.6);
     inset: 0;
 }

 @media (max-width: 1034px) {
     .hero:before {
         background: rgba(27, 47, 69, 0.7);
     }
 }

 .hero .container {
     z-index: 1;
 }

 @media (min-width: 1365px) {
     .hero {
         background-attachment: fixed;
     }
 }

 .hero h2 {
     margin: 0;
     font-size: 48px;
     font-weight: 700;
     line-height: 1.2;
     color: #fff;
     font-family: var(--font-secondary);
 }

 .hero blockquote {
     color: #fff;
     padding-left: 20px;
     font-size: 18px;
     font-family: var(--font-default);
     border-left: 2px solid var(--color-secondary);
     margin: 40px 0;
 }

 .hero .btn-get-started {
     font-family: var(--font-secondary);
     font-weight: 500;
     font-size: 15px;
     letter-spacing: 1px;
     display: inline-block;
     padding: 12px 30px;
     border-radius: 50px;
     transition: 0.5s;
     color: #fff;
     background: var(--color-secondary);
 }

 .hero .btn-get-started:hover {
     background: var(--color-secondary-hover);
 }

 @media (max-width: 640px) {
     .hero h2 {
         font-size: 36px;
         line-height: 1;
     }

     .hero .btn-get-started,
     .hero .btn-watch-video {
         font-size: 13px;
     }
 }

 .why-us {
     padding-bottom: 120px;
 }

 .why-us .img-bg {
     min-height: 500px;
     background-size: cover;
 }

 .why-us .slides {
     background-color: #f7f9fc;
 }

 .why-us h3 {
     font-size: 24px;
     font-weight: 700;
     margin: 0 20px 0 0;
     color: var(--color-secondary);
 }

 .why-us .swiper {
     margin: 120px 120px 140px 120px;
     overflow: hidden;
 }

 .why-us .swiper p {
     margin: 0 20px 0 0;
     font-size: 16px;
 }

 .why-us .swiper-button-prev:after,
 .why-us .swiper-button-next:after {
     font-size: 24px;
     color: var(--color-secondary);
 }

 .why-us .swiper-button-prev {
     left: 80px;
 }

 .why-us .swiper-button-next {
     right: 80px;
 }

 .why-us .swiper-pagination {
     margin-top: 30px;
     position: relative;
 }

 .why-us .swiper-pagination .swiper-pagination-bullet {
     background-color: var(--color-secondary);
 }

 .why-us .swiper-pagination .swiper-pagination-bullet-active {
     background-color: var(--color-primary);
 }

 @media (max-width: 1200px) {
     .why-us .swiper {
         margin: 60px 60px 40px 60px;
     }

     .why-us .swiper-button-prev,
     .why-us .swiper-button-next {
         display: none;
     }
 }

 @media (max-width: 575px) {
     .why-us .swiper {
         margin: 40px 40px 20px 40px;
     }
 }

 .page-about .why-us {
     padding: 0 0 80px 0;
 }

 .services-list .service-item {
     position: relative;
 }

 .services-list .service-item .icon i {
     font-size: 32px;
     line-height: 0;
     margin-right: 20px;
     color: var(--color-secondary);
 }

 .services-list .service-item .title {
     font-weight: 700;
     margin-bottom: 5px;
     font-size: 18px;
 }

 .services-list .service-item .title a {
     color: var(--color-secondary);
 }

 .services-list .service-item .title a:hover {
     color: var(--color-secondary-hover);
 }

 .services-list .service-item .description {
     line-height: 24px;
     font-size: 15px;
 }

 .call-to-action {
     background: linear-gradient(rgba(27, 47, 69, 0.8), rgba(27, 47, 69, 0.8)), url("../img/cta-bg.jpg") center center;
     background-size: cover;
     padding: 100px 0;
 }

 @media (min-width: 1365px) {
     .call-to-action {
         background-attachment: fixed;
     }
 }

 .call-to-action h3 {
     color: #fff;
     font-size: 28px;
     margin-bottom: 25px;
     font-weight: 700;
 }

 .call-to-action p {
     color: #fff;
     margin-bottom: 25px;
 }

 .call-to-action .cta-btn {
     font-family: var(--font-default);
     font-weight: 500;
     font-size: 16px;
     letter-spacing: 1px;
     display: inline-block;
     padding: 12px 40px;
     border-radius: 50px;
     transition: 0.5s;
     margin: 10px;
     color: #fff;
     background: var(--color-secondary);
 }

 .call-to-action .cta-btn:hover {
     background: var(--color-secondary-hover);
 }

 .services-cards {
     background: #f7f9fc;
 }

 .services-cards .card-item {
     border: 1px solid rgba(27, 47, 69, 0.1);
     background: #fff;
     position: relative;
     border-radius: 0;
 }

 .services-cards .card-item .card-bg {
     min-height: 300px;
     background-size: cover;
     background-repeat: no-repeat;
 }

 .services-cards .card-item .card-body {
     padding: 30px;
 }

 .services-cards .card-item h4 {
     font-weight: 700;
     font-size: 20px;
     margin-bottom: 15px;
     color: var(--color-secondary);
 }

 .services-cards .card-item p {
     color: var(--color-secondary);
     margin: 0;
 }

 .client .client-item {
     box-sizing: content-box;
     padding: 30px;
     margin: 40px 30px;

     background: #fff;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
     transition: 0.3s;
 }

 .client .client-item .client-img {
     width: 150px;
     margin: 0 auto;
 }

 .client .swiper-pagination {
     margin-top: 20px;
     position: relative;
 }

 .client .swiper-pagination .swiper-pagination-bullet {
     width: 10px;
     height: 10px;
     background-color: var(--color-secondary);
     opacity: 1;
 }

 .client .swiper-pagination .swiper-pagination-bullet-active {
     background-color: var(--color-primary);
 }


 .contact {
     background: url("../img/contact-bg.png") left top no-repeat;
     background-size: contain;
     position: relative;
 }

 @media (max-width: 640px) {
     .contact {
         background-position: center 50px;
     }
 }

 .contact:before {
     content: "";
     background: rgba(255, 255, 255, 0.7);
     position: absolute;
     bottom: 0;
     top: 0;
     left: 0;
     right: 0;
 }

 .contact .info-item+.info-item {
     margin-top: 40px;
 }

 .contact .info-item i {
     font-size: 20px;
     background: var(--color-secondary);
     color: #fff;
     width: 44px;
     height: 44px;
     display: flex;
     justify-content: center;
     align-items: center;
     border-radius: 50px;
     transition: all 0.3s ease-in-out;
     margin-right: 15px;
 }

 .contact .info-item h4 {
     padding: 0;
     font-size: 20px;
     font-weight: 700;
     margin-bottom: 5px;
     color: var(--color-primary);
 }

 .contact .info-item p {
     padding: 0;
     margin-bottom: 0;
     font-size: 15px;
 }

 .contact .php-email-form {
     width: 100%;
 }

 .contact .php-email-form .form-group {
     padding-bottom: 8px;
 }

 .contact .php-email-form input,
 .contact .php-email-form textarea {
     border-radius: 0;
     box-shadow: none;
     font-size: 15px;
     padding: 12px 15px;
 }

 .contact .php-email-form input:focus,
 .contact .php-email-form textarea:focus {
     border-color: var(--color-primary);
 }

 .contact .php-email-form textarea {
     padding: 10px 12px;
 }

 .contact .php-email-form button[type=submit] {
     background: var(--color-secondary);
     border: 0;
     border-radius: 50px;
     padding: 12px 40px;
     margin-top: 10px;
     color: #fff;
     transition: 0.4s;
     width: 100%;
 }

 .contact .php-email-form button[type=submit]:hover {
     background: var(--color-secondary-hover);
 }

 @keyframes animate-loading {
     0% {
         transform: rotate(0deg);
     }

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

 .footer {
     font-size: 15px;
 }

 .footer .footer-content {
     background-color: var(--color-primary);
     background-size: contain;
     padding: 60px 0 30px 0;
 }

 .footer .footer-content .footer-info {
     margin-bottom: 30px;
 }

 .footer .footer-content .footer-info .logo {
     line-height: 0;
     margin-bottom: 25px;
 }

 .footer .footer-content .footer-info .logo img {
     max-height: 40px;
     margin-right: 6px;
 }

 .footer .footer-content .footer-info .logo span {
     font-size: 30px;
     font-weight: 700;
     letter-spacing: 1px;
     color: #fff;
     font-family: var(--font-secondary);
     margin-top: 3px;
 }

 .footer .footer-content .footer-info p {
     font-size: 15px;
     margin-bottom: 0;
     font-family: var(--font-primary);
     color: #fff;
 }

 .footer .footer-content .social-links a {
     font-size: 18px;
     line-height: 0;
     display: inline-block;
     width: 32px;
     height: 32px;
     margin-right: 10px;
     transition: 0.3s;
     display: flex;
     justify-content: center;
     align-items: center;
     color: #fff;
     border-radius: 50px;
 }

 .footer .footer-content .link {
     color: #fff;
 }

 .footer .footer-content .link:hover {
     color: var(--color-secondary-hover);
 }

 .footer .footer-content .social-links a:hover {
     background-color: var(--color-secondary);
 }

 .footer .footer-content h4 {
     font-size: 16px;
     font-weight: bold;
     color: #fff;
     position: relative;
     padding-bottom: 12px;
 }

 .footer .footer-content .footer-links {
     margin-bottom: 30px;
 }

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

 .footer .footer-content .footer-links ul i {
     margin-right: 2px;
     color: var(--color-secondary-hover);
     font-size: 16px;
     line-height: 0;
 }

 .footer .footer-content .footer-links ul li {
     padding: 10px 0;
     display: flex;
     align-items: center;
 }

 .footer .footer-content .footer-links ul li:first-child {
     padding-top: 0;
 }

 .footer .footer-content .footer-links ul a {
     color: #fff;
     transition: 0.3s;
     display: inline-block;
     line-height: 1;
 }

 .footer .footer-content .footer-links ul a:hover {
     color: var(--color-secondary-hover);
 }

 .footer .footer-content .footer-contact p {
     line-height: 26px;
     color: #fff;
 }

 .footer .footer-legal {
     background: var(--color-secondary);
     padding: 30px 0;
 }

 .footer .footer-legal .copyright {
     text-align: center;
     color: #fff;
 }

 .faq .faq-list {
     padding: 0;
     list-style: none;
 }

 .faq .faq-list li {
     border-bottom: 1px solid #eee;
     margin-bottom: 20px;
     padding-bottom: 20px
 }

 .faq .faq-list a {
     display: block;
     position: relative;
     color: var(--color-secondary-hover);
     font-size: 18px;
     line-height: 24px;
     font-weight: 400;
     padding-right: 25px;
     cursor: pointer
 }

 .faq .faq-list i {
     font-size: 24px;
     position: absolute;
     right: 0;
     top: 0
 }

 .faq .faq-list p {
     margin-bottom: 0;
     padding: 10px 0 0
 }

 .faq .faq-list .icon-show,
 .faq .faq-list a.collapsed .icon-close {
     display: none
 }

 .faq .faq-list a.collapsed {
     color: #343a40
 }

 .faq .faq-list a.collapsed .icon-show {
     display: inline-block
 }

 .pilares-list .pilares-item {
     position: relative;
 }

 .pilares-list .pilares-item .icon i {
     font-size: 62px;
     line-height: 0;
     color: var(--color-secondary);
 }

 .pilares-list .pilares-item .title {
     font-weight: 700;
     margin-bottom: 5px;
     font-size: 24px;
     justify-content: center;
     text-align: center;
 }

 .pilares-list .pilares-item .title a {
     color: var(--color-secondary);
 }

 .pilares-list .pilares-item .title a:hover {
     color: var(--color-secondary-hover);
 }

 .pilares-list .pilares-item .description {
     line-height: 24px;
     font-size: 18px;
     justify-content: center;
     text-align: center;
 }

 .numbers-list .numbers-item {
     position: relative;
 }

 .numbers-list .numbers-item .icon i {
     font-size: 62px;
     line-height: 0;
     color: var(--color-secondary);
 }


 .numbers-list .numbers-item .title {
     font-weight: 700;
     margin-bottom: 5px;
     font-size: 24px;
     justify-content: center;
     text-align: center;
 }

 .numbers-list .numbers-item .title a {
     color: var(--color-secondary);
 }

 .numbers-list .numbers-item .title a:hover {
     color: var(--color-secondary-hover);
 }

 .numbers-list .numbers-item .description {
     line-height: 24px;
     font-size: 18px;
     justify-content: center;
     text-align: center;
 }

 .features {
     padding-bottom: 0;
 }

 .features h3 {
     color: var(--color-secondary);
     font-size: 32px;
     font-weight: 700;
     margin-bottom: 30px;
 }

 .features .icon-list i {
     margin-right: 10px;
     font-size: 24px;
     line-height: 1.2;
 }

 .features .icon-list span {
     font-size: 18px;
     color: #29486a;
 }

 .features .phone-wrap {
     position: absolute;
     right: 0;
 }

 @media (max-width: 768px) {
     .features .phone-wrap {
         position: relative;
     }
 }

 .features .phone-wrap img {
     width: 340px;
 }

 @media (max-width: 992px) {
     .features .phone-wrap img {
         margin-top: 30px;
     }
 }

 @media (max-width: 768px) {
     .features .phone-wrap img {
         width: 100%;
     }
 }

 .features .details {
     margin-top: 80px;
     padding: 120px 0;
     background-color: #f7f9fc;
 }

 .features .details h4 {
     color: var(--color-secondary);
     font-size: 32px;
     font-weight: 700;
     margin-bottom: 20px;
 }

 .features .details p {
     margin-bottom: 20px;
     font-size: 15px;
 }

 .features .details .btn-get-started {
     font-family: var(--font-primary);
     display: inline-block;
     font-weight: 500;
     font-size: 15px;
     letter-spacing: 1px;
     padding: 10px 32px;
     border-radius: 50px;
     transition: 0.5s;
     background-color: var(--color-primary);
     color: #fff;
 }

 .features .details .btn-get-started:hover {
     background: #2aa5df;
 }

 .whatsapp {
     position: fixed;
     visibility: hidden;
     opacity: 0;
     right: 15px;
     bottom: 80px;
     z-index: 99999;
     background: #29cb34;
     width: 60px;
     height: 60px;
     border-radius: 4px;
     transition: all 0.4s;
 }

 .whatsapp i {
     font-size: 24px;
     color: #fff;
     line-height: 0;
 }

 .whatsapp:hover {
     background: #38e344;
     color: #fff;
 }

 .whatsapp.active {
     visibility: visible;
     opacity: 1;
 }





 /*--------------------------------------------------------------
# Blog Details Page
--------------------------------------------------------------*/
 .blog .blog-details {
     box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
     padding: 30px;
 }

 .blog .blog-details .post-img {
     display: flex;
     justify-content: center;
     width: 100%;
     height: 500px;
     overflow: hidden;
     /* margin: -30px -30px 20px -30px; */
 }

 .blog .blog-details .post-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 20px;
 }

 .blog .blog-details .title {
     font-size: 28px;
     font-weight: 700;
     padding: 0;
     margin: 20px 0 0 0;
     color: var(--color-secondary);
 }

 .blog .blog-details .content {
     margin-top: 20px;
 }

 .blog .blog-details .content h3 {
     font-size: 22px;
     margin-top: 30px;
     font-weight: bold;
 }

 .blog .blog-details .content blockquote {
     overflow: hidden;
     background-color: rgba(27, 47, 69, 0.06);
     padding: 60px;
     position: relative;
     text-align: center;
     margin: 20px 0;
 }

 .blog .blog-details .content blockquote p {
     color: var(--color-default);
     line-height: 1.6;
     margin-bottom: 0;
     font-style: italic;
     font-weight: 500;
     font-size: 22px;
 }

 .blog .blog-details .content blockquote:after {
     content: "";
     position: absolute;
     left: 0;
     top: 0;
     bottom: 0;
     width: 3px;
     background-color: var(--color-secondary);
     margin-top: 20px;
     margin-bottom: 20px;
 }

 .blog .blog-details .meta-top {
     margin-top: 20px;
     color: var(--color-gray);
 }

 .blog .blog-details .meta-top ul {
     display: flex;
     flex-wrap: wrap;
     list-style: none;
     align-items: center;
     padding: 0;
     margin: 0;
 }

 .blog .blog-details .meta-top ul li+li {
     padding-left: 20px;
 }

 .blog .blog-details .meta-top i {
     font-size: 16px;
     margin-right: 8px;
     line-height: 0;
     color: rgba(86, 184, 230, 0.8);
 }

 .blog .blog-details .meta-top a {
     color: var(--color-gray);
     font-size: 14px;
     display: inline-block;
     line-height: 1;
 }


 /*--------------------------------------------------------------
  # Blog Home Pagination
  --------------------------------------------------------------*/
 .blog .blog-pagination {
     margin-top: 30px;
     color: #38618e;
 }

 .blog .blog-pagination ul {
     display: flex;
     padding: 0;
     margin: 0;
     list-style: none;
 }

 .blog .blog-pagination li {
     margin: 0 5px;
     transition: 0.3s;
 }

 .blog .blog-pagination li a {
     color: #2aa5df;
     border-radius: 50%;
     width: 40px;
     height: 40px;
     background: #dbf0fa;
     padding: 7px 16px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .blog .blog-pagination li.active a,
 .blog .blog-pagination li:hover a {
     background: var(--color-primary);
     color: #fff;
 }

 .testimonials .testimonial-item {
     box-sizing: content-box;
     padding: 30px;
     margin: 40px 30px;
     box-shadow: 0px 0 20px rgba(27, 47, 69, 0.1);
     background: #fff;
     min-height: 320px;
     display: flex;
     flex-direction: column;
     text-align: center;
     transition: 0.3s;
 }

 .testimonials .testimonial-item .stars {
     margin-bottom: 15px;
 }

 .testimonials .testimonial-item .stars i {
     color: #ffc107;
     margin: 0 1px;
 }

 .testimonials .testimonial-item .testimonial-img {
     width: 90px;
     border-radius: 50%;
     border: 4px solid #fff;
     margin: 0 auto;
 }

 .testimonials .testimonial-item h3 {
     font-size: 18px;
     font-weight: bold;
     margin: 10px 0 5px 0;
     color: #111;
 }

 .testimonials .testimonial-item h4 {
     font-size: 14px;
     color: #999;
     margin: 0;
 }

 .testimonials .testimonial-item p {
     font-style: italic;
     margin: 0 auto 15px auto;
 }

 .testimonials .swiper-pagination {
     margin-top: 20px;
     position: relative;
 }

 .testimonials .swiper-pagination .swiper-pagination-bullet {
     width: 10px;
     height: 10px;
     background-color: #e8eff6;
     opacity: 1;
 }

 .testimonials .swiper-pagination .swiper-pagination-bullet-active {
     background-color: var(--color-primary);
 }

 .testimonials .swiper-slide {
     opacity: 0.3;
 }

 @media (max-width: 1199px) {
     .testimonials .swiper-slide-active {
         opacity: 1;
     }

     .testimonials .swiper-pagination {
         margin-top: 0;
     }

     .testimonials .testimonial-item {
         margin: 40px 20px;
     }
 }

 @media (min-width: 1200px) {
     .testimonials .swiper-slide-next {
         opacity: 1;
         transform: scale(1.12);
     }
 }