    @font-face {
    font-family: "classico-urw";
    src: url("../assets/fonts/classico-urw.otf");
}

@font-face {
    font-family: "whitney";
    src: url("../assets/fonts/whitney-2-cufonfonts/whitneybook.otf");
    font-weight: 400;
}
@font-face {
    font-family: "whitney";
    src: url("../assets/fonts/whitney-2-cufonfonts/whitneylight.otf");
    font-weight: 200;
}
@font-face {
    font-family: "whitney";
    src: url("../assets/fonts/whitney-2-cufonfonts/whitneymedium.otf");
    font-weight: 500;
}
@font-face {
    font-family: "whitney";
    src: url("../assets/fonts/whitney-2-cufonfonts/whitneybold.otf");
    font-weight: 700;
}
@font-face {
    font-family: "whitney";
    src: url("../assets/fonts/whitney-2-cufonfonts/whitneysemibold.otf");
    font-weight: 600;
}

html,
body {
    padding: 0;
    margin: 0;
    font-family: "classico-urw", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue,
        sans-serif;
    min-height: 100%;
    min-width: 100%;
}

p {
    font-family: "whitney";
}

a {
    color: inherit;
    text-decoration: none;
}

* {
    box-sizing: border-box;
}

/* nav item */
.nav-item {
    position: relative;
}

.nav-item::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    height: 1px;
    width: 0;
    transition: width 300ms;
}

.nav-item:hover::after {
    width: 100%;
}

.container {
    margin: auto;
    padding: 1rem;
}

/* input */
.input-row {
    padding: 1rem 0;
}

.input-row input,
.input-row textarea {
    width: 100%;
    color: #495057;
    background: none;
    border-bottom: 1px solid;
    padding: 0.5rem;
}

.input-row label {
    display: block;
    width: 100%;
    text-align: left;
    font-weight: 700;
}

.input-row input::placeholder,
.input-row textarea::placeholder {
    color: #495057;
}

.input-row input:focus,
.input-row textarea:focus {
    outline: none;
    border-bottom: 1px solid;
}

/* button */

.btn {
    padding: 0.2rem 2rem;
    display: inline-block;
    width: fit-content;
    transition: background 300ms, color 300ms;
}
.btn.btn-primary {
    background: #6b6b87;
    color: #fff;
}

.btn.btn-orange {
    background: #f1a74e;
    color: #fff;
}

/* slider */
.swiper-slide {
    opacity: 0 !important;
}

.swiper-slide.swiper-slide-active {
    opacity: 1 !important;
}

.showcase-slider img {
    display: block;
    margin: auto;
}

.swiper-button-prev,
.swiper-button-next {
    color: #4b6079 !important;
}
