/*
font-family: 'Montserrat', sans-serif;
*/

/* base styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

body {
    font-family: 'Montserrat', sans-serif;
    min-width: 320px;
}

.container {
    width: 100%;
    max-width: 1140px;
    padding: 0 15px;
    margin: 0 auto;
}

/* base styles end */

/* header */

.header {
    background: url('../img/header-bg.jpg') no-repeat center / cover;
    height: 570px;
}

.nav {
    background: #f8f8f8;
    padding: 7px 0;
    box-shadow: 0 0 7px 0 rgba(58, 31, 12, 0.35);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-list {
    display: flex;
}

.nav-list a {
    margin-left: 30px;
    color: #4e4e4e;
}

.nav-list a:hover {
    color: #3855f8;
}

.logo {
    display: flex;
    align-items: center;
    color: #092df8;
}

.logo img {
    margin-right: 20px;
}

/* header end */

/* services */

.services {
    padding: 50px 0;
}

.services-container {
    display: flex;
    justify-content: space-between;
}

.card {
    box-shadow: 0 0 15px 0 #eadcd6;
    width: 255px;
    padding: 50px 0 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card h3 {
    font-weight: 700;
    font-size: 18px;
    color: #3855f8;
    width: min-content;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.5;
}

.line {
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent, #3855f8, transparent);
    margin-bottom: 30px;
}

.more {
    color: #fff;
    background: #3855f8;
    margin-top: 25px;
    padding: 12px 47px;
    border: 3px solid transparent;
    transition: 0.3s background;
    display: inline-block;
}

.more:hover {
    color: #3855f8;
    background: #fff;
    border: 3px solid #3855f8;
}

/* services end */

/* info */

.info {
    padding: 50px 0 100px;
}

.info .container {
    display: flex;
    justify-content: space-between;
}

.info-left {
    width: 730px;
}

.info-right {
    width: 255px;
}

.info h2 {
    margin-bottom: 50px;
    font-weight: 700;
    font-size: 30px;
    color: #5e5e5e;
}

.info-left p {
    margin-bottom: 40px;
    font-size: 18px;
    color: #5e5e5e;
    line-height: 1.5;
}

.info-left .more {
    margin-top: 10px;
}

.info-link {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-link img {
    margin-right: 30px;
}

.info-link p {
    text-decoration: underline;
    font-size: 14px;
    color: #3855f8;
    line-height: 1.5;
}

/* info end */

/* footer */

.footer {
    padding: 70px 0;
    background: #3855f8;
    color: #fff;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer h2 {
    font-weight: 400;
    font-size: 30px;
    margin-bottom: 25px;
}

.footer-left a {
    font-size: 45px;
    margin-bottom: 15px;
    color: #fff;
    display: inline-block;
}

.footer-left p {
    font-size: 18px;
}

.footer-right {
    text-align: right;
}

.footer-right p {
    font-size: 20px;
    margin-bottom: 25px;
}

.footer-right a {
    font-size: 20px;
    color: #fff;
}

/* footer end */