@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;700&display=swap');

* ,
*:before,
*:after {
  box-sizing:border-box;
  margin: 0px; 
	padding: 0px; 
}

:root {
  font-size: 16px;
    
}

html {
    scroll-behavior: smooth;
    width: auto;
    height: 100%;
}

body {
    font-family: 'Mukta', sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
    background-image: url(../Assets/background/main.JPG);
    background-size: cover;
    background-position: center;
    background-position-y: -150px;
    background-repeat: no-repeat;
    background-attachment: fixed;

    height: 100%;
}

body::-webkit-scrollbar {
    width:6.4px;
    width:6.4px;
    width: 0.40rem;
}

body::-webkit-scrollbar-track {
    background: #adadb4;
}

body::-webkit-scrollbar-thumb {
    background: rgba(27, 21, 16, 0.6);
    border-radius: 60px;
}

nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0 0 25px 25px;
}

#navbar-logo {
    height: 60px;
}

.nav-link {
  font-size:20.8px;
  font-size:20.8px;
  font-size: 1.3rem;
}

@media screen and (max-width: 960px) {
  body {
    background-position-y: -100px;
  }
}

@media screen and (max-width: 840px) {
  body {
    background-position-y: -50px;
  }
}

@media screen and (max-width: 768px) {
  body {
    background-position-y: 0px;
  }
}


/* ==========================================================================
   #MENU HAMBURGER
   ========================================================================== */


 @media screen and (max-width: 767px) {
  .burger-wrapper{
    position: absolute;
    top: 15px;
    right: -15px;
    -webkit-transform:translate(-50%, -20%);
            transform:translate(-50%, -20%);
  }
  
  .burger-wrapper .icon{
    margin: 20px;
  }

  .nav-icon{
    width: 35px;
    height: 30px;
    margin: 10px 10px;
    position: relative;
    cursor: pointer;
    display: inline-block;
  }

  .nav-icon span{
    background-color:rgb(2, 2, 2);
    position: absolute;
    border-radius: 2px;
    -webkit-transition:.3s cubic-bezier(.8, .5, .2, 1.4);
    transition: .3s cubic-bezier(.8, .5, .2, 1.4);
    width:100%;
    height: 4px;
    -webkit-transition-duration: 500ms;
            transition-duration: 500ms
  }

  .nav-icon span:nth-child(1){
    top: 0px;
    left: 0px;
  }

  .nav-icon span:nth-child(2){
    top: 13px;
    left: 0px;
    opacity: 1;
    /* -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; */
  }

  .nav-icon span:nth-child(3){
    bottom: 0px;
    left: 0px;
  }

  .nav-icon:not(.open):hover span:nth-child(1){
    -webkit-transform: rotate(-3deg) scaleY(1.1);
            transform: rotate(-3deg) scaleY(1.1);
  }

  .nav-icon:not(.open):hover span:nth-child(2){
    -webkit-transform: rotate(3deg) scaleY(1.1);
            transform: rotate(3deg) scaleY(1.1);
  }

  .nav-icon:not(.open):hover span:nth-child(3){
    -webkit-transform: rotate(-4deg) scaleY(1.1);
            transform: rotate(-4deg) scaleY(1.1);
  }

  .nav-icon.open span:nth-child(1){
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 13px;
  }

  .nav-icon.open span:nth-child(2){
    opacity:0;
    /* -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; */
  }

  .nav-icon.open span:nth-child(3){
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 13px;
  }
 }

 @media screen and (min-width: 768px) {
   .burger-wrapper {
     display: none;
   }
 }

 /* ==========================================================================
   #FOOTER
   ========================================================================== */

.footer-container {
  position: absolute;
  bottom: 0%;
  background-color: rgba(0, 0, 0, 0.8);
  height: 200px;
  width: 100%;
  overflow: hidden;
  border-radius: 25px 25px 0 0;
}

.icon-container {
  position: absolute;
  top: 20%;
  height: 45px;
  width: 100%;
  text-align: center;
}

.social_icons {
  height: 40px;
  width: 40px;
  margin: 5px;
}

.rights-reserved {
  position: absolute;
  top: 70%;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%)
}
