/* LIGHT */
@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/Segoe\ UI\ Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

/* LIGHT ITALIC */
@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/Segoe\ UI\ LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
}

/* REGULAR */
@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/Segoe\ UI.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

/* ITALIC */
@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/Segoe\ UI\ Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}

/* SEMILIGHT */
@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/Segoe\ UI\ Semilight.ttf") format("truetype");
    font-weight: 350;
    font-style: normal;
}

/* SEMILIGHT ITALIC */
@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/Segoe\ UI\ SemiLightItalic.ttf") format("truetype");
    font-weight: 350;
    font-style: italic;
}

/* SEMIBOLD */
@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/Segoe\ UI\ Semibold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

/* SEMIBOLD ITALIC */
@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/Segoe\ UI\ Semibold\ Italic.ttf") format("truetype");
    font-weight: 600;
    font-style: italic;
}

/* BOLD */
@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/Segoe\ UI\ Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

/* BOLD ITALIC */
@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/Segoe\ UI\ BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}

/* BLACK */
@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/Segoe\ UI\ Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

/* BLACK ITALIC */
@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/Segoe\ UI\ BlackItalic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
}


*{
    margin: 0;
    padding: 0;
}

body {
  font-family: "Segoe UI", sans-serif;
  font-size: 24px;
  color: #241E1A;
}
.container{
    max-width: 1240px;
}
header{
    font-size: 16px;
    position: relative;
}
.nav-link{
    color: #000000;
}
.btn{
    background-color: #FD5A13;
    border-radius: 16px;
    padding: 16px 24px;
    width: fit-content;
    color: #ffffff;
}
.navbar-toggler-icon{
    background: url(../images/burger.png), center/cover no-repeat;
    height: 20px;
    width: 30px;
}
header .navbar {
    width: 100%;
}
header .collapse.show {
    display: block !important;
}
.d-flex {
    display: flex !important;
}
section{
    margin-bottom: 70px;
}
h1{
    color: #FD5A13;
    font-size: 40px;
    font-weight: 700;
}
h2{
    font-weight: 600;
    font-size: 32px;
}
h2 span{
    color: #FD5A13;
}
.card{
    background-color: #FFD9C8;
    font-size: 16px;
    padding: 24px 16px;
    border: none;
    border-radius: 16px;
    max-width: 400px;
    width: 100%;
}
.card-ico{
    width: 56px;
    height: 56px;
}
.card .paso{
    font-weight: 300;
    color: #756457;
}
.card .title{
    color: #FD5A13;
    font-size: 20px;
    font-weight: 600;
}
.card p{
    margin: 0;
}
.semi-bold{
    font-weight: 400;
}
.small-banner{
    background: linear-gradient(rgba(194, 59, 1, 0.8),rgba(194, 59, 1, 0.8)), url(../images/christmas-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 24px 0;
    color: #ffffff !important;
}
.btn.invert{
    background-color: #ffffff;
    color: #FD5A13;
    max-width: 295px;
    width: 100%;
}
footer{
    background-color: #FFF2EC;
    color: #000000;
    font-size: 14px;
    font-weight: 400;
}
footer a{
    color: #000;
    text-decoration: none;
}
footer .list-unstyled a{
    font-size: 16px;
}
.copyright{
    color: #FD5A13;
}
.link{
    color: #FD5A13;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 300;
}
.plus{
    width: 32px;
}
@media screen and (max-width: 991px) {
        header .navbar-collapse {
        position: absolute !important;
        width: 100%;
        background-color: #ffffff;
        z-index: 10;
        top: 12px;
    }
    .nav-link{
        padding: 10px;
    }
}
@media screen and (max-width: 516px){
    body{
        font-size: 16px;
    }
    header .btn{
        display: none !important;
    }
    h1{
        font-size: 30px;
    }
    h2{
        font-size: 24px;
    }
    .plus{
        width: 24px;
    }
    section{
        margin-bottom: 40px;
    }
    .card-ico{
        width: 36px;
        height: 36px;
    }
    .card .title{
        font-size: 16px;
    }
}
