@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --whiteColor: #ffffff;
    --lightWhiteColor: #f0f3f5;
    --darkRedColor: rgb(26, 167, 233);
    --mediumGray: #c9cdcf;
    --darkGrayColor: #686c6e;
    --lightBlackColor: #383a3b;
    --fs14: 1.4rem;
    --fs18: 1.8rem;
    --fs24: 2.4rem;
    --transition: all .3s ease;
    --boxColor: #545252;
    --bodyColor: #294F63;
    --subDetailColor: #acafb0;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.5;
    background-color: var(--bodyColor);
}

ul {
    list-style: none;
}

a {
    color: var(--darkRedColor);
    text-decoration: none;
    transition: var(--transition);
}

a:hover{ 
    text-decoration: underline;
}

img {
    display: block;
    max-width: 100%;
}

input {
    border: none;
    outline: none;
}

input:focus::placeholder {
    opacity: 0;
}

.btn {
    padding: .7rem 1rem;
    border-radius: .3rem;
    cursor: pointer;
    font-size: var(--fs14);
    font-weight: 500;
    text-align: center;
    height: 3.6rem;
}

.btn:hover {
    text-decoration: none;
}

.btn-red{
    background-color: var(--darkRedColor);
    border: 0.1rem solid var(--darkRedColor);
    color: var(--lightWhiteColor);
}

.btn-red:hover {
    background-color: #0c4560;
    background-color: #0c4560;
    border: 0.1rem solid ;

}

.btn-white {
    border: 0.2rem solid var(--mediumGray);
    color: var(--lightWhiteColor);
}

.btn-white:hover {
    border-color: var(--darkGrayColor);
}

main{
    padding: 12rem 0.5rem 2rem 0.5rem;
}

@media (min-width: 768px) {
    main {
        padding-top: 1rem;
    }
}

.container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

@media(min-width: 1300px) and (max-width: 1599px){
    .container{
        width: 1200px;
    }
}





