* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth
}

@font-face {
    font-family: "Poppins", sans-serif;
    src: url(../fonts/Poppins/Poppins-Regular.ttf)
}

@font-face {
    font-family: "Sora", sans-serif;
    src: url(../fonts/Sora/Sora-VariableFont_wght.ttf)
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #f0f8ff;
    font-size: 15px
}

h5 {
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 500
}

@media(max-width: 500px) {
    h5 {
        font-size: 18px
    }
}

p {
    color: #615d5d
}

.container {
    width: 100%;
    max-width: 1340px;
    padding: 0px 20px;
    margin: 0 auto
}

img {
    width: 100%
}

ul li {
    list-style: none
}

a {
    text-decoration: none
}

.section-padding {
    padding: 100px 0
}

@media(max-width: 500px) {
    .section-padding {
        padding: 50px 0
    }
}

.primary-btn {
    border: none;
    background-color: rgba(0, 0, 0, 0)
}

.primary-btn a {
    background-color: #041b34;
    color: #fff;
    padding: 10px 25px;
    font-family: "Poppins", sans-serif;
    border-radius: 30px;
    display: block;
    position: relative;
    z-index: 1;
    text-transform: capitalize;
    font-size: 18px
}

.primary-btn a::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #dda03e;
    border-radius: 30px;
    transition: all .3s linear;
    z-index: -1
}

.primary-btn a:hover::before {
    width: 100%
}

.tagline {
    display: flex;
    align-items: center;
    gap: 10px
}

.tagline svg {
    width: 20px;
    fill: #dda03e
}

.section-heading {
    font-size: 60px;
    color: #999;
    text-transform: uppercase;
    line-height: 1.2
}

.section-heading span {
    display: block;
    color: #041b34
}