:root {
    --color-dark: #121214;
    --color-light: #F8F8F8;
    --color-black: #000;
    --color-blue: #0033FF;
    --color-white: #FFFFFF;
    --color-gray: #A6A8AD;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: "Montserrat", sans-serif;
    color: #FFFFFF;
    background-color: #041F31;
    font-weight: 400;
    font-size: 10px;
    line-height: 24px;
    margin: 0;
    padding: 0;
    min-height: 100%;
}

input, label, textarea, button {
    font-family: 'Roboto', sans-serif;
    outline: none;
}


h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

input, textarea, div {
    box-sizing: border-box;
}

ul {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    border: 1px solid red;
}

/* HEADER START*/
.page-header {
}

.page-header-logo {
    width: 70px;
    height: 70px;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navigation-item{
    display: flex;
    align-items: center;
    gap: 3rem;
}

.navigation-link {
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #FFFFFF;
    transition: all 0.3s ease;
}
.navigation-link-current{
    color: #91ea72;
}
.navigation-link:hover {
    color: #00F5A0;
}

.navigation-wrapper {
    display: flex;
    align-items: center;
    gap: 7rem;
}

.button {
    padding: 12px 24px;
    border: none;
    box-sizing: border-box;
    color: #000000;
    background-image: linear-gradient(to right, #00F5A0, #00D9F5);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
}

.button:hover {
    background: #00D9F5;
}

.page-header-btn {
    padding: 12px 20px;
}
/* HEADER END*/

/*HERO START*/
.hero-section {
    background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
    padding-top: 60px;
    padding-bottom: 60px;
}
.hero-wrapper{
    display: flex;
    align-items: center;
    gap: 3rem;
}
.hero__info{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.hero__title {
    padding: 0;
    margin: 0;
    font-size: 55px;
    line-height: 50px;
    font-weight: 500;
}
.hero__desc {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
}
.hero__img {
    width: 600px;
    object-fit: cover;
}
.hero__btn{
    padding: 12px 30px;
    width: 50%;
}


/*HERO END*/

/*SERVICE SECTION START*/

.services {
    margin-top: 5rem;
}

.services__title {
    font-size: 48px;
    line-height: 60px;
    font-weight: 600;
    margin: 0;
}

.services__wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(800px, 1fr));
    gap: 20px;
}

.services__card {
    display: flex;
    gap: 20px;
    background-color: #222525;
}
.services__card__img{
    width: 350px;
    height: 300px;
    object-fit: cover;
}
.services__card__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding:20px 10px;
}

.services__card__title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    padding-bottom: 10px;
}
.services__card__title a:hover{
    color: #00F5A0;
}
.services__card-img {

}

.services__card__desc {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}
.services__details{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: white;
}
.services__details:hover{
    color: #00F5A0;
}
/*SERVICE SECTION END*/

/*BlackSprut START*/
.main{
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.main-title{
    text-align: center;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}
.article {
    margin-top: 5rem;
}

.article__wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.article-info{
    border-bottom: 1px solid #c4b4b4;
}
.article-info-images-block{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    padding-bottom: 15px;
    padding-top: 15px;
}
.article-info-title{
    text-align: center;
    padding-bottom: 30px;
    font-size: 34px;
    line-height: 32px;
    font-weight: 500;
}
.article-info-img{
    border: none;
    border-radius: 10px;
    max-width: 100%;
    width: 600px;
    height: 300px;
}
.article-info-subtitle{
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: #d9edee;
}
.article-info-desc{
    padding-bottom: 10px;
    font-size: 20px;
    line-height: 31px;
    font-weight: 500;
}
/*BlackSprut END*/

/*Blacksprut_bs2best start*/
.main-section{
    padding: 130px 0;
    background-image: url('../images/p9k3px.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;
    margin: 0;
}
.main-section-title{
    text-align: center;
    font-size: 42px;
    font-weight: 600;
    line-height: 2.4;
    margin-bottom: 10px;
}
.main-section-article-wrapper{
    padding-top: 3rem;
    display: flex;
    flex-direction: row;
    gap: 5rem;
}
.main-section-article-p{
    padding-top: 18rem;
    padding-bottom: 10px;
}
.main-section-article-p h3{
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: #d4e6e7;
}
.main-section-article-p p{
    padding-bottom: 10px;
    font-size: 20px;
    line-height: 31px;
    font-weight: 500;
}
.main-section-left{
    max-width: 488px;
}
.title-text{
    font-size: 42px;
    font-weight: 600;
    line-height: 1.4;
}
.about-desc{
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 21px;
    padding-bottom: 21px;
    font-size: 16px;
    font-weight: 400;
}

.about-desc ul li{
    font-size: 17px;
    font-weight: 400;
}
.main-section-right{
    position: relative;
}
.about-img-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.about-first-img {
    border-radius: 5px;
    overflow: hidden;
    max-width: 521px;
}
.about-second-img {
    position: absolute;
    left: -126px;
    top: 241px;
    max-width: 372px;
    border: 14px solid #041F31;
}
.hero-ssylka-wrapper{
    position: relative;
    display: flex;
    height: calc(100vh - 110px);
    gap: 20px;
}

.hero-text {
    padding-top: 10rem;
    flex-basis: 60%;
}

.hero-title {
    text-transform: uppercase;
    padding-bottom: 40px;
    font-size: clamp(26px, 4.5vw, 48px);
    line-height: 125%;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 30px;
    font-weight: 400;
    line-height: 125%;
}

.hero-subtitle span:first-child {
    margin-right: 16px;
}

.hero-desc {
    max-width: 500px;
    padding-top: 30px;
    padding-left: 85px;
    font-size: 18px;
    line-height: 150%;
    font-weight: 400;
}

.hero-desc p {
    padding-bottom: 40px;
}

.hero-bg {
    height: 100%;
    flex-basis: calc(40%);
    opacity: .2;
    background: linear-gradient(90deg, var(--yellow-color) 0%, rgba(253, 249, 282, 0.45) 145.23%);
}

.hero-icon {
    width: 52px;
    height: 55px;
    position: absolute;
    right: 1062px;
    bottom: 0;
}

.hero-bg-img {
    position: absolute;
    right: -173px;
    bottom: 0;
    width: 100%;
    max-width: 900px;
}
/*Blacksprut_bs2best end*/
/*Blacksprut_zerkalo start*/
.mirror-section{
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.mirror-section-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}
.mirror-info{

}
.subtitle-text{
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: #e3e267;
}
.mirror-thumb{
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.article__wrapper .mirror-thumb img{
    height: auto;
}
.mirror-thumb img{
    width: 560px;
    height: 630px;
}
.mirror-about-desc{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 21px;
    padding-bottom: 21px;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.4;
}
.mirror-info{

}
/*Blacksprut_zerkalo end*/
/*bs2_best_at start*/
.about-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:50px;
}
.about-info{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.about .title-text{
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    padding-bottom: 30px;
}
.about-title{
    font-size: 40px;
    line-height: 125%;
    font-weight: 600;
    padding-bottom: 20px;
}
.bs2-about-desc{
    font-size: 16px;
    font-weight: 400;
}
.about-img{
    width: 581px;
    max-width: 100%;
}
/*bs2_best_at end*/

.fishing-portal-section{

}
.fishing-portal-wrapper{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.fishing-portal-section .title-text {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.4;
}
.fishing-portal-section .subtitle-text {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: #6b3939;
}
.fishing-portal-section .about-desc {
    line-height: 1.6;
    font-size: 20px;
    color: white;
}
.fishing-portal-section ul {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    list-style-type: disc;
    padding-left: 20px;
}
.fishing-portal-section li {
    margin: 5px 0;
}
.main-section-bs2best{
    padding: 130px 0;
    background-image: url('../images/maxresdefault-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;
    margin: 0;
}
.bs2best{
    padding-top: 10rem;
    padding-bottom: 10px
}
/*FOOTER START*/

.footer {

}

.footer_wrapper {
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.footer-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 30px;
}

.header-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ECECED;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.header-circle:hover {
    transform: scale(1.1);
}
.footer-logo{
    width: 30px;
    height: 30px;
}
.copyright {
    padding-bottom: 10px;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}
/*FOOTER END*/
