
/* Reset and base styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Links */

a, a:link, a:visited  {
    text-decoration: none;
}

a:hover  {
    text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main {
	display: block;
}

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

ul, ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

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

address {
  font-style: normal;
}

/* Form */

input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-family: 'Roboto', sans-serif;
}
.container {
    width: 80%;
    margin: 0 auto;
}
.logo {
    text-align: center;
    padding: 20px 10px;
    box-shadow: -3px -5px 10px 5px #f5f5f5 inset;
    margin: 80px auto 15px auto;
}
.logo__title {
    color: #FD4830;
    font-size: 50px;
    font-weight: 800px;
}
.logo__text {
    margin-top: 5px;
    font-weight: 600;
    font-size: 24px;
}
.text {
    line-height: 34px;
    font-weight: 500;
    font-size: 24px;
    text-align: center;
}
.equipment {
    padding: 10px;
    box-shadow: 2px 3px 4px -1px rgba(34, 60, 80, 0.2);
    gap: 5px;
    margin: 10px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.equipment__images {
    gap: 5%;
    display: flex;
}
.equipment__images img {
    width: 20%;
    object-fit: cover;
}
.equipment__logo {
    margin-top: 10px;
}
.equipment__logo h2 {
    text-align: center;
    color: red;
    font-size: 40px;
    font-weight: 800;
    transform: scale(1, 1.8);
}
.equipment__logo-text  {
    font-weight: 500;
    font-size: 6px;
    font-size: 12px;
    margin-top: 5px;
    text-align: center;
}
.equipment__text {
    text-transform: uppercase;

    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-top: 5px;
}
.youtobe {
    margin-top: 20px;
    line-height: 25px;
}
.youtobe a {
    text-decoration: underline;
    font-weight: 600;
    /* color: #148fb8; */
    color: #3366BB;
}
.youtobe p{
    font-size: 24px;
    line-height: 34px;
}
.youtobe__block {
    margin-top: 50px;
    margin-bottom: 50px;
}
.youtobe__block img {
    width: 100%;
}

@media(max-width: 640px) {
    .logo__title {
        font-weight: 600;
        font-size: 32px;
    }
    .logo__text {
        font-weight: 800;
        font-size: 12px;
    }
    .text {
        padding: 0 10px;
        line-height: 24px;
        font-weight: 600;
        font-size: 12px;
    }
    .equipment__logo h2 {
        font-weight: 800;
        font-size: 24px;
        transform: scale(1, 1.5);
    }
    .equipment__logo-text  {
        margin-top: 2px;
        font-size: 7px;
    }
    .equipment__text {
        font-size: 11px; 
        font-weight: 600;
    }
    .youtobe p{
        font-size: 14px;
        line-height: 24px;
    }
}