@import url('https://fonts.googleapis.com/css2?family=Freehand&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Parisienne&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    font-family: "Montserrat", sans-serif;
}

nav {

    background: #402a23;
    padding: 20px;
}

nav>ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    justify-content: center;
}

nav>ul>li.logo {
    flex: 1;
}

nav>ul>div.items {
    display: inline-flex;
    position: absolute;
    right: 550px;
    text-align: center;
}


nav>ul>div.items a {
    text-decoration: none;
    font-size: 18px;
    padding: 0 12px;
    color: white;
    font-weight: 500;
}


nav>ul>.search-icon {
    height: 40px;
    width: 200px;
    display: flex;
    cursor: pointer;
    position: absolute;
    right: 280px;
}

nav>ul>.search-icon input {
    height: 90%;
    width: 200px;
    border: none;
    padding: 0 20px;
    border-radius: 30px;
    margin-top: 1px;

}

nav>ul>.search-icon .icon {
    height: 100%;
    width: 100px;
    color: white;
    padding: 10px;
    align-items: center;
    gap: 10px;
}

.nav-icons {
    display: flex;
    padding: 10px;
    font-size: 25px;
    justify-content: space-evenly;
    align-items: center;
    gap: 30px;
}


.nav-icons i {
    color: white;
}


.banner1 {
    padding: 50px 0px 50px;
    text-align: center;
}

img.perfume-banner {
    width: 100%;

}

.banner1 {
    animation-name: bounceInLeft;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}


.text-on-banner1 {
    display: flex;
    top: 300px;
    left: 100px;

}

.heading {
    font-weight: 700;
    color: #402a23;
    position: absolute;
    top: 150px;
    left: 150px;
    scale: 1.5;
    transform: 0.5s;
}

.heading,
.des {
    animation-name: slideInDown;
    animation-duration: 1.8s;
    animation-fill-mode: both;
}

@-webkit-keyframes slideInDown {
    0% {
        transform: translateY(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        transform: translateY(-100%);
        visibility: visible;
    }

    100% {
        transform: translateY(0);
    }
}


.text-on-banner1>.des {
    color: #6d4c42;
    font-weight: 600;
    position: absolute;
    top: 190px;
    left: 100px;
}


.button {
    background: #402a23;
    color: white;
    padding: 15px 30px 15px;
    text-align: center;
    position: absolute;
    left: 110px;
    top: 280px;
    border: none;
    scale: 1.2;
    cursor: pointer;
}

.button:hover {
    opacity: 80%;
}

.button {
    animation-name: slideInUp;
    animation-duration: 1.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes slideInUp {
    0% {
        transform: translateY(100%);
        visibility: visible;
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    0% {
        transform: translateY(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


.section1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 50px;
}

.section1 {
    animation-name: bounceInRight;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes bounceInRight {

    0%,
    60%,
    75%,
    90%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInRight {

    0%,
    60%,
    75%,
    90%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.section1-image1 {
    background: #f0f0f0;
    padding: 20px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    scale: 1.3;
    text-align: center;
    width: 300px;
    height: 240px;
    object-fit: cover;
    overflow: hidden;
}

.section1-image1 img {
    width: 240px;
    height: auto;
    transition: 0.5s;
}

.section1-image1 img:hover {
    scale: 1.2;
}

.section1-image2 {
    background: #f0f0f0;
    padding: 20px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    scale: 1.3;
    text-align: center;
    width: 300px;
    height: 240px;
    object-fit: cover;
    overflow: hidden;
}

.section1-image2 img {
    width: 240px;
    height: auto;
    transition: 0.5s;
}

.section1-image2 img:hover {
    scale: 1.2;

}

.section1-image3 {
    background: #f0f0f0;
    padding: 20px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    scale: 1.3;
    text-align: center;
    width: 300px;
    height: 240px;
    object-fit: cover;
    overflow: hidden;
}

.section1-image3 img {
    width: 240px;
    height: auto;
    transition: 0.5s;
}

.section1-image3 img:hover {
    scale: 1.2;

}

.section1-content h3 {
    font-size: 15px;
    padding: 10px;
    justify-content: center;
    margin-top: 30px;
    font-weight: 300;
    text-align: center;
    transform: 0.5s;

}

.section1-content h3 a {
    text-decoration: none;
    color: white;
    background-color: #402a23;
    padding: 10px 30px;

}

.section1-content h3 a:hover {
    opacity: 80%;
}

/* BANNER2 */
.banner2 {
    margin: 50px 0px 50px;
    text-align: center;
}

img.rakhi-banner {
    width: 100%;
}

.banner2 {
    animation-name: bounceInLeft;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.our-faves {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 30px;
}

.raksha-bandhan-special {
    color: #402a23;
    text-align: center;
    font-weight: 400;
}



/* section-2 */
.section2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 50px;
    gap: 40px;
}

.section2-box1 {
    background: #f0f0f0;
    padding: 20px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    scale: 1.1;
    text-align: center;
    width: 300px;
    height: auto;
    object-fit: cover;
    overflow: hidden;
    position: relative;
    top: 20px;
}

.section2-box1 .main-img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.section2-box1 .top-img {
    width: 100%;
    height: auto;
    position: absolute;
    height: auto;
    scale: 0.9;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: #f0f0f0;
    transition: all 0.3s ease;
}

.top-img:hover {
    opacity: 1;
}

.section2-content {
    margin-top: 20px;
}

.box-des {
    color: gray;
    font-weight: 400;
    font-size: 15px;
    margin-top: 10px;
}

.button2 {
    background: #402a23;
    color: white;
    padding: 10px 30px;
    text-align: center;
    border: none;
    scale: 1;
    cursor: pointer;
    margin-top: 15px;
}

.button2:hover {
    opacity: 80%;
}


.section2-box2 {
    background: #f0f0f0;
    padding: 20px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    scale: 1.1;
    text-align: center;
    width: 300px;
    height: auto;
    ;
    object-fit: cover;
    overflow: hidden;
    position: relative;
    top: 20px;
}

.section2-box2 .main-img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.section2-box2 .top-img {
    width: 100%;
    height: auto;
    position: absolute;
    height: auto;
    scale: 0.9;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: #f0f0f0;
    transition: all 0.3s ease;
}

.top-img:hover {
    opacity: 1;
}


.section2-box3 {
    background: #f0f0f0;
    padding: 20px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    scale: 1.1;
    text-align: center;
    width: 300px;
    height: auto;
    object-fit: cover;
    overflow: hidden;
    position: relative;
    top: 20px;
}

.section2-box3 .main-img {
    width: 100%;
    height: auto;
}

.section2-box3 .top-img {
    width: 100%;
    height: auto;
    position: absolute;
    height: 295px;
    object-fit: cover;
    scale: 0.9;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: #f0f0f0;
    transition: all 0.3s ease;
}

.top-img:hover {
    opacity: 1;
}


.section2-box4 {
    background: #f0f0f0;
    padding: 20px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    scale: 1.1;
    text-align: center;
    width: 300px;
    height: auto;
    object-fit: cover;
    overflow: hidden;
    position: relative;
    top: 20px;
}

.section2-box4 .main-img {
    width: 100%;
    height: auto;
}

.section2-box4 .top-img {
    width: 100%;
    height: auto;
    position: absolute;
    height: 295px;
    object-fit: cover;
    scale: 0.9;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: #f0f0f0;
    transition: all 0.3s ease;
}

.top-img:hover {
    opacity: 1;
}

/* BANNER2 */
.banner3 {
    margin: 50px 0px 50px;
    text-align: center;
}

img.grooming-banner {
    width: 100%;
}

.the-manly-combos {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 30px;
}

.skin-care {
    color: #402a23;
    text-align: center;
    font-weight: 400;
}


/* section-3 */
.section3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 50px;
    gap: 40px;
}

.section3-box1 {
    background: #f0f0f0;
    padding: 20px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    scale: 1.1;
    text-align: center;
    width: 300px;
    height: auto;
    object-fit: cover;
    overflow: hidden;
    position: relative;
    top: 20px;
}

.section3-box1 .main-img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.section3-box1 .top-img {
    width: 100%;
    height: auto;
    position: absolute;
    height: auto;
    scale: 0.9;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: #f0f0f0;
    transition: all 0.3s ease;
}

.top-img:hover {
    opacity: 1;
}

.section3-content {
    margin-top: 20px;
}

.box-des {
    color: gray;
    font-weight: 400;
    font-size: 15px;
    margin-top: 10px;
}


.section3-box2 {
    background: #f0f0f0;
    padding: 20px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    scale: 1.1;
    text-align: center;
    width: 300px;
    height: auto;
    ;
    object-fit: cover;
    overflow: hidden;
    position: relative;
    top: 20px;
}

.section3-box2 .main-img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.section3-box2 .top-img {
    width: 100%;
    height: auto;
    position: absolute;
    height: auto;
    scale: 0.9;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: #f0f0f0;
    transition: all 0.3s ease;
}

.top-img:hover {
    opacity: 1;
}


.section3-box3 {
    background: #f0f0f0;
    padding: 20px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    scale: 1.1;
    text-align: center;
    width: 300px;
    height: auto;
    object-fit: cover;
    overflow: hidden;
    position: relative;
    top: 20px;
}

.section3-box3 .main-img {
    width: 100%;
    height: auto;
}

.section3-box3 .top-img {
    width: 100%;
    height: auto;
    position: absolute;
    height: 295px;
    object-fit: cover;
    scale: 0.9;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: #f0f0f0;
    transition: all 0.3s ease;
}

.top-img:hover {
    opacity: 1;
}


.section3-box4 {
    background: #f0f0f0;
    padding: 20px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    scale: 1.1;
    text-align: center;
    width: 300px;
    height: auto;
    object-fit: cover;
    overflow: hidden;
    position: relative;
    top: 20px;
}

.section3-box4 .main-img {
    width: 100%;
    height: auto;
}

.section3-box4 .top-img {
    width: 100%;
    height: auto;
    position: absolute;
    height: 295px;
    object-fit: cover;
    scale: 0.9;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: #f0f0f0;
    transition: all 0.3s ease;
}

.top-img:hover {
    opacity: 1;
}


/* BANNER4 */
.banner4 {
    margin: 50px 0px 50px;
    text-align: center;
}

img.grooming-banner {
    width: 100%;
}

.our-brand-fragrances {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 30px;
}

.shop-by-occassion {
    color: #402a23;
    text-align: center;
    font-weight: 400;
}

/* section-4 */
.section4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 50px;
    gap: 40px;
}

.section4-box1 {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    scale: 1.1;
    text-align: center;
    width: 300px;
    height: auto;
    object-fit: cover;
    overflow: hidden;
    position: relative;
    top: 20px;
    transition: 0.5s;
}

.section4-box1:hover {
    scale: 1.2;
}

.section4-box1 .main-img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.section4-content {

    position: absolute;
    left: 0;
    right: 0;
    bottom: 100px;
    place-items: center;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.7960434173669468) 0%, rgba(255, 255, 255, 0.7988445378151261) 100%);
    height: 150px;
    opacity: 0;
    transition: all 0.5s;
}

.section4-content:hover {
    opacity: 1;
}

.section4-heading {
    margin-top: 30px;
}

.box-des {
    color: gray;
    font-weight: 400;
    font-size: 15px;
    margin-top: 10px;
}

.button2 {
    background: #402a23;
    color: white;
    padding: 10px 30px;
    text-align: center;
    border: none;
    scale: 1;
    cursor: pointer;
    margin-top: 15px;
}

.button2:hover {
    opacity: 80%;
}


.section4-box2 {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    scale: 1.1;
    text-align: center;
    width: 300px;
    height: auto;
    ;
    object-fit: cover;
    overflow: hidden;
    position: relative;
    top: 20px;
    transition: 0.5s;
}

.section4-box2:hover {
    scale: 1.2;
}

.section4-box2 .main-img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.section4-box2 .top-img {
    width: 100%;
    height: auto;
    position: absolute;
    height: auto;
    scale: 0.9;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: #f0f0f0;
    transition: all 0.3s ease;
}

.top-img:hover {
    opacity: 1;
}


.section4-box3 {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    scale: 1.1;
    text-align: center;
    width: 300px;
    height: auto;
    object-fit: cover;
    overflow: hidden;
    position: relative;
    top: 20px;
    transition: 0.5s;
}

.section4-box3:hover {
    scale: 1.2;
}

.section4-box3 .main-img {
    width: 100%;
    height: auto;
}

.section4-box3 .top-img {
    width: 100%;
    height: auto;
    position: absolute;
    height: 295px;
    object-fit: cover;
    scale: 0.9;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: #f0f0f0;
    transition: all 0.3s ease;
}

.top-img:hover {
    opacity: 1;
}


.section4-box4 {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    scale: 1.1;
    text-align: center;
    width: 300px;
    height: auto;
    object-fit: cover;
    overflow: hidden;
    position: relative;
    top: 20px;
    transition: 0.5s;
}

.section4-box4:hover {
    scale: 1.2;
}

.section4-box4 .main-img {
    width: 100%;
    height: auto;
}

.section4-box4 .top-img {
    width: 100%;
    height: auto;
    position: absolute;
    height: 295px;
    object-fit: cover;
    scale: 0.9;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: #f0f0f0;
    transition: all 0.3s ease;
}

.top-img:hover {
    opacity: 1;
}


/* FOOTER */

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    line-height: 30px;
    margin-top: 30px;
    height: auto;
    background: #402a23;
    padding: 50px;
    justify-content: flex-start;
}

.footer>.footer_child1>.footer_child1_heading,
.footer_child2>.footer_child2_heading {
    font-size: 20px;
    justify-content: center;
    align-items: center;
    margin: 30px 30px;
    font-weight: bold;
    margin-left: 45px;
    color: white;

}

.footer>.footer_child1>ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    list-style: none;
}


.footer>.footer_child2>ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    list-style: none;
}

.footer>.footer_child2>ul>.footer_child2_list_items>ul>li,
.footer_child1>ul>.footer_child1_list_items>ul>li {
    list-style: none;
}

.footer>.footer_child2>ul>.footer_child2_list_items>ul>li>a,
.footer_child1>ul>.footer_child1_list_items>ul>li>a {
    text-decoration: none;
    color: white;
}



.footer>.footer_child1>ul>.footer_child1_list_items,
.footer_child2>ul>.footer_child2_list_items {
    padding: 0px 48px;
}

.banner5 {
    margin: 50px 0px 50px;
    text-align: center;
}

img.the-man-club-banner {
    width: 100%;
}

/************ bottom_footer ************/
.bottom_footer {
    align-items: center;
    gap: 60px;
    margin-top: 25px;
    padding: 10px 0px;
    text-align: center;
    margin-left: 200px;
}


.bottom_footer>.bottom_footer_child3>.icons>a {
    font-size: 30px;
    padding: 0px 10px;
    color: white;
}

.bottom-text {
    color: white;
    margin-bottom: 10px;
}

.bottom_footer .footer-logo {
    width: 400px;
    margin-bottom: 10px;
}