@import url('https://fonts.googleapis.com/css2?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');

/* font-family: "Poppins", sans-serif; */

@import url('https://fonts.googleapis.com/css2?family=Judson:ital,wght@0,400;0,700;1,400&display=swap');


/*   font-family: "Judson", serif; */



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

ul,
li {
    list-style: none;
}

html,
body {

    font-family: "Poppins", sans-serif;
    overflow-x: hidden;

}

a {
    display: inline-block;
    text-decoration: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

svg {
    display: block;
    pointer-events: none;
}

figure {
    display: inline-block;
    overflow: hidden;
}

button {
    border: none;
    outline: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
    align-items: stretch;

}

.col {
    padding: 0 15px;

}

.col-100 {
    width: 100%;
}

.col-50 {
    width: 50%;
}

.col-33 {
    width: 33.33%;
}

.col-25 {
    width: 25%;
}

.col-30 {
    width: 30%;
}

.col-20 {
    width: 20%;
}



:root {
 
    --black: #000000;
    --orange: #F08526;
    --dark_blue: #0B125A;
    --color-bg: #050a39;
    --white: #FFFFFF;
    --purple: #EDE1F3;
    --cream-orange: #FFE8D2;
    --color-grey: #f5f7f9;
    --judson: "Judson", serif;
    --poppins: "Poppins", sans-serif;
}