// Flatly 5.3.3
// Bootswatch


// Variables

$web-font-path: "https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400&display=swap" !default;
@if $web-font-path {
}

// Navs

.pagination {
  a:hover {
    text-decoration: none;
  }
}

// Indicators

.badge {
  &.bg-light {
    color: $dark;
  }
}

.alert {
  color: $white;
  border: none;

  a,
  .alert-link {
    color: $white;
    text-decoration: underline;
  }

  @each $color, $value in $theme-colors {
    &-#{$color} {
      @if $enable-gradients {
        background: $value linear-gradient(180deg, mix($body-bg, $value, 15%), $value) repeat-x;
      } @else {
        background-color: $value;
      }
    }
  }

  &-light {
    &,
    a,
    .alert-link {
      color: $body-color;
    }
  }
}

// Containers

.modal,
.toast,
.offcanvas {
  .btn-close {
    background-image: escape-svg(url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$black}'><path d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/></svg>"));
  }
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

@media (max-width: 991.98px) {

    .is-navbar .navbar-brand {
        max-width: calc(100% - 60px);
    }

    .is-logo {
        max-width: 100%;
        height: auto;
    }

}

/* =========================================
   IS-TAK HEADER
   ========================================= */

.site-header {
    background: #ffffff;
}


/* =========================================
   TOP BAR
   ========================================= */

.header-top {
    background: #252525;
    color: #b7c1c6;
    font-size: 0.78rem;
}

.header-top-inner {
    min-height: 36px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-left {
    display: flex;
    gap: 25px;
}

.header-top-left span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.header-top-left i {
    color: #aebbc2;
}

.header-top-right {
    color: #858d91;
}


/* =========================================
   MAIN NAVBAR
   ========================================= */

.is-navbar {
    background: #ffffff;
    min-height: 92px;

    border-bottom: 1px solid #e5e8ea;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}


/* Logo */

.is-logo {
    height: 58px;
    width: auto;
    display: block;
}


/* Navigation */

.is-navbar .nav-link {
    position: relative;

    color: #343434;

    font-size: 0.95rem;
    font-weight: 500;

    padding: 1.9rem 0.85rem;

    transition:
        color 0.2s ease;
}

.is-navbar .nav-link:hover {
    color: #566873;
}


/* Active link */

.is-navbar .nav-link.active {
    color: #343434;
}

.is-navbar .nav-link.active::after {
    content: "";

    position: absolute;

    left: 0.85rem;
    right: 0.85rem;
    bottom: 0;

    height: 3px;

    background: #7f919b;
}


/* Dropdown arrow */

.is-navbar .dropdown-toggle::after {
    margin-left: 0.45rem;
    vertical-align: 0.15em;
}


/* =========================================
   DROPDOWN
   ========================================= */

.is-navbar .dropdown-menu {
    min-width: 230px;

    margin-top: 0;

    padding: 0.6rem 0;

    border: 1px solid #e1e5e7;
    border-radius: 0;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.10);
}

.is-navbar .dropdown-item {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 0.75rem 1.25rem;

    color: #444444;

    font-size: 0.9rem;
}

.is-navbar .dropdown-item i {
    width: 18px;

    color: #7f919b;
}

.is-navbar .dropdown-item:hover {
    background: #f2f5f6;
    color: #252525;
}


/* =========================================
   CONTACT BUTTON
   ========================================= */

.nav-contact {
    display: inline-flex;
    align-items: center;

    background: #343434;
    border: 1px solid #343434;

    color: #ffffff;

    font-size: 0.9rem;
    font-weight: 600;

    padding: 0.75rem 1.25rem;

    border-radius: 4px;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.nav-contact:hover {
    background: #4a4a4a;
    border-color: #4a4a4a;
    color: #ffffff;

    transform: translateY(-1px);
}

@media (max-width: 991.98px) {

    .header-top {
        display: none;
    }


    .is-navbar {
        min-height: 76px;
    }


    .is-navbar .container {
        position: relative;
    }


    .is-logo {
        height: 48px;
        max-width: calc(100vw - 100px);
        object-fit: contain;
        object-position: left center;
    }


    .navbar-toggler {
        border: 1px solid #d8dddf;
        border-radius: 4px;
        padding: 0.5rem 0.65rem;
    }


    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.15rem rgba(127, 145, 155, 0.15);
    }


    .navbar-collapse {
        padding: 1rem 0 1.25rem;
    }


    .is-navbar .nav-link {
        padding: 0.75rem 0;

        font-size: 1rem;
    }


    .is-navbar .nav-link.active::after {
        display: none;
    }


    .is-navbar .dropdown-menu {
        border: 0;
        box-shadow: none;

        background: #f5f7f8;

        margin: 0;
        padding: 0.35rem 0;
    }


    .is-navbar .dropdown-item {
        padding: 0.7rem 1rem;
    }


    .nav-contact {
        margin-top: 0.75rem;

        justify-content: center;

        width: 100%;
    }

}

.px-hero .hero-dark {
    background: linear-gradient(
        to bottom,
        #303d48 0%,
        #3a4a55 100%
    );
    padding-top: 55px !important;
    padding-bottom: 55px !important;
}

.px-hero .shot {
    background: var(--bs-tertiary-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-lg);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary-color);
}

:root {
    --is-accent: #aebbc2;
}


/* Footer */

.is-footer {
    background: #191919;
    color: #ffffff;
}


/* Headings */

.is-footer .footer-heading {
    font-size: 1.15rem;
    font-weight: 500;
    margin: 0 0 30px 0;
    padding-bottom: 12px;
    position: relative;
    text-transform: uppercase;
}

.is-footer .footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 2px;
    background: var(--is-accent);
}


/* About text */

.is-footer .footer-text {
    color: #888888;
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
    max-width: 450px;
}


/* Links */

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

.footer-links li {
    margin-bottom: 13px;
}

.footer-links a {
    color: #888888;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a span {
    color: #555555;
    margin-right: 10px;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links a:hover span {
    color: var(--is-accent);
}


/* Contact */

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #888888;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 14px;
}

.contact-icon {
    color: var(--is-accent);
    width: 16px;
    flex-shrink: 0;
}

.footer-contact a {
    color: #888888;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #ffffff;
}


/* Support */

.footer-support-heading {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}

.footer-support-logo {
    width: 55px;
    height: auto;
    display: block;
}


/* Bottom */

.footer-bottom {
    border-top: 1px solid #242424;
    color: #777777;
    font-size: 0.95rem;
    padding: 15px 0;
}

/* =========================================
   CONTACT PAGE
   ========================================= */

.contact-page {
    background: #ffffff;
}


/* Intro */

.contact-intro {
    max-width: 760px;
    margin: 0 auto 55px;
}

.contact-title {
    color: #303030;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-lead {
    color: #6f777c;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}


/* Main content */

.contact-content {
    align-items: stretch;
}


/* Section headings */

.contact-section-title {
    color: #303030;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 12px;
    position: relative;
}

.contact-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--is-accent);
}


/* Contact information */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
}

.contact-icon-box {
    width: 42px;
    height: 42px;
    min-width: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f1f4f5;
    border-radius: 6px;

    color: #647681;
    font-size: 1rem;
}

.contact-item h3 {
    color: #303030;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 5px;
}

.contact-item p {
    color: #70777b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.contact-item a {
    color: #70777b;
    text-decoration: none;
}

.contact-item a:hover {
    color: #303030;
}


/* Map */

.contact-map {
    margin-top: 35px;
    height: 280px;
    border: 1px solid #dfe3e5;
    border-radius: 6px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* Form */

.contact-form-box {
    border: 1px solid #dfe3e5;
    border-radius: 6px;
    padding: 35px;
    background: #ffffff;
}

.contact-form-intro {
    color: #70777b;
    font-size: 0.95rem;
    margin-top: -15px;
    margin-bottom: 30px;
}


/* Form labels */

.contact-form-box .form-label {
    color: #303030;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 7px;
}


/* Inputs */

.contact-form-box .form-control,
.contact-form-box .form-select {
    border-color: #d7dcdf;
    border-radius: 5px;
    color: #303030;
    padding: 0.75rem 0.9rem;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
    border-color: #8798a2;
    box-shadow: 0 0 0 0.2rem rgba(135, 152, 162, 0.15);
}


/* Checkbox */

.contact-form-box .form-check-label {
    color: #70777b;
    font-size: 0.85rem;
    line-height: 1.5;
}

.contact-form-box .form-check-input:checked {
    background-color: #4b5d68;
    border-color: #4b5d68;
}


/* Submit */

.contact-submit {
    background: #343434;
    border: 1px solid #343434;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

.contact-submit:hover {
    background: #1f1f1f;
    border-color: #1f1f1f;
    color: #ffffff;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767.98px) {

    .contact-title {
        font-size: 2.2rem;
    }

    .contact-lead {
        font-size: 1rem;
    }

    .contact-intro {
        margin-bottom: 40px;
    }

    .contact-form-box {
        padding: 25px 20px;
    }

    .contact-map {
        height: 240px;
    }

}
