/* Fonts Import */
@import url(.../css/clash-grotesk.css);

/* root variables */
:root {
    --c-dark: #212529;
    --c-brand: rgb(255, 174, 0);
    --c-brand-light: rgb(255, 221, 0);
    --c-brand-rgb: 255, 221, 0;
    --c-body: #727272;
    --font-base: 'ClashGrotesk', sans-serif;
    --box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.08);
    --box-shadow-2: 0px 15px 25px rgba(223, 198, 56, 0.87);
}

/* initialization */
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-base);
    line-height: 1.7;
    color: var(--c-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4 .h5,
.h6 {
    font-weight: 600;
    color: var(--c-dark);
}

a {
    text-decoration: none;
    color: var(--c-brand);
}

a:hover {
    color: var(--c-brand-light);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding-top: 140px;
    padding-bottom: 140px;
}

/* button */

.btn {
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    border-radius: 0;
    padding: 10px 24px;
}

.btn-brand {
    background-color: var(--c-brand);
    border-color: var(--c-brand);
    color: black;
}

.btn-brand:hover {
    background-color: var(--c-brand-light);
    border-color: var(--c-brand-light);
    color: black;
}

/* navbar */

.navbar {
    
    box-shadow: var(--box-shadow);
    padding-top: 5px !important;
}


.navlogo {
    height: 120px;
}

.navbar-nav .nav-link {
    font-weight: 500;
}

.navbar-nav .nav-link.active {
    color: var(--c-brand);
}

/* hero */
#hero {
    background: linear-gradient(#00000042, #000000a1), url(../img/hero2.jpg);
    background-position: center;
    background-size: cover;
}

/* section title */
.section-title {
    margin-bottom: 40px;
}

.section-title .line {
    width: 100px;
    height: 4px;
    background-color: var(--c-brand);
    margin: 16px auto 20px auto;
}

.section-title p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.about-img {
    border-radius: 20px;
}

.iconbox {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--c-brand-rgb), 0.1);
    color: var(--c-brand);
    font-size: 34px;
    flex: none;
}

/*** Service Start ***/
#services {
    background-color: #f2f5f9;
}

.service .service-item {
    border-radius: 10px;
}




.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(var(--c-brand-rgb), 0.3);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.ser-card {
    background-color: #F8F9FA;
}

.ser-card:hover {
    background-color: var(--c-brand);
}


.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--c-brand);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--c-brand);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-warning {
    color: var(--bs-dark);
    background: var(--c-brand);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-warning:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--c-brand);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
    color: var(--c-brand);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: rgba(var(--c-brand-rgb), 0.4);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: rgba(var(--c-brand-rgb), 0.4);
}

.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, 0.6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--c-brand);
}

.footer .footer-item .footer-btn a:hover {
    background: black;

}

.footer .footer-item .footer-btn a:hover i {
    color: var(--c-brand);
}

/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);

}

.text-copy {
    color: var(--c-brand);
}

/* breadcrumb */
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.53), rgba(0, 0, 0, 0.342)),
        url(../img/bigstorage.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: rgba(var(--c-brand-rgb), 0.6);
}

/* about Page */
#about-page {
    margin-top: 40px;
    margin-bottom: 40px;

}

.content-part {
    margin-top: 60px;
    margin-bottom: 50px;
    background-color: white;
    border-radius: 20px;
    padding: 20px 40px 20px 40px;
    box-shadow: var(--box-shadow-2);
}

.abt-img img {
    height: 500px;
    width: auto;
    border-radius: 30px;
    margin-left: -50px;
    margin-top: 90px;
}


.more-abt {
    background-color: white;
    margin-top: 50px;
    padding: 50px 60px 30px 60px;
    border-radius: 25px;
}

.services-page {
    margin-top: 40px;
}

.col-lg-4 .card {
    padding: 8px 10px 8px 10px;
}

.col-lg-4 {
    margin-bottom: 17px;
}

.painted {
    background-color: var(--c-brand);
}

/* Gallery */

.gallery {
    margin-top: 30px;
    margin-bottom: 40px;
}

h3 .services-icon {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 28px;
}

#contact-form {
    margin-top: 50px;
    margin-bottom: 50px;
}

#contact-us {
    background-color: #f2f5f9;
}

.contact-us {
    background-color: #ffffff;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 20px;
}

.contact-title {
    margin-top: 40px;
    margin-bottom: 20px;
}

.contact-para {
    margin-right: 15px;
}