

:root {

  --menu-speed: 0.5s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

.top {
  height: 50px;
  position: fixed;
  display: flex;
  z-index: 99;
  background-color: #fff;
}

body {
  font-family: Montserrat, sans-serif;
  
  background-color: 244,244,244;
}

.logo {

    height: 20px;
    width: 20px;
    background-color: #fff;
    margin-bottom: 20px;
    
}
/* MENU STYLES */
.menu-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.menu-wrap .toggler {
  position: fixed;
  top: 0;
  left: auto;
  right: 0;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}

.menu-wrap .hamburger {
  position: fixed;
  top: 0;
  left: auto;
  right: 0;
  z-index: 1;
  width: 60px;
  height: 60px;
  padding: 1rem;
  background: white ;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

/* Hamburger Line */
.menu-wrap .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

/* Hamburger Lines - Top & Bottom */
.menu-wrap .hamburger > div::before,
.menu-wrap .hamburger > div::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -10px;
  width: 100%;
  height: 2px;
  background: inherit;
}

/* Moves Line Down */
.menu-wrap .hamburger > div::after {
  top: 10px;
}

/* Toggler Animation */
.menu-wrap .toggler:checked + .hamburger > div {
  transform: rotate(135deg);
}

/* Turns Lines Into X */
.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}

/* Rotate On Hover When Checked */
.menu-wrap .toggler:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}

/* Show Menu */
.menu-wrap .toggler:checked ~ .menu {
  visibility: visible;
}

.menu-wrap .toggler:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: var(--menu-speed);
}

.menu-wrap .toggler:checked ~ .menu > div > div {
  opacity: 1;
  transition:  opacity 0.4s ease 0.4s;
}

.menu-wrap .menu {
  position: fixed;
  top: 0;
  right:0;
  width: 80%;
  height: 100%;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 20px 20px 20px 5px black;
}

.menu-wrap .menu > div {
  background: white;
  border-radius: 0%;
  width: 200vw;
  height: 250vw;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  transform: translate(-50,-50);
  transition: all 0.4s ease;
}

.menu-wrap .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.menu-wrap .menu > div > div > ul > li {
  list-style: none;
  color: black;
  background-color: #fff;
  font-size: 1.2rem;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 3px;
  padding: 1rem;
}

.menu-wrap .menu > div > div > ul > li > a {
  background-color: #fff;  
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease;
}

.menu-wrap .menu > div > div > ul > li :hover {
  list-style: none;
  color: #fdb6da;
  background-color: #fff;
  font-size: 1.2rem;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 3px;
  padding: 1rem;
}



/* header end */

.container {
    background-color: rgba(255, 255, 255, 0);
    padding: 0px;
    background-repeat: no-repeat;
    margin-bottom: 150px;
}

.container2 {

    position: relative;
    padding-top: 0px;
}

.container2:hover  .overlay {
    width: 100%;
}


.link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.frame {

    height: 500px;
    text-align: center;
    background-color: rgb(255, 255, 255);
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ff10bf00;
    overflow: hidden;
    width: 0;
    height: 99%;
    transition: 1.9s ease;
}

.textoverlay {
    white-space: nowrap; 
    color: rgb(255, 255, 255);
    font-size: 80px;
    font-family: Arial, Helvetica, sans-serif;
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    letter-spacing: 10px;
}

.textoverlay2 {
    white-space: nowrap; 
    color: rgb(255, 255, 255);
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    position: absolute;
    overflow: hidden;
    top: 10%;
    left: 30%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    letter-spacing: 10px;
}

body {
    background-color: rgba(255, 255, 255, 0);
    padding: 0px;
    background-size: cover;
    background-repeat: no-repeat;
}

main {

    height: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color:#000000;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    transition: all 0.5s ease 0s;
  }
  
  #myBtn:hover {
    background-color: #fdb6da;
    
  }

  .icons {

    width: 50vw;
    display: flex;
    justify-content: center;
  
  }
  
  .icons a  {
      
      position: fixed;
      bottom: 50px;
      z-index: 99;
      font-size: 15px;
      color: rgb(0, 0, 0);
      text-align: center;
      font-family: Arial, Helvetica, sans-serif;
      
  }
  
  img {
  
      object-fit: cover;
  }

  .icon {
    
    background-color:rgb(0, 0, 0) ;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    transition: all 0.7s ease 0s;
  }

  .social {
    padding-top: 15px;
    width: 30px;
  }

  .fa-facebook {
    
    left: 34%;
    color: white;
  }

  .fa-linkedin {
    
    left: 44%;
    color: white;
  }

  .fa-instagram {

    left: 53%;
    color: white;
  }

  .fa-pinterest {

    left: 63%;
    color: white;
  }

  .icons a:hover {

    background-color: #fdb6da;
    color:#fdb6da;
  }



@media screen and (max-width:720px){

  #myBtn {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 10px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color:#000000;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    transition: all 0.5s ease 0s;
  }
  
  #myBtn:hover {
    background-color: #fdb6da;
    
  }

  .icons {

    width: 50vw;
    display: flex;
    justify-content: center;
  
  }
  
  .icons a  {
      
      position: fixed;
      bottom: 30px;
      z-index: 98;
      font-size: 15px;
      color: rgb(0, 0, 0);
      text-align: center;
      font-family: Arial, Helvetica, sans-serif;
      
  }
  
  img {
  
      object-fit: cover;
  }

  .icon {
    
    background-color:rgb(0, 0, 0) ;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    transition: all 0.7s ease 0s;
  }

  .social {
    padding-top: 6px;
    width: 18px;
  }

  .fa-facebook {
    
    left: 10%;
    color: white;
  }

  .fa-linkedin {
    
    left: 25%;
    color: white;
  }

  .fa-instagram {

    left: 40%;
    color: white;
  }

  .fa-pinterest {

    left: 55%;
    color: white;
  }

  .icons a:hover {

    background-color: #000000;
    color:#fdb6da;
  }





}


    