@import url(bpg_nino_mtavruli_bold.ttf);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: 0.3s ease-in;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: bold;
}

:root {
    --main-color: #00cb16;
    --black: #003d00;
    --bg: #012401;
    --border: .1rem solid green;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    width: .8rem;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 7px;
}

body {
    background: black;
}

.header {
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 5%;
    border-bottom: var(--border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .logo img {
    width: 5.7rem;
}

.header .navbar a {
    margin: 0 1rem;
    font-size: 1.5rem;
    color: whitesmoke;
}

.header .navbar a:hover {
    color: var(--main-color);
    border-bottom: .1rem solid var(--main-color);
    padding-bottom: .5rem;
}

.header .icons div {
    color: whitesmoke;
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
}

.header .icons div:hover {
    color: var(--main-color);
}

#menu-bars {
    display: none;
}

.btn {
    margin-top: 1rem;
    display: inline-block;
    padding: .7rem 2rem;
    font-size: 1.7rem;
    color: whitesmoke;
    background: var(--main-color);
    cursor: pointer;
    border-radius: 7px;
}

.btn:hover {
    background: var(--black);
}

section {
    padding: 2rem 7%;
    margin-block: 5rem;
}

.section {
    padding-block: 5rem 1rem;
}

.container {
    max-width: 1120px;
    margin-inline: 1.5rem;
}

.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url(bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    justify-content: center;
}

.home .content {
    max-width: 60rem;
}

.home .content h3 {
    font-size: 6rem;
    text-transform: uppercase;
    color: var(--main-color);
}

.home .content p {
    font-size: 1.7rem;
    line-height: 1.8;
    padding: 1rem 0;
    color: #eee;
}


.heading {
    color: whitesmoke;
    text-transform: uppercase;
    margin-top: 4rem;
    font-size: 2.7rem;
    text-align: center;
    padding-bottom: 3.7rem;
}

.about .row {
    display: flex;
    align-items: center;
    background: black;
    border: 2px solid var(--main-color);
    box-shadow: 6px 6px 15px var(--black);
    flex-wrap: wrap;
    border-radius: 27px;
}

.about .row .image {
    flex: 1 1 50rem;
    padding: 3rem;
}

.about .row .image img {
    width: 70%;
    border-radius: 17px;
}


#more {
    display: none;
    color: whitesmoke;
}

#dots {
    color: whitesmoke;
}

.about .row .content {
    flex: 1 1 40rem;
    padding: 1rem;
}

.about .row .content h3 {
    font-size: 3rem;
    color: #fff;
}

.about .row .content p {
    font-size: 1.6rem;
    color: #ccc;
    padding: 1rem 0;
    line-height: 1.8;
}


.menu .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.menu .box-container .box {
    padding: 3rem;
    text-align: center;
    border: var(--border);
    border-radius: 17px;
    box-shadow: 10px 10px 15px var(--black);
}

.menu .box-container .box img {
    height: 17rem;
}

.menu .box-container .box h3 {
    color: #fff;
    font-size: 2rem;
    padding: 1rem 0;
}

.menu .box-container .box .title {
    color: var(--main-color);
    font-size: 1.7rem;
    padding: 1rem 0;
}

.menu .box-container .box .titlee {
    color: red;
    font-size: 1.7rem;
    padding: 1rem 0;
}

.menu .box-container .box .price {
    color: var(--main-color);
    font-size: 2.5rem;
    padding: .5rem 0;
}

.menu .box-container .box .price span {
    font-size: 1.7rem;
    color: red;
}

.menu .box-container .box:hover {
    background: green;
}


.menu .box-container .box .icons a {
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    border: var(--border);
    color: #ccc;
    margin: .1rem;
    margin-bottom: 2rem;
    border-radius: 17px;
}

.menu .box-container .box .icons a:hover {
    background: var(--black);
}


.menu .box-container .box .icons .fa-map-location-dot {
    color: whitesmoke;
}


.contact .row {
    display: flex;
    align-items: center;
    background: var(--black);
    flex-wrap: wrap;
    gap: 1rem;
}

.contact .row .inputBox {
    display: flex;
    align-items: center;
    margin-block: 2rem;
    background: var(--bg);
    border: var(--border);
    padding: 7px;
}

.contact_social .contact .row .inputBox a {
    color: #fff;
    font-size: 2rem;
    display: flex;
}






span {
    margin-bottom: 7px;
    display: block;
    color: var(--main-color);
    font-size: 1.5rem;
    text-align: center;
}






.footer {
    background-color: var(--black);
    padding: 30px;
    border-top: var(--border);
}

.footer .copyright {
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
    color: var(--main-color);
}

.creat {
    color: whitesmoke;
    align-items: center;
    text-align: center;
    font-size: 10px;
}

.creat a {
    color: var(--main-color);
}

.creat a:hover {
    color: #666;
}
















.blog-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    align-items: center;
    gap: 1.7rem;
    margin-top: 4rem;
}


.blog .countdown {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.heading1 {
    color: var(--main-color);
    text-transform: uppercase;
    margin-top: 4rem;
    font-size: 1.7rem;
    text-align: center;
    padding-bottom: 2.7rem;
}

.heading1 i {
    margin-top: 1rem;
}

.blog .time {
    padding: 15px;
    width: 80px;
    border-bottom: 1px solid var(--main-color);
    border-radius: 17px;
}

.blog .time p {
    font-size: 4rem;
    margin: 0;
    color: #00cb16;
}

.blog.time span {
    font-size: 1.7rem;
    text-transform: uppercase;
}










.blog-img {
    overflow: hidden;
}

.blog-img img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 17px;
}



.blog-in {
    margin-top: 10px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 30px;
    padding: 5px 30px;
}

.blog-left h3 {
    font-size: 35px;
    margin-bottom: 7px;
    color: whitesmoke;
    text-align: center;
}

.bbb-in h6 {
    padding: 2px 9px;
    border-radius: 2px;
    font-size: 14px;
    background: var(--main-color);
    color: var(--bg);
}

.blog-right h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--main-color);
}

.blog-right p {
    color: whitesmoke;
    font-size: 1.2rem;
    font-weight: 500;
}

.blog-box {
    border: 1px solid var(--main-color);
    border-radius: 17px;
    padding: 15px;
    box-shadow: 5px 5px 10px var(--black);
}














/*contact*/

.contact_data {
    margin-top: 3rem;
}

.section_title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: whitesmoke;
}

.section_title span {
    color: gold;
}

.contact_container {
    row-gap: 2rem;
    padding-bottom: 1.5rem;
}

.contact_description {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    color: whitesmoke;
}

.contact_icon {
    width: 48px;
    height: 48px;
    background-color: var(--black);
    color: whitesmoke;
    border: 2px solid var(--main-color);
    border-radius: 1rem;
    display: grid;
    place-items: center;
    justify-self: 1.5rem;
    margin: 0 auto .5rem;
    transition: border-color .4s;
}

.contact_icon i {
    font-size: 1.87rem;
}

.contact-info {
    display: flex;
    row-gap: 2rem;
    justify-content: center;
    text-align: center;
}

.contact_subtitle {
    font-size: 2.2rem;
    margin-bottom: .5rem;
    color: darkorange;
}

.contact_address {
    font-style: initial;
    color: whitesmoke;
    font-size: 1.2rem;
}

.contact_addres a {
    font-style: initial;
    color: whitesmoke;
    font-size: 1.2rem;
}

.contact_addres a:hover {
    color: var(--main-color);
}


.contact_social {
    display: flex;
    justify-content: center;
    column-gap: .75rem;
}

.contact_social-link {
    font-size: 2.2rem;
    color: var(--main-color);
    transition: transform .4s;
}

.contact_social-link:hover {
    transform: translateY(-.25rem);
    color: green;
}


/*contact*/
















.form-popup {
    display: none;
    position: fixed;
    bottom: 0;
    right: 15px;
    border: 2px solid var(--main-color);
    z-index: 9;
    border-radius: 17px;
    background: rgba(0, 0, 0, 0.778);
}


.form-container {
    max-width: 300px;
    padding: 10px;
    background: none;
}




.form-container .btn {
    margin-top: 1rem;
    display: inline-block;
    padding: .7rem 2rem;
    font-size: 1.7rem;
    color: whitesmoke;
    background: var(--main-color);
    cursor: pointer;
    border-radius: 7px;
}


.form-container .cancel {
    background-color: red;
}


.form-container .btn:hover,
.open-button:hover {
    opacity: 1;
}



.form-container h1 {
    text-align: center;
    color: var(--main-color);
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.form-container label {
    margin-bottom: 1rem;
    display: block;
    color: var(--main-color);
    font-size: 1.5rem;
}

.form-container input {
    margin-top: 1rem;
    border-radius: 17px;
    color: var(--main-color);
}

.form-container input {
    width: 100%;
    padding: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    padding-bottom: 5px;
    border-radius: 7px;
    border: 1px solid var(--main-color);
    transition: 0.3s ease;
    color: var(--main-color);
    background: transparent;
}

.form-container input:focus {
    border: 1px solid var(--bg);
}














::selection {
    background-color: #1c6715;
    color: rgb(0, 255, 30);
}


.loader {
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1200;
}

.loader img {
    width: 17%;
}

.disppear {
    animation: cool 2s forwards;
}

@keyframes cool {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}














.banner {
    padding-block: 4rem;
    overflow: hidden;
    background: #003d00;
}

.banner-container {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 8rem;
    animation: scroll 40s linear infinite;
}

.banner-container img {
    height: 77px;
}

@keyframes scroll {
    to {
        transform: translateX(calc(-50% - 4rem));
    }
}












select {
    width: 200px;
    padding: 15px 10px;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    background: var(--bg);
    color: var(--main-color);
    font-size: 16px;
    cursor: pointer;
}

option {
    background: var(--bg);
    color: var(--main-color);
    padding: 5px;
}


.card-containerr {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}


.card {
    width: 16rem;
    text-align: center;
    border-radius: 10px;
    padding-block: 2rem;
    box-shadow: var(--main-color) 0px 1px 4px;
}

.card h4 {
    color: var(--main-color);
    font-weight: 600;
    font-size: 17px;
    margin-top: 10px;
}

.card img {
    width: 50px;
}
















.review {
    align-items: center;
    text-align: center;
}


.swiper-container {
    width: 80%;
    margin: 50px auto;
    position: relative;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.swiper-slide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.review-card {
    padding: 20px;
    border: 1px solid var(--main-color);
    border-radius: 8px;
    height: 170px;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 4px var(--main-color);
}

.review-text {
    font-style: italic;
    margin-bottom: 10px;
    color: whitesmoke;
    margin-block: 10px;
    font-size: 1.3rem;
}

.reviewer-name {
    font-weight: bold;
    color: var(--main-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.review-star {
    display: flex;

}

.card-image img {
    width: 50px;
}



















.form-popup {
    display: none;
    position: fixed;

    border: 2px solid var(--main-color);
    z-index: 9;
    border-radius: 27px 17px 0 0;
}

.btn-group {
    display: block;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-block: 9px;
}

/* Add styles to the form container */
.form-container {
    max-width: 650px;
    padding: 10px;
    display: block;
}

#reviewImage {
    background: #003d00;
    color: whitesmoke;
    font-size: 1.5rem;
}

.btn1 {
    display: inline-block;
    padding: .5rem 2rem;
    font-size: 1.7rem;
    color: whitesmoke;
    background: var(--main-color);
    cursor: pointer;
    border-radius: 7px;
}

.btn1:hover {
    background: var(--black);
}


.btn2 {
    display: inline-block;
    padding: .5rem 2rem;
    font-size: 1.7rem;
    color: whitesmoke;
    background: red;
    cursor: pointer;
    border-radius: 7px;
}

.btn2:hover {
    background: rgb(136, 2, 2);
}



label {
    color: var(--main-color);
    font-size: 1.5rem;
}

textarea:focus,
input[type="text"]:focus {
    border: 1px solid var(--black);
}

input[type="text"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--main-color);
    border-radius: 4px;
    box-sizing: border-box;
    transition: 0.3s ease;
    margin-top: 7px;
    background: black;
    color: var(--main-color);
    font-size: 17px;
}



input[type="number"]:focus {
    border: 1px solid var(--black);
}

input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--main-color);
    border-radius: 4px;
    box-sizing: border-box;
    transition: 0.3s ease;
    margin-top: 7px;
    background: black;
    color: var(--main-color);
    font-size: 17px;
}













.logo-slider {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background: var(--bg);
    border-top: 1px solid var(--main-color);
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-link {
    text-decoration: none;
    margin: 0 40px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-img:hover {
    filter: grayscale(0%);
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}









::placeholder {
    font-size: 1.4rem;
}

button i:hover {
    color: rgb(167, 2, 2);
}

button i {
    color: red;
    font-size: 2.7rem;
    display: flex;
    text-align: center;
    align-items: center;
    position: absolute;
    left: 35%;
    cursor: pointer;
    transition: 0.3s ease;
}

b {
    color: var(--main-color);
}


.sspd {
    color: red;
    margin-bottom: -1.9rem;
}


















.aboutus {
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(abt.png);
    background-position: center;
    background-size: cover;
    border-radius: 17px;
    text-align: center;
    padding: 100px 0;
    border: 1px solid var(--black);
}















.whyus-containersr {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    gap: 2rem;
    margin-top: 2rem;
}

.whyus-containersr .wbox {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--main-color);
    box-shadow: 0px 0px 10px var(--main-color),
        0px 0px 10px var(--main-color) inset;
}


.whyus-containersr .wbox .wbox-img {
    width: 100%;
    height: 200px;
    padding: 10px;
}

.whyus-containersr .wbox .wbox-img img {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    object-fit: cover;
    object-position: center;
}

.whyus-containersr .wbox p {
    color: var(--main-color);
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid var(--main-color);
    width: 97px;
    border-radius: 10px;
    margin: 1rem;
    font-size: 1.5rem;
}

.whyus-containersr .wbox h3 {
    color: whitesmoke;
    font-size: 1.2rem;
    margin: 1rem;
    font-weight: 500;
}




















.rowww {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.rowww .colll {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rowww .colll img {
    width: 60%;
    cursor: pointer;
}

.evenbts .rowww {
    margin-top: 50px;
}

.h4s {
    font-size: 2rem;
    color: var(--main-color);
    margin: 2px auto;
    margin-top: 1rem;
}

.psex {
    color: whitesmoke;
    padding: 0px 40px;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 1rem;
}




.rowww .popup-image {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    height: 100%;
    width: 100%;
    z-index: 1000;
    display: none;
}

.rowww .popup-image span {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 60px;
    font-weight: bolder;
    color: #00ff51;
    cursor: pointer;
    z-index: inherit;
}


.rowww .popup-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    width: 555px;
    object-fit: cover;
}
































@media (max-width: 991px) {

    html {
        font-size: 55%;
    }

    .header {
        padding: 1.5rem;
    }

    section {
        padding: 2rem;
    }
}

@media (max-width: 768px) {

    #menu-bars {
        display: inline-block;
    }

    .header .navbar {
        position: absolute;
        top: 100%;
        right: -100%;
        background: var(--black);
        width: 30rem;
        height: calc(100vh - 9.5rem);
    }

    .header .navbar.active {
        right: 0;
    }

    .header .navbar a {
        color: var(--main-color);
        display: block;
        margin: 1.5rem;
        padding: .5rem;
        font-size: 2rem;
    }

    .home {
        background-position: left;
        justify-content: center;
        text-align: center;
    }

    .home .content h3 {
        font-size: 4.5rem;
    }

    .home .content p {
        font-size: 1.5rem;
    }

    .contact_container {
        grid-template-columns: repeat(2, 350px);
        align-items: center;
    }

    .contact_data .section_title,
    .contact_description {
        text-align: center;
    }

    .col-img img {
        max-width: 100px;
        width: 100%;
        display: block;
        object-fit: contain;
        padding: 5px;
    }


    .col-text h4 {
        font-size: 2.1rem;
        text-align: center;
    }


    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        justify-content: flex-start;
    }

    .row .content .btn {
        margin: 2rem;
    }

    .row .content {
        margin: 2rem;
    }

    .fa-calculator span {
        position: absolute;
        top: 20px;
        right: 55px;
    }

    .blog-right h4 {
        font-size: 2.0rem;
    }

    .blog-right p {
        font-size: 1.9rem;
    }

    .review-card {
        height: 170px;
        width: 90%;
    }

    .contact-info {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));

    }

    .menu .box-container .box img {
        height: 14rem;
    }

    .menu .box-container .box {
        padding: 2rem;
    }

    .loader img {
        width: 30%;
    }

    .card-containerr .card h4 {
        font-size: 1.3rem;
    }

    .aboutus {
        margin: 90px auto;
        width: 90%;
        background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(abbvd.png);
        background-size: cover;
        border: 1px solid var(--main-color);
    }

    .whyus-containersr .wbox {
        border: 2px solid var(--main-color);
    }

    .whyus-containersr .wbox .wbox-img {
        width: 100%;
        height: 300px;
        padding: 10px;
    }

    .whyus-containersr .wbox h3 {
        font-size: 1.6rem;
    }

    .whyus-containersr .wbox .wbox-img img {
        width: 80%;
        height: 80%;
        object-fit: cover;
        object-position: center;
    }

    .blog-img {
        overflow: hidden;
    }

    .blog-img img {
        display: block;
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 17px;
    }


    .aboutus {
        margin: 90px auto;
        width: 95%;
        background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(abt.png);
        background-position: center;
        background-size: cover;
    }

    .rowww .colll img {
        width: 90%;
    }

    .h4s {
        font-size: 2.3rem;
        color: var(--main-color);
    }

    .psex {
        color: whitesmoke;
        margin-top: 1rem;
        font-size: 1.6rem;
        font-weight: 500;
        text-align: start;
        
    }

}

@media (max-width: 450px) {

    html {
        font-size: 50%;
    }

    .order form .inputBox .input {
        width: 100%;
    }

    .order-box .order-left .order-right {
        width: 100%;
    }


    .contact_container {
        grid-template-columns: 350px;
    }

    .contact_container .section_title {
        text-align: center;
    }

    .contact_container .contact_data {
        text-align: center;
        width: 100%;
        justify-content: center;
        align-items: center;
        display: grid;
    }

    .row .content .btn {
        margin: 2rem;
    }

    .row .content {
        margin: 2rem;
    }

    .fa-calculator span {
        position: absolute;
        top: 20px;
        right: 48px;
    }

    .cart-model {
        padding: 1rem;
    }

    .blog-right h4 {
        font-size: 2.5rem;
    }

    .order-right {
        border-radius: 0 0 17px 17px;
        height: 500px;
    }

    .order-box {
        display: block;
    }

    .blog-right p {
        font-size: 1.8rem;
    }

    .card-containerr {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 2rem;
        margin: 20px;
    }

    .card-containerr .card h4 {
        font-size: 1.3rem;
    }

    .review-card {
        height: 170px;
        width: 97%;
    }

    .store-content .col {
        display: flex;
    }

    .col-img img {
        display: flex;
    }

    .loader img {
        width: 50%;
    }


    .aboutus {
        margin: 70px auto;
        width: 90%;
        background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(abbvd.png);
        background-size: cover;
    }


    .whyus-containersr .wbox .wbox-img {
        width: 100%;
        height: 200px;
        padding: 10px;
    }

    .whyus-containersr .wbox h3 {
        font-size: 1.6rem;
    }

    .whyus-containersr .wbox .wbox-img img {
        width: 100%;
        height: 95%;
        object-fit: cover;
        object-position: center;
    }

    .blog-img {
        overflow: hidden;
    }

    .blog-img img {
        display: block;
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 17px;
    }

    .aboutus {
        margin: 90px auto;
        width: 90%;
        background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(abt.png);
        background-position: center;
        background-size: cover;
    }

    .psex {
        color: whitesmoke;
        margin-top: 1rem;
        font-size: 1.2rem;
        font-weight: 500;
        
    }

}

@media (max-width: 1550px) {

    .contact_container {
        grid-template-columns: 440px 450px;
        column-gap: 10rem;
    }

    .contact_description {
        margin-bottom: 3rem;
    }

    .contact-info {
        gap: 4rem 6rem;

    }

    .contact_icon {
        margin-bottom: .75rem;
    }

    .contact_subtitle {
        font-size: 1.3rem;
        margin-bottom: .75rem;
    }

}