.calc {
    display: flex;
    justify-content: space-around;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.calc .left {
    font-family: "Cairo", sans-serif;
    font-size: 24px;
    color: #062164;
    text-transform: uppercase;
    font-weight: bold;
    margin: auto 0;
}

.calc .calculator {
    display: flex;
    justify-content: space-around;
    width: 75%;
}

.calc .calculator .content .title {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 14px;
    color: #062164;
    text-transform: uppercase;
    margin-top: 10px;
}

.calc .calculator .content input,
.calc .calculator .content select {
    background-color: #0bb57c;
    border: none;
    border-radius: 3px;
    color: #ffffff;
    padding: 5px;
}