@charset "utf-8";
/* CSS Document */
/*	General Styling
----------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #0d83fd; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
    --theme-color-primary: #e07a08;
    --theme-color-secondary: #002046;
    --theme-bg-hr: linear-gradient(280deg, rgba(0, 149, 218, 0.1) 0%, rgba(220, 105, 12, 0.1) 100%);
    --theme-bg-vr: linear-gradient(0deg, rgba(220, 105, 12, 0.15) 0%, rgba(0, 149, 219, 0.15) 100%);
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #212529; /* The default color of the main navmenu links */
    --nav-hover-color: #0d83fd; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #0d83fd; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f3f9ff;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #0d83fd;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #409dfd;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {font-family: "Montserrat", sans-serif; font-style: normal; color: #212529; margin: 0;}
.super-container {margin: 0; padding: 0px; position: relative;}
img {vertical-align: middle; height: auto; max-width: 100%; border: 0;}
ul {list-style-type: none;}
a {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;}

.font11 {font-size: 11px !important;}
.font12 {font-size: 12px !important;}
.font13 {font-size: 13px !important;}
.font14 {font-size: 14px !important;}
.font15 {font-size: 15px !important;}
.font18 {font-size: 18px !important;}
.fw500 {font-weight: 500;}
.fw600 {font-weight: 600;}


.trans-input {
	background-color: rgba(255, 255, 255, 0.2);
    border-color: #C9C9C9;
	font-size: 1rem;
	height: 45px;
}
.theme-btn {
	background-color: var(--theme-color-primary);
	color: #ffffff;
	transition: 0.5s;
	padding: 0.45rem 1rem;
    border: 0;
	display: inline-block;
}
.theme-btn:hover,
.theme-btn:focus {
	background-color: var(--theme-color-secondary);
	color: #ffffff;
}
.theme-btn.btn-sm,
.theme-btn-secondary.btn-sm {
    padding: 7px 11px;
    border-radius: 6px;
    font-size: 13px;
}
.theme-btn-secondary {
	background-color: var(--theme-color-secondary);
	color: #ffffff;
	transition: 0.5s;
	padding: 0.45rem 0.9rem;
    border: 0;
	display: inline-block;
}
.theme-btn-secondary:hover,
.theme-btn-secondary:focus {
	background-color: var(--theme-color-primary);
	color: #ffffff;
}

.primary-color {color: var(--theme-color-primary);}
.secondary-color {color: var(--theme-color-secondary);}
.theme-bg-hr {background: var(--theme-bg-hr);}
.theme-bg-vr {background: var(--theme-bg-vr);}


/*--------------------------------------------------------------
# Login Page
--------------------------------------------------------------*/
.login-page {
	background: var(--theme-bg-hr);
}
.login-page .logo img,
.register-page .logo img {
	width: 270px;
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background-color: #ffffff;
    padding: 22px 0;
    transition: all 0.5s;
    z-index: 997;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
.scrolled .header .header-container {
    background: color-mix(in srgb, var(--surface-color), transparent 5%);
}
.header .logo {
    line-height: 1;
}
.header .logo img {
    max-height: 43px;
    margin-right: 8px;
}

@media (max-width: 1200px) {

    .header .logo {order: 1;}
    .header .navmenu {order: 3;}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }
    .navmenu ul {
        margin: 0 -15px 0 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }
    .navmenu li {
        position: relative;
    }
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 15px 15px 10px 15px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }
    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--theme-color-primary);
    }
    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
    .navmenu .dropdown ul li {
        min-width: 200px;
    }
    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
        position: relative;
    }
    .navmenu .dropdown ul a i {
        font-size: 12px;
    }
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }
    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
    .navmenu > ul > li > a:before {
        content: "";
        position: absolute;
        width: 28px;
        height: 2px;
        bottom: 9px;
        left: 0;
        right: 0;
        margin: 0 auto;
        background-color: #002048;
        visibility: hidden;
        transition: all 0.3s ease-in-out 0s;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        transform: scale(0);
    }
    .navmenu a:hover:before,
    .navmenu li:hover > a:before,
    .navmenu a.active:before {
        visibility: visible;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
        margin-top: 8px;
        display: inline-block;
    }
    .navmenu {
        padding: 0;
        z-index: 9997;
    }
    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(
            in srgb,
            var(--accent-color),
            transparent 90%
        );
    }
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }
    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid
            color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }
    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }
    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }
    .mobile-nav-active {
        overflow: hidden;
    }
    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }
    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }
    .mobile-nav-active .navmenu > ul {
        display: block;
    }
    .header .logo img {height: 33px;}
}


/*--------------------------------------------------------------
# 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(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/* Scroll-to-top button styles */
.btn-scroll-top {
  background-color: var(--bs-white, #fff); /* Fallback to white */
  border-radius: 10px;
  bottom: 2.5rem;
  box-shadow: inset 0 0 0 0.1rem rgba(227, 229, 233, 0.5);
  opacity: 0;
  position: fixed;
  right: 1.5rem;
  transform: translateY(0.75rem);
  transition: all 0.2s linear, margin-right 0s;
  visibility: hidden;
  z-index: 1010;
}

.btn-scroll-top, .btn-scroll-top:after {
  cursor: pointer;
  display: block;
  height: 40px;
  width: 40px;
}

.btn-scroll-top.active-progress {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

/* Styling for the icon inside the button */
.btn-scroll-top:after {
  color: var(--theme-color-secondary, #000); /* Fallback to black */
  content: "\f145";
  font-family: bootstrap-icons;
  font-size: 30px;
  left: 0;
  line-height: 40px;
  position: absolute;
  text-align: center;
  top: 0;
  transition: all 0.2s linear;
  z-index: 1;
}

/* Progress circle styles */
.btn-scroll-top svg.progress-square path {
  stroke: var(--theme-color-secondary, #000); /* Fallback to black */
  stroke-width: 2;
  box-sizing: border-box;
  transition: all 0.2s linear;
}

.btn-scroll-top svg path {
  fill: none;
}



/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    padding: 50px 0;
    scroll-margin-top: 90px;
    overflow: clip;
    position: relative;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    padding-bottom: 35px;
    position: relative;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 600;
    position: relative;
    margin-bottom: 0;
}
.section-title p {
    margin-bottom: 0;
}

@media (max-width: 575px) {

    .section-title {padding-bottom: 20px;}
    .section-title h2 {font-size: 2rem;}

}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    position: relative;
    padding: 0;
}
#hero .hero-wrap {
    /* background: url("../images/hexagon-square.png") no-repeat scroll right center transparent; */
    padding: 20px 0;
}
#hero .hero-content {
    position: relative;
    z-index: 1;
}
#hero .hero-content h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
#hero .hero-content p {
    margin-bottom: 35px;
}

@media (max-width: 992px) {

    #hero .hero-content {text-align: center;}
    #hero .hero-content h1 {font-size: 2.5rem;}
    #hero .hero-wrap {background: none;}

}

@media (max-width: 575px) {

    #hero .hero-content h1 {font-size: 2rem;}
    #hero .hero-wrap {padding: 60px 0; background: none;}

}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
    height: 100%;
    padding: 30px;
    background: var(--surface-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.10);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}
.services .service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}
.services .service-card p {
    margin-bottom: 25px;
    line-height: 1.6;
}


/*--------------------------------------------------------------
# Advantages Section
--------------------------------------------------------------*/
.advantages {
    background-color: rgba(0,149,218,0.025);
}
.advantages .advantages-list li {
    margin-bottom: 1.2rem;
    background: url(../images/list-bullet.svg) no-repeat scroll 0 0 transparent;
    padding-left: 30px;
    background-size: 18px 18px;
}
.advantages .advantages-list li h6 {
    font-weight: 600;
    margin-bottom: 5px;
}


/*--------------------------------------------------------------
# How It Works Section
--------------------------------------------------------------*/
.howitworks .step-card {
    border: 1px dashed #E07A08;
    border-radius: 10px;
    padding: 40px 20px 20px 20px;
    position: relative;
    height: 100%;
}
.howitworks .step-card .step-no {
    position: absolute;
    top: -20px;
    width: 38px;
    height: 38px;
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    border-radius: 50px;
    line-height: 24px;
    background-color: #002044;
    display: flex;
    align-items: center;
    justify-content: center;
}


/*--------------------------------------------------------------
# Platform Section
--------------------------------------------------------------*/
.platform .platform-logo {
    border-radius: 12px;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    text-align: center;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/

.faqs .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
    border: 0;
}
.faqs .faq-container .faq-item .accordion-button {
    background-color: #f3f9ff;
    box-shadow: none;
    border-radius: 0;
    font-weight: 600;
    color: inherit;
}
.faqs .faq-container .faq-item h2 {
    font-weight: 600;
    line-height: 24px;
    font-size: 16px;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 0;
}
.faqs .faq-container .faq-item .accordion-body {
    background-color: #f3f9ff;
}
.faqs .faq-container .accordion-button::after {
    content: "\F282";
    font-family: bootstrap-icons;
    background-image: none;
    font-size: 19px;
}
.faqs .faq-container .accordion-button:not(.collapsed)::after {
    content: "\F282";
    font-family: bootstrap-icons;
    background-image: none;
    
}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
    padding: 1.6rem 0;
    border-radius: 1rem;
}
.contact .info-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
    .contact .info-box h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 992px) {
    .contact .info-box {
        padding: 0 0 2rem 0;
    }
}

.contact .info-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.contact .info-item:last-child {
    margin-bottom: 0;
}

.contact .info-item .icon-box {
    width: 50px;
    height: 50px;
    background-color: #E9F3FC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
}
.contact .info-item .icon-box i {
    font-size: 20px;
}
.contact .info-item .content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}
.contact .info-item .content p {
    font-size: 18px;
    font-weight: 500;
}
.contact .info-item .content p:last-child {
    margin-bottom: 0;
}

.contact .contact-form {
    background-color: #E9F3FC;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .contact .contact-form {
        padding: 1.5rem;
    }
}

.contact .contact-form h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .contact .contact-form h3 {
        font-size: 1.75rem;
    }
}

.contact .contact-form p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
    padding: 10px;
    border-color: color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 0.5rem;
    background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
    color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.contact .contact-form .btn i {
    font-size: 1.25rem;
}


/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
#footer {
    background-color: #F5F5F5;
    padding: 15px 0;
    margin-top: -51px;
    position: relative;
    z-index: 1;
}
#footer a:hover,
#footer a:focus {
    text-decoration: underline;
}

/* .footer-bottom {
	position: absolute;
    bottom: 0;
    font-size: 13px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 15px 0;
} */


/*--------------------------------------------------------------
# Service Page
--------------------------------------------------------------*/
#hero.intro-section .hero-wrap {
    background: none;
}   



/* thankyou-page
--------------------------------------------------------------*/
.thankyou-page h2 img {
    width: 34px;
}



/* #latest-blogs
--------------------------------------------------------------*/
#latest-blogs .card {
	border-width: 1px;
	padding: 12px;
	border-radius: 0;
	border-radius: 8px;
	height: 100%;
	-webkit-transition: all 0.3s ease-in-out;
    		transition: all 0.3s ease-in-out;
}
#latest-blogs .card .card-title {
	font-size: 20px;
	line-height: 1.5;
	margin-bottom: 1rem;
}
#latest-blogs .card .card-title a {
    text-decoration: none;
    color: inherit;
    font-weight: 600;
}
#latest-blogs .card .blog-date {
	font-size: 12px;
	font-weight: 600;
	padding-right: 0.7rem;
	margin-right: 0.7rem;
	border-right: 1px solid #ccc;
}
#latest-blogs .card .blog-tag {
	color: #ffffff;
	font-size: 10px;
	font-weight: 500;
	padding: 0px 6px;
	border-radius: 12px;
    text-transform: uppercase;
	background: rgb(220,105,12);
	background: linear-gradient(90deg, rgba(220,105,12,1) 0%, rgba(0,149,218,1) 100%);
}


.bullet-list {
    padding-left: 1.5rem;
}
.bullet-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 0.25rem;
}
.bullet-list li:before {
    content: "\F287";
    font-family: bootstrap-icons;
    position: absolute;
    left: 0px;
    top: 7px;
    font-size: 6px;
}
.numbered-list {
    padding-left: 2.5rem;
}
.numbered-list li {
    position: relative;
    margin-bottom: 0.25rem;
}





/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
	
	.register-page {height: auto !important;}

	.login-page .logo img,
	.register-page .logo img {width: 230px;}

    #footer {text-align: center;}

	
}



/* `md` applies to small devices (landscape phones, less than 768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
	
	.register-page {height: auto !important;}

	.login-page .logo img,
	.register-page .logo img {width: 230px;}

    .section-title h2 {font-size: 36px;}

}


/* `lg` applies to medium devices (tablets, less than 992px) */
@media (min-width: 768px) and (max-width: 991.98px) {}


/* `xl` applies to large devices (desktops, less than 1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {}


/* `xxl` applies to x-large devices (large desktops, less than 1400px) / 15" Notebook (1366x768) */
@media (min-width: 1200px) and (max-width: 1399.98px) {}


/* 19" Desktop (1400x900) */
@media (min-width: 1367px) and (max-width: 1440px) {}


/* 22" Desktop (1680x1050) / 20" Desktop (1600x900) */
@media (min-width: 1441px) and (max-width: 1680px) {}


/* 24" Desktop (1920x1200) / 23" Desktop (1920x1080) */
@media (min-width: 1681px) and (max-width: 1920px) {}