/*
Theme Name: 100 startups
Version: 1.0
Author URI: https://docode.pro
*/

@font-face{
	font-family:'Golos';
	src:url('/wp-content/themes/docode_theme/fonts/GolosText-Regular.ttf') format('truetype');
	font-weight:400;
	font-style:normal
}

@font-face{
	font-family:'Golos';
	src:url('/wp-content/themes/docode_theme/fonts/GolosText-Medium.ttf') format('truetype');
	font-weight:500;
	font-style:normal
}

@font-face{
	font-family:'Golos';
	src:url('/wp-content/themes/docode_theme/fonts/GolosText-Bold.ttf') format('truetype');
	font-weight:600;
	font-style:normal
}

:root {
	--bl: #0B0B0B;
	--d-gray: #333841;
	--gray: #E0EAF1;
	--wh: #fff;
	--l-gray: #F3F6F8;
	--dark: #191D23;
	--blue: #1A7BEB;
	--shadow: 0 0 1rem 0.1rem rgba(0,0,0,0.1);
}

:focus {
	outline: none;
}

::placeholder{
	color: var(--bl);
}

html {
  scroll-behavior: smooth;
}

body {
	font-family: Golos;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
}

button, input, select, textarea {
	
}

a {
	transition: .3s;
	text-decoration: none;
	color: var(--sec);
}
a:hover {
	text-decoration: none;
}

p, ul {
    margin-bottom: 20px;
}

h1, .h1 {
	font-weight: 500;
	font-size: 40px;
}

h2, .h2 {
	font-weight: 500;
	font-size: 48px;
	line-height: 130%;
	margin-bottom: 40px;
}

h3, .h3 {
	font-weight: 500;
	font-size: 20px;
}

img {
	max-width: 100%;
	height: auto;
}

iframe {
    max-width: 100%;
}

img.to_svg{
	display: none;
}

.btn{
	cursor: pointer;
	background: var(--blue);
	color: var(--wh);
	display: flex;
	padding: 5px 35px;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--blue);
	transition: 0.3s;
	position: relative;
	border-radius: 30px;
}

.btn:hover{
	background: var(--wh);
	color: var(--blue);
}

.btn:focus{
	background: var(--wh);
	border: 3px solid var(--bl);
}

.header_row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
}

.header_logo_wrap {
    display: flex;
    line-height: 0;
}

.head_logo img {
    height: 40px;
    width: auto;
}

.main-menu {
    padding: 0;
    margin: 0;
    display: flex;
    list-style: none;
}

.header_logo_wrap img {
    width: 300px;
}

.main_menu_wrap {
    margin-left: auto;
}

.main-menu a {
    color: var(--bl);
    text-decoration: none;
    margin-left: 20px;
    position: relative;
    padding: 5px 0;
}

.main-menu a:before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--blue);
    left: 0;
    bottom: 0;
    transition: 0.3s;
}

.main-menu a:hover:before {
    width: 100%;
}

.head_btn {
    margin-left: auto;
}

header {
    position: sticky;
    top: 0;
    box-shadow: var(--shadow);
    z-index: 100;
    background: var(--wh);
}

/*** BANNER ***/
section.banner {
    background: var(--dark);
    color: var(--wh);
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    padding: 0 0 0px;
}

.banner_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

img.banner_logo {
    width: 190px;
    margin: 60px 0;
}


.banner_content h1 {
    margin: 0 auto 40px;
    width: 600px;
    text-align: center;
    line-height: 130%;
    font-size: 48px;
}

.banner_desc {
    font-size: 20px;
    margin: 0 auto 50px;
    width: 400px;
    text-align: center;
    line-height: 130%;
}

.banner_slider {
    width: 120%;
    transform: translateX(-50%);
    position: relative;
    left: 50%;
}

img.banner_fon_b {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    pointer-events: none;
}

.banner_item {
    position: relative;
    padding-top: calc(100% - 20px);
    margin: 0 10px;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.banner_item img {
    height: 100%;
    object-fit: cover;
    position: absolute;
    width: 100%;
    top: 0;
}

img.banner_fon_l {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25%;
    pointer-events: none;
}

img.banner_fon_r {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25%;
    pointer-events: none;
}

/*** END BANNER ***/

/*** ABOUT ***/
section {
    padding: 80px 0;
}

.cards_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.about_card {
    background: var(--l-gray);
    border-radius: 20px;
    padding: 30px 30px 30px 60px;
    position: relative;
    flex: 25%;
    margin: 0 15px;
}

.about_icon {
    position: absolute;
    left: 20px;
    top: 30px;
    width: 24px;
    height: auto;
}

.about_card_title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

/*** END ABOUT ***/

/*** STORY ***/
section.story {
    padding: 0 0 0px;
}

a.story_link {
    color: var(--bl);
    background: var(--l-gray);
    border-radius: 20px;
    padding: 50px;
    display: block;
    position: relative;
    overflow: hidden;
}

.story_title {
    font-size: 32px;
    margin-bottom: 240px;
    font-weight: 600;
    line-height: 130%;
    width: 60%;
    z-index: 1;
    position: relative;
}

.story_arrow {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 24px;
    height: auto;
    transition: 0.3s;
    z-index: 1;
}

a:hover .story_arrow {
    right: 40px;
}

.story_snow {
    width: 360px;
    height: auto;
    position: absolute;
    right: -50px;
    bottom: -50px;
    transform: rotate(45deg);
    display: none;
}

.story_snow path {
    fill: var(--gray);
}

img.story_img {
    position: absolute;
    width: 650px;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/*** END STORY ***/

/*** CASES ***/
.case_card {
    flex: 25%;
    margin: 0 15px 30px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cases_arrow {
    transform: rotate(-45deg);
    width: 90%;
    height: auto;
    position: absolute;
    bottom: -43px;
    left: -43px;
    display: none;
}

.cases_arrow path {
    fill: var(--l-gray);
}

.case_card_img {
    position: relative;
    height: 250px;
    order: 0;
}

.case_card_img img {
    position: absolute;
    width: 100%;
100%:
    ob;100%:
    ob;100%:
    o;
    height: 100%;
    object-fit: cover;
}

.case_card_txt {
    flex: 1 0 auto;
    background: var(--l-gray);
    padding: 20px 40px 20px 20px;
    order: 1;
}

.case_card_title {
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 20px;
}

.cases_icon {
    position: absolute;
    right: 20px;
    bottom: 20px;
    transition: 0.3s;
}

a:hover .cases_icon {
    right: 10px;
}

/*** END CASES ***/

/*** INTER ***/
section.inter {
    background: var(--dark);
    color: var(--wh);
    border-radius: 32px;
    overflow: hidden;
}

.inter_card {
    flex: 25%;
    margin: 0 15px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 580px;
    display: flex;
    flex-direction: column;
}

.inter_card_img {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.inter_card_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inter_card_card_txt {
    flex: 1 0 auto;
    background: var(--d-gray);
    padding: 30px;
}

.inter_card_icon {
    position: absolute;
    bottom: 30px;
    right: 30px;
    transition: 0.3s;
}

a:hover .inter_card_icon {
    right: 20px;
}

.inter_card_icon path {
    fill: var(--wh);
}

.inter_card_card_title {
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 40px;
}

/*** END INTER ***/

/*** FOOTER ***/
footer {
    padding: 80px 0 30px;
    background: var(--l-gray);
    border-top-left-radius: 32px;
    margin-top: 80px;
    border-top-right-radius: 32px;
}

.footer_card_wrap {
    flex: 1;
    margin: 0 15px;
    display: flex;
    flex-direction: column;
}

.footer_card_btn {
    margin-bottom: 30px;
    height: 50px;
}

.footer_card_btn svg {
    width: 24px;
    height: auto;
}

.footer_card_btn svg path {
    stroke: var(--wh);
    transition: 0.3s;
}

.footer_card_btn:hover svg path {
    stroke: var(--blue);
}

.footer_card {
    background: var(--wh);
    padding: 30px 30px 10px;
    border-radius: 20px;
    flex: 1 0 auto;
}

.footer_card_title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 130%;
}

.footer_card_cont {
    display: flex;
    flex-wrap: wrap;
}

a.footer_card_item {
    margin: 0 10px 20px 0;
    flex: 40%;
    display: flex;
    align-items: flex-start;
}

a.footer_card_item:hover {
    opacity: 0.7;
}

a.footer_card_item img {
    width: 24px;
    margin-right: 10px;
}

.footer_bottom_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    margin: 30px 0;
    background: var(--wh);
    padding: 30px;
}

.footer_logo {
    line-height: 1;
}

.footer_desc {
    width: 300px;
    text-align: right;
}

/*** END FOOTER ***/

.mob_menu_wrap {
    display: none;
}

.burger {
    display: none;
}

@media(max-width: 1024px){
	.main_menu_wrap {
	    display: none;
	}
	
	.burger {
	    display: block;
	    width: 40px;
	    height: 40px;
	    /* border: 1px solid; */
	    margin-left: 20px;
	    position: relative;
	}
	
	.burger span {
	    position: absolute;
	    width: 80%;
	    height: 2px;
	    background: var(--bl);
	    top: 50%;
	    left: 50%;
	    transform: translate(-50%, -50%);
	    transition: 0.3s;
	}
	
	.burger span:last-child {
	    top: 80%;
	}
	
	.burger span:first-child {
	    top: 20%;
	}
	
	.menu_open .burger span {
	    opacity: 0;
	}
	
	.menu_open .burger span:nth-child(2) {
	    opacity: 1;
	    transform: translate(-50%, -50%) rotate(45deg);
	}
	
	.menu_open .burger span:nth-child(3) {
	    opacity: 1;
	    transform: translate(-50%, -50%) rotate(-45deg);
	}
	
	.menu_open .mob_menu_wrap {
	    display: block;
	    position: absolute;
	    z-index: 1;
	    background: var(--wh);
	    width: 100%;
	    height: calc(100vh - 80px);
	}
	
	.mob-menu {
	    margin: 0;
	    padding: 20px 0;
	    list-style: none;
	    display: flex;
	    flex-direction: column;
	    align-items: center;
	}
	
	.mob-menu a {
	    margin-bottom: 30px;
	    display: block;
	    font-size: 20px;
	}

	.about_card {
	    flex: 100%;
	    margin-bottom: 30px;
	}
	
	section.about {
	    padding-bottom: 50px;
	}
	
	.case_card {
	    flex: 100%;
	    margin-bottom: 30px;
	    border-radius: 16px;
	}
	
	.case_card h2{
	    margin-bottom: 10px;
	}
	
	.cases_arrow {
	    display: none;
	}
}

@media(max-width: 600px){
	.header_logo_wrap img {
	    width: 250px;
	}
	
	.head_btn {
	    margin-right: auto;
	    margin-left: 0;
	    display: none;
	}
	
	.header_logo_wrap {
	    margin: 0 auto 0px 0;
	}
	
	.banner_content h1 {
	    width: 100%;
	}
	
	.banner_desc {
	    width: 100%;
	}
	
	section.banner {
	    border-bottom-left-radius: 16px;
	    border-bottom-right-radius: 16px;
	}
	
	.about_card {
	    border-radius: 16px;
	}
	
	a.story_link {
	    border-radius: 16px;
	    padding: 20px;
	}
	
	.story_title {
	    font-size: 24px;
	}
	
	img.story_img {
	    width: 100%;
	    bottom: 0px;
	}
	
	.cases_icon {
	    right: 10px;
	}
	
	a.inter_card {
	    flex: 100%;
	    margin-bottom: 30px;
	    border-radius: 16px;
	}
	
	section.inter {
	    border-radius: 16px;
	    padding: 40px 0 0px;
	}
	
	footer {
	    padding: 40px 0 30px;
	    border-radius: 16px;
	}
	
	.footer_card_wrap {
	    margin-bottom: 60px;
	    flex: 100%;
	}
	
	a.footer_card_item {
	    flex: 100%;
	}
	
	.footer_bottom_row {
	    border-radius: 16px;
	    flex-wrap: wrap;
	    margin: 0 0 30px;
	}
	
	a.footer_logo {
	    margin-bottom: 20px;
	}
	
	.footer_card {
	    border-radius: 16px;
	}
}

