* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    
}
body {
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}
h1, h2, h3 {
    color: #E5383B;
}

p {
    color: #fff;
}
a {
    text-decoration: none;   
}
/* Navigatsioon*/
.tekst-peamine {
    color: #ff2f00;
}
.lehelogo {
    padding: 0 12px;
}
.nav {
    background: #0B090A;
    color: #fff;
    position: sticky;
    top: 0;
    padding: 8px;
    display: flex;
    justify-content:space-between;

}
.nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav ul li a {
    color: #fff;
    padding: 12px;
    margin: 0 4px;
}
.nav ul li a:hover {
    background-color: #E5383B;
    border-radius: 12px;
}
/* Header*/
#showcase {
    background: #0B090A url(homepage.jpg);
    background-repeat: no-repeat;
    height: 100vh;
    
}
#showcase .showcase-content {
    height: 100%;
    padding: 0 24px;
    background-color: rgba(0,0,0,0.5);
}
#showcase .showcase-text {
    display: flex;
    width: 50%;
    padding: 0 24px;
    flex-direction: column;
    text-align: start;
    justify-content: center;
    height: 100%;
}
.l-heading {
    font-size: 56px;
    margin-bottom: 12px;
    line-height: 1.1;
}
.m-heading {
    font-size: 32px;
    margin-bottom: 12px;
    line-height: 1.1;
}

.text {
    font-size: 16px;
    margin-bottom: 32px;
}
.btn {
    display: inline-block;
    padding: 8px 32px;
    border: none;
    border-radius: 5px;
    
}
.btn-primary {
    background-color: #0B090A;
    color: #fff;
}
.btn-primary:hover {
    background-color: #E5383B;
}
.btn-dark {
    background: #333;
    color: #F5F3F4;
}
.btn-dark:hover {
    background: #E5383B;
}
.bg-dark {
    background: #161A1D;
    color: #fff;
}
.bg-primary {
    background-color:#0B090A ;
    color: #F5F3F4;
}
/* Home*/

#home .items {
    display: flex;
}
#home .items .item {
    flex: 1;
}
#home .items .item i {
    background: #E5383B;
    border-radius: 50%;
    margin: 16px;
    font-size: 22px;
    padding: 24px;
}
.text-center {
    text-align: center;
}

.py-1 {
    padding: 16px 0;
}
.p-1 {
    padding: 16px ;
}
/* Team*/

#team {
    display: flex;
}
#team div {
    flex: 1;
}
#team .team-img {
    background: url(Teamphoto.jpg) no-repeat center center/cover;
}
#team ul {
    list-style: none;
    margin: 8px 0;
}
#team ul li {
    padding: 8px 0;
    border-bottom: #F5F3F4 dotted 1px;
}
/* Clients*/

#clients .items {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}
#clients .items img {
    display: block;
    width: 60%;
    margin: auto;
}
/* Contact*/

#contact {
    display: flex;
}
#contact .contact-form, #contact .contact-map {
flex: 1;
}
#contact .contact-form .form-group {
    margin: 12px;
}
#contact .contact-form .form-group label {
    display: block;
}
#contact .contact-form .form-group input, #contact .contact-form .form-group textarea{
    width: 100%;
    padding: 8px;
    border: none;
}
#contact .contact-form .form-group input:focus, #contact .contact-form .form-group textarea:focus {
    outline: none;
    border: #333 solid 1px;
}
.contact-map {
    background: url(maps.jpg)no-repeat center center/cover;
}