/********** Template CSS **********/
:root {
    --primary: #65a7b7;
    --light: #dfdfdf;
    --dark: #182638;
    --pink: #123349;
    --lightpink: #7d4c52;
    --darkpink: #1c3970;
    --border: #E91E63;
    --blue: #0e3035;
    --opacitypink: rgba(170, 54, 54, 0.7);
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: 'Fira Sans', sans-serif !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
    font-family: 'Fira Sans', sans-serif !important;
}

.display-1 {
    font-size: 3rem;
}

.owl_height {
    height: 500px;
}

.owl_height img {
    height: 100%;
}

body {
    background: url(../img/bg/background-bg.jpg);
}

.display-5 {

    font-family: "Oswald", Sans-serif !important;
    font-size: 32px;
}

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

.para {
    font-size: 17px;
    /* color: black; */
    font-weight: 600;
    text-align: justify;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: 0.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(--darkpink);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #ffffff;
    background: var(--pink);
    border-color: var(--pink);
}

/*** 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;
    font-size: 15px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--darkpink);
}

.navbar.sticky-top {
    top: -100px;
    transition: 0.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: 0.5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: 0.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, 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: 0.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: 0.5s;
    opacity: 0.3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

/* .page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
} */

/* Parallax effect */
.page-header:hover .page-header-image {
    transform: scale(1.1);
    /* Slight zoom effect on hover */
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

/*** Section Title ***/
.section-title {
    color: var(--darkpink);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 700 !important;
}

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

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--darkpink);
    transition: 0.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(--darkpink);
    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: #b7b2b2;
    transition: 0.5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, 0.7);
}

.service-item * {
    transition: 0.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: 0.5s;
}

.service-item:hover .btn {
    width: 140px;
}

/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: 0.5s;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

.project .nav .nav-link.active {
    background: var(--darkpink);
}

.project .nav .nav-link.active h3 {
    color: #ffffff !important;
}

/*** Team ***/
.team-items {
    margin: -0.75rem;
}

.team-item {
    padding: 0.75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #b78d65;
    transition: 0.5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: #9c7300;
}

.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(--darkpink);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #ffffff;
    background: var(--pink);
}

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

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--darkpink);
}

/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 100%;
    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: 0.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(--darkpink);
  background: #ffffff;
  border-radius: 40px;
  transition: 0.5s;
  opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
  opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
  opacity: 0.4;
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
  opacity: 1;
} */
.team_box_shadow {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--darkpink);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--darkpink);
    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, 0.1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--darkpink);
}

.logo_h {
    height: 40px;
}

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

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

.bg-light {
    background-color: #bdcdd124 !important
}

.bg-another {
    background-color: #faf39224 !important
}

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

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("img/product/bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: -1;
    filter: blur(5px);
    /* Adjust the blur level here */
    /* You may also need to adjust the z-index to ensure it sits behind content */
}

.service-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,
            255,
            255,
            0.5);
    /* Optional: Adjust overlay color and opacity */
    z-index: -2;
    /* Ensure it's behind the .service-bg but above other content */
}

.container-xxl {
    position: relative;
}

.service-item {
    position: relative;
    z-index: 1;
}

.service-text {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    color: #01184c;

    padding: 20px;
}

.flip_text {
    color: var(--darkpink);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    display: inline-block;
    perspective: 1000px;
    font-size: 30px;
    animation: flipAnimation 3s infinite !important;
}

/* Define the flip animation */
@keyframes flipAnimation {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(180deg);
    }

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

.dynamic-text-shadow {
    text-shadow: 0.05em 0.05em 0 hsl(0deg 0% 48.82%);
}

.position-relative {
    position: relative !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.portfolio-item .portfolio-img {
    position: relative;
    width: 100%;
    height: 100%;
    bottom: 0px;
    left: 0;
    transition: 0.5s;
}

.portfolio-item:hover .portfolio-img {
    bottom: 100%;
}

.portfolio-item .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -100%;
    left: 0;
    transition: 0.5s;
}

.portfolio-item:hover .portfolio-text {
    bottom: 0;
}

.btn-outline-primary:hover {
    color: #212529;
    background-color: #dfb163;
    border-color: #dfb163;
}

.vdo_controls {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-top: 10px solid white;
    border-bottom: 10px solid white;
    width: 100%;
}

.vdo_controls source {
    height: 100%;
    /* display: flex; */
    justify-content: center;
    /* overflow: hidden; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.right_vdo {
    display: flex;
    align-items: center;
    vertical-align: middle;
    background: var(--darkpink);
    padding: 0;
}

.contact_para {
    min-width: 700px;
    min-height: 450px;
    border-radius: 20px;
    position: relative;
    -webkit-transition: 1.5s ease-in-out;
    transition: 1.5s ease-in-out;
    transform-style: preserve-3d;
}

.contact_para .side {
    position: absolute;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 20px 50px;
    color: #fff;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    border-radius: 20px;
}

.para_content {
    transform: translatez(70px) scale(0.8);
    line-height: 1.2em;
}

.para_content h1 {
    position: relative;
}

.para_content p {
    margin-top: 50px;
    line-height: 2em;
}

.para_content h1:before {
    content: "";
    position: absolute;
    bottom: -20px;
    height: 3px;
    background-color: #3e3;
    width: 70px;
    left: 50%;
    transform: translateX(-50%);
}

.contact_para .front {
    z-index: 2;
    background-size: 100vh;
    background-size: cover;
    background-image: url(https://userscontent2.emaze.com/images/f9538183-0ff9-478f-b964-c8ab90421e3b/3d28e192fda5c17250f96a2779c84475.jpg);
}

.contact_para .back {
    background-color: #333;
    transform: rotateY(180deg);
    z-index: 0;
    padding-top: 10px;
    background-image: url(https://userscontent2.emaze.com/images/f9538183-0ff9-478f-b964-c8ab90421e3b/3d28e192fda5c17250f96a2779c84475.jpg);
}

.contact_para:hover {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.contact_form {
    text-align: left;
}

.contact_para .back h1 {
    margin: 0;
    color: white;
}

.contact_form label,
.contact_form input {
    display: block;
}

.contact_form input,
.contact_form textarea {
    background: transparent;
    border: 0;
    border-bottom: 2px solid #444;
    padding: 5px;
    width: 100%;
    color: #fff;
}

.contact_form label {
    margin: 15px 0;
}

.contact_form input[type="submit"] {
    display: block;
    width: auto;
    margin: 10px auto;
    padding: 5px 10px;
    border: 3px solid #555;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
}

/* my button style  */
.white-mode {
    text-decoration: none;
    padding: 7px 10px;
    background-color: #122;
    border-radius: 3px;
    color: #fff;
    transition: 0.35s ease-in-out;
    position: fixed;
    left: 15px;
    bottom: 15px;
    font-family: "Montserrat";
}

.white-mode:hover {
    background-color: #fff;
    color: #122;
}

.col_12 {
    display: flex;
    justify-content: center;
    /* Center content horizontally in the column */
    align-items: center;
    /* Center content vertically in the column */
    text-align: center;
    /* Center text inside the column */
}

.d-flex {
    display: flex !important;
}

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

.flex-shrink-0 {
    flex-shrink: 0;
}

/* Adjust the icon size if necessary */
.fa-phone-alt,
.fa-envelope-open {
    font-size: 2rem;
}

.card_front {
    width: 300px;
    background-color: #122;
}

.para_top {
    margin-top: 0 !important;
}

.font_size {
    font-size: 22px;
}

.flip-box {
    display: flex;
    align-content: stretch;
    min-height: 130px;
    flex-wrap: wrap;
    position: relative;
    border: 10px solid transparent;
    padding: 0;
    border-top: 0;
    -webkit-perspective: 1000;
    perspective: 1000;
}

.flip-box:hover .back {
    transform: rotateY(0deg);
    z-index: 10;
}

.flip-box:hover .front {
    transform: rotateY(180deg);
    z-index: -1;
}

.flip-box .back,
.flip-box .front {
    position: relative;
    background-color: var(--darkpink);
    color: white;
    display: flex;
    justify-content: center;
    align-content: center;
    flex: 0 0 100%;
    -webkit-transition: all 1s cubic-bezier(0.5, 1, 0.5, 1);
    transition: all 1s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transform-style: preserve-3d;
    background-size: cover;
    background-position: center;
}

.flip-box .back {
    background-color: var(--darkpink);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    transform: rotateY(-180deg);
}

.flip-box .back:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border: 15px solid transparent;
    border-bottom-color: white;
    border-left-color: white;
}

.flip-box .front {
    z-index: 10;
}

.flip-box .front .content {
    font-size: 22px;
}

.flip-box .front:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border: 15px solid #cecece;
    border-bottom-color: white;
    border-right-color: white;
}

.flip-box .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* -webkit-transform: translateZ(50px); */
    /* transform: translateZ(50px); */
    text-shadow: 0px 0px 2px black;
    padding: 0 20px;
}

.full-height-container {
    height: 100vh;
    /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Prevents scrollbars */
}

.full-height-video {
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the video covers the container */
}

/* Optional: Styling for content over the video */
.content {
    position: relative;
    z-index: 1;
    /* Ensure content appears above the video */
    color: white;
    /* Adjust text color for readability */
    text-align: center;
}

.product_img {
    height: 300px;
    width: 400px;
}

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

.our-team {
    padding: 30px 0 40px;
    margin-bottom: 30px;
    background-color: #f7f5ec;
    text-align: center;
    overflow: hidden;
    position: relative;
    border: 1px solid #111;
    box-shadow: 1px 1px #111, 2px 2px #111, 3px 3px #111, 4px 4px #111,
        5px 5px #111, 6px 6px #111, 7px 7px #111, 8px 8px #111, 9px 9px #111,
        10px 10px #111, 12px 12px #111, 13px 13px #111, 14px 14px #111,
        15px 15px #111, 16px 16px #111, 17px 17px #111, 18px 18px #111,
        19px 19px #111, 20px 20px #111;
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
}

.our-team .picture {
    display: inline-block;
    height: 130px;
    width: 130px;
    margin-bottom: 50px;
    z-index: 1;
    position: relative;
}

.our-team .picture::before {
    content: "";
    width: 100%;
    height: 0;
    border-radius: 50%;
    background-color: #1369ce;
    position: absolute;
    bottom: 135%;
    right: 0;
    left: 0;
    opacity: 0.9;
    transform: scale(3);
    transition: all 0.3s linear 0s;
}

.our-team:hover .picture::before {
    height: 100%;
}

.our-team .picture::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #1369ce;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.our-team .picture img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    transform: scale(1);
    transition: all 0.9s ease 0s;
}

.our-team:hover .picture img {
    box-shadow: 0 0 0 14px #f7f5ec;
    transform: scale(0.7);
}

.our-team .title {
    display: block;
    font-size: 15px;
    color: #4e5052;
    text-transform: capitalize;
}

.our-team .social {
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: #1369ce;
    position: absolute;
    bottom: -100px;
    left: 0;
    transition: all 0.5s ease 0s;
}

.our-team:hover .social {
    bottom: 0;
}

.our-team .social li {
    display: inline-block;
}

.our-team .social li a {
    display: block;
    padding: 10px;
    font-size: 17px;
    color: white;
    transition: all 0.3s ease 0s;
    text-decoration: none;
}

.our-team .social li a:hover {
    color: #1369ce;
    background-color: #f7f5ec;
}

.top_bar {
    border-bottom: 2px solid #65a7b7;
}

.top_bar .text-body {
    color: #777 !important;
    font-size: 13px;
}

.top_bar .text-body i {
    font-size: 1rem;
}

.top_bar .btn-sm-square {
    width: 25px;
    height: 25px;
}

.btn_common {
    border-radius: 30px;
    padding: 5px 1.5rem !important;
    height: 40px;
    align-self: center;
}

/* .owl-item {
  height: 500px!important;
} */
.owl-item .inner_banner {
    height: 100%;
}

.owl-item .inner_banner img {
    height: 100%;
}

.banner_title {
    font-size: 45px;
    text-shadow:
        -1px -1px 1px #efede3,
        0px 1px 0 #2e2e2e,
        0px 2px 0 #2c2c2c,
        0px 3px 0 #2a2a2a,
        0px 4px 0 #282828,
        0px 5px 0 #262626,
        0px 6px 0 #242424,
        0px 7px 0 #222,
        0px 8px 0 #202020,
        0px 9px 0 #1e1e1e,
        0px 10px 0 #1c1c1c,
        0px 11px 0 #1a1a1a,
        0px 12px 0 #181818,
        0px 13px 0 #161616,

        2px 14px 5px rgba(0, 0, 0, 0.6),
        5px 15px 5px rgba(0, 0, 0, 0.3),
        8px 16px 8px rgba(0, 0, 0, 0.5),
        8px 17px 35px rgba(0, 0, 0, 0.9);
}

.banner_subtext {
    font-size: 20px !important;
}

.parallax_bg {
    position: relative;
}

/*fixed social icons*/
/* fixed social*/
#fixed-social {
    position: fixed;
    top: 50%;
    z-index: 999;
}

#fixed-social a {
    color: #fff;
    display: block;
    height: 40px;
    position: relative;
    text-align: center;
    line-height: 40px;
    width: 40px;
    margin-bottom: 1px;
    z-index: 2;
}

#fixed-social a:hover>span {
    visibility: visible;
    left: 41px;
    opacity: 1;
}

#fixed-social a span {
    line-height: 40px;
    left: 60px;
    position: absolute;
    text-align: center;
    width: 120px;
    visibility: hidden;
    transition-duration: 0.5s;
    z-index: 999;
    opacity: 0;
}

.fixed-facebook {
    background-color: #00aae5;
}

.fixed-facebook span {
    background-color: #00aae5;
}

.fixed-twitter {
    background-color: #7d3895;
}

.fixed-twitter span {
    background-color: #7d3895;
}

.fixed-gplus {
    background-color: #00af54;
}

.fixed-gplus span {
    background-color: #00af54;
}

.fixed-linkedin {
    background-color: #ffc41e;
}

.fixed-linkedin span {
    background-color: #ffc41e;
}

.fixed-instagrem {
    background-color: #ed2b29;
}

.fixed-instagrem span {
    background-color: #ed2b29;
}

.fixed-tumblr {
    background-color: #eb1471;
}

.fixed-tumblr span {
    background-color: #eb1471;
}

/*end fixed social*/
.quote_card {
    border: none;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 999;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: auto;
    background: linear-gradient(315deg,
            rgb(17 34 56) 3%,
            rgb(82 91 106) 38%,
            rgb(1 101 81) 68%,
            #009688 98%);
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
    background-attachment: fixed;
}

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

.get-quote-form .form-control {
    outline: none;
    background-color: #fff;
    width: 100%;

    font-size: 16px;
    color: var(--theme-color);
    padding-left: 21px;
    padding-right: 21px;
    border-radius: 5px;
    border: 1px solid #ced5e9;
    margin-top: 5px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.get-quote-form label {
    color: white;
}

.quote_card .card-header p,
h4 {
    color: white;

}

.quote_card .card-body {
    padding: 10px !important;
}

.modal_quote .form-control {
    outline: none;
    background-color: #fff;
    width: 100%;
    /* line-height: 35px !important; */
    font-size: 16px;
    color: var(--theme-color);
    padding-left: 21px;
    padding-right: 21px;
    border-radius: 5px;
    border: 1px solid #ced5e9;
    margin-top: 15px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

#quoteModalLabel {
    font-size: 22px;
    font-family: "Courier New", Courier, monospace;
}

.quote_modal {
    max-width: 500px;

    margin: 1.75rem auto !important;
}

.quote_modal1 {
    max-width: 500px;

    margin: 1.75rem auto !important;
}

.quote_close {
    color: #ffffff;
    background: #65a7b7;
    border: 2px solid #65a7b7;
    font-size: 25px;
    border-radius: 50%;
    /* height: 30px; */
    line-height: 25px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.team-carousel .owl-nav,
.service-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: 50%;
    left: 0;
    margin-top: -20px;
    padding: 0 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next,
.service-carousel .owl-nav .owl-prev,
.service-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #252531;
    background: #dfb163;
    font-size: 22px;
    opacity: 0.1;
    transition: 0.3s;
}

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

.product_img_slide {
    height: 200px;
    width: 200px;
}

.product_img_slide img {
    height: 100%;
}

.product_text {
    width: 200px;
}

.team-carousel .custom-height-class {
    height: auto !important;
    /* Or specify a specific height if needed */

}

.product_bg {
    background: url('../img/products/feature2.png');
}

.product_bg_door {
    background: url('../img/product/door/door.png');
}

.product_header_title {
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 10px;
}

.banner_vdo {
    width: 100%;
    height: 500px;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.banner_vdo video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    /* Behind the container content */
}

.project_bg {
    background-color: var(--opacitypink) !important;
}

/*spinner*/
.pl {
    background: linear-gradient(#041749 calc(50% + 1.5em), #062779 calc(50% + 2.5em) calc(50% + 10.5em), #041749);
    position: relative;
    overflow: hidden;
    perspective: 800px;
    transform-style: preserve-3d;
}

.pl,
.pl:before {
    width: 100%;
    height: 100%;
}

.pl:before,
.pl__sphere,
.pl__sphere-shadow {
    position: absolute;
}

.pl:before,
.pl__sphere-shadow {
    display: block;
}

.pl:before {
    background: linear-gradient(#062779, rgba(6, 39, 121, 0)), radial-gradient(100% 100% at 50% 50%, rgba(6, 39, 121, 0) 37.5%, #062779 50%), repeating-linear-gradient(0deg, rgba(8, 55, 170, 0) 0 0.95em, #0837aa 0.95em 1em), repeating-linear-gradient(90deg, rgba(8, 55, 170, 0) 0 0.9em, #0837aa 0.9em 1em) 0.5em 0;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(90deg) translateZ(-4em);
    width: 34em;
    height: 34em;
}

.pl__sphere {
    animation-name: moveSphere;
    background: #6e95f7;
    box-shadow: 0 -0.75em 0.5em #255ff4 inset, 0 0 0.5em rgba(85, 131, 246, 0.7);
    transform: translateZ(10em);
}

.pl__sphere,
.pl__sphere-shadow {
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    border-radius: 50%;
    top: calc(50% - 1em);
    left: calc(50% - 1em);
    width: 2em;
    height: 2em;
    z-index: 1;
}

.pl__sphere-shadow {
    animation-name: moveSphereShadow;
    background-image: radial-gradient(100% 100% at center, rgba(0, 0, 0, 0.2) 45%, transparent 50%);
    transform: translateY(4em) translateZ(10em) rotateX(90deg);
}

.pl__sphere:nth-of-type(1),
.pl__sphere-shadow:nth-of-type(1) {
    left: calc(50% - 5.5em);
}

.pl__sphere:nth-of-type(2),
.pl__sphere-shadow:nth-of-type(2) {
    left: calc(50% - 2.5em);
    animation-delay: 0.1s;
}

.pl__sphere:nth-of-type(3),
.pl__sphere-shadow:nth-of-type(3) {
    left: calc(50% - -0.5em);
    animation-delay: 0.2s;
}

.pl__sphere:nth-of-type(4),
.pl__sphere-shadow:nth-of-type(4) {
    left: calc(50% - -3.5em);
    animation-delay: 0.3s;
}

@keyframes moveSphere {

    from,
    to {
        filter: brightness(100%) blur(0);
        -webkit-filter: brightness(100%) blur(0);
        transform: translateZ(10em);
    }

    25%,
    75% {
        filter: brightness(100%) blur(0);
        -webkit-filter: brightness(100%) blur(0);
        transform: translateZ(12em);
    }

    50% {
        filter: brightness(80%) blur(4px);
        -webkit-filter: brightness(80%) blur(4px);
        transform: translateZ(-10em);
    }
}

@keyframes moveSphereShadow {

    from,
    to {
        transform: translateY(4em) translateZ(10em) rotateX(90deg);
    }

    25%,
    75% {
        transform: translateY(4em) translateZ(12em) rotateX(90deg);
    }

    50% {
        transform: translateY(4em) translateZ(-10em) rotateX(90deg);
    }
}







.page-header {
    position: relative;
    overflow: hidden;
}

.page-header-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-50px);
    }

    100% {
        transform: translate(-50%, -50%) translateY(0);
    }
}


.page-header-image:hover {
    transform: translate(-50%, -50%) scale(1.1);
}


/*animated card*/
/* GLOBAL VARIABLES */
:root {
    --font: "Roboto", sans-serif;
    --fontOrigin: 1rem;
    /* 16px */
    --fontSmall: 0.625em;
    /* 10px */
    --fontMedium: 0.875em;
    /* 14px */
    --fontNormal: 1em;
    /* 16px */
    --fontLarge: 1.375em;
    /* 22px */
    --fontLight: 100;
    --fontRegular: 400;
    --speed: 0.65s;
}

@keyframes zoom {
    from {
        object-position: 0 50%;
    }

    to {
        object-position: 100% 50%;
    }
}

@keyframes blur {
    from {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    to {
        -webkit-transform: scale(1.5, 1.5);
        transform: scale(2, 2);
    }
}




.animated_card {
    position: relative;
    grid-area: card;
    align-self: center;
    justify-self: center;
    overflow: hidden;
    display: block;
    width: 100%;
    max-width: 250px;
    height: 300px;
    font-size: var(--fontOrigin);
    border-radius: 8px;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    -webkit-transition: all var(--speed) ease;
    transition: all var(--speed) ease;
    background: transparent;
}

.animated_card:hover {
    box-shadow: 0 40px 130px rgba(0, 0, 0, 0.6);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.card__save {
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;
    width: 35px;
    height: 35px;
    background: transparent;
    border: 0;
    opacity: 0;
    border-radius: 3px;
    -webkit-transition: all var(--speed) ease;
    transition: all var(--speed) ease;
}

.card__save:focus {
    outline: 0;
    background-color: rgba(255, 255, 255, 0);
}

.animated_card:hover .card__save {
    opacity: 0.6;
}

.card__save i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    -webkit-transition: all var(--speed) ease;
    transition: all var(--speed) ease;
}

.card__save:hover i {
    color: rgba(255, 255, 255, 0.8);
}

.card__save:active,
.card__save.active {
    opacity: 1 !important;
}

.card__save:active i,
.card__save.active i {
    color: white;
}

.card__image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5));
}

.card__image img {
    -webkit-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    -webkit-transition: all var(--speed) ease;
    transition: all var(--speed) ease;
    animation-name: zoom;
    animation-duration: 30s;
    animation-direction: alternate;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.animated_card:hover .card__image img {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0.5;
}

.card__header {
    display: grid;
    width: 100%;
    height: 200px;
}

.card__profile {
    align-self: center;
    justify-self: center;
    display: block;
    overflow: hidden;
    width: 10vmax;
    height: 10vmax;
    max-width: 100px;
    max-height: 100px;
    border-radius: 50%;
}

.card__profile img {
    -webkit-transform: scale(1.5, 1.5) translateZ(0);
    transform: scale(1.5, 1.5) translateZ(0);
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    -webkit-filter: grayscale(50%) contrast(75%) brightness(1.3);
    filter: grayscale(50%) contrast(75%) brightness(1.3);
    -webkit-transition: all var(--speed) ease;
    transition: all var(--speed) ease;
    mix-blend-mode: normal;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.animated_card:hover .card__profile img {
    -webkit-transform: scale(1, 1) translateZ(0);
    transform: scale(1, 1) translateZ(0);
}

.card__body {
    display: grid;
    padding: 0 20px;
}

.card__name {
    align-self: center;
    justify-self: center;
    margin-bottom: 2px;
    color: white;
    font-size: var(--fontLarge);
    font-weight: var(--fontLight);
    letter-spacing: 0.1rem;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    background: -webkit-linear-gradient(white, #a1a1a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-transition: all var(--speed) ease;
    transition: all var(--speed) ease;
}

.animated_card:hover .card__name {
    background: -webkit-linear-gradient(white, #c1c1c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card__job {
    align-self: center;
    justify-self: center;
    display: inline-block;
    font-size: var(--fontSmall);
    font-weight: var(--fontLight);
    text-align: center;
    letter-spacing: 0.35rem;
    color: rgba(100, 130, 200, 0.45);
    -webkit-transition: all var(--speed) ease;
    transition: all var(--speed) ease;
}

.animated_card:hover .card__job {
    color: rgba(100, 130, 200, 1);
}

.card__bio {
    position: relative;
    -webkit-transform: translateY(30%);
    transform: translateY(30%);
    display: block;
    margin: 22px 0 16px 0;
    font-size: var(--fontMedium);
    font-weight: var(--fontLight);

    color: rgba(255, 255, 255, 0.65);
    opacity: 0;
    -webkit-transition: all var(--speed) ease;
    transition: all var(--speed) ease;
}

.animated_card:hover .card__bio {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.card__footer {
    position: relative;
    -webkit-transform: translateY(60%);
    transform: translateY(60%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "date category";
    padding: 10px 20px;
    opacity: 0;
    -webkit-transition: all var(--speed) ease;
    transition: all var(--speed) ease;
}

.animated_card:hover .card__footer {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.card__date {
    grid-area: date;
    display: inline-block;
    align-self: left;
    justify-self: left;
    font-size: var(--fontSmall);
    font-weight: var(--fontLight);
    text-transform: uppercase;
    text-shadow: 0 0.5px 1px rgba(0, 0, 0, 0.45);
    color: rgba(250, 250, 250, 0.4);
}


.animated_card[data-effect="blur"]:hover .card__image img {
    -webkit-filter: blur(3px);
    filter: blur(3px);
}

.animated_card[data-effect="blur"] .card__image img {
    animation-name: blur;
}

.animated_card[data-effect="color"]:hover {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    box-shadow: 0 40px 260px rgba(255, 0, 0, 0.1), 0 40px 130px rgba(250, 100, 100, 0.2), -80px -40px 230px rgba(0, 200, 250, 0.15), 80px 40px 230px rgba(120, 120, 255, 0.15);
}

.animated_card[data-effect="color"] .card__image {
    background: linear-gradient(to bottom, rgba(20, 20, 100, 1), rgba(255, 100, 100, 0.5))
}

.animated_card[data-effect="color"]:hover .card__image img {
    opacity: 0.8;
}

.animated_card[data-effect="color"]:hover .card__profile img {
    -webkit-filter: grayscale(50%) contrast(80%) brightness(1.6);
    filter: grayscale(50%) contrast(80%) brightness(1.6);
    mix-blend-mode: normal;
}

.product_tab_para p {
    font-size: 16px;
    /* color: black; */
    font-weight: 600;
    text-align: justify;
}

.card_contact {
    border-top: 5px solid #65a7b7;
    box-shadow: rgba(94, 94, 94, 0.35) 0px 5px 15px;
}

.alert {
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

.alert.fade-out {
    opacity: 0;
}

.fixed-youtube {
    background-color: red !important;
}

.testimonial_img {
    height: 100px;
}

.quote_display {
    display: none;
}

.modal_label {
    color: black !important;
}
















.product_title {
    text-shadow: -1px -1px 1px #efede3, 0px 1px 0 #b6b6b6, 0px 2px 0 #bbbbbb, 0px 3px 0 #e3e3e3, 0px 4px 0 #cdcdcd, 0px 5px 0 #777777;

}

.project_bg .btn-outline-primary {
    color: #ffffff;

    border-color: #b1b1b1 !important;
}

.project_bg .btn-outline-primary:hover {
    color: #212529;
    background-color: #e6e6e6 !important;
    border-color: #b1b1b1 !important;
}




/*testimonial*/
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css);
@import url(https://fonts.googleapis.com/css?family=Raleway:400,800);

figure.snip1157 {
    font-family: 'Raleway', Arial, sans-serif;
    position: relative;
    overflow: hidden;
    margin: 10px;
    min-width: 220px;
    max-width: 310px;
    width: 100%;
    color: #333;
    text-align: left;
    box-shadow: none !important;
}

figure.snip1157 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

figure.snip1157 img {
    max-width: 100%;
    vertical-align: middle;
    height: 90px;
    width: 90px !important;
    border-radius: 50%;
    margin: 40px 0 0 10px;
}

figure.snip1157 blockquote {
    display: block;
    border-radius: 8px;
    position: relative;
    background-color: #fafafa;
    padding: 25px 50px 30px 50px;
    font-size: 0.8em;
    font-weight: 500;
    margin: 0;
    line-height: 1.6em;
    font-style: italic;
    height: 170px;
    word-wrap: break-word;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

figure.snip1157 blockquote:before,
figure.snip1157 blockquote:after {
    font-family: 'FontAwesome';
    content: "\201C";
    position: absolute;
    font-size: 50px;
    opacity: 0.3;
    font-style: normal;
}

figure.snip1157 blockquote:before {
    top: 25px;
    left: 20px;
}

figure.snip1157 blockquote:after {
    content: "\201D";
    right: 20px;
    bottom: 0;
}

figure.snip1157 .arrow {
    top: 100%;
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 25px solid transparent;
    border-top: 25px solid #fafafa;
    margin: 0;
    position: absolute;
}

figure.snip1157 .author {
    position: absolute;
    bottom: 45px;
    padding: 0 10px 0 120px;
    margin: 0;
    text-transform: uppercase;
    color: #ffffff;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
}

figure.snip1157 .author h5 {
    font-weight: 800 !important;
    font-size: 15px;
    color: #fff;
}

figure.snip1157 .author span {
    font-weight: 400;
    font-size: 13px;
    text-transform: none;
    padding: rgb(255, 255, 255)5px;
    color: #fff;
}











.rating_wrapper {
    background: var(--darkpink);
    padding: 2rem;
    max-width: 576px;
    width: 100%;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.rating_wrapper h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}


.rating_wrapper textarea {
    width: 100%;
    background: var(--light);
    padding: 10px;
    border-radius: 0.5rem;
    border: none;
    outline: none;
    resize: none;
    margin-bottom: 0.5rem;
}

.rating_wrapper input {
    width: 100%;
    background: var(--light);
    padding: 10px;
    border-radius: 0.5rem;
    border: none;
    outline: none;
    resize: none;
    margin-bottom: 0.5rem;
}

.btn-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-group .btn {
    padding: 10px;
    border-radius: 0.5rem;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
}

.btn-group .btn.submit {
    background: var(--light);
    color: var(--blue);
}


.btn-group .btn.cancel {
    background: var(--light);
    color: var(--blue);
}

.parallax2 {
    background-image: url('../img/bg/roofing.png');
    padding: 40px 0;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/*gallery*/
.gallery {
    --s: 150px;
    --g: 10px;
    --f: 1.5;
    display: grid;
    gap: var(--g);
    width: 100%;
    height: 300px;
    aspect-ratio: 1;
    grid-template-columns: repeat(6, auto);
}

/* .gallery > img {
  width: 0;
  height: 0;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  cursor: pointer;
  filter: grayscale(80%);
  transition: .35s linear;
} */
.gallery>img {
    width: 0;
    height: 0;
    min-height: 100%;
    min-width: 100%;
    /* object-fit: contain; */
    cursor: pointer;
    /* filter: grayscale(80%); */
    transition: .35s linear;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.gallery img:hover {
    filter: grayscale(0);
    width: calc(var(--s)*var(--f));
    height: calc(var(--s)*var(--f));
}
