@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');

/* variables and defaul css */
:root {
    --primary: #0C4E4C;
    --hover: #073332;
    --yellow: #FAD106;
    --yellowHover: #caa900;
    --white: #fff;
    --transition: .3s ease-in-out;
    --padding: 100px 0;
}


body,
html {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    background-color: white;
}

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

button,
input {
    outline: none !important;
}

a {
    text-decoration: none;
}

.custom-container {
    width: 85%;
    margin: auto;
}

.text-righted {
    text-align: right;
}

h2.title {
    font-size: 1.8em;
    font-weight: 600;
    color: rgb(0, 0, 0);
}

p.sub {
    font-size: 0.88rem;
    color: rgb(94, 94, 94);
    line-height: 24px;
    font-weight: 500;
}

/* media qeury */
@media(max-width : 900px) {
    h2.title {
        font-size: 1.4em;
    }

    p.sub {
        font-size: 0.85rem;
    }
}

/* 4k resolution */

@media screen and (min-width: 1400px) {
    .custom-container {
        width: 80%;
    }
}

@media screen and (min-width: 1600px) {
    .custom-container {
        width: 80%;
    }
}

@media screen and (min-width: 1900px) {
    .custom-container {
        width: 1870px;
    }
}