/********** Template CSS **********/
:root {
    --primary: var(--primary);
    --secondary: var(--secondary);
    --light: #F7F8FC;
    --dark: #111111;
}

a {
    text-decoration: none !important;
}

body {
    position: relative;
    overflow-y: scroll;
}

body, h1, h2, h3, h4, h5, h6, p, label, a, span  {
    font-family: 'Font Primary';
}

.text-justify {
    text-align: justify;
}

.btn-check:checked+.btn-outline-primary:focus,
.btn-check:active+.btn-outline-primary:focus,
.btn-outline-primary:active:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus {
    box-shadow: none !important;
}

.form-control:focus {
    color: #555;
    background-color: #fff;
    border-color: transparent !important;
    outline: 0;
    box-shadow: none !important;
}

.pt-content {
    padding-top: var(--margin-nav);
}

.mt-content {
    margin-top: var(--margin-nav);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 9;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.pt-mobile {
    padding-top: 88px;
}

.bg-icon {
    background: url(../img/bg-icon.png) center center repeat;
    background-size: contain;
}

.fs-3rem {
    font-size: 3rem;
}

.detail-img {
    height: 450px;
    object-fit: contain;
    width: 100%;
}

/*** Background ***/
.bg-primary {
    background-color: var(--primary) !important;
}
.bg-secondary {
    background-color: var(--secondary) !important;
}
.bg-tertiary {
    background-color: var(--tertiary) !important;
}
.bg-quaternary {
    background-color: var(--quaternary) !important;
}
.bg-light {
    background-color: var(--light) !important;
}
.bg-dark {
    background-color: var(--dark) !important;
}


/*** 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;
}


/*** Text ***/
.text-primary {
    color: var(--primary) !important;
}
.text-secondary {
    color: var(--secondary) !important;
}
.text-tertiary {
    color: var(--tertiary) !important;
}
.text-quaternary {
    color: var(--quaternary) !important;
}
.text-light {
    color: var(--light) !important;
}
.text-dark {
    color: var(--dark) !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-outline-primary:hover,
.btn.btn-outline-secondary:hover {
    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:focus, .btn:active {
    /* box-shadow:0 0 0 .25rem var(--tertiary) !important; */
    box-shadow:0 0 0 0 transparent !important;
}

.btn.btn-primary {
    background-color: var(--tertiary);
    border-color: var(--tertiary);
}

.btn.btn-primary:hover {
    background-color: var(--tertiary);
    border-color: var(--tertiary);
}

.btn.btn-secondary {
    background-color: var(--quaternary);
    border-color: var(--quaternary);
}

.btn.btn-secondary:hover {
    background-color: var(--quaternary);
    border-color: var(--quaternary);
}

.btn.btn-outline-primary {
    color: var(--tertiary);
    border-color: var(--tertiary);
}

.btn.btn-outline-primary:hover {
    color: var(--tertiary);
    border-color: var(--tertiary);
}

.btn.btn-outline-secondary {
    background-color: var(--quaternary);
    border-color: var(--quaternary);
}

.btn.btn-outline-secondary:hover {
    background-color: var(--quaternary);
    border-color: var(--quaternary);
}

.btn-check:checked+.btn-outline-primary,
.btn-check:active+.btn-outline-primary,
.btn-outline-primary:active,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show {
    color: #000;
    background-color: var(--tertiary);
    border-color: var(--tertiary);
}

.sortable-handler {
    touch-action: none;
  }

/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.navbar {
    background-color: var(--bg-color-nav);
    background-image: var(--bg-img-nav);
    background-repeat: repeat !important;
    background-position: center !important;
    background-size: cover !important;
    box-shadow: -8px 0 20px #999;
}

.navbar-logo {
    height: 62px;
    max-width: 200px;
    object-fit: contain;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.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 {
    padding: 25px;
    color: #555555;
    font-weight: 500;
    outline: none;
    transition: all 0.5s;
    border-bottom: 5px solid transparent;
    border-radius: 0px !important;
}

.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .nav-link.active  {
    color: var(--active) !important;
    border-bottom: 5px solid var(--active);
}

.navbar .navbar-nav .nav-link {
    position: relative;
}

.navbar .navbar-nav .nav-link::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: var(--active);
    color: transparent;
    width: 0%;
    content: '';
    height: 5px;
}
.navbar .navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* .navbar .navbar-nav .nav-link {
    transition: all 0.5s;
    border-bottom: 3px solid transparent;
    border-radius: 0px !important;
}

.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link {
    color: var(--active) !important;
    background-color: transparent !important;
    border-bottom: 5px solid var(--active);
    border-radius: 0px !important;
} */

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background-image: var(--bg-img-nav);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }

    .floating-button img {
        min-width: 50px;
        max-width: 150px;
    }

    .floating-button{
        position:fixed;
        bottom:35px;
        right:25px;
        background-color:transparent;
        color:#FFF;
        /* border-radius:50px; */
        text-align:center;
        /* box-shadow: 2px 2px 3px #999; */
        z-index: 10;
    }

    .back-to-top {
        right: 5px;
        bottom: 10px;
        font-size: 0.75rem !important;
    }

    .btn-lg-square {
        width: 38px;
        height: 38px;
    }
}

@media (min-width: 992px) {
    .navbar .navbar-nav .nav-link {
        padding: 1em 1.5em !important;
    }
    .navbar-nav .nav-link.active, .navbar-nav .show>.nav-link {
        padding: 1em 1.5em !important;
    }
    .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;
    }

    .floating-button img {
        min-width: 70px;
        max-width: 250px;
    }

    .floating-button{
        position:fixed;
        width:auto;
        height:auto;
        bottom:50px;
        right:70px;
        background-color:transparent;
        color:#FFF;
        /* border-radius:50px; */
        text-align:center;
        /* box-shadow: 2px 2px 3px #999; */
        z-index: 10;
    }

    .gallery-detail-desc {
        max-height: 500px;
        overflow: auto;
    }
}

@media (max-width: 1199px) {
    .relatedgallery {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .gallery-related-control li {
        position: absolute;
        z-index: 99;
        top: 50%;
        transform: translateY(-50%);
        color: var(--light);
        /* background: rgba(172, 172, 172, 0.5); */
        background: var(--primary);
        opacity: 0.5;
        padding: 8px 17px;
        border-radius: 50%;
        cursor: pointer;
        /* font-size: 22px; */
    }
}

@media (min-width: 1200px) {
    .relatedgallery {
        padding-right: 3.5rem;
        padding-left: 3.5rem;
    }

    .gallery-related-control li {
        position: absolute;
        z-index: 99;
        top: 50%;
        transform: translateY(-50%);
        color: var(--light);
        /* background: rgba(172, 172, 172, 0.5); */
        background: var(--primary);
        opacity: 0.5;
        padding: 8px 20px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    .relatedgallery {
        padding-right: 1.8rem;
        padding-left: 1.8rem;
    }

    .gallery-related-control li {
        position: absolute;
        z-index: 99;
        top: 60%;
        transform: translateY(-50%);
        color: var(--light);
        /* background: rgba(172, 172, 172, 0.5); */
        background: var(--primary);
        opacity: 0.5;
        padding: 4px 10px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 10px;
    }

    .about-image-size {
        width: 100%;
        object-fit: contain;
        height: auto;
        margin-bottom: 60px;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: #9e9e9e;
    border: 10px solid #9e9e9e;
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery-related-size {
        font-size: 15px;
    }
}
@media (min-width: 768px) {
    .about-image-size {
        width: 40%;
        object-fit: contain;
        height: auto;
        margin: auto 5%;
        margin-bottom: 60px;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/carousel-1.jpg) top right no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Section Header ***/
.section-header {
    position: relative;
    padding-top: 25px;
}

.section-header::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
}

.section-header::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 2px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
}

.section-header.text-start::before,
.section-header.text-start::after {
    left: 0;
    transform: translateX(0);
}



/*** About ***/
.about {
    background: var(--bg-img-about);
    background-repeat: repeat !important;
    background-position: center !important;
    background-size: cover !important;
}
.about-img img {
    position: relative;
    z-index: 2;
}

/* .about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background-image: -webkit-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -moz-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -ms-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -o-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-size: 20px 20px;
    transform: skew(20deg);
    z-index: 1;
} */

/*** About Detail ***/

.about-detail {
    background: var(--bg-img-about-detail);
    background-repeat: repeat !important;
    background-position: center !important;
    background-size: cover !important;
}

/*** Our Services ***/
.services-carousel .owl-item .services-item img {
    /* width: 60px; */
    height: 350px;
    object-fit: contain;
}

.services-carousel .owl-item .services-item,
.services-carousel .owl-item .services-item * {
    transition: .5s;
}

/* .services-carousel .owl-item.center .services-item {
    background: var(--primary) !important;
}

.services-carousel .owl-item.center .services-item * {
    color: #FFFFFF !important;
}

.services-carousel .owl-item.center .services-item i {
    color: var(--secondary) !important;
} */

/* .services-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.services-carousel .owl-nav .owl-prev,
.services-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.services-carousel .owl-nav .owl-prev:hover,
.services-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
} */

.services-carousel {
    position:relative;
}
.services-carousel .owl-nav{
    position: initial;
    /* display: block !important; */
}

.services-carousel .owl-nav div{
    position: absolute;
    /* top: 35%; */
    top: 40%;
    /* width: 100%; */
}

.services-carousel .owl-prev,
.services-carousel .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border: 2px solid #9e9e9e;
    background-color: #9e9e9e;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
    position: absolute;
    opacity: 0.5;
}

.services-carousel .owl-nav .owl-prev:hover,
.services-carousel .owl-nav .owl-next:hover {
    opacity: 1;
}

.services-carousel .owl-prev {
    left:0;
}

.services-carousel .owl-next {
    right:0;
}

/*** Gallery ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.gallery {
    background-image: var(--bg-img-gallery);
    background-repeat: repeat !important;
    background-position: center !important;
    background-size: cover !important;
}

.gallery-item-image {
    border: 1px solid #E2E2E2;
}

.gallery-item-image-text {
    background-color: #F2F2F2;
    height: 80px;
}

.gallery-item-text-decoration {
    /* height: 40px; */
    line-height: 25px;
    word-break: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    -ms-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.gallery-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.gallery-item img {
    transition: .5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item small a:hover {
    color: var(--primary) !important;
}

.gallery-image {
    height: 350px;
}

.gallery-image img{
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.gallery-text-color {
    color: var(--gallery-text-color) !important;
}

.gallery .nav-pills .nav-item a:hover {
    /* background-color: var(--tertiary); */
}

.gallery .nav-pills .nav-item .active {
    color: var(--tertiary) !important;
    border-bottom: 5px solid var(--tertiary);
    padding-bottom: 11px;
    font-weight: bolder !important;
}

.gallery .nav-pills .nav-item {
    position: relative;
    font-size: 20px;
}

.gallery .nav-pills .nav-item::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: var(--tertiary);
    color: transparent;
    width: 0%;
    content: '';
    height: 5px;
}
.gallery .nav-pills .nav-item:hover::after {
    width: 100%;
}

.owl-item .gallery-category-item,
.gallery-category .owl-item .services-item * {
    transition: .5s;
}

.gallery-category .owl-stage {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: box;
}

.gallery-category .owl-nav{
    position: initial;
    /* display: block !important; */
}

.gallery-category .owl-nav div{
    position: absolute;
    top: 10%;
}

.gallery-category .owl-prev,
.gallery-category .owl-next {
    margin: 0 12px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border: 2px solid #9e9e9e;
    background-color: #9e9e9e;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
    position: absolute;
    opacity: 0.5;
}

.gallery-category .owl-nav .owl-prev:hover,
.gallery-category .owl-nav .owl-next:hover {
    opacity: 1;
}

.gallery-category .owl-prev {
    left:-30px;
}

.gallery-category .owl-next {
    right:-30px;
}

.gallery-category .owl-nav .disabled {
    display: none;
}

.gallery-showmore-color {
    background-color: var(--gallery-showmore-color) !important;
    border-color: var(--gallery-showmore-color) !important;
}

/*** Gallery Detail ***/
.gallery-detail {
    background: var(--bg-img-gallery-detail);
    background-repeat: repeat !important;
    background-position: center !important;
    background-size: cover !important;
}

.gallery-detail-desc>table {
    table-layout:auto;
    width:100% !important;
    height: auto !important;
}
.gallery-detail-btn-order {
    background-color: transparent !important;
    border-color: transparent !important;
}

.gallery-detail-btn-order img {
    max-width: 230px;
}

.gallery-detail-slider{
    /* max-height: 500px; */
}
.gallery-detail-slider .slider-item {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-detail-slider .slider-item img {
    max-height: 100%;
    max-width: 100%;
}
.customize-tools { position: relative; }
.gallery-detail-thumbnails {
  margin: 20px 0;
  text-align: center;
}
.gallery-detail-thumbnails li {
  display: inline-block;
  cursor: pointer;
  border: 3px solid #fff;
}
.gallery-detail-thumbnails .tns-nav-active {
  background: none;
  border-color: #9e9e9e;
}
.gallery-detail-thumbnails li { width: 100px; }
.gallery-detail-thumbnails img { vertical-align: bottom; height: auto; max-height: 150px; }

.gallery-detail-control {
    list-style: none;
}
.gallery-detail-control li {
    position: absolute;
    z-index: 99;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light);
    /* background: rgba(172, 172, 172, 0.5); */
    background: #9e9e9e;
    opacity: 0.5;
    padding: 5px 10px;
    border-radius: 50%;
    cursor: pointer;
}
.gallery-detail-control li:hover {
    background: #9e9e9e;
    opacity: 1;
}
.gallery-detail-control li.prev {
    left: 0;
}
.gallery-detail-control li.next {
    right: 0;
}

/* .relatedgallery {
    padding-right: 3.5rem;
    padding-left: 3.5rem;
} */

.gallery-related-control {
    list-style: none;
}
/* .gallery-related-control li {
    position: absolute;
    z-index: 99;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light);
    background: var(--primary);
    opacity: 0.5;
    padding: 8px 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
} */
.gallery-related-control li:hover {
    background: var(--primary);
    opacity: 1;
}
.gallery-related-control li.prev {
    left: 0;
}
.gallery-related-control li.next {
    right: 0;
}

.img-zoom-container {
    height: 500px;
    position: relative;
    overflow: hidden;
    cursor: crosshair;
}

.img-zoom-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.5s ease-out;
}

.image-zoom-control {
    list-style: none;
}
.image-zoom-control li {
    position: absolute;
    z-index: 99;
    top: 55%;
    transform: translateY(-50%);
    color: var(--light);
    background: rgba(97, 97, 97, 0.5);
    /* background: var(--primary); */
    opacity: 0.5;
    padding: 8px 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
}
.image-zoom-control li:hover {
    background: rgba(97, 97, 97, 0.5);
    opacity: 1;
}
.image-zoom-control li.prev {
    left: 0;
}
.image-zoom-control li.next {
    right: 0;
}

.related-gallery-image {
    height: 250px;
}

.related-gallery-image a img{
    object-fit: contain;
    height: 100%;
}


/*** Testimonial ***/
.testimonial {
    background-image: var(--bg-img-testimonial);
    background-repeat: repeat !important;
    background-position: center !important;
    background-size: cover !important;
}
.testimonial-carousel .owl-item .testimonial-item img {
    /* width: 60px;
    height: 60px; */
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

/* .testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--secondary) !important;
} */

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: end;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    /* font-size: 18px; */
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.testimonial-carousel .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary);
}

.testimonial-carousel .card-br {
    border-top-left-radius: 2rem !important;
    border-top-right-radius: 2rem !important;
    border-bottom-left-radius: 2rem !important;
    border-bottom-right-radius: 2rem !important;
}
.testimonial-carousel hr {
    height: 10px;
    opacity: 1 !important;
}

.testimonial-carousel .card{
    background-image: linear-gradient(180deg, white 97%, var(--quaternary) 3%);
}

.testimonial-content {
    padding: 3rem !important;
}

@media only screen and (max-width: 390px) {
    .testimonial-content {
        padding: 1.5rem !important;
    }

    .about-image-size {
        width: 100%;
        object-fit: contain;
        height: auto;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 280px) {
    .testimonial-content {
        padding: .75rem !important;
    }
    .about-image-size {
        width: 100%;
        object-fit: contain;
        height: auto;
        margin-bottom: 30px;
    }

    .footer .footer-logo {
        width: 200px;
        height: 100px;
        object-fit: contain;
    }
    .navbar-logo {
        max-width: 170px;
    }

    .navbar-toggler {
        padding: 0.20rem 0.50rem;
        font-size: 1rem;
    }

    .navbar-toggler-icon {
        width: 1em;
        height: 1em;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .gallery-text-color{
        font-size: 1rem !important;
    }

    .services-carousel .owl-prev,
    .services-carousel .owl-next {
        width: 35px;
        height: 35px;
    }

    .image-zoom-control li {
        padding: 0px 10px;
        font-size: 20px;
    }
}

/*** News ***/
.news {
    background: var(--bg-img-news);
    background-repeat: repeat !important;
    background-position: center !important;
    background-size: cover !important;
}
.news .card-br {
    border-top-left-radius: 3rem !important;
    border-top-right-radius: 3rem !important;
    border-bottom-left-radius: 3rem !important;
    border-bottom-right-radius: 3rem !important;
}
.news .card-br-top {
    border-top-left-radius: 3rem !important;
    border-top-right-radius: 3rem !important;

}
.news .card-br-bottom {
    border-bottom-left-radius: 3rem !important;
    border-bottom-right-radius: 3rem !important;
}

.news img{
    height: 350px;
    object-fit: cover;
}

.news-detail {
    background: var(--bg-img-gallery-detail);
    background-repeat: repeat !important;
    background-position: center !important;
    background-size: cover !important;
}

.news-text-color {
    color: var(--news-text-color) !important;
}

/*** Footer ***/

.contactus-text-color {
    color: var(--contactus-text-color) !important;
}

.footer {
    background: var(--bg-img-footer);
    background-repeat: repeat !important;
    background-position: center !important;
    background-size: cover !important;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    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: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.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);
}

.footer .footer-logo {
    width: 250px;
    height: 100px;
    object-fit: contain;
}

.footer .footer-socmed {
    height: 50px;
}
