/* #region FONTS */
@font-face {
  font-family: 'District7th';
  src: url('./fonts/S&S-Grey-Hood-Seven.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'OctoMed';
  src: url('./fonts/TT-Octosquares-Trial-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'OctoReg';
  src: url('./fonts/TT-Octosquares-Trial-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'OctoBold';
  src: url('./fonts/TT-Octosquares-Trial-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'OctoExLight';
  src: url('./fonts/TT-Octosquares-Trial-ExtraLight.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'PopExLight';
  src: url('./fonts/Poppins-ExtraLight.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'PopLight';
  src: url('./fonts/Poppins-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'PopReg';
  src: url('./fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.octo-med {
    font-family: 'OctoMed', sans-serif;
}

.octo-reg {
    font-family: 'OctoReg', sans-serif;
}

.octo-bold {
    font-family: 'OctoBold', sans-serif;
}

.octo-ex-light {
    font-family: 'OctoExLight', sans-serif;
}

.pop-ex-light {
    font-family: 'PopExLight', sans-serif;
}

.pop-light {
    font-family: 'PopLight', sans-serif;
}

.pop-reg {
    font-family: 'PopReg', sans-serif;
}

/* #endregion */

/* #region HTML TAGS */
body {
    margin: 0;
    background-color: black;
}

nav {
    background-color: black;
}

a {
    padding: 0px 15px;
    color: white;
    font-family: 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 20px;
    text-decoration: none;
}
a:hover {
    color: #5fc4ff;
}

hr {
    border: 2px solid #5fc4ff;
    opacity: 1 !important;
}

/* #endregion */

/* #region ID'S */

/* #homemain {} */
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0)),url(./images/cybertruckblackgreen.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    height: 600px; */


#about-us {
    margin-top: 3rem;
    margin-bottom: 3rem;
}
@media screen and (max-width: 575px) {
    #about-us {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

#services {
    margin-top: 3rem;
    margin-bottom: 3rem;
    overflow-x: hidden;
}
@media screen and (max-width: 575px) {
    #about-us {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

#pricing {
    /* 155 35 50 65 */
    background: linear-gradient(
        155deg,
        rgba(0, 0, 0, 1) 35%,
        rgba(95, 196, 255, .4) 50%,
        rgba(0, 0, 0, 1) 65%
    );
    margin-top: 3rem;
    margin-bottom: 3rem;
}
@media screen and (max-width: 575px) {
    #pricing {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

#contact-form {
    /* background-color: #111111;
    border: 1px solid #292929;
    border-radius: 0; */
    color: #fff;
    margin-top: 3rem;
    margin-bottom: 3rem;
}
@media screen and (max-width: 575px) {
    #contact-form {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

#footer {
    color: #fff;
    background-image: linear-gradient(to bottom, black, #444444);
    margin-top: 3rem;
}
@media screen and (max-width: 575px) {
    #footer {
        margin-top: 1rem;
    }
}


/* #endregion */

/* #region CLASSES */

.blue-bg-primary {
    background-color: #5fc4ff;
}

.blue-txt-primary {
    color: #5fc4ff;
}

.bg-secondary {
    background-color: #111111 !important;
    color: #5fc4ff;
}

.bg-tertiary {
    background-color: #3a3a3a;
}

.small-text-14 {
    font-size: 14px;
}

.large-text-60 {
    font-size: 60px;
}

.large-text-45 {
    font-size: 45px;
}

.large-text-30 {
    font-size: 30px;
}

.med-text-18 {
    font-size: 18px;
}

.med-text-20 {
    font-size: 20px;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

.w-90 {
    width: 90%;
}

.w-55 {
    width: 55%;
}

.w-40 {
    width: 40%;
}

.w-33 {
    width: 33%;
}

.overflow-x {
    overflow-x: auto;
    overflow: hidden;
}

.hr-hidden-30 {
    visibility: hidden;
    height: 30px;
}

.primary-border {
    border: 1px solid #444;
}

.form-control {
    /* border-radius: 0; */
    background-color: #3a3a3a;
    color: white;
    font-family: 'OctoExLight', sans-serif;

    &:focus {
    background-color: #3a3a3a;
    color: white;
    border-color: #5fc4ff;
    box-shadow: none;
    }
}

.form-label {
    margin-bottom: 0;
}

.form-check-input[type=checkbox] {
    border-radius: 0;

    &:checked {
        background-color: #5fc4ff;
        border: none;
    }
}

.list-group-item-contact {
    position: relative;
    display: block;
    border-width: 0 0 var(--bs-list-group-border-width);
    padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
    /* background-color: black; */
    background-color: #111111;
    transition: background-color 0.3s ease-in;
    color:white;
    font-family: "OctoReg", sans-serif;
    margin: 8px 0px;
    
    &:hover {
        background-color:aliceblue;
        color:#5fc4ff;
    }
}

/* #endregion */

/* ---------------------------------------------------- */

/* #region IMPORTANT STUFF */
@keyframes slideUp {
    0% {
    transform: translateY(100%); /* Start 100% of its height below its final position */
    opacity: 0; /* Start invisible */
    }
    100% {
    transform: translateY(0); /* End at its natural position */
    opacity: 1; /* End fully visible */
    }
}

#home, #homemain, .navbar {
    animation: slideUp 0.9s ease-out forwards;
}

.video-container {
    height: 600px;
    width: 100%;
    position: relative;
}

.video-container video {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  z-index: 0;
}
.video-container .header-content-container {
  z-index: 1;
  position: relative;
}

.bg-overlay {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30%;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  opacity: 1;
}

/* #endregion */

/* #region REPEAT CLASSES */

/* BUTTONS */
.blue-fill-button {
    background-color: #5fc4ff;
    color: black;
    font-weight: bold;
    border-radius: 3px;
    border: 2px solid #5fc4ff;
    

    &:hover {
        background-color: #1c91d4;
        color: black;
        border: 1px solid #1c91d4;
    }
}

.blue-outline-button {
    color: #5fc4ff;
    font-weight: bold;
    border: 2px solid #5fc4ff;
    border-radius: 3px;
    letter-spacing: 1px;

    &:hover {
        background-color: #1c91d4;
        color: black;
        border: 1px solid #1c91d4;
    }
}

/* FLEX CASES */
.d-flex-row {
    display: flex;
    flex-direction: row;
}

.d-flex-column {
    display: flex;
    flex-direction: column;
}

/* HORIZONTAL LINES */
.hr-lg50-sm90 {
    width: 50%;
}
@media screen and (max-width: 991px) {
    .hr-lg50-sm90 {
        width: 90%;
    }
}


/* HEADERS */
.responsive-header-text {
    font-size: 45px;
    font-family: 'OctoMed', sans-serif;
    color: white;
}
@media screen and (max-width: 991px) {
    .responsive-header-text {
        font-size: 34px;
    }
}
@media screen and (max-width: 575px) {
    .responsive-header-text {
        font-size: 29px;
    }
}

/* #endregion */

/* #region NAV */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1001;
    padding-top: 0;
    padding-bottom: 0;
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2895, 196, 255%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    --bs-navbar-color: rgb(95, 196, 255, 0.75);
}

.navbar-collapse {
    text-align: end;
    letter-spacing: 1px;
}
.navbar-collapse.collapse.show {
        width: 50%;
        background-color: transparent !important;
    }

.main-logo{
    font-family: 'District7th', sans-serif !important;
    font-size: 35px;
    color: #5fc4ff;
    vertical-align: middle;
    padding-bottom: 0 !important;

    &:hover {
        color: #5fc4ff;
    }
} 

.nav-item {
    color: white;
    font-family: "OctoReg", sans-serif;

    &:hover {
        color: #5fc4ff;
    }
}

@media screen and (min-width: 992px) {
    .nav-item {
        margin-left: 2vw;
        margin-right: 2vw;
    }
    
    .nav-item-contact {
        margin-left: auto;
        background-color: black;
        color: #5fc4ff;
        border: 1px solid #5fc4ff;
        border-radius: 3px;
        font-family: "OctoMed", sans-serif;
        margin: 0;
        padding-top: 13px;
        padding-bottom: 13px;

        &:hover {
            color: black;
            background-color: #5fc4ff;
            
        }
    }
}

/* #endregion */

/* #region HOME HEADER */

.home-top-main-wrapper {
    display: flex;
    flex-direction: column;
    margin-left: 3rem;
    margin-right: 3rem;
    width: 70%;
    color: white;
}
@media screen and (max-width: 991px) {
    .home-top-main-wrapper {
        margin-left: 2rem;
        margin-right: 2rem;
    }
}
@media screen and (max-width: 767px) {
    .home-top-main-wrapper {
        width: unset;
    }
}

.home-top-subtext {
    margin-top: 3rem;
    letter-spacing: 1px;
    font-family: "PopLight", sans-serif;
    background-color: #5fc4ff4f;
    width: 70%;
}
@media screen and (max-width: 991px) {
    .home-top-subtext {
        font-size: 12px;
    }
}
@media screen and (max-width: 575px) {
    .home-top-subtext {
        font-size: 10px;
    }
}

.home-top-text {
    text-transform: uppercase;
    font-family: "OctoMed";
    font-size: 55px;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    
}
@media screen and (max-width: 1085px) {
    .home-top-text {
        font-size: 50px;
    }
}
@media screen and (max-width: 991px) {
    .home-top-text {
        font-size: 42px;
        margin-bottom: 2rem;
    }
}
@media screen and (max-width: 575px) {
    .home-top-text {
        font-size: 34px;
    }
}


/* #endregion */

/* #region HOME CONTACT BUTTONS */

.home-top-button-wrapper {
    display: flex;
    flex-direction: row;
    margin-left: 3rem;
    margin-right: 3rem;
    width: 75%;
    text-align: center;
}
@media screen and (max-width: 991px) {
    .home-top-button-wrapper {
        margin-left: 2rem;
        margin-right: 2rem;
    }
}
@media screen and (max-width: 575px) {
    .home-top-button-wrapper {
        flex-direction: column;
    }
}

.home-top-button {
    width: 30%;
    max-width: 256.047px;
    margin-right: 3rem;
    padding: 1rem;
    font-size: 14px;
    font-family: "OctoReg", sans-serif;
}
@media screen and (max-width: 1014px) {
    .home-top-button {
        margin-right: 2rem;
        font-size: 12px;
    }
}
@media screen and (max-width: 991px) {
    .home-top-button {
        margin-bottom: 1rem;
    }
}
@media screen and (max-width: 575px) {
    .home-top-button {
        padding: .75rem;
        width: 50%;
    }
}

/* #endregion */

/* #region REVIEW SNEAKPEAK */

.review-sp-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    letter-spacing: 1px;
}

.review-sp-card {
    background: transparent;
    color: #fff;
    margin: 1rem 0;
    border: none;
    font-family: 'OctoReg', sans-serif;
    text-align: center;
}

.review-sp-card-left-border {
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}
.review-sp-card-right-border {
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}

.review-sp-card-subtext {
    font-family: "PopReg", sans-serif;
    margin-bottom: .5rem;
    --bs-text-opacity: 1;
    color: #6c757d !important;
}

@media screen and (max-width: 991px) {
    .review-sp-wrapper {
        flex-direction: column;
    }
    .review-sp-card {
        border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
        border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
        margin: 0 1rem;
    }
    .review-sp-card-left-border {
        border-left: 0;
    }
    .review-sp-card-right-border {
        border-right: 0;
    }
}

@media screen and (max-width: 1085px) {
    .card-title {
        font-size: 15px;
        font-family: 'OctoMed', sans-serif;
    }
    .review-sp-card-subtext {
        font-size: 13px;
    }
}

/* #endregion */

/* #region ABOUT US TEXT */

.aboutus-wrapper {
    margin-left: 3rem;
    margin-top: 3rem;
    color: white;
}

.aboutus-text {
    font-family: 'PopExLight', sans-serif;
    width: 55%;
    font-size: 24px;
    line-height: 1.5;
}

@media screen and (max-width: 1085px) {
    .aboutus-text {
        width: 70%;
        font-size: 22px;
    }
}

@media screen and (max-width: 991px) {
    .aboutus-wrapper {
        margin-left: 2rem;
        margin-top: 2rem;
    }
    .aboutus-text {
        width: 90%;
        font-size: 20px;
    }
}

@media screen and (max-width: 575px) {
    .aboutus-text {
        width: 90%;
        font-size: 17px;
    }
}

/* #endregion */

/* #region WHAT WE OFFER */

.services-cards-wrapper {
    margin-left: 3rem;
    margin-right: 3rem;
}

.services-cards-scroll-x {
    overflow-x: auto; /* or scroll */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}
.services-cards-scroll-x::-webkit-scrollbar {
    width: 0; /* Chrome, Safari, Opera */
    height: 0;
}

.services-cards-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    transition: transform 0.5s ease-in-out;
}

.services-cards {
    background-color: #111111;
    border: 1px solid #1f1f1f;
    border-radius: 2px;
    margin: 0px 10px;
    color: #fff;
    font-family: 'OctoReg', sans-serif;
    flex: 0 0 auto; 
    width: 490px;
    max-height: 500px;
}

.services-cards-header {
    background-color: #3a3a3a;
    border: 1px solid #2e2e2e;
    padding: 3px 8px;
    display: inline-flex;
    font-size: 12px;
    letter-spacing: .5px;
    font-family: 'PopReg', sans-serif;
}

.services-cards-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    object-fit: cover;
    border-radius: 0;
}

.service-cards-body-header {
    font-family: 'OctoExLight', sans-serif;
    font-weight: 600;
    margin-bottom: .5rem;
    font-size: 20px;
}

.service-cards-body-text {
    font-family: 'PopReg', sans-serif;
    font-size: 14px;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem 0rem 0rem 2rem;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid #444;
    font-size: 2rem;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    display: flex;
    align-items:center;
    border-radius: 2px;

    &:hover {
    background: #349edb;
    }

    &.left {
    margin-right: .25rem;
    padding-bottom: 8px;
    justify-content: center;
    }

    &.right {
    margin-left: .25rem;
    padding-bottom: 8px;
    justify-content: center;
    }
}

@media screen and (max-width: 1085px) {
    .services-cards-wrapper {
        margin-left: 2rem;
        margin-right: 2rem;
    }
}
@media screen and (max-width: 575px) {
    .services-cards {
        width: 340px;
        height: auto;
    }
}

/* #endregion */

/* #region WHY CHOOSE US */

.why-us-wrapper {
    display: flex;
    flex-direction: row;
}

.services-grid-cards {
    background-color: #111111;
    border: 1px solid #292929;
    color: #fff;
    border-radius: 0;
    width: 50%;
}

.services-grid-botleft-order {
    order: 3;
}

.services-grid-botright-order {
    order: 4;
}

.services-grid-cards-padding {
    padding: 3rem;
}

.services-grid-separator-x {
    margin-right: .25rem;
    margin-left: .25rem;
    border: 0;
}
.services-grid-separator-y {
    margin-top: .5rem;
    margin-bottom: .5rem;
    border: 0;
}

.services-grid-img {
    object-fit: cover;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.services-grid-header {
    border: 0;
    font-size: 16px;
    font-family: 'PopExLight', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.services-grid-title {
    font-size: 50px;
    font-family: 'OctoMed', sans-serif;
    padding-left: 1rem;
    line-height: 1.25;
}

.services-grid-body {
    font-family: 'PopReg', sans-serif;
    font-size: 16px;
}

.services-grid-list {
    border: 0;
    padding: 1.5rem 0;
}

.services-grid-list-item {
    border: 0;
    font-family: 'OctoReg', sans-serif;
    background-color: #111111;
    color: #fff;
    width: 75%;
    font-size: 16px;
}

.accordion {
    --bs-accordion-border-color: 0;
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235fc4ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235fc4ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-focus-box-shadow: 0;
}

.accordion-button:hover {
    box-shadow: 0 0 0 0.15rem rgba(95, 196, 255, .5);
}

.accordion-button:not(.collapsed) {
    color: #5fc4ff;
    background-color: #111111;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-active-icon);
    transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-header {
    border: 1px solid #444;
}

.accordion-header-text {
    background-color: #111111;
    color: #5fc4ff;
    padding: 1rem;
    font-size: 18px;
    font-weight: 600;
}

.accordion-body-text {
    background-color: #111111;
    color: white;
    font-family: "PopLight", sans-serif;
    border: 0;
    font-size: 15px;
}

@media screen and (max-width: 1199px) {
    .services-grid-cards-padding {
        padding: 1rem;
    }
    .services-grid-header {
        font-size: 13px;
    }
    .services-grid-title {
        font-size: 40px;
    }
    .services-grid-body {
        font-size: 14px;
    }
    .services-grid-list-item {
        font-size: 14px;
    }
    .accordion-header-text {
        font-size: 14px;
    }
    .accordion-body-text {
        font-size: 13px;
    }
}

@media screen and (max-width: 991px) {
    .services-grid-separator-x {
        display: none;
    }
    .services-grid-separator-y {
        display: none;
    }
    
}

@media screen and (max-width: 899px) {
    .why-us-wrapper {
        flex-direction: column;
    }
    .services-grid-cards {
        width: 100%;
    }
    .services-grid-img {
        min-height: 400px;
    }
    .services-grid-botleft-order {
        order: 4;
    }
    .services-grid-botright-order {
        order: 3;
    }
}

@media screen and (max-width: 499px) {
    .services-grid-header {
        font-size: 12px;
    }
    .services-grid-title {
        font-size: 29px;
    }
    .services-grid-body {
        font-size: 13px;
    }
}


/* #endregion */

/* #region PRICING */

.pricing-cards-wrapper {
    margin-left: 3rem;
    margin-right: 3rem;
}

.pricing-service-list-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-service-card {
    margin-bottom: 2rem;
    margin-right: 2rem;
    width: 45%;
    border-radius: 0;
    background-color: #111111;
    border: 1px solid #292929;
    color: #fff;
}

.pricing-service-header {
    font-family: 'PopExLight', sans-serif;
    padding: 1rem;
    letter-spacing: 1px;
}

.service-card-title {
    border: 1px solid #292929;
    background-color: black;
    color: white;
    font-size: 28px;
}

.service-card-title-inner-name {
    margin: 0 auto 0 .25rem;
    font-family: "OctoReg", sans-serif;
    color: #5fc4ff;
}

.service-card-list {
    border: 1px solid #292929;
    background-color: black;
    color: white;
}

.service-card-list-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: 'PopExLight', sans-serif;
    padding: .5rem 0;
}

.service-card-list-book-button {
    background-color: #5fc4ff;
    color: black;
    font-family: 'OctoMed', sans-serif;
    text-align: center;
    border-radius: 2px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    
    &:hover {
        background-color: #1c91d4;
        color: black;
        font-weight: 600;
    }
}

@media screen and (max-width: 1085px) {
    .service-card-list {
        padding-left: .15rem;
        padding-right: .15rem;
    }
    .pricing-service-header {
        font-size: 14px;
    }
    .service-card-title {
        font-size: 25px;
    }
    .service-card-list-inner {
        font-size: 13px;
    }
}

@media screen and (max-width: 991px) {
    .home-top-main-wrapper {
        margin-left: 2rem;
        margin-right: 2rem;
    }
}

@media screen and (max-width: 947px) {
    .pricing-service-card {
        width: 100%;
        margin-bottom: 1rem;
        margin-right: 0;
    }
}

@media screen and (max-width: 499px) {
    .service-card-title {
        font-size: 20px;
    }

}

/* #endregion */

/* #region BOOK APPT */

/* .contact-form-wrapper {
    margin-left: 3rem;
    margin-right: 3rem;
}

.contact-form-display {
    display: flex;
    flex-direction: row;
}


@media screen and (max-width: 991px) {
    .contact-form-wrapper {
        margin-left: 2rem;
        margin-right: 2rem;
    }
} */

/* #endregion */

/* #region FOOTER */

.footer-wrapper {
    margin-left: 3rem;
    margin-right: 3rem;
}

.footer-display {
    display: flex;
    flex-direction: row;
}

.footer-section {
    width: 33%;
}

.footer-topic {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-list-group-flush {
    border-radius: 0;
    align-items: center;
}

.footer-topic-header {
    margin-bottom: .25rem;
    font-family: "OctoMed", sans-serif;
    font-size: 20px;
    text-align: center;
}

.footer-topic-list {
    /* width: 50%; */
    position: relative;
    display: block;
    border-bottom: 2px solid #5fc4ff;
    padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
    /* background-color: black; */
    /* background-color: #111111; */
    transition: background-color 0.3s ease-in;
    color: white;
    font-size: 15px;
    text-align: center;
    font-family: "OctoReg", sans-serif;

    &:hover {
        background-color:aliceblue;
        color:#5fc4ff;
    }
}

.footer-copyright {
    padding-top: 3rem;
    font-size: 14px;
    font-family: "OctoExLight", sans-serif;
    padding-bottom: 1rem;
}

@media screen and (max-width: 991px) {
    .footer-wrapper {
        margin-left: 2rem;
        margin-right: 2rem;
    }
}
@media screen and (max-width: 745px) {
    .footer-topic-header {
        font-size: 14px;
    }
    .footer-topic-list {
        font-size: 11px;
    }
}
@media screen and (max-width: 575px) {
    .footer-wrapper {
        margin-top: 3rem;
    }
    .footer-topic-header {
        font-size: 10px;
        color: #5fc4ff;
        border-bottom: 1px solid #5fc4ff;
    }
    .footer-topic-list {
        border-bottom: 0;

        &:hover {
            background-color: transparent;
        }
    }
}



/* #endregion */

/* #region  */

/* #endregion */

/* #region  */

/* #endregion */

/* #region  */

/* #endregion */

/* #region  */

/* #endregion */

/* #region  */

/* #endregion */

/* #region  */

/* #endregion */

/* #region  */

/* #endregion */

/* #region  */

/* #endregion */

/* #region MISC */

.tab-icon {
    width: 15px;
}
@media screen and (min-width: 992px) {
    .tab-icon {
        width: 18px;
    }
}

.shield-icon {
    width: 30px;
}
@media screen and (min-width: 992px) {
    .shield-icon {
        width: 40px;
    }
}

.footer-social-icons {
    width: 20px;
}
@media screen and (min-width: 575px) {
    .footer-social-icons {
        width: 30px;
    }
}

@media screen and /* (min-width: 576px) and  */(max-width: 901px) {
    .appt-hide-on-small {
        display: none;
    }
}

.appt-hide-on-big {
    display: none;
}
@media screen and (max-width: 901px) {
    .appt-hide-on-big {
        display: inline-flex;
    }
}

@media screen and (min-width: 576px) and (max-width: 893px) {
    .phone-hide-on-small {
        display: none;
    }
}

.call-hide-on-big {
    display: none;
}
@media screen and (min-width: 576px) and (max-width: 893px) {
    .call-hide-on-big {
        display: inline-flex;
    }
}

/* #endregion */