@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500&display=swap');
* {
    padding: 0;
    margin: 0;
    border: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 100;
    position: relative;
    z-index: -3;
}
a {
    text-decoration: none;
}
h1, h2, h3, h4{
    font-weight: 300;
}
.container {
    font-family: Roboto Slab;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.container-1 {
    font-family: Roboto Slab;
     position: relative;
     width: 100%;
     height: auto;
     background-color: rgba(255, 255, 255, 0);
     overflow: hidden;
     display: flex;
 }
 #toggle {
     position: absolute;
     right: -100%;
     top: -100%;
 }
 #toggle:focus~.toggle-container .button-toggle {
     box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.1), inset 0 0 0 20px rgba(0, 0, 0, 0.1);
 }
 #toggle:checked~.toggle-container .button-toggle {
     box-shadow: 0 0 0 550px #333, inset 0 0 0 20px rgba(0, 0, 0, 0.9);
 }
 #toggle:checked~.toggle-container .button-toggle:hover {
     box-shadow: 0 0 0 550px #333, inset 0 0 0 20px rgba(0, 0, 0, 0.5), 0 0 0 8px rgba(0, 0, 0, 0.5), inset 0 0 0 20px rgba(0, 0, 0, 0.5);
 }
 #toggle:checked~.toggle-container .button-toggle:before {
     transform: translateY(-50%) rotate(45deg) scale(1);
 }
 #toggle:checked~.toggle-container .button-toggle:after {
     transform: translateY(-50%) rotate(-45deg) scale(1);
 }
 #toggle:checked:focus~.toggle-container .button-toggle {
     box-shadow: 0 0 0 550px #333, inset 0 0 0 20px rgba(0, 0, 0, 0.5), 0 0 0 8px rgba(0, 0, 0, 0.5), inset 0 0 0 20px rgba(0, 0, 0, 0.5);
 }
 #toggle:checked~.nav {
     margin-bottom: 200px;
     pointer-events: auto;
     transform: translate(50px, 50px);
 }
 #toggle:checked~.nav .nav-item {
     color: #98ff68;
     letter-spacing: 0;
     height: 40px;
     font-family: Open Sans;
     line-height: 40px;
     opacity: 1;
     transform: scaleY(1);
     transition: 0.5s, opacity 0.1s;
 }
 #toggle:checked~.nav .nav-item:nth-child(1) {
     transition-delay: 0.15s;
 }
 #toggle:checked~.nav .nav-item:nth-child(1):before {
     transition-delay: 0.15s;
 }
 #toggle:checked~.nav .nav-item:nth-child(2) {
     transition-delay: 0.1s;
 }
 #toggle:checked~.nav .nav-item:nth-child(2):before {
     transition-delay: 0.1s;
 }
 #toggle:checked~.nav .nav-item:nth-child(3) {
     transition-delay: 0.05s;
 }
 #toggle:checked~.nav .nav-item:nth-child(3):before {
     transition-delay: 0.05s;
 }
 #toggle:checked~.nav .nav-item:nth-child(4) {
     transition-delay: 0s;
 }
 #toggle:checked~.nav .nav-item:nth-child(4):before {
     transition-delay: 0s;
 }
 #toggle:checked~.nav .nav-item:before {
     opacity: 0;
 }
 #toggle:checked~.dummy-content {
     padding-top: 30px;
 }
 #toggle:checked~.dummy-content:before {
     background-color: rgb(51, 51, 51);
 }
 .button{
    color: #fff;
    font-weight: 400;
 }
 .nav {
     width: 100%;
     display: inline-block;
     margin: 25px 25px 20px;
     pointer-events: none;
     transition: 0.5s;
     position: relative;
 }
 .nav-item {
     position: relative;
     display: inline-block;
     float: left;
     clear: both;
     color: transparent;
     font-size: 14px;
     letter-spacing: -6.2px;
     height: 7px;
     line-height: 7px;
     text-transform: uppercase;
     white-space: nowrap;
     transform: scaleY(0.2);
     transition: 0.5s, opacity 1s;
 }
 .nav-item:nth-child(1) {
     transition-delay: 0s;
 }
 .nav-item:nth-child(1):before {
     transition-delay: 0s;
 }
 .nav-item:nth-child(2) {
     transition-delay: 0.05s;
 }
 .nav-item:nth-child(2):before {
     transition-delay: 0.05s;
 }
 .nav-item:nth-child(3) {
     transition-delay: 0.1s;
 }
 .nav-item:nth-child(3):before {
     transition-delay: 0.1s;
 }
 .nav-item:nth-child(4) {
     transition-delay: 0.15s;
 }
 .nav-item:nth-child(4):before {
     transition-delay: 0.15s;
 }
 .nav-item:nth-child(1) {
     letter-spacing: -8px;
 }
 .nav-item:nth-child(2) {
     letter-spacing: -7px;
 }
 .nav-item:nth-child(n + 4) {
     letter-spacing: -8px;
     margin-top: -7px;
     opacity: 0;
 }
 .nav-item:before {
     position: absolute;
     content: '';
     top: 50%;
     left: 0;
     width: 100%;
     height: 2px;
     background-color: #3a3a3a;
     transform: translateY(-50%) scaleY(5);
     transition: 0.5s;
 }
 .dummy-content {
     width: 100%;
     display: flex;
     justify-content: right;
     position: relative;
     text-align: center;
     align-items: center;
     transition: 0.5s;
 }
 .dummy-content:before {
     position: absolute;
     content: '';
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: transparent;
     z-index: 2;
     transition: 0.5s;
 }
 .button-toggle {
     position: absolute;
     display: inline-block;
     width: 20px;
     height: 20px;
     margin: 25px;
     background-color: transparent;
     border: none;
     cursor: pointer;
     border-radius: 100%;
     transition: 0.6s;
 }
 .button-toggle:hover {
     box-shadow: 0 0 0 8px #333, inset 0 0 0 20px #333;
 }
 .button-toggle:before,
 .button-toggle:after {
     position: absolute;
     content: '';
     top: 50%;
     left: 0;
     width: 100%;
     height: 2px;
     background-color: #000000;
     border-radius: 5px;
     transition: 0.5s;
 }
 .button-toggle:before {
     transform: translateY(-50%) rotate(45deg) scale(0);
 }

 .button-toggle:after {
     transform: translateY(-50%) rotate(-45deg) scale(0);
 }
 .logo {
     width: 120px;
     margin-left: 20px  ;
 }
 .logo img {
     width: 100%;
 }
 .logo__div {
     width: 160px;
     margin-right: 20px;
     margin-top: 15px;
 }
 .logo__div img {
     width: 100%;
 }
 .menu__item {
     color: #000;
     font-size: 11pt;
     font-weight: 400;
     margin-left: 10px;
     transition: .4s all;
     background: #fff;
     padding: 10px;
     border-radius: 10px;
 }
 .menu__item {
     position: relative;
 }
 .menu__item::before {
     content: "";
     position: absolute;
     top: 30px;
     left: 10px;
     width: 0;
     height: 5px;
     border-radius: 5px;
     transition: .4s all;
     background: linear-gradient(108deg, #676f67 -4.14%, #39393c 108.07%);
 }
 .menu__item:hover::before {
     width: 35px;
 }
 .menu__item:hover {
     transform: 0.1s;
     border-radius: 20px;
 }
 .menu-without-burger {
     display: flex;
     justify-content: right;
     list-style: none;
 }
 .header__nav {
     width: 100%;
 }
 .header {
    width: 100%;
     position: absolute;
     top: 0;
     z-index: 3;
     background: rgba(51, 51, 51, 0.5);
 }
 .main{
    background-image: url(../images/bg-main.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 650px;
 }
 .main__content{
    display: flex;
    margin-top: 90px;
    width: 100%;
 }
 .slogan__wrapper{
    width: 50%;
    background: rgba(32, 32, 32, 0.472);
    padding: 20px;
    margin-top: 120px;
    border-radius: 30px;
 }
 .slogan{
    font-size: 40px;
    color: #fff;
 }
 .slogan-2{
    color: #fff;
 }
 .main__info{
    width: 50%;
    display: flex;
 }
 .icons{
    margin-top: 120px;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.4s;
 }
 .icons img{
    width: 50px;
 }
 .icons img:hover{
    transform: scale(1.2);
 }
 .icons a{
    width: 50px;
 }
 .main__btn {
    margin-top: 130px;
    margin-left: 10px;
    margin-right: 10px;
 }
.btns{
    display: flex; 
    flex-direction: column;
    margin-left: 50%;
}
 .main__start {
    width: 200px;
    height: 40px;
    background-color: #333;
    color: #fff;
    border-radius: 20px;
    margin-top: 30px;
 }

 .youtube__btn {
    width: 200px;
    height: 40px;
    background-color: #333;
    color: #fff;
    border-radius: 20px;
    margin-top: 30px;
 }
 .hunter {
    width: 100%;
    background-color: #333;
 }
 .hunter__content {
    width: 100%;
    color: #fff;
 }
 .section__title {
    color: #fff;
    font-size: 30px;
 }
 .hunter__description {
    width: 45%;
    margin-top: 60px;
 }
 .title{
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: space-around;
    margin-top: 30px;
 }
.title img{
    width: 100px;
}
.hunter__description h3{
    margin-top: 30px;
}
.hunter__description p{
    margin-top: 10px;
}
.hunter__wrapper{
    display: flex;
    width: 100%;
}
html, 
body {
  position: relative;
  height: 100%;
}

body {
  background: #eee;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}

.swiper {
  width: 500px;
  height: 500px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 500px;
  height: 500px;
  object-fit: cover;
}
.swiper {
  width: 500px;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  height: 400px;
  width: 400px;
}

.mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.galery{
    margin: auto;
}
.att-text{
    color: rgb(174, 90, 90);
}
.hunter-type{
    background-color: #676f67;
}
.type-content{
    width: 100%;
    margin: 60px 0px;
    height: 250px;
    border: solid 1px #000;
    padding: 20px;
    display: flex;
}
.type-text{
    width: 50%;
}
.type-text h3{
    margin-top: 6px;
}
.type-img img{
    width: 350px;
    height: 250px;
    /* margin-right: 0px; */
}
.type-img{
    width: 50%;
    display: flex;
    justify-content: end;
}

.type-btn{
    background: #7f917f;
    width: 100px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fishing{
    width: 100%;
    height: 700px;
    background-image: url(../images/bgc-fish.jpeg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.fishing-slogan{
    margin-top: 220px;
    font-size: 35px;
}
.fish-btn{
    width: 200px;
    height: 30px;
    border-radius: 20px;
    background: #333;
    color: #fff;
}
.fish-slogan-2{
    background: rgba(51, 51, 51, 0.664);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0px;
}
.fishing-type{
    background: #54216e;
    color: #fff;
}
.fish-type-wrapper{
    width: 100%;
    margin: 60px 0px;
    height: 250px;
    border: solid 1px #fff;
    padding: 20px;
    display: flex;
}
.contact{
    width: 100%;
    height: 750px;
    background-image: url(../images/bg-main.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.contact_content{
    width: 300px;
    padding: 40px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    margin-top: 100px;
    font-size: 30px;
    margin-right: 100px;
    background: rgba(209, 206, 206, 0.572);
    transition: 1;
}
.contact_content a{
    text-decoration: none;
    color: #000;
    align-items: center;
    padding-bottom: 20px;
    margin-left: 40px;
}
.contact_content a:hover{
    transform: scale(1.3);
}
.contact_content img{
    width: 50px;
}
.cont-h2{
    font-size: 30px;
    color: rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0.555);
    padding: 30px;
    border-radius: 30px;
    margin-top: 250px;
}
.contact-content-1{
    display: flex;
    width: 100%;
}






.footer{
    /* height: 300px; */
    background-color: rgb(68, 76, 63);
}
.foot-content{
    display: flex;
}
.foot-info{
    width: 50%;
    margin: 40px;
}
.foot-btn{
    width: 50%;
    margin: 40px;
}
.f-btns{
    display: flex;
    justify-content: space-around;
    transition: 0.4s;
}
.f-btns img{
    /* display: flex; */
    width: 40px;
    /* flex-direction: column; */
}
.f-btns img:hover{
    transform: scale(1.4);
}
footer h2{
    font-size: 20px;
    margin-bottom: 20px ;
}
footer h3{
    font-size: 17px;
}
.tour__galery{
    width: 50%;
    display: flex;
    flex-wrap: wrap;
}
.tour__galery img{
    width: 45%;
    border-radius: 10px;
    margin: 10px;
}
.title-tour h2{
    width: 100%;
    font-size: 40px;
    color: #fff;
}
.title-tour{
    width: 50%;
    display: flex;
    flex-direction: column;
}
.hunter__wrapper{
    margin-top: 150px;
    margin-bottom: 100px;
}
.tour__btn{
    width: 350px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.416);
    color: #fff;
    margin-top: 90px;
    font-size: 20px;
}
.tour__btn:hover{
    background: #000;
}
.tour__type{
    width: 100%;
    background: #676f67;
}
.tour__type__wrapper{
    width: 100%;
}
.tour__title{
    font-size: 40px;
    text-align: center;
    width: 100%;
    margin: 40px;
}
.tour__banner{
    display: flex;
    width: 100%;
}
.tour__text{
    width: 50%;

}
.tour__type__galery{
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    transition: 0.9s;
}
.tour__type__galery img{
    width: 45%;
    border-radius: 10px;
    margin: 10px;
}
.tour__type__galery img:hover{
    transform: scale(1.5);
}
.photo-hunter{
    background: #333;
    color: #eee;
}
.lang{
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}




