﻿:root {
    --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway" sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*
  General Styling & Shared Classes
  --------------------------------
*/
body {
    color: var(--default-color);
    background-color: var(--light-color);
    font-family: var(--default-font);
}

a, a:visited {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    line-height: 1.2;
    margin: 0 0 0.5em 0;
}

p, .text-p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 1rem;
}

h1, .text-1 {
    font-size: 2.5rem; /* ~40px */
    font-weight: 700;
}

h2, .text-2 {
    font-size: 2rem; /* ~32px */
    font-weight: 700;
}

h3, .text-3 {
    font-size: 1.75rem; /* ~28px */
    font-weight: 700;
}

h4, .text-4 {
    font-size: 1.5rem; /* ~24px */
    font-weight: 700;
}

h5, .text-5 {
    font-size: 1.25rem; /* ~20px */
    font-weight: 700;
}

h6, .text-6 {
    font-size: 1rem; /* ~16px */
    font-weight: 700;
}

@media (min-width: 575px) {
    .w-md-50 {
        width: 50% !important;
    }
}


/* Buttons
------------------------------*/
.btn {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-primary {
    padding: 10px 24px 10px 24px;
    transition: 0.3s;
    /*    display: inline-flex;
*/ align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
}

    .btn-primary i {
        font-size: 18px;
        margin-left: 5px;
        line-height: 0;
        transition: 0.3s;
    }

    .btn-primary, .btn-primary:visited, .btn-primary:first-child:active {
        color: var(--light-color);
        background: var(--accent-color);
        border: unset;
    }

        .btn-primary:hover {
            background: color-mix(in srgb, var(--accent-color), transparent 20%);
        }

            .btn-primary:hover i {
                margin-left: 10px;
            }

.btn-primary-light {
    padding: 8px 40px 10px 40px;
    font-family: var(--heading-font);
}

    .btn-primary-light, .btn-primary-light:visited {
        color: var(--light-color);
        background: color-mix(in srgb, var(--light-color), transparent 85%);
    }

        .btn-primary-light:hover, .btn-primary-light:first-child:active, .btn-primary-light:focus {
            color: var(--accent-color);
            background: var(--light-color);
        }

        .btn-primary-light i {
            font-size: 14px;
        }

.btn-secondary {
    padding: 8px 35px 10px 35px;
    margin-top: 30px;
}

    .btn-secondary, .btn-secondary:visited {
        color: var(--light-color);
        background-color: transparent;
        border: 2px solid var(--light-color);
    }

        .btn-secondary:hover, .btn-secondary:active, .btn-secondary:first-child:active {
            background: var(--accent-color);
            border: 2px solid var(--accent-color);
        }

.btn-success, .btn-success:hover, .btn-success:focus {
    color: var(--light-color);
    background-color: var(--success-color);
    border-color: var(--success-color);
}

.btn-warning, .btn-warning:hover, .btn-warning:focus {
    color: var(--light-color);
    background-color: var(--warning-color);
    border-color: var(--warning-color);
}

.btn-danger, .btn-danger:hover, .btn-danger:focus {
    color: var(--light-color);
    background-color: var(--danger-color);
    border-color: var(--danger-color);
}


/* Form Loading
------------------------------*/
.form-submit .loading {
    display: none;
    background: var(--light-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

    .form-submit .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid var(--accent-color);
        border-top-color: var(--light-color);
        animation: form-loading 1s linear infinite;
    }

@keyframes form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*
  Global Sections
  ---------------
*/
section,
.section {
    color: var(--default-color);
    background-color: var(--light-color);
    padding: 60px 0;
    scroll-margin-top: 900px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*
  Global Section Titles
  ---------------------
*/
.section-title {
    padding-bottom: 60px;
    position: relative;
}

    .section-title h2 {
        font-size: 14px;
        font-weight: 500;
        padding: 0;
        line-height: 1px;
        margin: 0;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: color-mix(in srgb, var(--default-color), transparent 50%);
        position: relative;
    }

        .section-title h2::after {
            content: "";
            width: 120px;
            height: 1px;
            display: inline-block;
            background: var(--accent-color);
            margin: 4px 10px;
        }

    .section-title p {
        color: var(--heading-color);
        margin: 0;
        font-size: 36px;
        font-weight: 700;
        font-family: var(--nav-font);
        text-transform: uppercase;
    }

/*
  Disable aos animation delay on mobile devices
  ---------------------------------------------
*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

.img-fluid {
    object-fit: cover;
}

/*
  Preloader
  ---------
*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--light-color);
    transition: all 0.6s ease-out;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #ffffff;
        border-color: var(--accent-color) transparent var(--accent-color) transparent;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-preloader 1.5s linear infinite;
    }

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*
  Scroll Top Button
  -----------------
*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: var(--light-color);
        line-height: 0;
    }

    .scroll-top:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
        color: var(--light-color);
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
        bottom: 15px;
    }

.ct-p-32 {
    padding: 32px;
}

.ct-mt-16 {
    margin-top: 16px;
}

.ct-mt-32 {
    margin-top: 32px;
}

.ct-mt-24 {
    margin-top: 24px;
}

.ct-mt-48 {
    margin-top: 48px;
}

.ct-mt-64 {
    margin-top: 64px;
}

.ct-mb-16 {
    margin-bottom: 16px !important;
}

.ct-mb-12 {
    margin-bottom: 12px;
}

.ct-mb-23 {
    margin-bottom: 23px;
}

.ct-mb-24 {
    margin-bottom: 24px;
}

.ct-mb-32 {
    margin-bottom: 32px;
}

.ct-mb-40 {
    margin-bottom: 40px;
}

.ct-mb-48 {
    margin-bottom: 48px;
}

.ct-mb-64 {
    margin-bottom: 64px;
}

.ct-ms-42 {
    margin-left: 42px;
}

.gap-16 {
    gap: 16px;
}

.gap-48 {
    gap: 48px;
}

.wt-34 {
    width: 34px;
}

.wt-40 {
    width: 40px;
}

.wt-100 {
    width: 100px;
}

.m-wt-150 {
    min-width: 150px;
}

.wt-450 {
    width: 450px;
}

.wt-300 {
    width: 300px;
}

.wt-338 {
    width: 338px;
}

.wt-49 {
    width: 49%;
}

.m-wt-300 {
    min-width: 300px;
}

.m-wt-1500 {
    min-width: 1500px;
}

.ht-46 {
    height: 46px;
}

.ht-34 {
    height: 34px;
}

.ht-40 {
    height: 40px;
}

.ht-200 {
    height: 200px;
}

.ht-250 {
    height: 250px !important;
}

.mht-550 {
    max-height: 550px !important;
}

.lh-24 {
    line-height: 24px;
}

.lh-30 {
    line-height: 30px;
}

.is-invalid {
    border-color: red;
}

.invalid-feedback {
    color: red;
    font-size: 0.875em;
}

.list-type-disc {
    list-style-type: disc;
}

.d-none {
    display: none;
}

.d-block {
    display: block !important;
}

.ws-nowrap {
    white-space: nowrap;
}

.border-dashed {
    border-style: dashed !important;
}

.bg-gray-200 {
    background-color: var(--gray50);
}

/*--------------------------------------------------------------
# Form Control
--------------------------------------------------------------*/

.form-control {
    display: block;
    width: 100% !important;
    padding: .375rem .75rem !important;
    font-size: 1rem !important;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color) !important;
    -webkit-appearance: none !important;
    -moz-appearance: none;
    appearance: none !important;
    background-color: var(--bs-body-bg) !important;
    background-clip: padding-box !important;
    border: var(--bs-border-width) solid var(--bs-border-color) !important;
    border-radius: var(--bs-border-radius) !important;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.mark, mark {
    padding: .1875em;
    color: var(--bs-highlight-color);
    background-color: transparent;
}

.dropdown-toggle::after {
    margin-top: 6px;
    float: right;
    /* border-top: .5em solid;
    border-right: .5em solid transparent;
    border-left: .5em solid transparent;*/
    width: .8em;
    height: .8em;
    content: "";
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-size: contain;
    border: none;
}