@font-face {
    font-family: mahir;
    src: url(./font/font.ttf);
}

body {
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
    background-image: url(./image/mnimage.JPG);
    background-size: 120%;
    background-repeat: no-repeat;
    /* background-position: center; */
    /* background-image: url(./image/mygif.gif); */
    /* background-color: #000000;

   /*background-size:90%;
  background-position: 100% ; */
    /* background-color: #7d6d4c; */
    background-position: center;
    background-color: #000;
    margin: 0;
}

.alsobody {
    width: 95%;
    text-align: center;
    margin: 0 auto;
    /*background-image: url(./image/mygif2.gif);
  background-size:80%;
  background-position: top;
  background-repeat: no-repeat;
  */
    /* filter: saturate(var(--value, 5))   ;
  -webkit-filter: saturate(var(--value, 5)); */
    /* filter: contrast(var(--value, 5)); --value: 4; */
}

.alsobody img {
    width: 100%;
    /*box-shadow: #7d6d4c  7px 8px 7px inset;
  */
    border-radius: 150px;
    -webkit-border-radius: 80%;
    -moz-border-radius: 150px;
    -ms-border-radius: 150px;
    -o-border-radius: 150px;
    /*filter: drop-shadow(16px 16px 20px rgb(0, 0, 0)) invert(100%);
  -webkit-filter: grayscale(var(--value, 100%));
  */
    /*filter: brightness(10);
  */
    /* filter: saturate(var(--value, 5)) */
}

.link {
    position: fixed !important;
    right: 14px;
    top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 255, 255);
    text-align: center;
    padding: 3px 12px;
    border-radius: 10px;
}

.link svg {
    color: #2e4053 !important;
}

.link select {
    width: 100px;
    text-align: center !important;
    align-items: center;
    clear: both;
    display: block;
    padding-left: 6px;
    padding-right: 6px;
    padding: 3px 12px;
    background-color: transparent;
    color: #2e4053;
    font-family: mahir;
    cursor: pointer;
    text-transform: none;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border: none;
    outline: none;
}

select option {
    color: black;
    margin-top: 20px;
    text-align: center;
    font-family: mahir;
    border-radius: 10px;
    padding: 70px;
}

.feedback {
    position: fixed !important;
    left: 14px;
    top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 255, 255);
    text-align: center;
    padding: 3px 12px;
    border-radius: 10px;
}

.feedback button {
    width: 100px;
    text-align: center !important;
    align-items: center;
    clear: both;
    display: block;
    padding-left: 6px;
    padding-right: 6px;
    padding: 3px 12px;
    background-color: white;
    color: #2e4053;
    font-family: mahir;
    cursor: pointer;
    text-transform: none;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border: none;
    outline: none;
}


/* .modalfeedback {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 1;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.4);
text-align: center;
} */

.modalfeedback {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.modalfeedback.show {
    display: block !important;
    opacity: 1;
}

.stars {
    text-align: center;
    justify-content: center;
    display: flex;
    cursor: pointer;
    font-size: 24px;
    color: #ffffff;
}

.stars span {
    padding: 0 5px;
}

.stars span.selected {
    color: #2e4053;
    /* Color for selected stars */
}

hr {
    width: 80%;
}

.rating {
    text-align: center;
    border: 1px solid white;
    margin: 10px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.modal-content {
    background-color: #2e4053;
    color: white;
    margin: 20px auto;
    padding: 20px;
    width: 80%;
    text-align: center;
    animation: slideIn 0.5s ease-out;
    -webkit-animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-content form {
    width: 97%;
    margin: 0 auto;
    text-align: center;
}

.modal-content input {
    width: 100%;
    color: white;
    background-color: white;
}

.modal-content input[type="submit"] {
    margin: 9px;
    width: 40%;
    padding: 12px;
    border: none;
    outline: none;
    background-color: #ffffff;
    color: rgb(0, 0, 0) !important;
    font-size: 19px;
    font-family: mahir;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.modal-content input[type="text"] {
    margin: 9px;
    width: 85%;
    padding: 12px;
    border: none;
    outline: none;
    background-color: white;
    color: black;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    font-weight: bold;
}

.range {
    border: 1px solid rgb(255, 255, 255);
}

.mymenu {
    width: 100%;
    position: fixed;
    bottom: 10px;
}

.mymenu .button {
    width: 90%;
    margin: 0 auto;
}

.mymenu .button button {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    outline: none;
    background-color: #fffdf9;
    color: #2e4053;
    font-size: 16px;
    font-family: mahir;
    cursor: pointer;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.social {
    text-align: center;
}

.social p {
    color: rgb(225, 228, 231);
}

.social span a {
    color: #2e4053;
    font-weight: bold;
}

.sociallink {
    margin: 10px;
    width: 100%;
    text-align: center;
}

.sociallink svg {
    background-color: #505050;
    color: white;
    padding: 5px;
    border-radius: 5px;
}

a {
    margin: 6px;
    text-decoration: none;
}

.copyrighy {
    color: #ffff !important;
}

.copyname {
    color: rgb(252, 250, 250) !important;
}