﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --main-color: #252121;
    --color-red: rgb(196 27 24);
    --color-hover: rgb(165, 22, 20);
    --main-background: #fff;
    --main-font: "Montserrat", sans-serif;
    --main-font-size: 14px;
    --main-line-height: 130%;
    --main-font-weight: 400;
}
body{
	margin: 0;
	padding: 0;
	font-family: var(--main-font);
	background: var(--main-background);
	color: var(--main-color);
	font-size: var(--main-font-size);
	line-height: var(--main-line-height);
	font-weight: var(--main-font-weight);
    min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    align-items: center;
    justify-content: center;
}
ul{
	margin: 0;
	list-style: none;
	padding: 0;
}
h1,h2,h3{
	margin: 0;
	display: block;
	padding: 0;
}
p{
	margin: 0;
}
article, aside, footer, header, hgroup, main, nav, section {
    display: block;
}
section{
	display: block;
}
*,
*:before,
*:after{
	box-sizing: border-box;
}
svg,
img{
    display: block;
	max-width: 100%;
	height: auto;
}
a{
    color: inherit;
    text-underline-offset: 3px;
    text-decoration: underline;
    transition: all 0.3s;
}
a:hover{
    text-decoration-color: transparent;
}
.container{
    max-width: 1060px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.find{
    padding: 50px 0;
    display: grid;
    grid-template-columns: 40% minmax(0, 1fr);
    gap: 30px;
}
.find-title{
    font-family: var(--main-font);
    font-weight: 800;
    font-size: 30px;
    text-transform: uppercase;
    line-height: 130%;
}
.find-title span{
    color: var(--color-red);
    font-size: 36px;
}
.find-desc{
    font-size: 16px;
    line-height: 130%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
    font-family: var(--main-font);
}
.find-phone{
    font-weight: 800;
    font-size: 36px;
    text-decoration: none;
    color: var(--color-red);
    display: block;
    line-height: 100%;
}
.find-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    width: -moz-fit-content;
    background: var(--color-red);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    font-family: var(--main-font);
    font-weight: 800;
    font-size: 16px;
    min-width: 210px;
    line-height: normal;
}
.find-btn:hover{
    background: var(--color-hover);
}
.find-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}
.find-img{
    border: 20px solid rgb(238 105 46);
    border-radius: 4px;
    align-self: flex-start;
}
.find-img img{
    width: 100%;
}
.find-phone:hover{
    color: var(--color-hover);
}

@media all and (max-width: 968px){
    .find-phone{
        font-size: 28px;
    }
    .find-title{
        font-size: 24px;
    }
    .find-title span{
        font-size: 28px;
    }
}

@media all and (max-width: 768px){
    .find{
        display: flex;
        flex-direction: column;
    }
    .find-content{
        text-align: center;
        align-items: center;
    }
    .find-desc{
        padding: 15px 0 0;
        gap: 15px;
    }
}