@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;700&display=swap");

:root {
    --primary: #45aeff;
    --dark: #21252f;
    --body: #888;
    --white: #ffffff;
    --box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}
.product-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    width: 300px;
    cursor: pointer;
}
input::placeholder {
    color: white;
    text-indent: 15px;
}
input,
select {
    background-color: transparent;
    border: 2px solid white;
    border-radius: 15px;
    color: white;
    text-indent: 15px;
    font-size: 17px;
    height: 50px;
    width: 250px;
}
select option {
    padding: 8px;
    background-color: #fff;
    color: #333;
}

select option:hover {
    background-color: #f2f2f2;
}

select option:checked {
    background-color: #e6e6e6;
}

input:focus {
    border: 2px solid white !important;
}

textarea {
    background-color: transparent;
    border: 1px solid white;
    border-radius: 15px;
    color: white;
    text-indent: 15px;
    font-size: 17px;
    height: 200px;
    max-width: 75%;
}

textarea::placeholder {
    color: white;
}
.product-type h6 {
    color: rgba(255, 255, 255, 0.5);
}

.product-type.active-nav {
    border-bottom: 1px solid white;
}

.product-type.active-nav h6 {
    color: white;
}

body {
    font-family: "Sora", sans-serif;
    line-height: 1.7;
    color: var(--body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-4 {
    color: var(--dark);
    font-weight: 700;
}

a {
    color: var(--dark);
    text-decoration: none;
}

img {
    width: 100%;
}

.navbar {
    box-shadow: var(--box-shadow);
}

.logo {
    width: 160px;
}

.navbar .nav-link {
    font-size: 14px;
    font-weight: 700;
}

.navbar .nav-link.active {
    color: var(--primary) !important;
}

.btn {
    padding: 14px 18px;
    border-width: 2px;
    border-radius: 0;
}

.hero {
    background-image: url(../img/paint3.png);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 2;
}

.about {
    background-image: url(../img/colors3.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 2;
}

.hero::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(21, 20, 51, 0.8);
    z-index: -1;
}

section {
    padding-top: 120px;
    padding-bottom: 120px;
}

.card-effect {
    box-shadow: var(--box-shadow);
    background-color: var(--white);
    padding: 25px;
    transition: all 0.35s ease;
}

.card-effect:hover {
    box-shadow: none;
    transform: translateY(5px);
}

.iconbox {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--white);
    font-size: 32px;
    border-radius: 100px;
    flex: none;
}

.service {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.service::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: -100%;
    left: 0;
    background-color: var(--primary);
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.service:hover .iconbox {
    background-color: var(--white);
    color: var(--primary);
}

.service:hover h5,
.service:hover p {
    color: var(--white);
}

.service:hover::after {
    opacity: 1;
    top: 0;
}

.col-img {
    background-image: url(../img/colors2.png);
    background-position: center;
    background-size: cover;
    min-height: 500px;
}

.col-img2 {
    background-image: url(../img/color1.png);
    background-position: center;
    background-size: cover;
    min-height: 500px;
}

.project {
    position: relative;
    overflow: hidden;
}
.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(
        85,
        85,
        85,
        0.5
    ); /* Replace with your desired color and transparency */
}
.project .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 20, 51, 0.8);
    padding: 30px;
    display: flex;
    align-items: flex-end;
    transition: all 0.4s ease;
    opacity: 0;
}

.equal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.project .underlay {
    position: absolute;
    color: black;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(21, 20, 51, 0.8); */
    padding: 30px;
    display: flex;
    align-items: flex-end;
    transition: all 0.4s ease;
    opacity: 1;
}

.project img {
    transition: all 0.4s ease;
}

.project:hover .overlay {
    opacity: 1;
}

.project:hover .underlay {
    opacity: 0;
}

.project:hover img {
    transform: scale(1.1);
}

.pricing i {
    font-size: 20px;
    color: var(--primary);
}

.pricing ul li {
    margin-top: 8px;
}

.team-member img {
    width: 125px;
    height: 125px;
    border-radius: 100px;
}

.social-icons {
    display: flex;
    justify-content: center;
}
.social-icons a {
    width: 34px;
    height: 34px;
    background-color: var(--primary);
    border-radius: 2px solid var(--primary);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    margin-left: 5px;
    transition: all 0.4s ease;
    border: 2px solid var(--primary);
}

.social-icons a:hover {
    color: var(--primary);
    background-color: transparent;
    border-color: var(--primarys);
}

form input.form-control {
    height: 56px;
}

form .form-control {
    border: transparent;
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0.02);
}

.footer-top {
    padding-top: 30px;
    padding-bottom: 90px;
    background-image: url(../img/world.jpg);
    background-size: cover;
    background-position: center;
}

.footer-top a {
    color: var(--body);
}

.footer-top a:hover {
    color: var(--white);
}

.footer-bottom {
    background-color: #45aeff;
}
