* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Lato', sans-serif;
}

p {
    line-height: 1.5;
    font-size: .9rem;
}

a {
    text-decoration: none;

}

li {
    list-style: none;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.7rem;
}

.gray-color {
    color: #8b8b8b;

}

.wide-container {
    width: 92%;
    margin: auto;
}

.container {
    width: 80%;
    margin: auto;
}


.orange-bg {
    background-color: #fd9800
}

.orange-txt {
    color: #fd9800;
}

.white-txt {
    color: #fff;
}

.grey-txt {
    color: #767575;
}

.main-btn {
    padding: 8px 16px;
    border-radius: 12px;
    color: #fff;
    background: #fd9800;
    border: none;
    outline: none;
    cursor: pointer;
    border: 2px solid #fd9800;
    transition: ease 1s;
}

.main-btn:hover {
    transition: ease 1s;
    background-color: transparent;
    border: 2px solid #fd9800;
}

svg {
    transition: ease .5s;
}

svg:hover {
    color: #cd5e03;
    transition: ease .5s;
    transform: scale(1.2);
}