*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family:'Newsreader', serif;
    line-height: 1.5;
}
.title-text{
    font-size: 40px;
    text-align: center;
}
/* logo */
.logoimg{
    height: 70px;
   border-image: fill;
   position: fixed;
   left:0vh;
   top: 5%;
   border-radius: 10px;
   background-color:rgba(255, 255, 255, 0.822);
  animation-name: moveInRight;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}
@keyframes moveInRight {
    0% {
      opacity: 0;
      transform: translateX(10rem); }
    80% {
      transform: translateX(-1rem); }
    100% {
      opacity: 1;
      transform: translate(0); } }

/* end of logo */
/* start of nav bar */
/* nevigation */
.navigation__checkbox {
    display: none; }
  
  .navigation__button {
    background-color: #fff;
    height: 6rem;
    width: 6rem;
    position: fixed;
    top: 6rem;
    right: 6rem;
    border-radius: 50%;
    z-index: 2000;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer; }
  
  .navigation__background {
    height: 4rem;
    width: 4rem;
    border-radius: 50%;
    position: fixed;
    top: 6.5rem;
    right: 6.5rem;
   z-index: 1000;
    transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1); }
  
  .navigation__nav {
    height: 110vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1500;
    opacity: 0;
    width: 0;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  
  .navigation__list {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    list-style: none;
    text-align: center;
    width: 100%; }
  
  .navigation__item {
    margin: 1rem; }
  
  .navigation__link:link, .navigation__link:visited {
    display: inline-block;
    font-size: 2rem;
    font-weight: 300;
    padding: 1rem 2rem;
    color:red;
    text-decoration: none;
    text-transform: uppercase;
    background-image: linear-gradient(120deg, transparent 0%, transparent 50%,#222 50%);
    background-size: 220%;
    transition: all .4s; }
    .navigation__link:link span, .navigation__link:visited span {
      margin-right: 1.5rem;
      display: inline-block; }
  
  .navigation__link:hover, .navigation__link:active {
    background-position: 100%;
    color: #55c57a;
    transform: translateX(1rem); }
  
  .navigation__checkbox:checked ~ .navigation__background {
    transform: scale(80); }
  
  .navigation__checkbox:checked ~ .navigation__nav {
    opacity: 1;
    width: 100%; }
  
  .navigation__icon {
    position: relative;
    margin-top: 3.5rem; }
    .navigation__icon, .navigation__icon::before, .navigation__icon::after {
      width: 3rem;
      height: 2px;
      background-color: #333;
      display: inline-block; }
    .navigation__icon::before, .navigation__icon::after {
      content: "";
      position: absolute;
      left: 0;
      transition: all .2s; }
    .navigation__icon::before {
      top: -.8rem; }
    .navigation__icon::after {
      top: .8rem; }
  
  .navigation__button:hover .navigation__icon::before {
    top: -1rem; }
  
  .navigation__button:hover .navigation__icon::after {
    top: 1rem; }
  
  .navigation__checkbox:checked + .navigation__button .navigation__icon {
    background-color: transparent; }
  
  .navigation__checkbox:checked + .navigation__button .navigation__icon::before {
    top: 0;
    transform: rotate(135deg); }
  
  .navigation__checkbox:checked + .navigation__button .navigation__icon::after {
    top: 0;
    transform: rotate(-135deg); }
  
  
/* end of nevigation */
/* end of nav bar */
/* header start */
.header{
    min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.4)),
  url('../images/front.jpg') center/cover no-repeat;
}
.hero{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
}
.hero .title{
    color: #fff;
    font-size: 50px;
}
.hero-button{
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    padding: 13px 20px;
    border-radius: 200px;
    font-weight: bold;
    background:orange;
    color:black;
    cursor: pointer;
    border: 3pc snow;
    margin-top: 1px;
    font-size: 20px;
}
.hero-button:hover{
    background:azure;
    color: tomato;
    border:none;
}
.pulsate{
    animation:pulsate 3s ease-in-out;
    animation-iteration-count: infinite;
    opacity: .3;
    color: black;
}
@-webkit-keyframes pulsate{
    0%{opacity : .3;
    }
    50%{opacity: 1;
    }
    100%{opacity: .3;}
}
/* ==end of header */
/* ==about us section */
#about{
    padding: 40px;

}
.about{
    margin: 30px 0;
    display: flex;
}
.about-icon .fas{
    font-size: 60px;
    color:chocolate;
    margin-right: 20px;
}
.about-subtitle{
    text-transform: capitalize;
    color: orange;
    font-size: 25px;
}
.about-info{
    margin-top: 10px;
    line-height: 1.5;
}
.about-icon:hover .fas,
.about-subtitle:hover{
    transition: transform 2s ease, color 2s ease;
  transform: translateY(-10px);
  color:#cd6100;
  cursor: pointer;
}
@media screen and (min-width: 576px) {
    .about-center{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .about{
        flex: 0 0 calc(50% -16px);
    }
}
@media screen and (min-width: 972px) {
    .about{
        flex: 0 0 calc(33.3% -16px);
    }
    .about-center{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}
/* ==end of about section */
/* ====start of menu section */
.menu-image{
    min-height: 80vh;
    background:url('../images/menu.jpg')center/cover fixed no-repeat;
}
.menu-text{
    min-height: 80vh;
    align-items: center;
    background: orange;
    columns: #000;
    padding: 40px 0;

}
.menu-text-center{
    width: 95%;
    margin: 0 auto;
    background:navajowhite;
    min-height: 80vh;


}
.menu-text h1{
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.menu-text p{
    margin: 20px 0;
    line-height: 2;
}
.explore{
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    padding: 14px 20px;
    border-radius: 200px;
    font-weight: bold;
    background:orange;
    color:black;
    cursor: pointer;
    border: 2px solid orange;

}
.menu-text a:hover{
    color: orange;
    background: #fff;
    border: none; 
}
@media screen and (min-width: 776px) {
    .menu{
        display: flex;
    }
    .menu-text{
        flex: 0 0 30%;
    }
    .menu-image{
        flex: 0 0 70%;
        clip-path:polygon(0 0,100% 0,50% 100% ,0 100%)
    }
    .menu{
        background: burlywood;
    }
    
}
/* end of menu section */
/* ==== start of social icons==== */
#social-icons{
    height: 150px;
    background:#222;
    text-align: center;
    padding: 50px 0 50px 0;
}
#social-icons a{
    display: inline-block;
    padding:5px 10px;
    margin: 0 5px;
    font-size:40px;
    border-radius: 5px;
    transition: transform 2s ease,color 2s ease;

}
#social-icons a:hover{
    transform:translateY(-20px)
}
.facebook{
    color: #3b5998;
}
.instagram{
    color: #e1306c;
}
.plus{
    color: #db4a39;
}
.twitter{
    color: #38a1f3;
}
/*  ===end of social icons==*/
/* numbers sections */

.number{
    /* float: left; */
    font-size: larger;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),
    url('../images/eat.jpg')center/cover fixed no-repeat;
    padding: 60px 0;
color: #fff;
}
.number  p{
    font-size: 50px;
    font-weight: bold;
}
.number :hover{
    color: orange;
}
.number .fas{
    font-size: 60px;
    margin: 20px;
}
.number h3{
    text-transform: uppercase;
}
@media screen and (min-width:576px){
    #numbers{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}
/* @media screen and (min-width:992px){
    #number{
        grid-template-columns:repeat(3,2fr);
    }
} */
/* end of number sections */
/* start of speciality section */
.speciality{
    width: auto;
    height: auto;
    margin: 30px 20px;
     padding: 20px;
     font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
     font-weight: bold;
     color: black;
 
   background: linear-gradient(rgba(171, 225, 235, 0.76),rgba(35, 199, 221, 0.3)),
    url('../images/spetiality.jpg')center /cover fixed no-repeat;
    padding: 60px 0;


}
.shead h2 {
    text-transform: uppercase;
    text-align: center;
   letter-spacing: 2px;
   font-size: 40px;
  
}
.simages{
    margin: 5px 10px;
    display: flex;
    position: relative;
  width: 100%;
height: auto;
border: cadetblue 5px solid;
border-image: round;
overflow: scroll;
}
    
.simages img{
   
    position: relative;
        display: inline-block;
       margin: 10px 30px;
        border-radius: 40%;
        filter:grayscale(40%);
        background-color: white;
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
 border: rgba(0, 0, 0, 0.562) 5px solid;
     cursor: pointer;    
}
    .dish1:hover{
      background-color: rgb(11, 213, 228);
    }
    .dish2:hover{
        background-color: rgb(11, 213, 228);
      }
      .dish3:hover{
        background-color: rgb(11, 213, 228);
      }
      .dish4:hover{
        background-color: rgb(11, 213, 228);
      }
      .dish5:hover{
        background-color: rgb(11, 213, 228);
      }
    .dish1{
        background-color: white;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
         width: fit-content;  
         margin: 20px ;     
    }
    .dish2{
        background-color: white;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
         width: fit-content; 
         margin: 20px;      
    }
    .dish3{
        background-color: white;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
         width: fit-content;  
         margin: 20px;     
    }
    .dish4{
        background-color: white;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
         width: fit-content; 
         margin: 20px; 
         position:re  
    }
    .dish5{
        background-color: white;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
         width: fit-content; 
         margin: 20px; 
         position:re  
    }
  .text{
      font-size: 20px;
      font-style: italic;
    text-transform: uppercase;
    text-align: center;
  }
  .text h2{
      text-align: center;
      text-decoration: underline;
  }
  .container .btn {
    position: absolute;
  
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color:orange1;
    color: black;
    font-size: 16px;
    padding: 16px 30px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
  }
  
  .container .btn:hover {
    background-color: green;
    color:orange;
  }
  .vnvlogo{
      position: relative;
     
  }
  .a{
    position: absolute;
    top: 1px;
  left: 1px;
  }
  .b{
    position: absolute;
    top: 1px;
  left: 270px;

}
.c{
    position: absolute;
    top: 1px;
  left: 590px; 
}
.d{
    position: absolute;
    top: 1px;
  right: 42%vw;  
}
.e{
    position: absolute;
    top: 1px;
  right: 52%vw;  
}
/* end of speciality section */
/* start ofsearch bar section */
.topnav {
    overflow: hidden;
    background-color: #e9e9e9;
   width: 100%;
   height: auto;
  }
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  .topnav .search-container {
    float: right;
  }
  .topnav input[type=text] {
    padding: 6px;
    margin-top: 8px;
    font-size: 17px;
    border: none;
  }
  
  .topnav .search-container button {
    float: right;
    padding: 6px 10px;
    margin-top: 8px;
    margin-right: 16px;
    background: #ddd;
    font-size: 17px;
    border: none;
    cursor: pointer;
  }
  
  .topnav .search-container button:hover {
    background: #ccc;
  }
  
  @media screen and (max-width: 600px) {
    .topnav .search-container {
      float: none;
    }
    .topnav a, .topnav input[type=text], .topnav .search-container button {
      float: none;
      display: block;
      text-align: left;
      width: 100%;
      margin: 0;
      padding: 14px;
    }
    .topnav input[type=text] {
      border: 1px solid #ccc;  
    }
  }  
/* end of search bar */
/* start of recommendation */
.recom{
    overflow: hidden;
    background-color: #e9e9e9;
   width: 100%;
   height: auto;
   align-content: center;
padding-left: 60px;
overflow: scroll;

  }
.rimages {
    display: flex;
    float: left;
    
}
.rdish1 img{
    margin: 10px;
    border: 25px groove rgb(96, 200, 241) ;
   
}
.rdish2 img{
    margin: 10px;
    border: 25px groove rgb(96, 200, 241) ;

}
.rdish3 img{
    margin: 10px;
    border: 25px groove rgb(96, 200, 241) ;

}
.rdish4 img{
    margin: 10px;
    border: 25px groove rgb(96, 200, 241) ;
 
}
.rdish5 img{
    margin: 10px;
    border: 25px groove rgb(96, 200, 241) ;
 
}
.rdish6 img{
    margin: 10px;
    border: 25px groove rgb(96, 200, 241) ;
 
}
.rtext{
    font-size: 20px;
    font-style: italic;
  text-transform: uppercase;
  text-align: center;
}
.recom .btn {
    position: absolute;
  
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color:orange1;
    color: black;
    font-size: 16px;
    padding: 16px 30px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    background-color: rgb(155, 230, 253);
  }
  
  .recom .btn:hover {
    background-color: green;
    color:orange;
  }
/* end of recomendation */
/* start of feedback part */
.section-stories {
  position: relative;
  padding: 15rem 0; 
  margin: 0px 15px 15px 15px;
}

  .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: .15;
    overflow: hidden; }
    
    .bg-video__content {
      height: 100%;
      width: 100%;
      object-fit: cover; }

      .bg-video__content {
        height: 100%;
        width: 100%;
        object-fit: cover; }

        .heading-secondary {
          font-size: 3.5rem;
          text-transform: uppercase;
          font-weight: 700;
          display: inline-block;
          background-image: #222;
          -webkit-background-clip: text;
          color: transparent;
          letter-spacing: .2rem;
          transition: all .2s; }
          .heading-secondary:hover {
            transform: skewY(2deg) skewX(15deg) scale(1.1);
            text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2); }

            .row {
              max-width: 114rem;
              margin: 0 auto; }
              .row:not(:last-child) {
                margin-bottom: 8rem; }
              .row::after {
                content: "";
                display: table;
                clear: both; }
              .row [class^="col-"] {
                float: left; }
                .row [class^="col-"]:not(:last-child) {
                  margin-right: 6rem; }
              .row .col-1-of-2 {
                width: calc((100% - 6rem) / 2); }
              .row .col-1-of-3 {
                width: calc((100% - 2 * 6rem) / 3); }
              .row .col-2-of-3 {
                width: calc(2 * ((100% - 2 * 6rem) / 3) + 6rem); }
              .row .col-1-of-4 {
                width: calc((100% - 3 * 6rem) / 4); }
              .row .col-2-of-4 {
                width: calc(2 * ((100% - 3 * 6rem) / 4) + 6rem); }
              .row .col-3-of-4 {
                width: calc(3 * ((100% - 3 * 6rem) / 4) + 2 * 6rem); }
  
.story {
  width: 100%; /* 75*/ 
  height: auto;
  margin: 0 auto;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  padding: 6rem;
  padding-left: 9rem;
  font-size: 1.6rem;
  transform: skewX(-12deg); }
  .story__shape {
    width: 15rem;/* 15 rem*/ 
    height: 15rem;

    float:left;
    -webkit-shape-outside: circle(50% at 50% 50%);
    shape-outside: circle(50% at 50% 50%);
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    transform: translateX(-3rem) skewX(12deg);
    position: relative; }
  .story__img {
    height: 100%;
    transform: translateX(0rem) scale(1.4);
    backface-visibility: hidden;
    transition: all .5s; }
  .story__text {
    transform: skewX(12deg); }
  .story__caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 20%);
    color:rgb(0, 140, 255);
    text-transform: uppercase;
    font-size: 1.7rem;
    text-align: center;
    opacity: 0;
    transition: all .5s;
    backface-visibility: hidden; }
  .story:hover .story__caption {
    opacity: 1;
    transform: translate(-50%, -50%); }
  .story:hover .story__img {
    transform: translateX(-4rem) scale(1);
    filter: blur(3px) brightness(80%); }
    .heading-tertiary {
      font-size: 1.6rem;
      font-weight: 700;
      text-transform: uppercase; }
      .u-margin-bottom-small {
        margin-bottom: 1.5rem !important; }   
        .u-center-text {
          text-align: center !important; }
          .u-margin-top-huge {
            margin-top: 10rem !important; }
            .btn-text:link, .btn-text:visited {
              font-size: 1.6rem;
              color:rgb(0, 255, 170);
              display: inline-block;
              text-decoration: none;
              border-bottom: 1px solid #55c57a;
              padding: 3px;
              transition: all .2s; }
            
            .btn-text:hover {
              background-color: #55c57a;
              color: #fff;
              box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
              transform: translateY(-2px); }
            
            .btn-text:active {
              box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
              transform: translateY(0); }
             
/* end of feedback part */
/* start of feedback form */
 /* start of feedback part */
.section-stories {
  position: relative;
  padding: 15rem 0; 
  margin: 0px 15px 15px 15px;
}

  .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: .15;
    overflow: hidden; }
    
    .bg-video__content {
      height: 100%;
      width: 100%;
      object-fit: cover; }

      .bg-video__content {
        height: 100%;
        width: 100%;
        object-fit: cover; }

        .heading-secondary {
          font-size: 3.5rem;
          text-transform: uppercase;
          font-weight: 700;
          display: inline-block;
          background-image: linear-gradient(to right, #7ed56f, #28b485);
          -webkit-background-clip: text;
          color: transparent;
          letter-spacing: .2rem;
          transition: all .2s; }
          .heading-secondary:hover {
            transform: skewY(2deg) skewX(15deg) scale(1.1);
            text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2); }

            .row {
              max-width: 114rem;
              margin: 0 auto; }
              .row:not(:last-child) {
                margin-bottom: 8rem; }
              .row::after {
                content: "";
                display: table;
                clear: both; }
              .row [class^="col-"] {
                float: left; }
                .row [class^="col-"]:not(:last-child) {
                  margin-right: 6rem; }
              .row .col-1-of-2 {
                width: calc((100% - 6rem) / 2); }
              .row .col-1-of-3 {
                width: calc((100% - 2 * 6rem) / 3); }
              .row .col-2-of-3 {
                width: calc(2 * ((100% - 2 * 6rem) / 3) + 6rem); }
              .row .col-1-of-4 {
                width: calc((100% - 3 * 6rem) / 4); }
              .row .col-2-of-4 {
                width: calc(2 * ((100% - 3 * 6rem) / 4) + 6rem); }
              .row .col-3-of-4 {
                width: calc(3 * ((100% - 3 * 6rem) / 4) + 2 * 6rem); }
  
.story {
  width: 100%; /* 75*/ 
  height: auto;
  margin: 0 auto;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  padding: 6rem;
  padding-left: 9rem;
  font-size: 1.6rem;
  transform: skewX(-12deg); }
  .story__shape {
    width: 15rem;/* 15 rem*/ 
    height: 15rem;

    float:left;
    -webkit-shape-outside: circle(50% at 50% 50%);
    shape-outside: circle(50% at 50% 50%);
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    transform: translateX(-3rem) skewX(12deg);
    position: relative; }
  .story__img {
    height: 100%;
    transform: translateX(0rem) scale(1.4);
    backface-visibility: hidden;
    transition: all .5s; }
  .story__text {
    transform: skewX(12deg); }
  .story__caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 20%);
    color:rgb(0, 140, 255);
    text-transform: uppercase;
    font-size: 1.7rem;
    text-align: center;
    opacity: 0;
    transition: all .5s;
    backface-visibility: hidden; }
  .story:hover .story__caption {
    opacity: 1;
    transform: translate(-50%, -50%); }
  .story:hover .story__img {
    transform: translateX(-4rem) scale(1);
    filter: blur(3px) brightness(80%); }
    .heading-tertiary {
      font-size: 1.6rem;
      font-weight: 700;
      text-transform: uppercase; }
      .u-margin-bottom-small {
        margin-bottom: 1.5rem !important; }   
        .u-center-text {
          text-align: center !important; }
          .u-margin-top-huge {
            margin-top: 10rem !important; }
            .btn-text:link, .btn-text:visited {
              font-size: 1.6rem;
              color:rgb(0, 255, 170);
              display: inline-block;
              text-decoration: none;
              border-bottom: 1px solid #55c57a;
              padding: 3px;
              transition: all .2s; }
            
            .btn-text:hover {
              background-color: #55c57a;
              color: #fff;
              box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
              transform: translateY(-2px); }
            
            .btn-text:active {
              box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
              transform: translateY(0); }
             
/* end of feedback part */
/* start of feedback form */
body, button, input {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.background {
  display: flex;
  min-height: 100vh;
}

.container {
  flex: 0 1 700px;
  margin: auto;
  padding: 10px;
}

.screen {
  position: relative;
  background: #3e3e3e;
  border-radius: 15px;
}

.screen:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  bottom: 0;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
  z-index: -1;
}

.screen-header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: #4d4d4f;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.screen-header-left {
  margin-right: auto;
}

.screen-header-button {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 3px;
  border-radius: 8px;
  background: white;
}

.screen-header-button.close {
  background: #ed1c6f;
}

.screen-header-button.maximize {
  background: #e8e925;
}

.screen-header-button.minimize {
  background: #74c54f;
}

.screen-header-right {
  display: flex;
}

.screen-header-ellipsis {
  width: 3px;
  height: 3px;
  margin-left: 2px;
  border-radius: 8px;
  background: #999;
}

.screen-body {
  display: flex;
}

.screen-body-item {
  flex: 1;
  padding: 50px;
}

.screen-body-item.left {
  display: flex;
  flex-direction: column;
}

.app-title {
  display: flex;
  flex-direction: column;
  position: relative;
  color: #ea1d6f;
  font-size: 26px;
}

.app-title:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 25px;
  height: 4px;
  background: #ea1d6f;
}

.app-contact {
  margin-top: auto;
  font-size: 8px;
  color: #888;
}

.app-form-group {
  margin-bottom: 15px;
}

.app-form-group.message {
  margin-top: 40px;
}

.app-form-group.buttons {
  margin-bottom: 0;
  text-align: right;
}

.app-form-control {
  width: 100%;
  padding: 10px 0;
  background: none;
  border: none;
  border-bottom: 1px solid #666;
  color: #ddd;
  font-size: 14px;
  text-transform: uppercase;
  outline: none;
  transition: border-color .2s;
}

.app-form-control::placeholder {
  color: #666;
}

.app-form-control:focus {
  border-bottom-color: #ddd;
}

.app-form-button {
  background: none;
  border: none;
  color: #ea1d6f;
  font-size: 14px;
  cursor: pointer;
  outline: none;
}

.app-form-button:hover {
  color: #b9134f;
}

.credits {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  color: #ffa4bd;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  font-weight: normal;
}

.credits-link {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.dribbble {
  width: 20px;
  height: 20px;
  margin: 0 5px;
}

@media screen and (max-width: 520px) {
  .screen-body {
    flex-direction: column;
  }

  .screen-body-item.left {
    margin-bottom: 30px;
  }

  .app-title {
    flex-direction: row;
  }

  .app-title span {
    margin-right: 12px;
  }

  .app-title:after {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .screen-body {
    padding: 40px;
  }

  .screen-body-item {
    padding: 0;
  }
}

/* end of feedback form */
/* footer starts */
@import url("http://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css");

#footer {
    border-top: 5px solid #CDB380;
    background: #033649 none repeat scroll 0% 0%;
    padding-top: 30px;
    margin-top: 60px;
    clear: both;
    color: #AAA;
    display: block;
    position: relative;
}

#footer .widgettitle {
    margin: 0px;
    padding: 0px 0px 15px;
    border-bottom: medium none;
}
#footer h4 {
    color: #FFF;
}

#footer ul {
    list-style: outside none none;
}

#footer li {
    padding: 7px 0px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
    margin: 0px;
}

#footer li a {
    color: #DDD;
}

#sub-floor {
    color: #AAA;
    background: #031634 none repeat scroll 0% 0%;
    padding: 10px 0px;
}
.se{
  position: absolute;
 left: 35vw;
top: 5vh;
}
.su{
  position: absolute;
  left: 35vw;
  top: 3vh;
}

/* footer ends */




/* footer ends */
