:root{
    --primary-color: #192233 !important;
    --secondary-color: #f0c202 !important;
    --genw-color: #fbfdfe !important;
}

@font-face {
    font-family: 'yeon';
    src: url("fonts/yeon.woff2") format("woff2"), url("fonts/yeon.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

/* :: 2.0 Import All CSS */
/* :: 3.0 Base CSS */
* {
    margin: 0;
    padding: 0;
    font-family: "yeon";
}

body {
    font-family: "yeon";
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #242424;
    line-height: 1.3;
    font-weight: 400;
}

p {
    color: #6d6d6d;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
}

a {
    -webkit-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
    text-decoration: none !important;
    outline: 0 solid transparent;
    color: var(--primary-color);
    font-weight: 400;
    font-size: 12px;
}

a:hover,
a:focus {
    -webkit-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
    text-decoration: none;
    outline: 0 solid transparent;
    color: var(--primary-color);
    font-weight: 400;
    font-size: 12px;
}

ul,
ol {
    margin: 0;
}

ul li,
ol li {
    list-style: none;
}

.neo {
    border-radius: 10px !important;
    justify-content: center !important;
    transition: all ease-in-out 0.3s !important;
}

.neo-bulge {
    box-shadow:
        12px 12px 16px 0 rgba(0, 0, 0, .1) inset,
        -8px -8px 12px 0 rgba(0, 0, 0, .1) inset !important;
}

.neo-pressed {
    box-shadow:
        inset 6px 6px 10px 0 rgba(0, 0, 0, 0.2),
        inset -6px -6px 10px 0 rgba(255, 255, 255, 0.5) !important;
}

.neo-hen {
    box-shadow: 6px 6px 14px 0 rgba(0, 0, 0, 0.2),
        -8px -8px 18px 0 rgba(255, 255, 255, 0.55) !important;
}

.navbar-toggler {
    background-color: var(--secondary-color);
    border-radius: 0;
    margin-bottom: 15px;
}

.navbar-toggler i {
    font-size: 12px;
    color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .navbar {
        display: block;
    }
}

.mobile-nav {
    position: fixed;
    width: 100%;
    height: 60px;
    background-color: #fff;
    z-index: 3000;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.5em 2em;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    display: none;
}

@media only screen and (max-width: 767px) {
    .mobile-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.mobile-nav .amado-navbar-brand {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70px;
    flex: 0 0 70px;
    max-width: 70px;
}

.mobile-nav .amado-navbar-brand a {
    display: block;
    max-width: 70px;
}

.mobile-nav .amado-navbar-toggler {
    cursor: pointer;
}

.mobile-nav .amado-navbar-toggler i {
    font-size: 28px;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
    padding: 30px 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    padding-bottom: 40px;
}

.section-header h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    margin: 0;
    color: #4154f1;
    text-transform: uppercase;
}

.section-header p {
    margin: 10px 0 0 0;
    padding: 0;
    font-size: 38px;
    line-height: 42px;
    font-weight: 700;
    color: #012970;
}

@media (max-width: 768px) {
    .section-header p {
        font-size: 28px;
        line-height: 32px;
    }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border-top: 6px solid var(--primary-color);
    border-bottom: 6px solid var(--primary-color);
    border-left: 6px solid #dcf5f2;
    border-right: 6px solid #dcf5f2;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ScrollUp */
#scrollUp {
    background-color: var(--primary-color);
    border-radius: 10px;
    bottom: 60px;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-size: 24px;
    height: 40px;
    line-height: 40px;
    right: 60px;
    text-align: center;
    width: 40px;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    font-size: 12px;
}

#scrollUp:hover {
    background-color: var(--primary-color);
}

@media only screen and (max-width: 767px) {
    #scrollUp {
        bottom: 30px;
        right: 30px;
    }
}

/* :: 5.0 Welcome Area CSS */
.main-content-wrapper {
    position: relative;
    z-index: 1;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
    .main-content-wrapper {
        margin-top: 70px;
        z-index: 100;
    }
}

.main-content-wrapper .header-area {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    position: relative;
    z-index: 1;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 320px;
    flex: 0 0 320px;
    width: 320px;
    max-width: 320px;
    background-color: #fff;
    padding: 60px 75px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-content-wrapper .header-area {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 280px;
        flex: 0 0 280px;
        width: 280px;
        max-width: 280px;
        padding: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .main-content-wrapper .header-area {
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 320px;
        flex: 0 0 320px;
        width: 100%;
        max-width: 100%;
        position: fixed;
        z-index: 4000;
        top: 0;
        left: -100%;
        height: 100%;
        overflow-x: hidden;
        overflow-y: scroll;
        display: block;
    }
}

.main-content-wrapper .header-area.bp-xs-on {
    left: 0;
}

.main-content-wrapper .header-area .nav-close {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    position: absolute;
    top: 10px;
    right: 15px;
    text-align: center;
    color: var(--primary-color);
    line-height: 40px;
    font-size: 25px;
    cursor: pointer;
    display: none;
}

@media only screen and (max-width: 767px) {
    .main-content-wrapper .header-area .nav-close {
        display: block;
    }
}

.main-content-wrapper .header-area .nav-close:hover {
    background-color: var(--primary-color);
}

.main-content-wrapper .header-area .logo {
    margin-bottom: 100px;
    display: block;
}

.main-content-wrapper .header-area .amado-nav li a {
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    padding: 20px 0;
    display: block;
    line-height: 0.9;
    color: var(--primary-color);
    font-weight: bold;
}

.main-content-wrapper .header-area .amado-nav li a::after {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    width: 30px;
    height: 3px;
    position: absolute;
    top: 50%;
    margin-top: -1.5px;
    left: -150px;
    background-color: var(--secondary-color);
    z-index: 10;
    content: '';
}

.main-content-wrapper .header-area .amado-nav li a:hover,
.main-content-wrapper .header-area .amado-nav li a:focus {
    color: var(--secondary-color);
}

.main-content-wrapper .header-area .amado-nav li:hover a::after,
.main-content-wrapper .header-area .amado-nav li:focus a::after {
    left: -75px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .main-content-wrapper .header-area .amado-nav li:hover a::after,
    .main-content-wrapper .header-area .amado-nav li:focus a::after {
        left: -50px;
    }
}

.main-content-wrapper .header-area .amado-nav li.active a::after {
    left: -75px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-content-wrapper .header-area .amado-nav li.active a::after {
        left: -50px;
    }
}

.main-content-wrapper .header-area .amado-btn-group .amado-btn {
    width: 160px;
    display: block;
}

.main-content-wrapper .header-area .social-info a {
    color: #b5b5b5;
    display: inline-block;
}

.main-content-wrapper .header-area .social-info a i {
    font-size: 32px;
}

.main-content-wrapper .header-area .social-info a:hover,
.main-content-wrapper .header-area .social-info a:focus {
    color: var(--secondary-color);
}

@media only screen and (max-width: 767px) {
    .main-content-wrapper .header-area .social-info {
        margin-bottom: 75px;
    }
}

.main-content-wrapper .products-catagories-area {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 320px);
    flex: 0 0 calc(100% - 320px);
    width: calc(100% - 320px);
    max-width: calc(100% - 320px);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-content-wrapper .products-catagories-area {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 280px);
        flex: 0 0 calc(100% - 280px);
        width: calc(100% - 280px);
        max-width: calc(100% - 280px);
    }
}

@media only screen and (max-width: 767px) {
    .main-content-wrapper .products-catagories-area {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
}

.main-content-wrapper .single-product-area {
    position: relative;
    z-index: 1;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(95% - 320px);
    flex: 0 0 calc(95% - 320px);
    width: calc(95% - 320px);
    max-width: calc(95% - 320px);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main-content-wrapper .single-product-area {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 320px);
        flex: 0 0 calc(100% - 320px);
        width: calc(100% - 320px);
        max-width: calc(100% - 320px);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-content-wrapper .single-product-area {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 280px);
        flex: 0 0 calc(100% - 280px);
        width: calc(100% - 280px);
        max-width: calc(100% - 280px);
    }
}

@media only screen and (max-width: 767px) {
    .main-content-wrapper .single-product-area {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        padding-top: 0;
    }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid rgba(255, 255, 255, 0.12);
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 45px;
    color: var(--primary-color);
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: rgba(255, 255, 255, 0.25);
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 0 15px;
    padding: 20px 20px 60px 20px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: gray;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
/* .portfolio-details { */
/* padding-top: 40px; */
/* } */

.portfolio-details .portfolio-details-slider img {
    width: 100%;
    height: 75vh !important;
    object-fit: cover;
}

.portfolio-details .portfolio-details-slider video {
    width: 100%;
    height: 75vh !important;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

@media(max-width: 768px) {
    .portfolio-details .portfolio-details-slider img {
        width: 100%;
        height: 50vh;
    }

    .portfolio-details .portfolio-info h3 {
        font-size: 16px;
    }
}

/* ================================
#word card
==================================*/
.work-card{
    margin-bottom: 50px !important;
}

.work-card:hover .card img {
    transition: all ease-in-out .1s;
    opacity: .3;
}

.work-card:hover .card video {
    transition: all ease-in-out .1s;
    opacity: .3;
}

.work-card .card {
    /* border-radius: 15px; */
    overflow: hidden;
    transition: all ease-in-out .1s;
}
.work-card .card img {
    height: 22em !important;
    object-fit: contain;
    /* border-radius: 15px; */
}

.work-card .card video {
    height: 22em !important;
    border-radius: 15px;
}

@media(max-width: 767px) {
    .work-card .card video {
        height: 12em !important;
    }
    .work-card .card img {
        height: 12em !important;
    }
    .work-card .card .card-title {
        font-size: 15px !important;
    }
}

/* ================================
#footer
==================================*/
#footer {
    background-color: var(--primary-color);
    padding: 1em;
}

@media(max-width: 767px) {
    #footer .copyright {
        font-size: 14px !important;
    }
}