* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    margin: 0;
}

.img{
    width: 100%;
    height: 100%;
}

.mb{
    margin-bottom: 100px;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
    text-decoration: none;
}

.container {
    max-width: 1320px;
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.menu{
    display: none;
}

.header{
    position: fixed;
    width: 100%;
    background-color: #FFF;
    z-index: 1000;
    border-radius: 0px 0px 25px 25px;    
}

.header_menu a{
    font-weight: 500;
    font-size: 16px;
    color: #252525;
    text-transform: uppercase;
}

.header_menu a:hover{
    color: #01385D;
    text-decoration: underline;
}

.header_tel a{
    font-weight: 700;
    font-size: 19px;
    color: #181818;
    text-transform: uppercase; 
}

.header_tel a:hover{
    color: #01385D;
    text-decoration: underline;
}

.header_tel{
    display: flex;
    align-items: center;
    gap: 10px;
}

.header_body{
    display: flex;
        padding: 20px 0px;
    justify-content: space-between;
    align-items: center;
}

.header_menu ul{
    display: flex;
    align-items: center;
}

.header_menu li{
    margin-right: 25px;
}

.main_banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner_title{
    font-weight: 800;
    font-size: 61px;
    color: #FFFFFF;
    text-transform: uppercase;
    width: 50%;
    text-align: center;
}

.banner_text{
    font-weight: 400;
    font-size: 28px;
    color: #FFFFFF;
    width: 50%;
    text-align: center;
}

.main_banner_btn{
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
    background: #E7B950;
    padding: 15px 65px;
    border-radius: 5000px;
    border: 0;
    cursor: pointer;
}

.banner_wrap {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
}

.main_banner_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.main_banner::before {
    content: "";
    position: absolute;
    top: 79%;
    left: 50%;
    width: 1800px;
    height: 1800px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 16%;
}

.main_banner::after {
    content: "";
    position: absolute;
    top: 79%;
    left: 50%;
    width: 1300px;
    height: 1300px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 16%;
}

.main_banner {
    position: relative;
    overflow: hidden;
}

.line {
    position: relative;
    padding-bottom: 15px;
}

.line:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 53px;
    height: 2px;
    background: #006F9F;
    transition: .5s;
}

.main_about_title{
    font-size: 50px;
    font-weight: 700;
    color: #01385D;
    margin-bottom: 15px;
}

.main_about_text{
    font-size: 15px;
    font-weight: 500;
    color: #01385D;
    line-height: 24px;
}

.main_about{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main_about_img{
    width: 45%;
}

.main_about_item{
    width: 48%;
}

.main_content{
    border-radius: 50px 50px 50px 50px;
    background: #006F9F0F;
    padding: 60px 0px;
}

.main_content_title{
    font-size: 50px;
    font-weight: 700;
    color: #01385D;
    margin-bottom: 50px;
}

.main_content_subtitle{
    font-size: 30px;
    font-weight: 700;
    color: #01385D;
    font-family: "Ubuntu", sans-serif;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.main_content_text{
    font-size: 20px;
    font-weight: 400;
    color: #424B5A;
}

.main_content_grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.main_content_content {
    border-radius: 25px;
    background: #fff;
    padding: 20px;
    transition: background-color 0.3s ease;
}

.main_content_text,
.main_content_subtitle {
    transition: color 0.3s ease;
}

.main_content_content:hover {
    background-color: #006F9F;
}

.main_content_content:hover .main_content_text,
.main_content_content:hover .main_content_subtitle {
    color: #fff;
}

.main_icon .icon_bg,
.main_icon .icon_fg {
    transition: fill 0.3s ease;
}

.main_content_content:hover .icon_bg {
    fill: #fff; /* Цвет фона круга при наведении */
}

.main_content_content:hover .icon_fg {
    fill: #006F9F; /* Цвет линий/иконки при наведении */
}

.main_content_content:hover .icon_bg_bg {
    fill: #006F9F; /* Цвет фона круга при наведении */
}

.main_content_content:hover .icon_fg_bg  {
    fill: #006F9F; /* Цвет линий/иконки при наведении */
}

.main_supp_title{
    font-size: 50px;
    font-weight: 700;
    color: #01385D;
    margin-bottom: 50px;
}

.supp_item {
    background: #006F9F0F;
    border-radius: 15px;
    padding: 30px;
    height: 108px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 210px;
}

.slick-slide {
    padding: 0 10px;
    box-sizing: border-box;
}

.main_news_title{
    font-size: 50px;
    font-weight: 700;
    color: #01385D;
    margin-bottom: 50px;
}

.news_content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
}

.news_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_item{
    width: 100%;
    height: 100%;
}

.news_links{
    display: flex;
    justify-content: space-between;
    padding: 30px;
}

.news_title{
    display: flex;
    padding: 30px;
    justify-content: flex-start;
}

.news_data{
    display: flex;
    align-items: center;
    gap: 10px;
}

.news_data span{
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
}

.news_title a{
    font-size: 23px;
    font-weight: 700;
    color: #FFFFFF;
}

.news_item{
    position: relative;
    width: 100%;
    height: 100%;
}

.main_custom_title{
    font-size: 50px;
    font-weight: 700;
    color: #01385D;
    margin-bottom: 50px;
}

.footer{
    background: #006F9F;
    border-radius: 50px 50px 0px 0px;
    width: 100%;
    padding: 50px 0px;
}

.footer_body{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 50px;
}

.footer_menu ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-right: 40px;
}

.footer_menu{
    display: flex;
}

.footer_menu_cont{
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
}

.footer_contact p{
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: none;
}

.footer_contact_cont{
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
}

.link{
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: none;
}

.footer_contact{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer_contact .link:nth-child(5){
    text-decoration: underline;
}

.footer_links{
    display: flex;
    gap: 10px;
}

.footer_btn a {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}

.footer_btn img{
    background: #fff;
    border-radius: 50%;
    padding: 20px;
}

.footer_btn span{
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
}

.footer_footer{
    padding-top: 50px;
}

.footer_footer div{
    color: #fff;
}

.slick_btns{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slick_btns button{
    border: 0;
    background: #fff;
    cursor: pointer;
}

.about_about{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 100px;
}

.about_about_img{
    width: 45%;
}

.about_about_item{
    width: 48%;
}

.about_about_title{
    font-size: 50px;
    font-weight: 700;
    color: #01385D;
    margin-bottom: 15px;
}

.about_about_text{
    font-size: 15px;
    font-weight: 500;
    color: #01385D;
    line-height: 24px;
}

.about_content{
    border-radius: 50px 50px 50px 50px;
    background: #006F9F0F;
    padding: 60px 0px;
}

.about_content_title{
    font-size: 50px;
    font-weight: 700;
    color: #01385D;
    margin-bottom: 50px;
}

.about_content_grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.about_content_content{
    border-radius: 25px;
    background: #fff;
    padding: 20px;
    transition: background-color 0.3s ease;
}

.about_content_content:hover {
    background-color: #006F9F;
}

.about_content_content:hover .icon_bg {
    fill: #fff;
}

.about_content_text, .about_content_subtitle {
    transition: color 0.3s ease;
}

.about_content_text {
    font-size: 20px;
    font-weight: 400;
    color: #424B5A;
}

.about_icon .icon_bg, .about_icon .icon_fg {
    transition: fill 0.3s ease;
}

.about_content_content:hover .icon_bg {
    fill: #fff; /* Цвет фона круга при наведении */
}

.about_content_content:hover .icon_fg {
    fill: #006F9F; /* Цвет линий/иконки при наведении */
}

.about_content_content:hover .icon_bg_bg {
    fill: #006F9F; /* Цвет фона круга при наведении */
}

.about_content_content:hover .icon_fg_bg  {
    fill: #006F9F; /* Цвет линий/иконки при наведении */
}

.about_content_subtitle {
    font-size: 30px;
    font-weight: 700;
    color: #01385D;
    font-family: "Ubuntu", sans-serif;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about_content_text {
    font-size: 20px;
    font-weight: 400;
    color: #424B5A;
}

.about_content_content:hover .about_content_text, .about_content_content:hover .about_content_subtitle {
    color: #fff;
}

.about_policy_item{
    width: 48%;
}

.about_policy_img{
    width: 45%;
}

.about_policy{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about_policy_title {
    font-size: 50px;
    font-weight: 700;
    color: #01385D;
    margin-bottom: 15px;
}

.about_policy_text{
    font-size: 15px;
    font-weight: 500;
    color: #01385D;
    line-height: 24px;
}

.about_economic{
    border-radius: 50px 50px 50px 50px;
    background: #006F9F0F;
    padding: 60px 0px;
}

.about_economic_img{
    width: 45%;
}

.about_economic_item{
    width: 48%;
}

.about_economic_title{
    font-size: 50px;
    font-weight: 700;
    color: #01385D;
    margin-bottom: 15px;
}

.about_economic_text{
    font-size: 15px;
    font-weight: 500;
    color: #01385D;
    line-height: 24px;
}

.about_economic_block{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about_history{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about_history_item{
    width: 48%;
}

.about_history_img{
    width: 45%;
}

.about_history_title{
    font-size: 50px;
    font-weight: 700;
    color: #01385D;
    margin-bottom: 15px;
}

.about_history_text{
    font-size: 15px;
    font-weight: 500;
    color: #01385D;
    line-height: 24px;
}

.present_about{
    display: flex;
    align-items: center;
    justify-content: space-between;
        margin-top: 100px;
}

.present_about_img{
    width: 45%;
}

.present_about_item{
    width: 48%;
}

.present_about_title{
    font-size: 50px;
    font-weight: 700;
    color: #01385D;
    margin-bottom: 15px;
}

.present_about_text{
    font-size: 15px;
    font-weight: 500;
    color: #01385D;
    line-height: 24px;
}

.present_block{
    border-radius: 50px 50px 50px 50px;
    background: #006F9F0F;
    padding: 60px 0px;
}

.present_refining{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.present_refining_item{
    width: 48%;
}

.present_refining_img{
    width: 45%;
}

.present_refining_title{
    font-size: 50px;
    font-weight: 700;
    color: #01385D;
    margin-bottom: 15px;
}

.present_refining_text{
    font-size: 15px;
    font-weight: 500;
    color: #01385D;
    line-height: 24px;
}

.retail_about{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.retail_about_img{
    width: 45%;
}

.retail_about_item{
    width: 48%;
}

.retail_about_title{
    font-size: 50px;
    font-weight: 700;
    color: #01385D;
    margin-bottom: 15px;
}

.retail_about_text{
    font-size: 15px;
    font-weight: 500;
    color: #01385D;
    line-height: 24px;
}

.retail_suppliers{
    border-radius: 50px 50px 50px 50px;
    background: #006F9F0F;
    padding: 60px 0px;
}

.retail_suppliers_block{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.retail_suppliers_block{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.retail_suppliers_item{
    width: 48%;
}

.retail_suppliers_img{
    width: 45%;
}

.retail_suppliers_title{
    font-size: 50px;
    font-weight: 700;
    color: #01385D;
    margin-bottom: 15px;
}

.retail_suppliers_text{
    font-size: 15px;
    font-weight: 500;
    color: #01385D;
    line-height: 24px;
}

.main{
    width: 100px;
    height: 98px;
}

.news_title_title{
    font-size: 50px;
    font-weight: 700;
    color: #01385D;
    margin-bottom: 50px;
    margin-top: 50px;
}

.news_grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.inside_news_title{
    font-size: 50px;
    font-weight: 700;
    color: #01385D;
    margin-bottom: 50px;
    margin-top: 50px;
}

.inside_news_text{
    font-size: 15px;
    font-weight: 500;
    color: #01385D;
    line-height: 24px;
    margin-bottom: 50px;
}

.inside_news_img{
    display: flex;
    align-items: center;
    justify-content: center;
}

.inside_news_img img{
    width: 300px;
    height: 100%;
    object-fit: cover;
    margin-bottom: 50px;
}

.contact_news_title{
    font-size: 50px;
    font-weight: 700;
    color: #01385D;
    margin-bottom: 50px;
    margin-top: 50px;
}

.contact_block{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact_item{
    width: 38%;
    background: #006F9F0F;
    padding: 25px 35px;
    border-radius: 25px;
}

.contact_map{
    width: 60%;
    
}

.contact_content{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact_icon{
    padding-right: 20px;
}

.contact_box{
    border-left: 1px solid #D7D7D7;
    padding-left: 20px;
}

.contact_icon img{
    height: 17px;
    width: 17px;
}

.contact_name{
    font-size: 13px;
    font-weight: 400;
    color: #01385D;
    margin-bottom: 10px;
}

.contact_street{
    font-size: 16px;
    font-weight: 600;
    color: #01385D;
    margin-bottom: 10px;
}

.contact_add{
    font-size: 14px;
    font-weight: 400;
    color: #01385D;
}

.contact_tel{
    font-size: 16px;
    font-weight: 600;
    color: #01385D; 
}

.contact_mail{
    font-size: 16px;
    font-weight: 600;
    color: #01385D; 
}

.inside_news_back{
    margin: 50px 0px;
    border-bottom: 1px solid #F0F6F9;
    padding-bottom: 10px;
}

.back_btn{
    display: flex;
    gap: 10px;
    align-items: center;
    }
    
.back_btn span{
    font-size: 15px;
    font-weight: 500;
    color: #01385D;
}

.modal-content {
    display: flex;
    width: 100%;
    background: #fff;
    height: auto;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    pointer-events: auto;
    border-radius: 20px;
    outline: 0;
}

.modal-body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    }
    
.form_title{
    font-size: 40px;
    font-weight: 700;
    color: #01385D;
    margin-bottom: 15px;
    }
    
input {
    border-bottom: 1px solid #9f9f9f !important;
}

input {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #151515;
    background-color: transparent;
    padding-bottom: 10px;
    border: 0;
    margin-bottom: 15px;
}

form button{
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
    background: #E7B950;
    padding: 15px 65px;
    border-radius: 5000px;
    border: 0;
    cursor: pointer;
    }
    
.form_text{
    margin-bottom: 15px;
}

.modal-btn button {
    border: 0;
    background: none;
}

.close_modal {
    font-size: 23px;
    font-weight: 700;
    color: #2A2A2A;
}

.modal-btn {
    position: absolute;
    position: absolute;
    right: 20px;
    top: 20px;
}
    
.ticker-wrapper {
  overflow: hidden;
  background: #000;
  color: #fff;
  padding: 10px 0;
}

.ticker {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}

@keyframes ticker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.news_title a:hover{
    text-decoration: underline;
    }
p {
    padding: 0px 0px 10px 0px;
}

.abc{
    display: flex;
    align-items: baseline;
    font-size: 14px;
    font-weight: 400;
}