@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root{
    --color-primary: #0077B6;
    --color-hover: #005fa3;
    --color-secondary: #90E0EF;
    --color-additional: #CAF0F8;
    --color-grey: #F0F0F0;
    --color-text: #656565;
} 
html{
    scroll-behavior: smooth;
}
body{
    background: linear-gradient(to right, #f8fbfd, #eef5f9);
}
body::before {
    content: "";
    display: block;
    height: 100px;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Poppins";
    text-decoration: none;
}
section{
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 50px;
    scroll-margin-top: 75px;
}
.container{
    width: 100%;
    max-width: 1500px;
    height: 100%;
    padding: 0 50px;
}
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  text-align: center;
}
.section-heading{
    font-size: 45px;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
  text-align: center;
}

.to-top {
    background-color: var(--color-primary);
    z-index: 10000;
    position: fixed;
    bottom: 16px;
    right: 18px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all .4s;
}
.to-top.active{
    bottom: 18px;
    pointer-events: auto;
    opacity: 1;
}
.to-top:hover{
    background-color: var(--color-additional);
}

@media (max-width: 550px){
    .section-heading{
        font-size: 40px;
    }
}
@media (max-width: 400px){
    .section-heading{
        font-size: 30px;
    }
}
@media (max-width: 380px){
    .container{
        padding: 0 30px;
    }
}