@import url(/css/styles.null.css);
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600&display=swap');
@import url('https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css');

body {
    font-family: 'Poppins', sans-serif;
    max-width: 1440px;
    margin: auto;
}

.wrapper {
    height: 100%;
}
.main__container {
    width: 80.55%;
    max-width: 1160px;
    margin: auto;
    height: 100%;
    min-height: 0;
}
/* header */
.hdr {
    width: 100%;
    max-width: 1440px;
    position: fixed;
    z-index: 5;
    top: 0;
    left: auto;
    background-color: #000;
}
.hdr__container {
    width: 74.44%;
    max-width: 1072px;
    height: 75px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hdr__logo {
    width: 75px;
    height: 35px;
    transition-duration: 0.3s;
}
.hdr__logo img:hover {
    filter: invert(0.3);
    transition-duration: 0.3s;
}
.hdr__brgr {
    display: none;
    min-width: 5vw;
    min-height: 5vw;
    position: relative;
    z-index: 999;
    
}
.hdr__brgr span {
    position: absolute;
    top: calc(50% - 2.5px);
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background-color: #fff;
}
.hdr__brgr span:before {
    content: '';
    position: absolute;
    top: -2vw;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background-color: #fff;
}
.hdr__brgr span:after {
    content: '';
    position: absolute;
    top: 2vw;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background-color: #fff;
}
.search_and_brgr {
    display: flex;
    align-items: center;
}
.navi__list {
    width: calc(772vw / 14.4);
    max-width: 772px;
    display: flex;
    justify-content: space-between;
}
.navi__list-link {
    color: #fff;
    transition-duration: 0.3s;
    font-size: calc(16px + 2 * (100vw / 1440));
    font-weight: 500;
}
.navi__list-link:hover {
    color: #1ABC9C;
    transition-duration: 0.3s;
}
.hdr__search_link img {
    width: calc(18px + 2 * (100vw / 1440));
    height: calc(18px + 2 * (100vw / 1440));
}
/* main */
.main {
    margin-top: 160px;
}
.flexbox {
    display: flex;
    min-height: 0;
}
.drone_light_slider {
    margin-top: 17px;
    width: 697px;
    max-height: fit-content;
    margin-right: 65px;
    overflow: hidden;
    position: relative;
    padding-bottom: calc(100vw / 14.4);
    border-radius: 16px;
}
.drone_light_slider-wrapper {
}
.drone_light_slider-slide {
}
.drone_light_slider-slide img {
    width: 100%;
    max-width: 697px;
    border-radius: 16px;
}
.swiper-pagination-bullets {
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}
.swiper-pagination-bullet {
    width: 150px;
    height: 100px;
    background: #fff;
    border-radius: 0;
}
.swiper-pagination-bullet:first-of-type {
    background: url(/img/product_card_img/slide_1.png) center / contain no-repeat;
}
.swiper-pagination-bullet:nth-of-type(2) {
    background: url(/img/product_card_img/slide_2.png) center / contain no-repeat;
}
.swiper-pagination-bullet:nth-of-type(3) {
    background: url(/img/product_card_img/slide_3.png) center / contain no-repeat;
}
.swiper-pagination-bullet:last-of-type {
    background: url(/img/product_card_img/slide_4.png) center / contain no-repeat;
}
.product__details-name {
    font-weight: 600;
    font-size: calc(24px + 4 * (100vw / 1440));
    line-height: 42px;
    color: #222222;
}
.product__details-text-after-name {
    font-weight: 300;
    font-size: calc(18px + 2 * (100vw / 1440));
    line-height: 30px;
}
.product__details-price {
    margin-top: 10px;
    font-weight: 600;
    font-size: calc(30px + 18 * (100vw / 1440));
    line-height: 72px;
    white-space: nowrap;
}
.product__details-features-title {
    margin-top: 10px;
    font-weight: 500;
    font-size: calc(18px + 4 * (100vw / 1440));
    line-height: 33px;
}
.product__details-features-list {
    margin-top: 5px;
}
.product__details-features-list-item {
    margin-top: 20px;
    font-weight: 300;
    font-size: calc(18px + 2 * (100vw / 1440));
    line-height: 30px;
    padding-left: 40px;
}
.product__details-features-list-item:first-of-type {
    background: url(/img/icons/camera.png) center left no-repeat;
}
.product__details-features-list-item:nth-of-type(2) {
    background: url(/img/icons/memory.png) center left no-repeat;
}
.product__details-features-list-item:nth-of-type(3) {
    background: url(/img/icons/speedometer.png) center left no-repeat;
}
.product__details-features-list-item:last-of-type {
    background: url(/img/icons/battery.png) center left no-repeat;
}
.btn_for_order {
    display: block;
    width: 280px;
    height: 50px;
    margin-top: 32px;
    background: #2E4DEC;
    padding: 11px 75px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: #FFFFFF;
    transition-duration: 0.3s;
}
.btn_for_order:hover {
    background: #1ABC9C;
    transition-duration: 0.3s;
}
.product__descr {
    margin-top: 82px;
}
.product__descr_title {
    font-weight: 600;
    font-size: 28px;
    line-height: 42px;
}
.product__descr_text {
    margin-top: 22px;
    font-weight: 300;
    font-size: 20px;
    line-height: 190%;
}

.ftr {
    margin-top: 136px;
    padding: 100px 0;
    background-color: #000;
}
.footer__hidden_title {
    display: none;
}
.ftr__flexbox {
    display: flex;
    justify-content: space-between;
}
.ftr__logo_flexbox {
    display: flex;
}
.ftr__logo_flexbox img {
    width: 100%;
    height: 100%;
    max-width: 68px;
    max-height: 32px;
    margin-right: 20px;
}
.ftr__name {
    font-weight: 600;
    font-size: 26px;
    line-height: 39px;
    color: #FFFFFF;
}
.ftr__tagline {
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
    max-width: 259px;
    margin-top: 18px;
}
.ftr__list_title {
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
    margin-bottom: 30px;
}
.ftr__list-item {
    margin-bottom: 15px;
    position: relative;
}
.ftr__list-item:last-of-type {
    margin-bottom: 0;
}
.ftr__list-link {
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
    position: relative;
}
.ftr__list-item:hover {
    text-decoration: underline;
}
.ftr__for_centering {
    width: 1px;
    height: 1px;
}
/* adaptive */

@media (max-width: 1071px) {
    .ftr__for_centering {
        display: none;
    }
}
@media (max-width: 990px) {
    .ftr__flexbox {
        flex-wrap: wrap;
        width: 50vw;
        justify-content: space-between;
    }
    .ftr__list:nth-child(3), .ftr__list:last-of-type {
        margin-top: 60px;
    }
    
    .ftr__list:nth-child(2), .ftr__list:last-of-type {
        text-align: end;
    }
}
@media (max-width: 833px) {
    .ftr__tagline {
        max-width: 250px;
        text-align: center;
    }
}
@media (max-width: 767px) {
    /* header & burger */
    .hdr {
        width: 100%;
        position: fixed;
        top: 0;
        left: 50%;
        transform: translate(-50%, -0);
        background-color: #000;
    }
    .hdr__container {
        justify-content: space-between;
    }
    .hdr__brgr {
        display: block;
        min-width: 5vw;
        min-height: 5vw;
        position: relative;
        z-index: 999;
        margin-left: 30px; 
        overflow: hidden;
        transition: all 0.3s ease-in-out 0.3s;
    }
    .hdr__brgr span {
        position: absolute;
        top: calc(50% - 2px);
        width: 100%;
        height: 4px;
        border-radius: 2px;
        background-color: #fff;
        transition: all 0.3s ease-in-out 0s;
    }
    .hdr__brgr span:before {
        content: '';
        position: absolute;
        top: -2vw;
        width: 100%;
        height: 4px;
        border-radius: 2px;
        background-color: #fff;
    }
    .hdr__brgr span:after {
        content: '';
        position: absolute;
        top: 2vw;
        width: 100%;
        height: 4px;
        border-radius: 2px;
        background-color: #fff;
        transition: all 0.3s ease-in-out 0s;
    }
    .hdr__navi {
        position: absolute;
        top: -800%;
        left: 0;
        width: 100vw;
        height: 60vw;
        background-color: #fff;
        transition: all 0.4s ease 0s;
    }
    .navi__list {
        width: 100%;
        display: flex;
        flex-direction: column;
        text-align: center;
        position: relative;
        top: 50%;
        transform: translate(0, -50%);
    }
    /* after click */
    .hdr__navi._active {
        position: absolute;
        top: 0;
        transition: all 0.4s ease 0s;
    }
    .hdr__brgr._active {
        display: block;
        min-width: 5vw;
        min-height: 5vw;
        position: relative;
        z-index: 999;
        margin-left: 30px;
        transition: all 0.3s ease-in-out 0s
    }
    .hdr__brgr._active span {
        background-color: #000;
        top: calc(50% - 2px);
        left: 0;
        transform: rotate(45deg);
    }
    .hdr__brgr._active span:before {
        background-color: #000;
        left: 100%;transition: all 0.3s ease-in-out 0s;
    }
    .hdr__brgr._active span:after {
        background-color: #000;
        top: calc(50% - 2px);
        left: 0;
        transition: all 0.3s ease-in-out 0s;
        transform: rotate(-90deg);
    }
    .navi__list-item {
        margin: 10px 0;
    }
    .navi__list-link {
        color: #000;
        transition-duration: 0.3s;
        font-size: calc(36px + 2 * (100vw / 1440));
        font-weight: 500;
    }
    .flexbox {
        flex-wrap: wrap;
    }
    .drone_light_slider {
        margin: 0;
        padding-bottom: calc(190vw / 14.4);
    }
    
    .product__details {
        margin-top: 50px;
    }
}
@media (max-width: 730px) {
    .ftr__flexbox {
        flex-wrap: wrap;
        width: 50vw;
        justify-content: space-between;
    }
    .ftr__list {
        margin-top: 60px;
    }
    
    .ftr__list:nth-child(2), .ftr__list:last-of-type {
        text-align: start;
    }
}
@media (max-width: 671px) {
    .ftr__list:nth-child(2) {
        margin-right: 20px;
    }
}
@media (max-width : 533px) {
    .hdr__navi {
        height: 80vw;
    }
    .ftr__tagline {
        max-width: 259px;
        text-align: start;
    }
    .drone_light_slider {
        padding-bottom: calc(220vw / 14.4);
    }
}
@media (max-width: 480px) {
    .hdr__navi {
        height: 100vw;
    }
    .ftr__flexbox {
        width: 70vw;
    }
    .ftr__list:nth-child(2) {
        margin-right: 80px;
    }
    .drone_light_slider {
        padding-bottom: calc(240vw / 14.4);
    }
}
/* adaptive for slider */
