@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');
:root {
    --black-color: #000;
    --theme-color: #010305;
    --blue-color: #00a5f6;
    --red-color: #f22828;
    --light-green: #54b352;
    --trans-black: rgb(0, 0, 0, 0.5);
    --font-bootstrap-icon: 'bootstrap-icons';
    --white-color: #fff;
    --gray-color: #f2f2f2;
    --gray-txt: #999;
}

body {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: var(--theme-color);
}

.ShowOverlayDesk {
    position: relative;
    width: 100%;
    height: 100vh;
}

.ShowOverlayDesk::before {
    width: 100%;
    height: 100%;
    content: '';
    left: 0;
    top: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9;
    transition: all 0.8s;
    animation: fadeIn 0.8s;
    -webkit-animation: fadeIn 0.8s;
    -moz-animation: fadeIn 0.8s;
    -o-animation: fadeIn 0.8s;
    -ms-animation: fadeIn 0.8s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

a,
button,
.btn {
    transition: all 0.8s;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

input,
input:focus,
input:active,
select:focus,
select:active,
option:focus,
option:active,
textarea:focus,
textarea:active,
button:focus,
button:active,
.btn:focus,
.btn:active,
.btn-primary:focus,
.btn-primary:active,
.form-control:focus,
.form-control:active {
    outline: none;
    box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
    margin: 0px;
    padding: 0px;
}

h1,
.h1 {
    font-size: 42px;
    line-height: 50px;
    color: var(--black-color);
}

h2,
.h2 {
    font-size: 36px;
    line-height: 44px;
    color: var(--black-color);
}

h3,
.h3 {
    font-size: 35px;
    line-height: 38px;
    color: var(--black-color);
    font-weight: 600;
    margin-bottom: 20px;
}

h4,
.h4 {
    font-size: 24px;
    line-height: 32px;
    color: var(--black-color);
}

h5,
.h5 {
    font-size: 18px;
    line-height: 26px;
    color: var(--black-color);
}

a,
a:hover,
a:focus,
a:active {
    outline: none;
    text-decoration: none;
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    color: var(--white-color);
}

img {
    transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    max-width: 100%;
}

p a {
    color: var(--white-color);
}

p {
    line-height: 26px;
    margin-bottom: 15px;
}

p strong {
    font-family: var(--font-medium);
}

p span {
    display: block;
}

ol li {
    list-style-type: decimal;
    padding-bottom: 10px;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.btn-primary {
    background: var(--blue-color);
    border: 1px solid var(--blue-color);
    border-radius: 0px;
    color: var(--white-color);
    padding: 9px 30px;
    transition: all 0.8s;
    font-size: 20px;
    font-weight: 500;
}

.btn-primary:focus,
.btn-primary:hover {
    background: var(--black-color);
    color: var(--white-color);
    border: 1px solid var(--black-color);
}

.btn-secondry {
    background: var(--red-color);
    border-radius: 10px;
    color: var(--black-color);
    border: 1px solid var(--red-color);
    padding: 9px 30px;
    transition: all 0.8s;
}

.btn-secondry:focus,
.btn-secondry:hover {
    background: var(--blue-color);
    color: var(--white-color);
    border: 1px solid var(--blue-color);
}

.scroll-top-wrapper {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    text-align: center;
    z-index: 1;
    right: 10px;
    bottom: 10px;
    overflow: hidden;
    padding: 12px;
}

.scroll-top-wrapper .scroll-top-inner {
    color: var(--black-color);
    display: block;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    width: 44px;
    border: 2px solid var(--blue-color);
    border-radius: 55px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.scroll-top-wrapper .scroll-top-inner i {
    font-size: 26px;
}

.scroll-top-wrapper:hover .scroll-top-inner {
    background: var(--blue-color);
    color: var(--black-color);
    border: none;
    border: 1px solid var(--white-color);
}

.scroll-top-wrapper.show {
    visibility: visible;
    cursor: pointer;
    opacity: 1;
}

::-webkit-input-placeholder {
    color: #949494 !important;
    opacity: 1;
}

::-moz-placeholder {
    color: #949494 !important;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #949494 !important;
    opacity: 1;
}

:-moz-placeholder {
    color: #949494 !important;
    opacity: 1;
}

.section-title .h1 {
    display: block;
    text-transform: capitalize;
    letter-spacing: 2px;
    font-family: var(--font-medium);
    position: relative;
}

.section-title.btm-line .h1:before {
    width: 60%;
    height: 0px;
    border-bottom: 5px dotted var(--theme-background);
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    right: 0;
    margin: auto;
}

section,
footer {
    width: 100%;
    padding: 50px 0;
}

.CartBox .bi-cart3 {
    font-size: 20px;
}

.QourtBox {
    display: inline-block;
    background: var(--black-color);
    color: var(--white-color);
    font-size: 16px !important;
    padding: 10px 20px;
    font-weight: 600;
    margin-left: 20px;
}
.QourtBox:hover {
    color: var(--theme-bg) !important;
}
/* .main-nav{
    background: rgb(255, 255, 255, 0.9);
} */

.navbar-brand {
    position: relative;
    z-index: 99;
}
.HeaderNav {
    padding: 10px 0px;
}

header {
    position: absolute;
    z-index: 99;
    width: 100%;
}

header.fixedheader {
    position: fixed;
    width: 100%;
    background: var(--white-color);
    z-index: 9;
    left: 0;
    top: 0px;
    box-shadow: 0 0 5px rgb(236, 236, 236, 0.5);
    animation: slide-down 0.5s;
    padding-left: 20px;
    padding-right: 20px;
}

.HeaderNav.fixedheader .LogoBox {
    position: relative;
    top: 20px;
}
.HeaderNav.fixedheader .LogoBox img{
    width: 190px;
}

.HeaderNav.fixedheader #navbarTogglerDemo {
    margin-top: 45px;
    padding-bottom: 0px;
}
.main-nav .container {
    position: relative;
}

#navbarTogglerDemo ul {
    width: 50%;
}

.main-nav .navbar .nav-item a {
    padding: 10px 25px;
    display: block;
    color: #24345e;
    font-weight: 500;
    font-size: 20px;
    position: relative;
    transition: all 1s;
    margin-left: 2px;

}


.main-nav .navbar .nav-item a:focus,
.main-nav .navbar .nav-item a:hover,
.main-nav .navbar .nav-item.current_page_item a,
.main-nav .navbar .nav-item.active a {
    color: var(--blue-color);
    background: var(--theme-bg);
    border-radius: 30px;
}
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
    padding: 0;
    min-width: 200px;
    max-width: 300px;
    border-radius: 5px;
    white-space: nowrap;
    transition: all 0.8s;
    animation: 0.8s slide-up;
    background: var(--white-color);
}

.navbar-expand-lg .navbar-nav .dropdown-menu li a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid var(--gray-color);
    background: var(--white-color);
    position: relative;
}

@keyframes slide-up {
    from {
        margin-top: 10%;
        height: 100%;
    }
    to {
        margin-top: 0%;
        height: 100%;
    }
}

.navbar-expand-lg .navbar-nav .dropdown-menu li:last-child a {
    border-bottom: none;
}

.navbar-expand-lg .navbar-nav .dropdown-menu li:first-child a {
    border-radius: 5px 5px 0 0;
}

.navbar-expand-lg .navbar-nav .dropdown-menu li:last-child a {
    border-radius: 0 0 5px 5px;
}

.navbar-nav>.dropdown>a::after {
    display: inline-block;
    margin-left: 10px;
    vertical-align: .255em;
    content: "";
    position: relative;
    top: 2px;
    border: solid var(--black-color);
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.main_slider .carousel-arrow {
    width: 50px;
    height: 50px;
    border: 1px solid var(--white-color);
    border-radius: 10px;
    opacity: 1;
    bottom: 70px;
    top: auto;
    left: 0px;
    transition: all 0.7s;
}

.SlidePic img{
    width: 100%;
}

.main_slider .carousel-arrow.carousel-control-next {
    left: 65px
}

.main_slider .carousel-item {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d
}

#slider{
    border-bottom: 5px solid var(--blue-color);
}
#slider .carousel-item.active::before {
    position: absolute;
    width: 70%;
    height: 150%;
    background: #c7d0e7;
    content: '';
    left: -15%;
    top: -30%;
    transform: rotate3d(1, 1, 1, 22deg);
    /* border-right: 10px solid var(--blue-color); */
}
#slider .carousel-item.active::after {
    position: absolute;
    width: 10px;
    height: 150%;
    background: var(--blue-color);
    content: '';
    left: 52%;
    top: -30%;
    transform: rotate3d(1, 1, 1, 22deg);
}
.SlidePic {
    width: 58%;
    float: right;
  }

#slider .carousel-caption {
   left: 0;
   right: 0;
   top: 15%;
   width: 100%;
}
#slider .container {
    position: relative;
}

#slider .TxtBox {
    text-align: left;
    width: 55%;
}

#slider.innerBanner .TxtBox {
    max-width: 600px;
}

#slider .TxtBox .h1 {
    font-size: 40px;
    padding: 0px 0 10px;
    font-weight: 700;
    color: #494949;
}
#InnerBanner .TxtBox .h1 {
    font-size: 40px;
    padding: 0px 0 10px;
    font-weight: 700;
    color: var(--white-color);
}
#slider .TxtBox h3 {
    font-size: 30px;
    padding: 0px 0 0px;
    font-weight: 600;
    color: #292929;
}


#slider .TxtBox a {
    min-width: 250px;
    font-size: 20px;
    margin: 0 5px 40px;
    padding: 10px 15px;
    text-align: center;
    font-weight: 500;
    border: 2px solid var(--white-color);
}

#slider .carousel-item {
    position: relative;
}
.BnrTxt{
    background: var(--blue-color);
    color: var(--white-color);
    font-size: 20px;
    padding: 5px 20px;
    margin-bottom: 50px;
    text-align: left;
    width: 55%;
    padding-left: 9%;   
}
.navbar-brand,
.navbar-brand img {
    transition: all 0.8;
}
#slider .carousel-indicators [data-bs-target]  {border: none !important;}
#slider .carousel-indicators button{    
    opacity: 1;
    background-color: var(--white-color);
    height: 3px;
    width: 100px;
    
}
#slider .carousel-indicators button.active{
    background: var(--blue-color);
}
#slider .carousel-indicators{
    right:auto;
    margin-left: 8%;
    bottom: 8%;
}
.BannerSmPic {
    display: flex;
    width: 46%;
    overflow: hidden;
  }
.BannerSmPic img {
    height: 130px;
  }
/*------ Request ----*/
.RequestBox{
    width: 80%;
    margin: 0 auto;
    padding: 30px;
    background: var(--white-color);
    box-shadow: 0 0 10px var(--blue-color);
    position: relative;
    margin-top: -50px;
}
.RequestBox select,
.RequestBox input{
    background: #e4e4e4;
    border: 1px solid #d6d6d6;
    font-size: 22px;
    padding: 10px;
    margin-bottom: 25px;
}
.RequestBox input::placeholder{opacity: 1;}
.RequestBox select{
    appearance: auto;
}
.QuoteBtn a,
.QuoteBtn input{
    background: var(--red-color);
    border: 1px solid var(--red-color);
    color: var(--white-color);
    border-radius: 10px;
    text-align: center;
    padding: 10px 50px;
    margin: 0 !important;
}
.QuoteBtn a:hover,
.QuoteBtn input:hover{
    background: var(--blue-color);
    border: 1px solid var(--blue-color);
    color: var(--white-color);
}

.secHeading span{
    font-size: 35px;
    color: var(--blue-color);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}
.secHeading span::after{
    position: absolute;
    width: 180px;
    height: 1px;
    content: '';
    background: var(--blue-color);
    bottom: -10px;
    left: 0;
}
.secHeading span::before{
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    content: '';
    background: var(--blue-color);
    bottom: -14px;
    left: 90px;
}
/*------ Home About ----*/
.HomeAbout{
    display: flex;
    justify-content: center;
    align-items: center;
}
.HomeAbout2 img,
.HomeAbout img{
    border-radius: 15px;
    box-shadow: 0 0 15px var(--blue-color);
}
.HomeAbout figure:nth-child(1) {
    width: 70%;
    position: relative;
    left: 20px;
  }
.HomeAbout figure:nth-child(2){width: 120%;}
/*------ Services ----*/
.OurServices{
    position: relative;
}
.OurServices::before{
    position: absolute;
    width: 100%;
    height: 60%;
    content: '';
    background-image: url(../images/seviceBg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--blue-color);
    top: 0;
    left: 0;
}
.OurServices .container{position: relative;}
.secHeadingWhite span{
    font-size: 35px;
    color: var(--white-color);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}
.secHeadingWhite span::after{
    position: absolute;
    width: 200px;
    height: 1px;
    content: '';
    background: var(--white-color);
    bottom: -10px;
    left: 50%;
    margin-left: -100px;
}
.secHeadingWhite span::before{
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    content: '';
    background: var(--white-color);
    bottom: -14px;
    left: 48%;
}
.secHeadingBlue span{
    font-size: 35px;
    color: var(--blue-color);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}
.secHeadingBlue span::after{
    position: absolute;
    width: 200px;
    height: 1px;
    content: '';
    background: var(--blue-color);
    bottom: -10px;
    left: 50%;
    margin-left: -100px;
}
.secHeadingBlue span::before{
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    content: '';
    background: var(--blue-color);
    bottom: -14px;
    left: 48%;
}
.ProdBox {
    position: relative;
    width: 95%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    background: var(--white-color);
    padding: 10px 10px 40px 10px;
    margin: 15px 5px;
    box-shadow: 0 0 15px var(--blue-color);
}

.PartsTxt {
    text-align: center;
}
.PartsTxt span{
    margin-top: 10px;
    display: inline-block;
    position: relative;
    padding-bottom: 20px;
    color: var(--black-color);
}
.PartsTxt span::before{
    position: absolute;
    content: '';
    left: -10px;
    top: -10px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--black-color);
}
.PartsTxt span:hover::before{
    height: 100%;
    border: 3px solid var(--blue-color);
}
.PartsTxt h4{
    margin: 20px 0;
}
.ProdBox:hover img{
    transform: scale(1.1);
}
.PicBox img {
    border-radius: 10px;
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.8s;
}

.PartsTxt h3 {
    color: var(--white-color);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    transition: all 0.8s;
}

.PartsTxt a {
    position: relative;
    bottom: 10px;
    color: var(--theme-bg);
    font-size: 24px;
    font-weight: 500;
    border-bottom: 2px solid var(--theme-bg);
}
.ProdBox:hover .PartsTxt h3 {
    color: var(--theme-bg);
}
.ProdBox:hover .PartsTxt a {
    color: var(--white-color);
    border-bottom: 2px solid var(--white-color);
}
.Services .owl-dots{
    text-align: center;
}
.Services .owl-dots .owl-dot {
    width: 14px;
    height: 14px;
    margin: 5px;
    border-radius: 50%;
    border: 1px solid var(--blue-color) !important;
  }
.Services .owl-dots .owl-dot.active {
    background: var(--blue-color);
    border: 1px solid var(--blue-color) !important;
  }
/* ----- Expert Gutter System We Serve ------- */
.InstallationsWapp{
    position: relative;
}
.InstallationsWapp::before{
    width: 100%;
    height: 60%;
    position: absolute;
    content: '';
    background: var(--blue-color);
    left: 0;
    top: 25%;
}
.InstallationsWapp .container{position: relative;}
.smallTitle{
    color: var(--theme-bg);
    font-size: 20px;
}

.Serviceswapp {
    transition: all 0.8s;
    margin-bottom: 10px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    height: 250px;
    text-align: center;
    padding: 0px;
    position: relative;
    /* border-bottom: 15px solid var(--blue-color); */
}
.ServicesBOx{
    position: relative;
    z-index: 1;
    background: var(--white-color);
    border-radius: 50%;    
    height: 100%;
    width: 100%;
    padding: 20px;
    box-shadow: 0 -10px 20px #e0e0da;
    transition: all 1s;
    margin-bottom: 30px;
}
.Serviceswapp{margin-bottom: 20px;}
.Serviceswapp::after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    left: 0;
    bottom: -15px;
    border-radius: 50%;
    background: var(--blue-color);
}
.ServicesBOx:hover{
    background: #e0e0da;
}
.ServicesBOx h3 {
    color: #403737;
    font-size: 18px;
    transition: all 0.8s;
    line-height: 25px;
}

.ServicesBOx figure img {
    width: 100px;
}

.ServicesBOx:hover h3 {
    color: var(--theme-bg);
}


/* ------------ Testimonias css ------------ */
.TestimonialWrapper{
    background-color: #e4e8f3;
    background-image: url(../images/testiBg.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.owl-carousel.Testimonials .owl-item{
    padding-bottom: 60px;
}
.TestTxtBox{
    background: var(--white-color);
    padding: 50px 30px 50px;
    margin: 10px;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 6px #e2e2e2;    
}
.TestTxtBox::before {
    position: absolute;
    left: 20px;
    top: 33px;
    content: '';
    width: 90%;
    height: 70%;
    border: 5px solid var(--blue-color);
    border-right: none;
    border-radius: 20px;
  }
.TestTxtBox img{
    width: 100px !important;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -50px;    
    object-fit: cover;
}
.TestTxtBox p{
    position: relative;  
    padding-left: 0px; 
}

.TestTxtBox p::before{
    position: absolute;
    width: 85px;
    height: 46px;
    content: '';
    left: -3px;
    top: -77px;
    background: url(../images/leftComma.png) left top no-repeat;
}
.TestTxtBox p::after{
    position: absolute;
    width: 85px;
    height: 46px;
    content: '';
    right: 10px;
    bottom: -85px;
    background: url(../images/rightComma.png) right top no-repeat;
}
.TestTxtBox h5{
    margin-top: 40px;
    position: relative;  
    padding-left: 40px; 
}
.TestTxtBox h5::before{
    position: absolute;  
    width: 10px;
    height: 3px;
    background: var(--black-color);
    content: '';
    left: 20px;
    top: 12px; 
}

/* ------------ About us css ------------ */
.innerHeader{
    background: #c7d0e7;
}
#InnerBanner {
    position: relative;
  }
#InnerBanner::after{
    width: 100%;
    height: 150px;
    content: '';
    position: absolute;
    bottom: 0px;
    background: url(../images/innerbanerBg.png) center center no-repeat;
    background-size: cover;
}
.InnerbannerPic img{
    width: 100%;
}
#InnerBanner .carousel-caption {
    position: absolute;
    right: 0;
    top: 25%;
    left: 0;
    color: var(--white-color);
    text-align: left;
  }
.AbBottom{
    background-color: #e4e8f3;
    background-image: url(../images/abBottombg.png);
    background-repeat: no-repeat;
    background-size: cover;
}  
/* ------------ Services css ------------ */
.ServicesList{
    background-color: var(--blue-color);
    background-image: url(../images/seviceBg2.png);
    background-repeat: no-repeat;
    background-size: cover;
} 
.ServicesList ul li{
    font-size: 25px;
    color: var(--white-color);
    font-weight: 600;
    position: relative;
    padding: 7px 0 7px 15px;
}
.ServicesList ul li::before{
    position: relative;
    content: '\F134';
    font-size: 25px;
    color: var(--white-color);
    left: -15px;
    font-family: var(--font-bootstrap-icon);
}
.ServicesBtmTxt h3{
    color: var(--blue-color);
}
.ServicesBtmTxt p{
    margin-bottom: 30px;
}
.ServicesBtmTxt ul li{
    font-size: 20px;
    color: var(--theme-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0 5px 10px;
}
.ServicesBtmTxt ul li::before{
    position: relative;
    content: '\F134';
    font-size: 22px;
    color: var(--blue-color);
    left: -10px;
    top: 5px;
    font-family: var(--font-bootstrap-icon);
}
/* ------------ Contact css ------------ */
#ContactWrapper{
    padding-top: 120px;
}
.ContBox{
    width: 80%;
    margin: 0 auto;
    padding: 30px;
    background: #e3e7f3;
    position: relative;
}
.ContBox select,
.ContBox input{
    background: #fff;
    border: 1px solid #e1e1e1;
    font-size: 22px;
    padding: 10px;
    margin-bottom: 25px;
}
.ContBox input::placeholder{opacity: 1;}
.ContBox select{
    appearance: auto;
}
.ContBox input.btn-secondry{
    background: var(--red-color);
    margin-top: 25px !important;
}
.ContBox input.btn-secondry:hover{
    background: var(--blue-color);
}
/*----------- Gallery --------------*/

.GalleryBoxs,
.GalleryBoxs * {
    box-sizing: border-box;
    margin: 0;
}

.GalleryWrapper {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}


/* .GalleryBoxs {
    display: inline-block;
    font-size: 0;
    width: 100%;
    border-bottom: none;
    background: #fff;
    padding: 0px;
    height: auto;
    background-clip: padding-box;
    position: relative;
    transition: all ease-in-out 0.3s;
    overflow: hidden;
    margin: 0px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 0 5px var(--theme-light-color);
} */

.GalleryBoxs>span {
    display: block;
    cursor: pointer;
    height: 0;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center center;
    transition: all ease-in-out 0.8s 0s;
}

.GalleryBoxs:hover span {
    transform: scale(1.2);
}

.GalleryBoxs .bi {
    color: var(--theme-bg);
    font-size: 35px;
}

.HoverBox {
    opacity: 0;
    transition: all ease-in-out 0.3s;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    bottom: 0;
    padding: 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.GalleryBoxs:hover .HoverBox {
    opacity: 1;
}

.HoverBox p {
    color: #fff;
    font-size: 20px;
}

.HoverBox img {
    margin-bottom: 20px;
}

.img-holder {
    flex-grow: 1;
    margin: .7rem;
    overflow: hidden;
    padding: 10px;
    box-shadow: 0 0 10px #dceadb;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.8s;
}

.img-holder:hover {
    border: 3px solid var(--blue-color);
}

.img-holder img {
    display: block;
    min-width: 100%;
    height: 16rem;
    object-fit: cover;
    transition-duration: 300ms;
    transition: all 0.8s;
}

/* .img-holder img:hover {
    transform: scale(1.1);
} */

.GalleryBox #carousel-thumbs img {
    height: 120px;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
}

.GalleryBox #carousel-thumbs .bi {
    color: var(--red-color);
    font-size: 40px;
}

.GalleryBox .BigPicBox img {
    max-height: 450px;
    object-fit: cover;
}

.GalleryBox .close {
    background: var(--red-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    color: #fff;
    font-size: 25px;
    line-height: 35px;
}

.GalleryBox .close span {
    position: relative;
    top: -5px;
}
.GalleryBox .carousel-control-prev,
.GalleryBox .carousel-control-next {
    width: 80px;
  }
.GalleryBox .modal-header{
    padding-top: 5px;
    padding-bottom: 5px;
  }  
.TestiWrapper .TestTxtBox{
    margin-bottom: 80px;
}
.TestiWrapper .TestTxtBox{
    position: relative;
    background: #e3e7f32e;
}
.TestiWrapper .TestTxtBox::before{
    height: 95%;
    top: -20px;
    left: 12px;
    width: 93%;
}
.TestiWrapper .TestTxtBox img{
    top: -60px;
}
/* ------------ Footer css ------------ */
#footer{
    background-color: var(--blue-color);
    background-image: url(../images/footerBg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
}
.FooterLeft h3{
    font-size: 22px;
    color: var(--white-color);
    position: relative;
    text-decoration: underline;
    font-weight: 500;
}
.FooterLeft p{
    color: var(--white-color);
}
.FooterLeft img{
    border-radius: 10px;
    height: 80px;
}
.FooterLeft .col-3{
    padding: 4px;
    border-radius: 10px;
    box-shadow: 0 0 10px var(--blue-color);
}
.FooterLeft .col-3:last-child{
    background: var(--red-color);
    color: var(--white-color);
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.FooterLeft ul li {
    padding: 5px 0;
  }
  .FooterLeft ul li .bi{
    padding-right: 10px;
  }
 .FooterPic{margin:0;} 
 .FtleftSp{padding-left: 30px;}
#footer .copyright p {
    color: var(--blue-color);
    background: var(--white-color);
    padding: 15px;
}
#footer .copyright p a{color: var(--blue-color);}