@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    font-family: Inter;
}

body {
    margin:0;
}

header {
    height: 10vh;
    position: absolute;
    top: 0;
    left: 0;
    right:0;
    padding: 0 20px 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width:auto;
}

input {
    border: #04D484 solid 2px;
    padding:5px;
    font-size: 5vw;
    width:200px;
}

button {
    color: whitesmoke;
    font-weight: 500;
    font-size: 3vh;
    background-color:#27D959;
    border: #27D959 solid 3px;
    border-radius: 2.33vh;
    height: 7vh;
    width: 51vw;
    margin: auto;
}

button :hover {
    background-color: #1f6733;
    cursor: pointer;
}

.desktop-only {
    display: none;
}

.mobile-only {
    bottom: 1vh;
    position: fixed;
    left:0;
    right:0;
}

#logo-header {
    max-height: 100%;
}

#logo-header img {
    height: auto;
    max-width: 20vh;
}

#tlf-header {
    font-size: 3.5vw;
}

#main-image {
    left:0;
    height:25vh;
    width:100%;
    padding:0;
    margin-top:10vh;
}

#main-image img {
    padding:0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
}

#calculator-container {
    width:fit-content;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    font-size: 5vw;
}

#calculator-container div {
    margin: 5px;
    display: flex;
    flex-direction: column;
    align-items:start;
    margin-bottom:5vh;
}

#calculator-container div div {
    align-items: center;
    display: flex;
    flex-direction: row;
    margin:20px 0;
}

#calculator-container div div * {
    margin: 5px;
}

#price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

#price-container * {
    margin: 10px;
    font-size:4vh;
}

#price {
    font-size:5vh;
    font-weight: 600;
}

#calculator-container .margin-right {
    margin-right:50px;
}

#call-button {
    display:block;
    color: whitesmoke;
    text-decoration: none;
    font-weight: 500;
    font-size: 3vh;
    background-color:#13B505;
    border: #13B505 solid 3px;
    border-radius: 2.33vh;
    height: fit-content;
    width: fit-content;
    padding:20px;
    margin: auto;
    bottom: 0;
}