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

/*Обнуление*/
*{
	padding: 0;
	margin: 0;
	border: 0;
}
*,*:before,*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus:not([tabindex^='-']){
    outline: 0;
}
:focus:not(:focus-visible){outline: 0;}
:focus, :active {outline: none;}
a:focus,a:active{outline: none; border: none;}

/*li:active, li:focus{border: none; outline: none;}*/

/*nav,footer,header,aside{display: block;}*/

/*html,body{*/
/*	height: 100%;*/
/*	width: 100%;*/
/*	font-size: 100%;*/
/*	line-height: 1;*/
/*	font-size: 14px;*/
/*	-ms-text-size-adjust: 100%;*/
/*	-moz-text-size-adjust: 100%;*/
/*	-webkit-text-size-adjust: 100%;*/
/*}*/
/*input,button,textarea{font-family:inherit;}*/

/*input::-ms-clear{display: none;}*/
/*button{cursor: pointer;}*/
/*button::-moz-focus-inner {padding:0;border:0;}*/
/*a, a:visited{text-decoration: none;}*/
/*a:hover{text-decoration: none;}*/
/*!*ul li{list-style: none;}*!*/
/*img{vertical-align: top;}*/

/*h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: 400;}*/
/*--------------------*/

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    background-size: 100% auto;
    background-repeat: no-repeat;
}
main {
    min-height: calc(100vh - 202px);
    /*padding-bottom: 60px;*/
}
a {
    color: white;
}

a:hover{
    color: #577D3D;
    text-decoration: none;
}
.text-container a{
    color: #577D3D;
    text-decoration: underline;
}
.text-container a:hover{
    color: #a1c440;
}
.list-group a{
    text-decoration: none;
}

em{
    color: #577D3D;
}

#cookie_notification{
  display: none;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: max-content;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  z-index: 1111;
}

#cookie_notification p{
  margin: 0;
  font-size: 0.7rem;
  text-align: left;
  color: #577D3D;
}

#cookie_notification button{
    background-color: #577D3D;
    padding: 0 25px;
}
#cookie_notification button:hover{
    color: white;
    background-color: #a1c440;
}


@media (min-width: 576px){
  #cookie_notification.show{
    display: flex;
  }
  .cookie_accept{
    margin: 0 0 0 25px;
  }
}

@media (max-width: 575px){
  #cookie_notification.show{
    display: block;
    text-align: left;
  }
  .cookie_accept{
    margin: 10px 0 0 0;
  }
}

.container-text img{
    box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, .2);
}
/*-------------------  --------------------*/
.up__btn{
    position: fixed;
    left: 50%;
    bottom: 50px;
    transform:translate(-50%, 0);
}
.custom_navbar{
    height: 105px;
    background-color: #A1C440!important;
}

.custom-navbar-collapse{
    background-color: #A1C440!important;
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    padding-left: 25px;
    z-index: 1000;
}
.header-logo{
    height: 70px;
    width: auto;
}
/*.auth{*/
/*    width: 460px;*/
/*}*/
.navbar-nav{
    margin: 0 auto;
}
.nav-item{
    margin: 0 10px;
}
.navbar-toggler:focus{
    box-shadow: none;
}
.dropdown-menu{
    border: 1px solid #A1C440;
    padding: 5px 5px;
}
.dropdown-item {
    color: #577D3D;
}
.dropdown-item:hover {
    border-radius: 10px;
    background-color: rgba(161, 196, 64, 0.5);
}
.button {
    border-radius: 25px;
    border: white solid 1px;
    height: 48px;
    background: none;
    color: white;
}
.download-shapefile-link{
    color: #577D3D;
}
.button:hover {
    background-color: white;
    color: #577D3D;
    transition: 0.3s;
}
.btn-default{
    color: white;
    background-color: #577D3D;
    transition: 0.2s;
}
.btn-default:hover{
    color: white;
    background-color: #a1c440;
    transition: 0.2s;
}
.btn_signup{
    background-color: white;
    color: #577D3D;
}
.btn_signup:hover{
    background-color: #A1C440;
    color: white;
}

.nav-link{
    position: relative;
    color: white;
    width: max-content;
}
.nav-link:focus{
    color: #577D3D;
}

.nav-link .active{
    color: #577D3D!important;
}

.nav-link:hover{
    color: #577D3D!important;
}
.nav-link:hover:before, .download-shapefile-link:hover:before{
    transform: scaleX(0.5);
    transition: transform 0.25s;
}
.nav-link:before, .download-shapefile-link:before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #577D3D;
    position: absolute;
    left: 0;
    bottom: -1px;
    transform: scaleX(0);
    transition: transform 0.25s;
}
.active{
    color: #577D3D;
}

footer{
    background-color: #577D3D;
    height: 48px;
    color: white;
}

footer a {
    text-decoration: none;
}

footer a{
    position: relative;
    color: white;
}
footer a:hover{
    color: white;
}
footer a:hover:before{
    transform: scaleX(0.5);
    transition: transform 0.25s;
}
footer a:before{
    content: '';
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.78);
    position: absolute;
    left: 0;
    bottom: -1px;
    transform: scaleX(0);
    transition: transform 0.25s;
}

/*-------------------MAIN/SOLUTIONS--------------------*/
.main__picture{
    margin: 0 auto;
    margin-top: 105px;
    height: 184px;
    width: 786px;
    background-image: url("../img/main_image.png");
    background-position: 0 0;
    background-size: 100% auto;
    background-repeat: no-repeat;
}
.main_titles{
    margin-top: 50px;
}
.main__title{
    font-weight: 500;
    font-size: 70px;
    color: #577D3D;
    margin-bottom: 0.5rem;
}
.main__subtitle{
    color: #577D3D;
}

.main__title__list{
    font-size: 25px;
    color: #a1c440;
}

.main__list{
    list-style-position: inside;
}

.main__list li{
    font-weight: 300;
}
.main__button_group{
    margin-top: 50px;
    margin-bottom: 200px;
}
.main__button{
    font-size: 25px;
    font-weight: 600;
    height: 100px;
    border-radius: 50px;
    border: #577D3D solid 4px;
    background: none;
    color: #577D3D;

}
.main__button span{
    margin: 30px 70px;
}
.main__button_up_line{
    height: 2px;
    width: 340px;
    background-color: #577D3D;
    opacity: 0.5;
}
.main__button:hover{
    color: #a1c440;
    border: #a1c440 solid 4px;
    transition: 0.2s;
}
.under_main_button{
    font-size: 16px;
    opacity: 0.3;
}
.main__about__title{
    font-size: 43px;
    color: #577D3D;
}
.main__about__subtitle, .main__about__text_under_list {
    font-size: 25px;
    color: #A1C440;
    padding: 0 15%;
}

.main__about__list{
    list-style-type: none;
    width: 90%;
}
.main__about__list_item {
    margin: 20px 50px;
    height: 140px;
    border-radius: 70px;
    background-color: #F2F0F0;

}
.carousel-control-next, .carousel-control-prev{
    font-size: 25px;
    color: #577D3D;
}
.carousel-control-next:focus, .carousel-control-prev:focus{
    color: #577D3D;
}
.main__about__list_item_text{
    margin: 0 5%;
    color: #577D3D;
    text-align: start;
}

.main__about__bottom_title{
    font-size: 70px;
    color: #577D3D;
}
.main__about__bottom_text{
    margin: 0 12%;
}
.main__about__bottom_text a{
    text-decoration: underline #577D3D;
}
.main__about__bottom_text a:hover{
    color: #A1C440;
    text-decoration: underline #A1C440;
    transition: 0.2s;
}
.end{
    height: 200px;
    width: 100%;
}

.vl{
    border-left: 1px solid white;
    height: 90%;
}
.container-text{
    padding: 0 8%;
    color: #577D3D;
}

/*-------------------PRICING--------------------*/
.price__titles{
    padding: 7% 0;
}
.about__title_block{
    padding: 5% 20%;
}
.price__title {
    font-size: 60px;
}
.price__cards_block{
    padding: 0 15%;
    padding-bottom: 10%;
}
.price__card_wrapper{
    border-radius: 30px;
    width: 280px;
    height: 100%;
    padding: 5px;
}
.price__card_body{
    height: 87.5%;
    position: relative;
    background-color: white;
    border-radius: 25px;
    padding: 30px 15px;
    padding-bottom: 40px;
}
.price__card_body_text{
    font-size: 18px;
}
.price__card_btn_wrapper{
    bottom: -13px;
    left: 0;
}
.price__card_btn{
    border-radius: 30px;
    border: none;
    font-size: 18px;
    padding: 15px 20px;
}
.price__card_price_p1{
    padding-top: 1.85rem;
}
.price__card_price_p2{
    padding-top: 1.75rem;
}
.price__card_price{
    font-size: 60px;
}
/*.price__card_trial, .price__card_trial .price__card_btn{*/
/*    background: #A1C440;*/
/*}*/
.price__card_enterprise, .price__card_enterprise .price__card_btn{
    background-color: #577D3D;
}
.price__pay_logo{
    width: 300px;
    height: 115px;
    background-image: url(../img/paypal.png);
    background-position: 0 0;
    background-size: 100% auto;
    background-repeat: no-repeat;
}
.price__pay_input{
    padding: 15px 30px;
}

.price__pay_btn, .price__pay_input{
    width: 690px;
    height: 95px;
    border-radius: 20px;
    border:2px grey solid;
}


/*-------------------ABOUT--------------------*/
.about__card{
    width: 400px;
    height: 180px;
    border-radius: 20px;
    font-size: 18px;
}
.about__bottom_text{
    padding: 5% 15%;
}
.about__line{
    border-bottom: 2px solid rgba(87, 125, 61, 0.5);
    width: 340px;
}
.about__slider_item{
    /*position: relative;*/
    height: 190px;
    width: 100%;
    border-radius: 20px;
}
.about__slider_item_text{
    font-size: 18px;
    padding: 20px 25px 35px 25px;
}
.about__slider_item_ava_wrap{
    position: absolute;
    bottom: 0px;
    left: 90px;
    background: #A1C440;
    border-radius: 50px;
    width: 90px;
    height: 90px;
}
.about__slider_item_ava{
    margin-left: 2px;
    margin-top: 11px;
    width: 71px;
    height: 71px;
    border-radius: 50%;
    /*background-image: url(../img/ava.png);*/
    /*background-color: white;*/

    background-position: 0 0;
    background-size: 100% auto;
    background-repeat: no-repeat;
}
.about__slider_item_ava_name{
    position: absolute;
    left: 101px;
    bottom: 8px;
    width: max-content;
}
/*.uk-child-width-1-2>*{*/
/*    width: 750px;*/
/*}*/
.uk-panel{
    padding-bottom: 43px;
}
/*.uk-active div div{*/
/*    background: #A1C440;*/
/*}*/

/*-------------------CONTACTS--------------------*/
.contacts__titles_block{
    padding: 5% 0;
}

.contacts__item {
    height: 20px;
    width: 20px;
    background-position: center;
    background-size: auto 90%;
    background-repeat: no-repeat;
    transition: 0.2s;
}
.contacts__item:hover {
    transform: scale(1.5);
    transition: 0.2s;
}
.contacts__mail_block{
    display: flex;
    margin-top: 5%;
}
.contacts__mail_block .left{
    width: 50%;
    text-align: right;
    padding-right: 3rem;
    border-right: #a1c440 2px solid;
}
.contacts__mail_block .right{
    width: 50%;
    text-align: left;
    padding-left: 3rem;
}
.text_p{
    padding-top: 8%;
}
.contacts__form_block{
    padding-top: 5%;
    width: 450px;
}
.form-floating input::-webkit-outer-spin-button,
.form-floating input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-floating input[type=number] {
    -moz-appearance: textfield;
}
.form-floating .form-control,
.form-floating .form-select,
.contacts__form_block .btn{
    background-color: #a1c440;
    border-radius: 15px;
    padding: 1rem 1.5rem;
    border: none;
    color: white;
}
.contacts__form_block .btn{
    background-color: #577D3D;
    font-weight: 600;
}
.form-floating .form-select{
    background-image: url("../img/select_bg.png");
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: right;
}
.form-floating .form-select{
    color: white;
}
/*.form-floating>.form-control:focus, .form-floating>.form-control:not(:placeholder-shown) {*/
/*    padding: 1rem;*/
/*}*/
.form-floating .form-control:focus, .form-floating .form-select:focus{
    box-shadow: none;
    border: #577D3D solid 2px;
}
.contacts__text_under_form{
    font-size: 14px;
}

.form-floating label{
    color: white;
    font-family: 'Poppins';
    padding: 1rem 1.5rem;
}
.form-floating .form-control:focus ~ label{
    opacity: 1;
    color: #577D3D;
}
.cs__container{
    min-height: calc(100vh - 153px);
}
.cs__title{
    font-size: 3rem;
    font-weight: 500;
    width: 75%;
}
.cs__subtitle{
    font-size: 1rem;
}
.cs__btn{
    padding: 0 50px;
}
.cs__soybeans_underground{
    position: absolute;
    height: 215px;
    width: 100%;
    bottom: -15px;
    background-size: auto 100%;
    background-repeat: repeat-x;
    background-image: url("../img/soybean.png");
    background-position: bottom;
    z-index: 0;
}

.h-line{
    width: 100%;
    border-bottom: 2px solid rgba(161, 196, 64, 0.49);
    padding: 0 5%;
}
.frame__wrapper{
    position: absolute;
    height: calc(100vh - 202px);
    width: 100%;
    padding-left: 5px;
    padding-top: 5px;
}

.cabinet__invoices_list .list-group{
    width: 600px;
}
.cabinet__invoice_value, .cabinet__invoice_date, .cabinet__invoice_status {
    margin: 5px 25px;
}
.cabinet__invoice_value {
    font-size: 1.5rem;
}
.cabinet__invoice_date {
    font-size: 1rem;
}
.cabinet__invoice_status {
    font-size: 1rem;
}

.rich-text{
    white-space: nowrap;
}
.subscribe_input{
    background-color: #a1c440;
    border-radius: 15px;
    padding: 1rem 1.5rem;
    border: none;
    color: white;
    font-size: 1rem;
}
.subscribe_btn{
    background-color: #577D3D;
    border-radius: 15px;
    padding: 1rem 1.5rem;
    border: none;
    color: white;
    font-size: 1rem;
}
.subscribe_btn:hover{
    background-color: #a1c440;
}
@media screen and (max-width: 1400px){
    .about__card {
        width: 340px;
    }
    .cs__soybeans_underground{
        height: 215px;
    }
}

@media screen and (max-width: 1200px){
    .button{
        height: 38px;
        font-size: 16px;
    }
    .nav-link{
        font-size: 16px;
    }
    .header-logo{
        height: 45px;
    }
    .about__card {
        width: 280px;
    }
    .uk-grid {
        padding-left: 30%;
    }
    .cs__soybeans_underground{
        height: 200px;
    }
    .price__card_wrapper {
        width: 260px;
    }
}

@media screen and (max-width: 991px){
    main {
        min-height: calc(100vh - 173px);
    }
    .frame__wrapper {
        height: calc(100vh - 161px);
    }
    .custom_navbar{
        height: 60px;
    }
    .under_navbar{
        width: 100%;
        height: 16px;
        background-color: #A1C440;
        border-bottom-left-radius: 50%;
        border-bottom-right-radius: 50%;
    }
    .custom_navbar .navbar-brand img {
        height: 50px;
    }
    .custom-navbar-collapse > div {
        height: 100vh;
    }
    .navbar-corn {
        height: 400px;
        width: 250px;
        bottom: 80px;
        right: 0;
        background-size: auto 100%;
        background-repeat: no-repeat;
        background-position: right;
        background-image: url("../img/corn.png");
    }
    .dropdown-menu{
        background: none;
    }
    .dropdown-item{
        color: white;
    }
    .main__picture{
        margin-top: 65px;
        width: 235px;
        height: 93px;
        background-image: url("../img/colos_mob.png");
    }
    .main_titles{
        margin-top: 10%;
    }
    .main__title{
        font-size: 22px;
        padding: 0 0;
    }
    .main__subtitle{
        font-size: 16px;
        padding: 10px 5%;
    }
    .main__subtitle2{
        font-size: 12px;
    }
    .main__title__list{
        margin-top: 35%;
        padding: 5% 5%;
    }
    .carousel-inner{
        height: 150px;
    }
    .carousel-item{
        padding: 0 10%;
    }
    .carousel-item.active{
        display: flex;
    }
    .main__button_group{
        margin: 0;
        height: 340px;
    }
    .main__try_block_background{
        top:50%;
        height:100%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 65%;
        background-image: url(../img/background_mobile_try.png);
        background-position: 0 0px;
        background-size: 100% auto;
        background-repeat: no-repeat;
        padding-top: 92px;
    }
    .main__button{
        height: 65px;
        font-size: 18px;
    }
    .main__button span{
        margin: 25px 35px;
    }
    .under_main_button{
        text-align: center;
        padding: 4% 12%;
        font-size: 0.7em;
    }
    .main__about__title{
        font-size: 17px;
    }
    .main__about__subtitle, .main__about__text_under_list{
        font-size: 14px;
        padding: 0 5%;
    }
    .main__about__list_item{
        text-align: center;
        margin: 15px 0;
        padding: 15px 15px;
        height: 95px;
        border-radius: 80px;
    }
    .main__about__list_item_text{
        text-align: center!important;
        font-size: 15px;
    }

    .main__about__bottom_title{
        font-size: 25px;
    }
    .main__about__bottom_text{
        margin: 0 2%;
        font-size: 16px;
    }
    .main__farmer{
        position: relative;
        height: 650px;
        width: 100%;
    }
    .main__farmer_picture{
        height: 650px;
        width: 100%;
        background-image: url(../img/digital_farmer.png);
        background-position: center;
        background-size: auto 100%;
        background-repeat: no-repeat;
        margin-bottom: 60px;
        margin-top: -60px;
    }
    .price__title {
        font-size: 25px;
    }
    .price__cards_block{
        padding: 0 2%;
        padding-bottom: 5%;
    }
    .price__card_wrapper {
        width: 310px;
    }
    .price__pay_btn, .price__pay_input{
    width: 100%;
    height: 65px;
    border-radius: 20px;
    }
    .about__title_block{
        padding: 10% 5%;
    }
    .about__card {
        width: 95%;
        height: auto;
        font-size: 17px;
    }
    .about__bottom_text{
        padding: 5% 5%;
        font-size: 18px;
    }
    /*.uk-child-width-1-2>*{*/
    /*width: 95%;*/
    /*}*/
    .uk-grid {
        padding-left: 20%;
    }
    .about__slider_item_text {
        font-size: 18px;
    }
    .about__slider_item_ava_wrap{
        left: 40px;
        width: 75px;
        height: 75px;
    }
    .about__slider_item_ava{
        margin-top: 8px;
        width: 60px;
        height: 60px;
    }
    .about__slider_item_ava_name{
        font-size: 17px;
        left: 80px;
    }
    .h-line{
        padding: 0;
    }
    .up__btn {
        position: fixed;
        left: 50%;
        transform: translate(-50%, 0);
    }
    .cs__container{
        min-height: calc(100vh - 124px);
    }
    .cs__title{
        font-size: 40px;
        width: 95%;
    }
    .cs__subtitle{
        font-size: 1rem;
    }
    .cs__btn{
        padding: 0 20px;
    }
    .cs__soybeans_underground{
        height: 170px;
    }

}

@media screen and (max-width: 768px) {
    .frame__wrapper {
        height: calc(100vh - 152px);
    }
    .container-text img{
        height: auto!important;
        width: 80%!important;
    }
    .cabinet-nav a {
        /*font-size: 0.5em;*/
    }
    .cabinet-nav .nav-item {
        margin: 0;
    }
    .main__button_group{
        height: 310px;
    }
    .main__try_block_background{
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        background-image: url(../img/background_mobile_try.png);
        background-position: 45% 0;
        background-size: 100% auto;
        background-repeat: no-repeat;
        padding-top: 73px;

    }
    .price__card_wrapper {
        border-radius: 20px;
        width: 205px;
        height: max-content;
        padding: 4px;
    }
    .price__card_body {
        border-radius: 16px;
        padding: 15px 10px 25px 10px;
        /*height: 175px;*/
    }
    .price__card_body_text{
        font-size: 13px;
    }
    .price__card_price {
        font-size: 35px;
    }
    .price__card_price_p1{
        padding-top: 1.1rem;
    }
    .price__card_price_p2{
        padding-top: 0.6rem;
    }
    .price__card_old_price{
        margin: -10px 0;
    }
    .price__card_title{
        font-size: 15px;
    }
    .price__card_btn {
        font-size: 12px;
    }
    .contacts__form_block{
        padding-top: 0;
    }
    .contacts__mail_block{
        height: 200px;
        padding-left: 32%;
        display: block;
    }
    .contacts__mail_block .left{
        padding-top: 40px;
        text-align: left;
        padding-right: 0;
        border: none;
        font-size: 16px;
    }
    .contacts__mail_block .right{
        padding-top: 30px;
        padding-left: 0;
        font-size: 16px;

    }
    .contacts__mail_block .dog{
        left: -10px;
        top: -60px;
        width: 100px;
        height: 200px;
        background-image: url(../img/dog_mob.png);
        background-position: 0 0px;
        background-size: auto 100%;
        background-repeat: no-repeat;
        transition: 0.5s;
    }
    .dog:hover {
        transform: scale(1.2);
        transition: 0.5s;
    }
    .container-text{
        padding: 3%;
    }
    .text_p {
        padding-top: 0;
    }
    .cs__soybeans_underground{
        height: 25vh;
        width: 100%;
        bottom: -5px;
        background-size: auto 100%;
        background-repeat: no-repeat;
        background-position: bottom;

    }
}

@media screen and (max-width: 576px) {
    .main__button_group {
        height: 285px;
    }

    .main__try_block_background {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 330px;
        background-image: url(../img/background_mobile_try.png);
        background-position: 0 0px;
        background-size: 100% auto;
        background-repeat: no-repeat;
        padding-top: 34px;
    }

    .contacts__form_block {
        padding-top: 0%;
        width: 300px;
    }

    .navbar-corn {
        height: 330px;
        width: 250px;
        bottom: 80px;
        right: 0;
        background-size: auto 100%;
        background-repeat: no-repeat;
        background-position: right;
        background-image: url("../img/corn.png");
    }

    .cabinet__invoices_list .list-group {
        width: 350px;
    }

    .cabinet__invoice_value, .cabinet__invoice_date, .cabinet__invoice_status {
        margin: 5px 5px;
    }

    .cabinet__invoice_value {
        font-size: 1.1rem;
    }

    .cabinet__invoice_date {
        font-size: 0.75rem;
    }

    .cabinet__invoice_status {
        font-size: 1rem;
    }
}

.bg_dg{
    background: #577D3D;
}
.bg_lg{
    background: #A1C440;
}
/*-------------------FONTS--------------------*/
.font_light {
    font-weight: 300;
}
.font_medium {
    font-weight: 500;
}
.font_semi_bold {
    font-weight: 600;
}
.font_dg{
    color: #577D3D;
}
.font_lg{
    color: #A1C440;
}
@media screen and (max-width: 991px){
    .bg_dg_lg{
        background-color: #577D3D;
    }
}
