/*--------------------------------------------------------------
# Root
--------------------------------------------------------------*/
/* Fonts */
:root {
    --font-default: "Poppins", "Roboto", sans-serif;
}

/* Colors */
:root {
    --color-black: #000;
    --color-white: #fff;
    --color-primary: #1c7bd4;
    --color-secondary: #738799;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: var(--font-default);
    color: var(--color-black);
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

/*--------------------------------------------------------------
# Override Some Default BootStrap Stylings
--------------------------------------------------------------*/
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 0 24px 0 #00000028;
    transition: 0.3s;
}

.card .card-img-top {
    border-radius: 15px 15px 0 0;
}

.card:hover {
    transform: scale(1.08);
}

.btn {
    z-index: 1;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    padding: 12px 36px;
    border-radius: 15px;
    transition: 0.5s;
    color: var(--color-white);
    background: var(--color-primary);
}

.btn:hover {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 8px 12px #1270ce4d;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    background: var(--color-white);
    transition: all 0.5s;
    z-index: 999;
    height: 90px;
    border-bottom: 1px solid var(--color-white);
    box-shadow: 0px 0 30px #00000052;
}

.header .logo h1 {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.header .btn-login,
.header .btn-login:focus {
    font-size: 14px;
    width: 125px;
    display: flex;
    margin: 0 3px;
    justify-content: center;
    color: var(--color-white);
    background: var(--color-primary);
    padding: 12px 36px;
    border-radius: 15px;
    transition: 0.3s;
}

.header .btn-login:hover {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 8px 12px #1270ce4d;
}

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar ul li {
    padding: 10px 0 10px 28px;
}

.navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 16px;
    font-weight: 600;
    color: #7f7f90;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
}

.navbar a:hover,
.navbar .active {
    color: var(--color-primary);
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
    scroll-margin-top: 30px;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title p {
    margin: 0;
    font-size: 48px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--color-primary);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero:before {
    content: "";
    position: absolute;
    background-color: #0000007e;
    inset: 0;
}

.hero {
    width: 100%;
    background-size: cover;
    position: relative;
    height: 100vh;
    padding: 160px 0 60px 0;
}

.hero h2 {
    z-index: 1;
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-white);
    text-transform: uppercase;
}

.hero p {
    z-index: 1;
    color: var(--color-white);
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 30px;
}

.hero .btn-login {
    z-index: 1;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    padding: 12px 36px;
    border-radius: 15px;
    transition: 0.5s;
    color: var(--color-white);
    background: var(--color-primary);
}

.hero .btn-login:hover {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    background: var(--color-white);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
    height: 600px;
    background-size: cover;
    border-radius: 15px;
}

.about h3 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 30px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding: 0 0 8px 26px;
    position: relative;
    text-align: justify;
}

.about .content ul i {
    position: absolute;
    font-size: 20px;
    left: 0;
    top: -3px;
    color: var(--color-primary);
}

.about .content p {
    text-align: justify;
}

/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/
.products .nav-tabs {
    border: 0;
    margin: 0 0 20px 0;
}

.products .nav-link {
    margin: 0 10px;
    padding: 10px 5px;
    transition: 0.3s;
    color: var(--color-secondary);
    border-radius: 0;
    cursor: pointer;
    height: 100%;
    border: 0;
}

.products .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

.products .nav-link h4 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.products .nav-link:hover {
    color: var(--color-primary);
}

.products .nav-link.active {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.products .tab-content .products-item {
    text-align: center;
}

.products .tab-content .products-item .products-img {
    padding: 0 60px;
    margin-bottom: 15px;
}

.products .tab-content .products-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.products .tab-content .products-item h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-black);
    font-weight: 30px;
    margin-bottom: 5px;
}

.products .tab-content .products-item .description {
    font-family: var(--font-secondary);
    color: #8d8d9b;
    margin-bottom: 5px;
}

.products .tab-content .products-item .price {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-primary);
}

/*--------------------------------------------------------------
# Customer Service Section
--------------------------------------------------------------*/
.customer-service .customer-service-worker {
    text-align: center;
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 0 24px 0 #00000028;
    transition: 0.3s;
}

.customer-service .customer-service-worker .worker-img img {
    width: 416px;
    height: 277px;
    border-radius: 15px 15px 0 0;
    object-fit: cover;
}

.customer-service .customer-service-worker .worker-info {
    padding: 10px 15px 20px 15px;
}

.customer-service .customer-service-worker .worker-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: var(--color-black);
}

.customer-service .customer-service-worker .worker-info span {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: var(--color-secondary);
}

.customer-service .customer-service-worker .worker-info p {
    font-style: italic;
    font-size: 14px;
    padding-top: 15px;
    line-height: 26px;
    color: var(--color-secondary);
}

.customer-service .customer-service-worker:hover {
    transform: scale(1.08);
    box-shadow: 0px 0 30px #37373f26;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info {
    padding: 30px;
    background: var(--color-white);
    width: 100%;
    box-shadow: 0px 0 30px #37373f26;
    border-radius: 15px;
}

.contact .info iframe {
    width: 100% !important;
    height: 450px !important;
    border-radius: 15px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    font-size: 14px;
    background-color: var(--color-primary);
    padding: 50px 0;
    color: var(--color-white);
}

.footer .footer-logo h2 {
    font-weight: bold;
    margin: 0 0 15px 0;
    padding-bottom: 5px;
    text-transform: uppercase;
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 5px;
}

.footer .footer-link {
    margin-bottom: 30px;
}

.footer .footer-link ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-link ul li {
    padding: 0;
    display: flex;
    align-items: center;
}

.footer .footer-link ul a {
    color: var(--color-white);
    margin: 0 0 0 5px;
    display: inline-block;
}

.footer .social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-white);
    font-size: 16px;
    color: var(--color-white);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-media a:hover {
    color: var(--color-primary);
    background: var(--color-white);
}

.footer .copyright {
    text-align: center;
    padding-top: 30px;
}

.footer .copyright span {
    text-transform: uppercase;
}
