﻿body {
    margin-top: 100px;
    margin-bottom: 80px;
}

.banner-container {
    width:100%;
    position: relative;
    text-align: center;
    color: white;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    font-size: 5vw;
    font-weight: bold;
    font-family: 'ubuntu', sans-serif;
}

.banner-image {
    width:100%;
}

.block_getintouch {
    margin-top:10px;
    display: flex;
    text-align: center; /* Horizontally center content */
    align-items: center; /* Vertically center content */
    width: 100%;
}

.container_namasteImage {
    width: 50%;
    right: 0px;
}
    .container_namasteImage img {
        width: 100%;
    }
.container_getintouchText {
    width: 40%;
    right: auto;
}

/* From Uiverse.io by guilhermeyohan */
.subscribe {
    position: relative;
    width: 40vw;
    padding: 2.5vw;
    background-color: #FFF;
    border-radius: 4px;
    color: red;
    box-shadow: 0px 0px 60px 5px rgba(0, 0, 0, 0.4);
}

    .subscribe:after {
        position: absolute;
        content: "";
        right: -10px;
        bottom: 18px;
        width: 0;
        height: 0;
        border-left: 0px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #1a044e;
    }

    .subscribe p {
        text-align: center;
        font-size: 30px;
        font-weight: bold;
        font-family: 'ubuntu', sans-serif;
        letter-spacing: 4px;
        line-height: 30px;
    }

    .subscribe input {
        bottom: 30px;
        border: none;
        border-bottom: 1px solid #d4d4d4;
        padding: 10px;
        width: 82%;
        background: transparent;
        transition: all .25s ease;
    }

        .subscribe input:focus {
            outline: none;
            border-bottom: 1px solid #0d095e;
            font-family: 'ubuntu', sans-serif;
        }

        .subscribe textarea {
            resize: none;
            border: none;
            border-bottom: 1px solid #d4d4d4;
            margin-bottom:20px;
            padding: 10px;
            width: 82%;
            background: transparent;
            transition: all .25s ease;
        }

        .subscribe textarea:focus {
            outline: none;
            border-bottom: 1px solid #0d095e;
            font-family: 'Ubuntu', 'Gill Sans MT', Calibri, 'Trebuchet MS', 'sans-serif';
        }

    .subscribe .submit-btn {
        position: absolute;
        border-radius: 30px;
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
        background-color: red;
        color: #FFF;
        padding: 12px 25px;
        display: inline-block;
        font-size: 12px;
        font-weight: bold;
        letter-spacing: 5px;
        right: -10px;
        bottom: -20px;
        cursor: pointer;
        transition: all .25s ease;
        box-shadow: -5px 6px 20px 0px rgba(26, 26, 26, 0.4);
    }

        .subscribe .submit-btn:hover {
            background-color: #07013d;
            box-shadow: -5px 6px 20px 0px rgba(88, 88, 88, 0.569);
        }


.container_address {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between; /* Positions blocks at extreme left and right */
}

.card {
    align-content: center;
    justify-items:center;
    width: 250px;
    background: white;
    position: relative;
    padding: 1.8rem;
    border: 2px solid red;
    transition: 0.5s ease-out;
    overflow: visible;
}

.card-button {
    transform: translate(-50%, 125%);
    width: 60%;
    border: none;
    background-color: red;
    color: #fff;
    font-size: 1rem;
    padding: .5rem 1rem;
    position: absolute;
    left: 50%;
    bottom: 0;
    opacity: 0;
    transition: 0.3s ease-out;
}

.text-body {
    line-height: 1.2;
    font-family: 'Ubuntu', 'Gill Sans MT', Calibri, 'Trebuchet MS', 'sans-serif';
}


.text-title {
    font-size: 1.5em;
    font-weight: bold;
    color: red;
    font-family: 'Ubuntu', 'Gill Sans MT', Calibri, 'Trebuchet MS', 'sans-serif';
}


.card:hover {
    border-color: red;
    box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.25);
}

.svgimg{
    width:50px;    
}

@media (max-width: 767px) {
    .banner-container {
        width: 100%;
    }

    .block_getintouch {
        flex-direction: column;
        width: 100%;
        margin: auto;
    }

    .container_namasteImage {
        width: 90%;
    }

        .container_namasteImage img {
            width: 100%;
        }

    .container_getintouchText {
        width: 90%;
    }

    .subscribe {
        width: 90%;
        margin: auto;
    }

    .container_address {
        width: 100%;
        margin-top: 30px;
        padding-bottom:2vw;
        flex-direction: column;
    }

    .card {
        margin: auto;
        padding-bottom:2vw;
    }
}
