
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* RESET */
::-moz-selection {
    background: var(--dark-blue-color);
    color: #fff;
}
::selection {
    background: var(--dark-blue-color);
    color: #fff;
}
*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Inter Tight", sans-serif;
}
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
*:focus {
    outline: 0;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
/* width */
::-webkit-scrollbar {
    width: .5vw;
}
/* Track */
::-webkit-scrollbar-track {
    background: #fff;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--blue-color);
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--dark-blue-color);
}
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
    scrollbar-width: normal;
}
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: var(--white-color);
}

img {
    user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
a {
    text-decoration: none;
    display: inline-block;
    color: inherit;
    cursor: pointer;
}
button {
    cursor: pointer;
    outline: none;
    border: none;
    font-family: inherit;
}
button[disabled] {
    cursor: default;
}
p{
    color: var(--txt-color);
    font-size: 1.8rem;
    font-family: "Inter Tight", sans-serif;
}
a{
    color: var(--txt-color);
}
ul,
ol {
    list-style: none;
}
input,
textarea {
    font-family: inherit;
    resize: none;
}
/* HIDE ARROWS ON NUMBER INPUTS */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
/* UTILITIES */
:root {
    --white-color: #fff;
    --black-color: #000;
    --txt-color: #454A4E;
    --blue-color: #318CCC;
    --light-blue-color: #0F9ECE;
    --dark-blue-color: #154282;
    --red-color: #E7303A;
    --orange-color: #EF7D00;
    --yellow-color: #F2DD26;
}
.container {
    padding-left: 3rem;
    padding-right: 3rem;
    max-width: 150rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

section{
    position: relative;
    height: 100vh;
    background: linear-gradient(
        -110deg,
        #CFD1D2 17%,
        #FFFFFF 61%,
        #E6E7E8 85%,
        #CFD1D2 100%
    );
    overflow: hidden;
}

img{
    display: block;
}
.left-corner-graphic{
    position: absolute;
    left: 0;
    bottom: 0;
}
.right-corner-graphic{
    position: absolute;
    right: 0;
    top: 0;
}
.ladder{
    position: absolute;
    right: 13rem;
    bottom: 0;
}
.doniscale-logo{
    position: absolute;
    top: 2.8rem;
    left: 24rem;
}
.title{
    padding-top: 16rem;
    text-emphasis: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.title h1{
    font-size: 13.2rem;
    font-weight: normal;
    color: var(--txt-color);
    letter-spacing: 20px;
    margin-bottom: 2rem;
}
.title h1 span{
    font-size: 5.5rem;
    letter-spacing: 0px!important;
    color: var(--txt-color);
}
.title p{
    font-size: 2.7rem;
    text-align: center;
}
.catalogue-button{
    position: absolute;
    left: 24rem;
    bottom: 13rem;
}
.catalogue-button p{
    font-size: 2.8rem;
    color: var(--white-color);
    margin-bottom: 2.4rem;
}
.catalogue-button a{
    padding: 1.5rem 3.5rem;
    background-color: var(--white-color);
    color: var(--blue-color);
    display: flex;
    align-items: center;
    font-weight: 600;
    width: fit-content;
    gap: 1rem;
    font-size: 1.8rem;
    border-radius: 1rem;
}
@media (max-width: 1700px) {
    .left-corner-graphic img{
        max-width: 100rem;
    }
    .left-corner-graphic{
        bottom: -7rem;
    }
    .catalogue-button {
        position: absolute;
        left: 15rem;
        bottom: 4rem;
    }
    .ladder img{
        max-width: 25rem;
    }
}
@media (max-width: 600px) {
    .doniscale-logo{
        top: 2rem;
        left: 2rem;
    }
    .doniscale-logo img{
        max-width: 10rem;
    }
    .catalogue-button{
        left: 2rem;
        bottom: 8rem;
    }
    .right-corner-graphic img{
        max-width: 25rem;
    }
    .title h1{
        font-size: 7.7rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        letter-spacing: 10px;
    }
    .title h1 span{

        font-size: 3.2rem;
    }
    .title p{
        font-size: 1.8rem;
    }
    .ladder {
        right: -3rem;
    }
    .ladder img{
        max-width: 23rem;
    }
    .catalogue-button p{
        font-size: 2.2rem;
    }
    .catalogue-button a{
        font-size: 1.5rem 2.5rem;
        font-size: 1.6rem;
    }
}