:root {
    --primary: #50AFE4;
    --light: #F8F8F8;
    --dark: #252525;
}
body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #777;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow-x: hidden;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    line-height: 1.2;
    color: #252525;
}
h1, h2, .h1, .h2, .fw-bold {
    font-weight: 700 !important;
}
h3, h4, .h3, .h4, .fw-medium {
    font-weight: 600 !important;
}
h5, h6, .h5, .h6, .fw-normal {
    font-weight: 500 !important;
}
p{
    font-family: "Montserrat", sans-serif;
    font-size: 15px !important;
    line-height: 26px;
    font-weight: 500 !important;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}
.btn.btn-primary, .btn.btn-secondary {
    color: #FFFFFF;
}
.btn-square {
    width: 38px;
    height: 38px;
}
.btn-sm-square {
    width: 32px;
    height: 32px;
}
.btn-lg-square {
    width: 48px;
    height: 48px;
}
.btn-square, .btn-sm-square, .btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}
.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}
/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
   /* text-transform: uppercase;
    */
    outline: none;
}
.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}
@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
   }
    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
   }
}
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
   }
    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
   }
}
/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
   }
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
   }
    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
   }
}
.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}
.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}
.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}
.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}
/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
}
/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}
.fact-item:hover .fact-icon {
    background: var(--dark);
}
.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}
.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}
/*** About & Feature ***/
.about-img, .feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}
.about-img img, .feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}
.about-img img:last-child, .feature-img img:last-child {
    margin: 20% 0 0 40%;
}
.about-img::before, .feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}
/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.service-item .service-text {
    background: var(--light);
    transition: .5s;
    width: 100%;
}
.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}
.service-item * {
    transition: .5;
}
.service-item:hover * {
    color: #FFFFFF;
}
.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}
.service-item:hover .btn {
    width: 140px;
}
/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}
.project .nav .nav-link.active {
    background: var(--primary);
}
.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}
/*** Team ***/
.team-items {
    margin: -.75rem;
}
.team-item {
    padding: .75rem;
}
.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}
.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}
.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}
.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: #fff;
}
.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}
/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}
.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}
.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}
.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}
.bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}
.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}
/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}
.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}
.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}
.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}
.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}
.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}
.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}
/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}
.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}
.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}
.footer .form-control {
    border-color: #777777;
}
.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}
.footer .copyright a {
    color: var(--light);
}
.footer .copyright a:hover {
    color: var(--primary);
}
.bg-color{
    background-color: var(--primary);
}
section {
    padding-top: 60px;
    padding-bottom: 60px;
}
section.choose-section {
    background: #f9f9f9;
}
.header-carousel .owl-carousel-item.position-relative {
    height: 80vh;
}
.gallery-title {
    font-size: 36px;
    color: #50afe4;
    text-align: center;
    font-weight: 500;
    margin-bottom: 70px;
}
.gallery-title:after {
    content: "";
    position: absolute;
    width: 7.5%;
    left: 46.5%;
    height: 45px;
    border-bottom: 1px solid #50afe4;
}
.filter-button {
    font-size: 16px;
    border: 1px solid #50afe4;
    border-radius: 0;
    text-align: center;
    color: #50afe4;
    margin-bottom: 30px;
    margin-right: 15px;
}
.filter-button:hover {
    color: #ffffff;
    background-color: #50afe4;
}
.btn-default:active .filter-button:active {
    background-color: #50afe4;
    color: white;
}
.port-image {
    width: 100%;
}
.gallery_product {
    margin-bottom: 30px;
    position: relative;
}
.gallery_product img {
    height: 305px;
    object-fit: cover;
    width: 100%;
}
.image {
    display: block;
    width: 100%;
    height: auto;
}
.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #50afe4;
}
.gallery_product:hover .overlay {
    opacity: 1;
}
.text {
    color: white;
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    transition: 0.3s cubic-bezier(0.43, 0.07, 0.61, 0.95);
}
.blog-section .post-box {
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    transition: 0.3s;
    height: 100%;
    overflow: hidden;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.blog-section .post-box .post-img {
    overflow: hidden;
    margin: -30px -30px 15px -30px;
    position: relative;
}
.blog-section .post-box .post-img img {
    transition: 0.5s;
    height: 240px;
    width: 100%;
    object-fit: cover;
}
.blog-section .post-box .post-date {
    font-size: 14px;
    font-weight: 600;
    color: rgba(1, 41, 112, 0.6);
    display: block;
    margin-bottom: 10px;
}
.blog-section .post-box .post-title {
    font-size: 18px;
    color: #000;
    margin-bottom: 18px;
    position: relative;
    transition: 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 28px;
}
.blog-section .post-box .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
}
.blog-section .post-box .readmore i {
    line-height: 0;
    margin-left: 4px;
    font-size: 18px;
}
.blog-section .post-box:hover .post-title {
    color: #50afe4;
}
.blog-section .post-box:hover .post-img img {
    transform: rotate(6deg) scale(1.2);
}
.choose-section h3{
    font-size: 22px;
}
.choose-section img.icon-small{
    height: 55px;
}
.onfocus {
    padding: 0;
}
.video-play {
    background-size: cover;
}
.onfocus .content {
  
    background-size: cover;
    color: #fff;
    padding: 40px;
}
@media (min-width: 768px) {
    .onfocus .content {
        padding: 80px;
   }
}
.onfocus .content h3 {
    font-weight: 600;
    font-size: 32px;
    color: #fff;
}
.onfocus .content ul {
    list-style: none;
    padding: 0;
}
.onfocus .content ul li {
    padding-bottom: 10px;
}
.onfocus .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #50AFE4;
}
.onfocus .content p:last-child {
    margin-bottom: 0;
}
.onfocus .content .read-more {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: -nline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #50AFE4;
}
.onfocus .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}
.onfocus .content .read-more:hover {
    background: #50AFE4;
    padding-right: 19px;
}
.onfocus .content .read-more:hover i {
    margin-left: 10px;
}
.play-btn {
    width: 94px;
    height: 94px;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
    background: #50afe4;
}
.play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-btn 2s;
    animation-iteration-count: infinite;
    opacity: 1;
    border-radius: 50%;
   /* border: 5px solid rgba(var(--color-primary-rgb), 0.7);
    */
    top: -15%;
    left: -15%;
    background: #0dcaf0;
}
.play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid white;
    border-bottom: 10px solid white;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    clip-path: polygon(100% 50%, 0 0, 0 100%);
}
@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
   }
    100% {
        transform: scale(1, 1);
        opacity: 0;
   }
}
.content-part{
    background-size: cover;
}
.display-6 {
    font-size: 2rem;
}
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #777;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #50afe4;
    appearance: none;
    border-radius: 0px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-select {
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #777;
    background-color: #fff;
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: 1px solid #50afe4;
    border-radius: 0px;
    appearance: none;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1rem;
    clear: both;
    font-weight: 500;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    padding: 10px 15px;
    border-bottom: 1px solid #50afe4;
    font-size: 15px;
}
.dropdown-item:last-child{
   
    padding: 10px 15px 0;
    border-bottom: 0px solid #50afe4;
}
.btn-primary:hover {
    color: #50AFE4;
    background-color: #fff;
    border-color: #50AFE4;
    transition: 0.6s;
}
.testimonal-section {
    padding: 80px 0;
    background-position: center center;
    background-size: cover;
    position: relative;
}
.testimonal-section:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #3a4753cc;
    opacity: 0.8;
}
.testimonal-section .testimonial-item {
    text-align: center;
    color: #fff;
    margin-top: 50px;
    width: 80%;
    margin-inline: auto;
}
  
  .testimonal-section .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50%;
    border: 6px solid #fff;
    margin: 0 auto;
  }
  
  .testimonal-section .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #fff;
  }
  
  .testimonal-section .testimonial-item h4 {
    font-size: 14px;
    color: #fff;
    margin: 0 0 15px 0;
  }
  
  .testimonal-section .testimonial-item .stars {
    margin-bottom: 15px;
  }
  
  .testimonal-section .testimonial-item .stars i {
    color: #f7e705;
    margin: 0 1px;
  }
  
  .testimonal-section .testimonial-item .quote-icon-left,
  .testimonal-section .testimonial-item .quote-icon-right {
    color: #fff;
    font-size: 26px;
    line-height: 0;
  }
  
  .testimonal-section .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
  }
  
  .testimonal-section .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
  }
  
  .testimonal-section .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
  }
  section.footer-section {
    background: #485664;
    padding-top: 20px;
}
.footer-list ul {
    padding: 0;
    margin: 0;
}
.footer-list ul li {
    list-style: none;
    margin-bottom: 12px;
}
.footer-list ul li:last-child{
    list-style: none;
    margin-bottom: 0px;
}
.footer-list ul li a{
    font-weight: 16px;
    font-weight: 500;
}
.breadcrumb-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}
.breadcrumb-section:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #3a4753cc;
    opacity: 0.8;
}
.service-detail-img img {
    width: 100%;
    object-fit: cover;
}
.service-detail-section p {
    font-size: 16px !important;
    line-height: 28px !important;
    font-weight: 500 !important;
}
.project-detail-img img {
    height: 480px;
    object-fit: cover;
}

.project-goal ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.project-goal ul li {
    display: inline-grid;
}
.project-goal ul li img {
    height: 210px;
    margin-right: 15px;
}
.project-info .info h5 {
    font-size: 16px;
    font-weight: 600 !important;
    margin-bottom: 5px;
}
.project-info .info p {
    font-size: 16px;
}
.project-info .info {
    margin-bottom: 30px;
}
.project-info {
    margin-left: 20%;
}
.project-info-part {
    border-right: 1px solid #d9d9d9;
    padding-right: 40px;
}

.blog-detail-section .blog-details {
    box-shadow: 0 4px 16px #0000001a;
    padding: 30px;
  }
  
.blog-detail-section .blog-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
  }
  
.blog-detail-section .blog-details .title {
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 20px 0 0 0;
  }
  
.blog-detail-section .blog-details .content {
    margin-top: 20px;
  }
  
.blog-detail-section .blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
  }
  

.blog-detail-section .blog-details .meta-top {
    margin-top: 20px;
    color: #6c757d;
  }
  
.blog-detail-section .blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  
.blog-detail-section .blog-details .meta-top ul li+li {
    padding-left: 20px;
  }
  
.blog-detail-section .blog-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: #50AFE4;
  }
  
.blog-detail-section .blog-details .meta-top a {
    /* color: var(--color-gray); */
    font-size: 14px;
    display: inline-block;
    line-height: 1;
  }
  
.blog-detail-section .blog-details .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid #d9d9d9;
  }
  
.blog-detail-section .blog-details .meta-bottom i {
    display: inline;
  }
  
.blog-detail-section .blog-details .meta-bottom a {
    color: rgba(var(--color-secondary-rgb), 0.8);
    transition: 0.3s;
  }
  
.blog-detail-section .blog-details .meta-bottom a:hover {
    color: #50AFE4;
  }
  
.blog-detail-section .blog-details .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
  }
  
.blog-detail-section .blog-details .meta-bottom .cats li {
    display: inline-block;
  }
  
.blog-detail-section .blog-details .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
  }
  
.blog-detail-section .blog-details .meta-bottom .tags li {
    display: inline-block;
  }
  
.blog-detail-section .blog-details .meta-bottom .tags li+li::before {
    padding-right: 6px;
    color: var(--color-default);
    content: ",";
  }
  
.blog-detail-section .blog-details .meta-bottom .share {
    font-size: 16px;
  }
  
.blog-detail-section .blog-details .meta-bottom .share i {
    padding-left: 5px;
  }
  
.blog-detail-section .post-author {
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
  }
  
.blog-detail-section .post-author img {
    max-width: 120px;
    margin-right: 20px;
  }
  
.blog-detail-section .post-author h4 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
    color: #4856640f;
  }
  
.blog-detail-section .post-author .social-links {
    margin: 0 10px 10px 0;
  }
  
.blog-detail-section .post-author .social-links a {
    color: rgba(var(--color-secondary-rgb), 0.5);
    margin-right: 5px;
  }
  
.blog-detail-section .post-author p {
    font-style: italic;
    color: rgba(var(--color-gray-rgb), 0.8);
    margin-bottom: 0;
  }
 
.blog-detail-section .sidebar {
    padding: 30px;
    box-shadow: 0 4px 16px #0000001a;
  }
  
.blog-detail-section .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0;
    color: #000;
  }
  
.blog-detail-section .sidebar .sidebar-item+.sidebar-item {
    margin-top: 40px;
  }
  
  .blog .sidebar .search-form form {
    background: #fff;
    border: 1px solid #4856644d;
    padding: 3px 10px;
    position: relative;
}
  
.blog-detail-section .sidebar .search-form form input[type=text] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
  }
  
.blog-detail-section .sidebar .search-form form input[type=text]:focus {
    outline: none;
  }
  
.blog-detail-section .sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: #50AFE4;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
  }
  
.blog-detail-section .sidebar .search-form form button i {
    line-height: 0;
  }
  
  .blog-detail-section .sidebar .search-form form button:hover {
    background: #50afe4;
}
  
.blog-detail-section .sidebar .categories ul {
    list-style: none;
    padding: 0;
  }
  
.blog-detail-section .sidebar .categories ul li+li {
    padding-top: 10px;
  }
  
  .blog-detail-section .sidebar .categories ul a {
    color: #000;
    transition: 0.3s;
}
  

  
.blog-detail-section .sidebar .recent-posts .post-item {
    display: flex;
  }
  
.blog-detail-section .sidebar .recent-posts .post-item+.post-item {
    margin-top: 15px;
  }
  
.blog-detail-section .sidebar .recent-posts img {
    width: 80px;
    margin-right: 15px;
  }
  
.blog-detail-section .sidebar .recent-posts h4 {
    font-size: 15px;
  }
  
.blog-detail-section .sidebar .recent-posts h4 a {
    color: #000;
    transition: 0.3s;
  }
  
.blog-detail-section .sidebar .recent-posts h4 a:hover {
    color: #50AFE4;
  }
  
.blog-detail-section .sidebar .recent-posts time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: #000;
  }
  
.blog-detail-section .sidebar .tags {
    margin-bottom: -10px;
  }
  
.blog-detail-section .sidebar .tags ul {
    list-style: none;
    padding: 0;
  }
  
.blog-detail-section .sidebar .tags ul li {
    display: inline-block;
  }
  
  .blog-detail-section .sidebar .tags ul a {
    color: #000;
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid #000;
    display: inline-block;
    transition: 0.3s;
}
  
.blog-detail-section .sidebar .tags ul a:hover {
    color: #fff;
    border: 1px solid #50AFE4;
    background: #50AFE4;
  }
  

  .form-control:focus {
    color: #777;
    background-color: #fff;
    border-color: #50afe4;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(255 255 255 / 0%);
}
.form-select:focus {
    border-color: #50afe4;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(255 255 255 / 0%);
}
.iframe iframe{
    width: 100%;
    height: 400px;
}
.contact-inner-section input{
    height: 55px;
}
.gallery-image-inner {
    margin-bottom: 30px;
  }
  .gallery-image-inner img {
    height: 240px;
    object-fit: cover;
    width: 100%;
}
  .gallery-icon {
    position: relative;
  }
  .overlay-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #0000007a;
    border-radius: 10px;
  }
  .gallery-icon:hover .overlay-icon {
    opacity: 1;
  }
  .gallery-icon .text-icon {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .gallery-icon .text-icon a {
    color: #000;
    padding: 20px 40px;
  }
  .text-icon i{
    color: #fff;
  }
  section.service-detail-section h4 {
    font-size: 20px;
    font-weight: 800;
}
section.service-detail-section ul li {
    line-height: 32px !important;
}
.content ul li {
    margin-left: 10px;
}