
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin: 0;
    /*background-image: linear-gradient( 135deg, #52E5E7 10%, #130CB7 100%);*/
    background-color: tan;
    font-family: 'Noto Serif', serif;
}

i {
    font-size: 26px;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    width: 40%;
    margin: auto;
    text-align: center;
}

.title {
    font-size: 18px;
    margin: 0;
}

/*button {
    display: block;
    width: 80%;
    border: none;
    color: white;
    padding: 12px 8px;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
    border-radius: 8px;
    margin: auto;
    margin-bottom: 30px;
}
*/
button {
    background-color: tan; /* Green */
    border: 2px solid #555555;
    color: black;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: auto;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 6px;
}

    button:hover {
        background-color: #555555;
        color: white;
    }

a.specal {
    display: block;
    width: 78%;
    border: none;
    color: white;
    padding: 12px 8px;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
    border-radius: 8px;
    margin: auto;
    margin-bottom: 30px;
    text-decoration: none;
}

a.whatsapp {
    background-color: #04AA6D;
}

a.instagram {
    background-color: #FF0000;
}

a.email {
    background-color: #1E90FF;
}

a.location {
    background-color: #FF4500;
}

a.website {
    background-color: #9400D3;
}

a.contant {
    background-color: #008080;
}

a.call {
    background-color: #C71585;
}

a:hover {
    opacity: 0.7;
}

/* Center the image and position the close button */
.imgcontainer {
    text-align: center;
    margin: 0 0 12px 0;
    position: relative;
}

img.avatar {
    width: 40%;
    border-radius: 50%;
    margin-top: 25px;
}


/*  popup box */
.img1container {
    text-align: center;
    margin: 24px 0 12px 0;
    position: relative;
}

img.avatar1 {
    width: 70%;
    /*border-radius: 50%;*/
}

.container {
    padding: 16px;
    text-align: center;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
    padding-top: 60px;
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    /* margin: 5% auto 15% auto;*/ /* 5% from the top, 15% from the bottom and centered */
    margin: 5% auto 5% auto;
    border: 1px solid #888;
    width: 40%; /* Could be more or less, depending on screen size */
}

/* The Close Button (x) */
.close {
    position: absolute;
    right: 20px;
    top: 10px;
    color: #000;
    font-size: 35px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: red;
        cursor: pointer;
    }

/* Add Zoom Animation */
.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes animatezoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/*for mobile 
@media only screen and (max-width:1000px) {
    .card {
        width:100%;       
    }
}


@media only screen and (max-width:700px) {
    .card {
        width: 100%;
        background-image:none;
    }
    body {
        background-image: linear-gradient( 135deg, #52E5E7 10%, #130CB7 100%);
    }
}


@media screen and (min-width: 700px) {
    .card {
        width:100%;
    }
}

@media screen and (min-width: 1000px) {
    body {
        background-image: none;
    }
    .card {
        width: 40%;
        background-image: linear-gradient( 135deg, #52E5E7 10%, #130CB7 100%);
    }
}
*/


@media only screen and (max-width:1024px) {
    .card {
        width: 100%;
        box-shadow: none;
    }
}

@media only screen and (max-width:350px) {
    .card {
        width: 100%;
        margin-top: 25%;
        box-shadow: none;
    }
}

@media only screen and (max-width:800px) {
    .modal-content {
        width: 80%;
    }
}
