@CHARSET "UTF-8";

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    line-height: 1.3;
    -webkit-text-size-adjust: 100%;
    font-size: 30px;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    color: #373637;
    background-color: #d5cec3;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}
video, section > img {
    width: 100%;
}

img {margin: 0 auto;}
p {margin: 0 0 1.2rem;letter-spacing: -0.5px;}
strong {font-weight: 700;}

section {
    position: relative;
    text-align:center;
    background-color: #ffffff;
}

section.brown {
    background-color: #d5cec3;
}

.wrap {
    margin: 0 auto;
    max-width: 1500px;
    padding: 0 1rem;
	position: relative;
}

header {
    position: relative;
    background: url(../images/header_bg.jpg) no-repeat center center;
    background-size: cover;
}
    header .wrap {
        max-width: 2000px;        
    }
    .header_top {
        padding: 60px 30px;
    }
    
    .header_logo {
        padding: 7% 30% 12%;
    }
    
    .header_nord {
        position: absolute;
        max-width: 460px;
        width: 24%;
        bottom: -180px;
        right: 7%;
        animation: rotateCircle 32s linear infinite;
        transform-origin: center center;
        z-index:1;
    }
@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
footer {
	background-color: #373637;
    padding: 2rem 2rem;
    text-align:center;
}

.row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.content {
    padding: 11% 0;
    margin: 0 auto;
}

.car {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 50%;
    transform: translate(-400%, 63%);
    will-change: transform;
}

p strong span {
    display: inline-block;
    position: relative;
    
}
p strong span i {
    display: inline-block;
    position: relative;
    font-style: normal;
    z-index: 1;
}
p strong span:before {
    display: block;
    content: "";
    width: 101%;
    height: 45px;
    background-color: #eae6e1;
    position: absolute;
    transform: rotate(-1deg);
    top: -4px;
    left: -2px;
}

.columns {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 6%;
    position: relative;
}
.col{flex: 0 0 calc(50% - 1rem);}

.columns:after {
    display: block;
    position: absolute;
    content: "";
    width: 4px;
    background-color:#575453;
    height: 90%;
    left: 50%;
    transform: rotate(-0.4deg);
    
}

.col img, img.header {
    margin-bottom: 1rem;
}
.col .content {
    padding: 10% 0 0;
    max-width: 550px;
}

a.btn {
    text-decoration: none;
    text-transform: uppercase;
    color: #373637;
    background-color: #f3ec19;
    display: block;
    font-weight: bold;
    line-height: 1;
    padding: 1.3rem 1rem;
    width: 100%;
    border-radius: 55px;
    max-width: 1250px;
    margin: 0 auto;
}

a.btn:hover {
    background-color: #d6d017;
}

.col .btn {
    
    max-width: 500px;
}

.heart, .smiley {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: sway 5s ease-in-out infinite;
    transform-origin: center center;
}
@keyframes sway {
    0% {
        transform: translate(-50%, -50%) rotate(-8deg);
    }

    50% {
        transform: translate(-50%, -50%) rotate(8deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-8deg);
    }
}
section.travel {
    padding: 40px 0 30px;
}

.people {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 3rem;
    position: relative;
}
.item{flex: 0 0 calc(25% - 1rem);}

.item .icons {line-height: 0.8;}

.item .icons a {
    display: inline-block;
}
.item .icons img {
    display: inline-block;
    margin: 20px 5px 5px;
}

.item .phone a {
    text-decoration: none;
    color: #373637;
    font-weight: 700;
    font-size:0.667rem;
}

video {
    cursor:pointer;
}

footer .logos{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}