/* 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, 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;
}


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;
}


.container {
    width: 1308px;
    max-width: 90%;
    margin-inline: auto; 
}

.wrapper {
    padding: 5px;
}

main {
    margin-top: 30px;
}


.interior-block-title {
    font-family: "Mulish";
    font-size: 72px;
    font-weight: 900;
    line-height: 72px;
    letter-spacing: -0.06em;
    text-align: left;
}

.interior {
    margin-top: 35px;
    
    display: flex;
    flex-direction: column;

    gap: 35px;
}

.interior-img {
    height: 500px;

    object-fit: cover;
}

.button-sign_up {
    width: min-content;

    font-family: "Mulish";
    font-size: 18px;
    font-weight: 600;
    line-height: 25.2px;
   
    color: white;

    background: #370D6C;

    padding: 10px 30px;
}

/* Contact block */
.contact-block {
    margin-top: 80px;
}

.contact-title {
    font-family: "Mulish";
    font-size: 72px;
    font-weight: 900;
    line-height: 72px;
    letter-spacing: -0.06em;
    text-align: left;
}

.contact-items {
    margin-top: 35px;
    display: flex;   
    gap: 80px; 
}

.item {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    
    align-items: baseline;

    
    gap: 0px 0px; 
    grid-template-areas: 
    "item-A item-B"
    "item-C item-C"
    ". ."; 
}

.item-A { grid-area: item-A; }
.item-B { margin-left: 20px; grid-area: item-B; }
.item-C { margin-top: 15px;grid-area: item-C; }

.item .item-title {
    width: max-content;
    height: min-content;

    font-family: "Mulish";
    font-size: 36px;
    font-weight: 700;
    line-height: 39.6px;
}

.item .item-time {
    font-family: "Mulish";
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
    
}

.item .item-loc {
    font-family: "Mulish";
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
    

}

.item .item-number {
    font-family: "Mulish";
    font-size: 36px;
    font-weight: 700;
    line-height: 39.6px;
    
    width: max-content;

    -webkit-text-fill-color: #000;
    
}

.map-block {
    margin-top: 35px;
}

/* Warning */
.warning__18yo {
    margin-top: 80px;
    margin-bottom: 20px;

    display: flex;
    align-items: center;
    gap: 40px;
}

.warning__18yo__text {
    font-family: "Mulish";
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
  

}

/* Mobile v */
@media (max-width: 1366px) {
    main {
        margin-top: 40px;
    }
    .wrapper {
    
        padding-inline: 20px;
    }
    .interior_img {
        width: 350px;
        
    }
    .interior-block-title {
        font-size: 36px;
        font-weight: 700;
        line-height: 39.6px;
    }

    .interior {
        margin-top: 15px;
    }

    .interior img {
        width: 100%;
       

        object-fit: cover;
    }

    .button-sign_up {
        width: 100%;
        padding: 19px;
    }

    /* contact */
    .contact-title {
        font-size: 36px;
        line-height: 39.6px;
    }
    .contact-items {
        display: flex;
        flex-direction: column;
    }

    .map-block img {
        width: 100%;
        height: 300px;

        object-fit: cover;
    }
}