/* import css from main.css */
@import url('main.css');
body{
    background-color: var(--bg-admin);

}

.index h2{
    color: var(--primary-color);
}

.index h4{
    font-family: 'Itim', sans-serif;
    font-weight: 400;
    color: var(--text-color);
    float: left;
    width: 100%;
    background-color: #f8edeb;
    /* font-family: "JasmineUPC", sans-serif; */
    font-size: 28px;
    text-align: left;
    margin-block-start:0px;
    margin-block-end:0px;
}
.index td{
    color: var(--text-color);
    font-family: "Itim", sans-serif;

}
.index h3{
    color:var(--primary-color);
}
.index .emptyBg{
    background-color: #fff
}
.index .row {
    display: flex;
    padding: 5px;
    background-color: #f8edeb;
    width: 90%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
}

.index .row-small {
    display: flex;
    padding: 5px;
    background-color: #f8edeb;
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
}

.index .menu {
    display: flex;
    justify-content: space-around;
    background-color: #ffffff;
    padding: 10px;
    width: 100%;
    position:sticky;
    top: 0px;
    z-index: 999999;

}
.index .menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 25px;
}
.index .menu a:hover {
    color: var(--secondary-color);
}


#contact_us h4{
    color:var(--primary-color);
}
#contact_us p{
    /* color:#000000; */
    font-family: "Itim", sans-serif;
    color: var(--text-color);
}

.index .logo-clinic {
    display: flex;
    justify-content: center;
    padding: 10px;
    width: 180px;
    height: 180px;
    margin-left: 100px;
}

.index .pic-clinic {
    display: flex;
    justify-content: center;
    padding: 10px;
    width: 360px;
    height: 360px;
    margin-bottom: 50px;
}

.index .fa {
    margin-top: 11px;
    text-align: center;
    color: #fe91ae;


}
.index .col-4 {
    flex: 0 0 auto;
    width: 30%;
    margin-left: 30px;
    margin-right: 50px;
}

.index .col-12 {
    flex: 0 0 auto;
    width: 60%;
    margin-left: 30px;
}


.index .logo-clinic1 {
    display: flex;
    justify-content: center;
    padding: 10px;
    width: 300px;
    height: 300px;
    border-bottom: solid 5px #fe91ae;
}

.index .content {
    display: flex;
    justify-content: center;

}
.index .sevice {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}
.index .sevice_one {
    width: 60%;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 20px;
    align-items: center;

}
.index .logo-sevice {
    display: flex;
    justify-content: center;
    padding: 10px;
    width: 650px;
    height: 150px;
}
.index .content .tb {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 10px;
    align-items: center;
}

.index .content .tb tr th {
    font-size: 36px;
    color: #ffffff;
    background-color: #fe91ae;
    text-align: left;
    height: 50px;
}

.index .content .tb tr td {
    font-size: 24px;
    /* color: #000000; */
    text-align: center;
    margin-left: 40px;
    height: 50px;
}
.index td {
    font-size: 24px;
    /* color: #000000; */
    text-align: center;
    margin-left: 40px;
    height: 50px;
}
.index p{
    font-size: 22px;
    color: #fe91ae;
    text-align: start;
    margin-bottom: 0px;
}

.index .logo-small {
    display: flex;
    justify-content: right;
    padding: 22px;
    width: 28px;
    height: 28px;
}

.index .row-icon {
    display: flex;
    width: 100%;
    height: 100%;
}

div .content #motion{
    width: 100px;
    height: 50px;
    background-color: red;
    font-weight: bold;
    position: relative;
    animation: mymove 5s;
    animation-fill-mode: forwards;
  }

  #motion-one {animation-timing-function: linear;}
  #motion-two {animation-timing-function: ease;}
  /* #motion-two {animation-timing-function: ease-in;}
  #motion-two {animation-timing-function: ease-out;}
  #motion-two {animation-timing-function: ease-in-out;} */

  .content .row{
    padding-bottom: 40px;
    padding-top: 50px;
  }

  .content.header_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 10px;
    background-color: #fff;
  }
  .content.header_container h3{
    color: #fff4f7;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
  }



  @keyframes mymove {
    from {left: 0px;}
    to {left: 300px;}
  }


