*{
    outline: none;
    box-sizing: border-box;
}


h1,h2,h3,h4,h5,h6{
    margin-top: 0;
    padding: 0;
}

img{
    max-width: 100%;
    height: auto;
    line-height: 0;
}

ul {
    list-style: none;
    padding: 0;
}

a{
    text-decoration: none;
}

section{
    padding: 100px 0;
}

:root {
    --color-theme-dark: #111111; 
    --color-theme-light: #f3f3f3;
    --color-accent: #FFB400;
    --color-accent-hover: #e09d00;
    --color-text-desc: #4E4E4E;
    --color-text: #2A211F;
    --color-btn-text: #fff;
}


.container {
    width: 100%;
    padding: 0 20px;
    max-width: 1160px; /* Максимальная ширина контейнера */
    margin: 0 auto; /* Центрирование контейнера */
}

body{
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--color-text);
    background-color: var(--color-theme-light);
}

body.dark-theme,
body.dark-theme .header,
body.dark-theme .header a{
    background-color: var(--color-theme-dark);
    color: var(--color-theme-light);
}



body a{
    color: var(--color-text);
}

/* 
=============================================================
HEADER
=============================================================
*/



.header{
    border-bottom: 1px solid var(--color-accent);
    position: fixed;
    width: 100%;
    z-index: 99999;
    background-color: var(--color-theme-light);
    -webkit-box-shadow: 0px 6px 13px 3px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 6px 13px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 6px 13px 3px rgba(0, 0, 0, 0.2);
}

.burger {
    display: none; /* Скрыть бургер-меню по умолчанию */
    flex-direction: column;
    cursor: pointer;
    margin-left: 20px;
}

.burger-icon {
    outline: none; /* Убираем стандартное выделение при нажатии */

}

.burger img {
    width: 25px;
    height: 25px;
    margin: 4px 0;
}

.header_wrap{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.logo{
    text-transform: uppercase;
}

.main_menu ul, .dop_menu ul{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;

}

.main_menu ul a{
    font-weight: 500;
    transition: all ease .3s;
}

.main_menu ul li a:hover{
    color: var(--color-accent);
}

.dop_menu img{
    width: 18px;
    height: 18px;
}

.dop_menu ul li:first-child{
    height: 18px;
    width: 18px;
}

.dop_menu ul li a{
    display: block;
    width: 100%;
    height: 100%;
}


/* 
=============================================================
ABOUT
=============================================================
*/

.section_title{
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    z-index: 999;
}



.section_title_after{
    color: var(--color-accent);
    font-size: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: .8;
}

.section_minor_title{
    text-transform: uppercase;
    font-size: 20px;
}
.section_about_body{
    display: flex;
    flex-wrap: wrap;
}

.section_about_body_left, .section_about_body_right{
    flex: 1;
    flex-basis: 50%;
}

.about_body_left_list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-right: 20px;
    margin-bottom: 20px;
}

.about_body_left_list ul li{
    margin-bottom: 10px;
}

.about_body_left_list ul li:last-child{
    margin-bottom: 0;
}

.about_body_left_list span {
    font-weight: 700;
    color: var(--color-accent);
}

.section_about_body_right {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.about_body_right_items{
    border: 1px solid var(--color-accent);
    flex: 1 1 200px;
    padding: 20px;
    cursor: default;
    -webkit-box-shadow: 6px 6px 7px 2px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 6px 6px 7px 2px rgba(0, 0, 0, 0.18);
    box-shadow: 6px 6px 7px 2px rgba(0, 0, 0, 0.18);
}

.about_body_right_items:hover .about_body_right_items_head{
    transform: scale(1.2);
}

.about_body_right_items_head{
    display: inline-block;
    font-size: 50px;
    font-weight: 700;
    color: var(--color-accent);
    transition: .3s ease;
    
}

.about_body_right_items_body{
    font-size: 20px;
    padding-left: 50px;
}

.about_body_right_items_body::before{
    content: "";
    display: flex;
    position: relative;
    top: 14px;
    left: -50px;
    height: 2px;
    width: 35px;
    background-color: var(--color-accent);
    align-items: center;
    flex-wrap: wrap;
}

.btn_main, .btn_portfolio, .btn_form{
    display: inline-flex;
    background-color: var(--color-accent);
    padding: 10px 30px;
    border-radius: 30px;
    color: var(--color-btn-text);
    transition: all ease .3s;
}

.btn_form{
    border: none;
    cursor: pointer;
}

.btn_main:hover, .btn_portfolio:hover{
    background-color: var(--color-accent-hover);
}


/* 
=============================================================
STECK
=============================================================
*/

.section_steck_body{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.steck_body_items{
    flex: 1 1 144px;
    text-align: center;
    border: 3px dotted var(--color-accent);
    padding: 20px 0;
    cursor: default;
    transition: .3s ease;
}

.section_steck_body:hover > :not(:hover){
    filter: blur(1px);
    opacity: .5;
}


.steck_body_items img{
    width: 48px;
    height: 48px;

}

.section_steck_title{
    text-transform: uppercase;
    font-weight: 900;
    font-size: 20px;
    margin: 20px 0;
}

.section_steck_title span{
    color: var(--color-accent);
}

/* 
=============================================================
EXPERIENCE
=============================================================
*/



/* 
=============================================================
PORTFOLIO
=============================================================
*/

.section_portfolio_body{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.portfolio_item {
    position: relative;
    flex: 1 1 500px;
    height: 255px;
    overflow: hidden;
    -webkit-box-shadow: 6px 6px 7px 2px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 6px 6px 7px 2px rgba(0, 0, 0, 0.18);
    box-shadow: 6px 6px 7px 2px rgba(0, 0, 0, 0.18);
}

.portfolio_item_img {
    width: 100%;
    height: 100%;
    transition: opacity 0.5s;
}

.portfolio_item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all ease .3s;
}

.portfolio_item_img:hover {
    opacity: 0.7;
}

.portfolio_item_body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    opacity: 0;
    transition: all ease .3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.portfolio_item:hover .portfolio_item_body {
    opacity: 1;
}

.portfolio_item_title{
    font-size: 18px;
    font-weight: 700;
}

.portfolio_item_desc{
    color: var(--color-theme-light);
}

.btn_portfolio{
    display: flex;
    justify-content: center;
    width: 70%;
    margin: 0 auto;
}

/* 
=============================================================
SOCIAL
=============================================================
*/

.section_social_body{
    display: flex;
    flex-wrap: wrap;
}

.social_body_desc, .social_body_form{
    flex: 1;
    flex-basis: 50%;
}

.social_body_desc_title h2{
    font-size: 30px;
}

.social_body_desc_emailPhone{
    display: flex;
    align-items: center;
    gap: 20px;
}

.social_body_desc_linkSocial ul{
    display: flex;
    gap: 20px;
}

.social_body_desc_linkSocial ul li{
    width: 46px;
    height: 46px;
}

.social_body_desc_linkSocial ul li a {
    width: 100%;
    height: 100%;
    display: block;
    background: var(--color-text-desc);
    border-radius: 50%;
    padding: 10px;
}


.input_form_wrap{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.input_form_wrap input, .social_body_form textarea{
    width: 100%;
}

.input_form_wrap input{
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid var(--color-accent);
}

.social_body_form textarea{
    margin-bottom: 20px;
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid var(--color-accent);
}