:root {
    --header-border-color: #cccccc;
    --header-text-color : #868686;
    --azure-shade-start : #007FFF;
    --azure-shade-end : #F0FFFF;

    --background-color: #007bbf;

    --table-alt-color : #ececec;
    --table-border-color : #a3a3a3;

    --text-on-white : #232323;
    --alt-background-color : #242323;
    --alt-background-color-light : #dededd;

    --slide-indicator-inactive : #3a3a3a;

    --azure-border-color : #007FFF99;

    --page-link-color : #007bff;
    --page-link-color-hover: #0056b3;

    --package-border-color : #cdcdcd;
    
    --bottom-nav-link-color :#868686;

    --form-error-color : #d75050;
    --form-error-color-bg : #ebd8d8;
    --form-highlight-color : #388dc2;
    
    --small-button-background : #000;
    --small-button-color : #fff;
    --small-button-hover : #2e2d2d;

    --form-subgroup-color : #bababa;

    --btn-disabled-color : #6d6c6c;

    /* modal colors  */
    --modal-background-color : #fefefe;
    --modal-header-background-color: #343a40;
    --modal-close-button-background-color :  #343a40;
    --modal-hover-button-background-color : #292b2c;

    /* link like text */
    /* for coloring of elements acting like links on the page  */
    --link-like-on-white-bg : #1663c7;
    --link-like-on-white-bg-hover : #207ef8;
    


    /* --page-background : #5f5f5f;
    --main-background : #fefdf2;
    --hero-box-background: #fffdd0cb;
    --chat-box-color : #fffdd0cb;
    --header-background : #0f4177 ;
    --footer-background : #0f4177 ;
    --primary-color : #1664b7 ;
    --primary-color-alt : #5f5f5f;
    --secondary-color : #908112 ;
    --secondary-strong-text : #feed6a ;
    --primary-option-color : #004998 ;
    --primary-selected-color : #636363 ;
    --primary-hover-color: #46709c ;
    --primary-button-color: #83600e;
    --nav-link-color: #161290 ;
    --nav-link-color-hover: #b7a415 ;
    --nav-background : #d4e4ee;
    --link-color : #80a6cf ;
    --link-color-hover : #699ed7 ;
    --text-color-alt :#1b1b1b; */
}

/* GENERAL STYLES  */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

img {
    width: 100%;
    height: 100%;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.2rem;
}

p {
  margin: 6px 0;
}

textarea {
    padding: 4px;
    width: 100%;
}

/* MODAL DIALOG  */

/* Style the modal */
.modal {
  position: fixed; /* Stay in place */
  z-index: 200; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0,0,0,0.4); /* Transparent black background */
}

/* Modal Content */
.modal-content {
  margin: 15% auto; /* 15% from the top and centered */
  width: 50%; /* Could be any width */
  background-color: var(--modal-background-color);
  padding: 0;
  border: 1px solid #888;
  border-radius: 5px; /* Rounded corners */
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.2); /* Add shadow */
}

.modal-body {
  padding: 20px;
}

/* Modal Header */
.modal-header {
  background-color: var(--modal-header-background-color);
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between; /* Space header elements horizontally */
}

/* Modal Title */
.modal-title {
  margin: 0;
}

/* Modal Close Button */
.close-button {
  color: #fff;
  background-color: var(--modal-close-button-background-color);
  border: none;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0.8; /* Slight transparency */
}

.close-button:hover,
.close-button:focus {
  background-color: var(--modal-hover-button-background-color);
  opacity: 1;
}

/* Show modal class (optional) */
.modal.show {
  display: block;
}

.modal.hide {
  display: none;
}

/* make these elements like a link without having a tag */
.link-like {
  color : var(--link-like-on-white-bg);
  cursor: pointer;
}

.link-like:hover {
  color : var(--link-like-on-white-bg-hover);
}


/* LAYOUT  */

.page-content::before {
    display: block;
    content: "";
    height: 18vh;
}

.line {
    width: 100%;
    height: 2px;
    margin-top: 1px;
    background-color: #1b1b1b;
}

.limit-width-90 {
    width: 90vw;
    margin: auto;
}

.logo-page {
  width: 200px;
}

/* spacers  */
.spacer-50 {
    height: 50px;
}

.info-container {
    padding: 40px;
}

.page.auto-height {
    min-height: 80vh;
    height: auto;
}

.info-container h1,
.info-container h2,
.info-container p,
.info-container .form-group {
    margin : 10px 0;
}

.info-container h1 {
    text-align: center;
}

.info-container ul {
    padding-left: 1rem;
}

.info-container a {
    color: var(--page-link-color); 
    text-decoration: none;
    transition: color 0.3s ease; 
}

.info-container a:hover {
    color: var(--page-link-color-hover); 
    text-decoration: underline; 
}


.info-container-home {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-container-home h1,
.info-container-home h2,
.info-container-home p,
.info-container-home .form-group {
    margin : 10px 0;
}

.info-container-home h1 {
    text-align: center;
}

.info-container-home ul {
    padding-left: 1rem;
}

.info-container-home a {
    color: var(--page-link-color); 
    text-decoration: none;
    transition: color 0.3s ease; 
}

.info-container-home a:hover {
    color: var(--page-link-color-hover); 
    text-decoration: underline; 
}

/* sizing for standard apps image on home page  */
.standard-apps-container {
    width: 80%;
}

 /* BUTTONS  */
 a.btn {
    display: inline-block; 
 }

 a.btn.hero-btn {
    margin: 10px 0;
    padding: 8px;
 }

 a.btn.btn-black {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    padding: 0 10px;
 }

 a.btn.btn-black:hover {
    padding: 0 10px;
    background: var(--azure-shade-start);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    transition: all 1s;
 }

 .btn {
    min-width: 6rem;
    min-height: 2.5rem;
    border: none;
    text-decoration: none;
    cursor: pointer;
 }


 .btn-group {
    display: flex;
    margin: 6px;
    align-items: center;
 }

 .btn-group button {
    margin-right: 10px;
 }


 .btn-group.with-border {
    border: 1px solid #000;
    border-radius: 6px;
    padding: 4px;

 }

 .btn.hero-btn {
    padding: 10px;
    background: #00000000;
    border: #fff 2px solid;
    color: #fff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
 }

 .btn.hero-btn:hover {
    padding: 10px;
    background: var(--azure-shade-start);
    border: var(--azure-shade-start) 2px solid;
    color: #fff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    transition: all 1s;
 }

 .btn.btn-black {
    padding: 10px;
    background: #000;
    color: #fff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    transition: all 1s ease-out;
 }

 .btn.btn-black:disabled { 
    background: var(--btn-disabled-color);
    cursor: default;
 }

 .btn.btn-black:disabled:hover { 
    background: var(--btn-disabled-color);
 }


 .btn.btn-black:hover {
    padding: 10px;
    background: var(--azure-shade-start);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    transition: all 1s ease-in;
 }

 .btn.btn-black.small {
    padding: 6px;
    font-size: .8rem;
    max-height: 30px;
    min-width: 25px;
 }

 /* small buttons  */
.btn-sm-round {
    width: 32px;
    height: 32px;
    padding: 6px;
    border: none;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
    background: var(--small-button-background);
    color: var(--small-button-color);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    transition: background .5s ease-out;
}

.btn-sm-round:hover {
    background: var(--small-button-hover);
    transition: background .5s ease-in;
}

 /* button layout */

 .text-and-btn-horiz {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: space-evenly;
    font-size: 30px;
 }

/* FORMS  */

/* input {
    outline: none;
} */

input {
    padding: 2px;
}

input[type="text"]:focus,
input[type="email"]:focus {
    outline: 1px solid var(--form-highlight-color); /* Adjust the width and color as needed */
}



form input,
form select {
    height: 30px;
    width: 100%;
}

form label {
    font-size: 18px;
    font-weight: bold;
}

.form-group {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

.form-group label{
    width: 100%;
}

.form-group input{
    width: 50%;
}

.form-group input[type="checkbox"] {
    width: 20px;
}

.form-group input[type="number"] {
    width: 80px;
}

.form-group input[type="checkbox"] {
    margin-right: 10px;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
}

.form-subgroup {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: var(--form-subgroup-color);
    margin: 10px 0;
    border-radius: 10px;
}

.form-subgroup .form-group {
    align-items: center;
    margin: 10px;
}

.form-control.error {
    color: var(--form-error-color);
    background: var(--form-error-color-bg);
    border: 1px solid var(--form-error-color);
}

.form-subsection {
    border: #000 1px solid;
    border-radius: 10px;
    margin: 10px 0;
    padding: 10px;
}

/* FORM ERRORS  */
.form-errors {
    border: var(--form-error-color) 1px solid;
    color: var(--form-error-color);
    background: var(--form-error-color-bg);
    border-radius: 10px;
    margin: 10px 0;
    padding: 10px; 
}

/* message interface django  */

.messages {
    color: var(--form-error-color);
}

.messages li {
    margin-left: 20px;
}


/* .firstname-lastname-fg {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
} */

.user-name-group {
    display: grid;
    grid-template-rows: auto auto; /* Two rows */
    grid-template-columns: auto 1fr 1fr;
    gap: 10px;
}

.user-name-group .form-group.email {
    grid-column: 2;
}

.user-name-group .btn.btn-black.small {
    grid-column: 2;
    max-width: 20%;
}

.firstname-lastname-fg label {
    padding-right: 10px;
}
/* HEADER AREA  */

header {
    display: block;
    position: fixed;
    background: #fff;
    width: 100%;
    height: 18vh;
    z-index: 200;
}

/* header.display-fixed {
    position: fixed;
    background: #fff;
    width: 100%;
    z-index: 300;
    opacity: 0;
    
}

header.display-fixed.visible {
    opacity: 1;
    transition: opacity 1s ease; 
} */

header #header-bar {
    /* position: sticky; */
    border-bottom: #00000085 2px solid;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    /* padding-bottom: 10px; */
    height: 18vh;
}

#header-bar #header-bar-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#header-bar #header-bar-content #logo {
    width: 100px;
    height: 60px;
    margin: 10px;
}

#header-bar #header-bar-content .hamburger {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

#header-bar #header-bar-content .hamburger svg {
    width: 100%;
    height: 100%;
}




#header-bar #header-bar-content #search-and-nav{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 15vh;
    width: 100%;
}


#header-bar #header-bar-content #search-box input {
    /* margin-bottom: 10px; */
    height: 30px;
    padding-left: 30px;
    border: var(--header-border-color) 1px solid;
    outline: none;
    margin-top: 10px;
}

#header-bar #header-bar-content #search-box .icon-container {
    display: block;
    position: relative;
    left: 5px; /* Adjust this value to position the icon */
    top: 0;
    width: 30px;
    height: 10px;
    transform: translateY(-22px);
}

#header-bar #header-bar-content #search-box .icon-container img {
    width: 20px; /* Adjust the width and height as needed */
    height: auto;
    display: block;
}



#header-bar #header-bar-content #nav-box {
    border-top: var(--header-border-color) 1px solid;
    border-bottom: var(--header-border-color) 1px solid;
}


#header-bar #header-bar-content #nav-box ul {
    display: flex;
    list-style: none;
}

#header-bar #header-bar-content #nav-box ul li a{
    text-decoration: none;
    color: var(--header-text-color);
}

#header-bar #header-bar-content #nav-box ul li {
    padding: 8px;
    cursor: pointer;
}

#header-bar #header-bar-content #nav-box ul li.nav-item.selected {
    background-color: var(--header-border-color);
}

#header-bar #header-bar-content #nav-box ul li.nav-item.selected a{
    color: var(--azure-shade-start);
}

/* HERO SECTION  */

/* #hero-section .carousel {
    width: 100vw;
} */

/* #hero-section .carousel {
    width: 100%;
} */

#hero-section .carousel .slide-container {
    background: var(--alt-background-color);
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 53vh;
}

#hero-section .carousel .slide-container .slide {
    flex: 0 0 100%;
    position: relative;
    align-items: center;
    width: 100%;
    /* translate: -100px; */
}


#hero-section .carousel .slide .slide-image {
    height: 53vh;
}

#hero-section .carousel .slide .slide-content {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    top: 10vh;
    left: 20vw;
    height: 30vh;
    width: 60vw;
}

/* #hero-section .carousel .slide .slide-content #back-button:hover {
    cursor: pointer;
    stroke: #fff;
} */

#hero-section .carousel .slide .slide-content .back-button, 
#hero-section .carousel .slide .slide-content .forward-button {
    cursor: pointer;
    stroke: var(--header-text-color);
}

#hero-section .carousel .slide .slide-content .back-button.active:hover,
#hero-section .carousel .slide .slide-content .forward-button.active:hover {
    cursor: pointer;
    stroke: #fff;
}

/* Slide Indicators - These display which slide is selected */

#hero-section .carousel .slide .slide-indicators {
    position: absolute;
    bottom: 2vh;
    width: 100%;
    color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: row;
}

#hero-section .carousel .slide .slide-indicators span {
    padding: 0 4px;
    font-size: 20px;
    color: var(--slide-indicator-inactive);;
    cursor: pointer;
}

#hero-section .carousel .slide .slide-indicators span.active  {
    padding: 0 4px;
    font-size: 20px;
    cursor: default;
    color: #fff;
}

/* #hero-section .carousel .slide .slide-content #back-button path{
    cursor: pointer;
    stroke: #fff;
} */


#hero-section .carousel .slide .slide-content .slide-message {
    background: #cccccc99;
    padding: 10px;
    width: 50vw;
}

#hero-section .carousel .slide .slide-content .slide-heading {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5); /* Adds a text shadow */
    text-transform: uppercase;
}

#hero-section .carousel .slide .slide-content * {
    padding-bottom: 10px;
}

#hero-section #text-under-slideshow {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 17.5vh;
    padding: 20px;
    font-weight: bold;
    color: var(--text-on-white);
    text-align: center;
}

#hero-section #header-footer {
    height: 12.5vh;
    padding: 20px;
    background-color: var(--alt-background-color);
    display: flex;
    justify-content: center;
    align-items: center;
}


#hero-section #header-footer .power-word-block {
    color: #fff;
    font-weight: 200;
    text-transform: uppercase;
    font-size: 25px;
    width: 20vw;
    height: 25px;
    text-align: center;
    /* border-right: var(--azure-shade-start) 2px solid; */
    border-left: var(--azure-shade-start) 2px solid;
}

#hero-section #header-footer .power-word-block:last-child {
    border-right: var(--azure-shade-start) 2px solid;
}

#solutions-hex-container {
    width: 20rem;
    height: 20rem;
    margin: auto;
    padding: 10px;
}


/* PACKATES SECTION  */

.business-image {
    height: 40vh;
    overflow-y: hidden;
}

.business-image::before {
    position: absolute;
    width: 100%;
    border-top: var(--azure-border-color) 8px solid;
    content: '';
    z-index: 100;
}

.business-image #business-image-container {
    height: 80vh;
    position: relative;
    top: -200px;
    background-image: url('./img/business_image.jpg'); /* Your background image */
    background-attachment: fixed;
    background-size: cover;
}

.business-image .business-image-container img {
    -ms-transform-origin-y: -8px;
    transform: translateY(-8px);
}

/* .business-image img{
    position: relative;
} */

.huge-title {
    color: var(--text-on-white);
    height: 20vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 100;
}

/* package table  */
.package-table {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-between;
    margin-bottom: 10vh;
    width: 100%;
}

/* .package-table div {
    display: flex;
    flex-direction: column;
} */

.package-table .package {
    display: grid;
    grid-template-rows: 1fr 1.25fr 1fr 2fr;
}

.package-table .package .table-head {
    background: var(--background-color);
    color: #fff;
    padding: 40px;
    border-right: 1px solid #fff;
}

.package-table .package .table-head h1 {
    font-size: 1rem;
}

.package-table .package .table-cell:nth-child(even) {
    background: var(--table-alt-color);
}

.package-table .package .table-cell {
    border: 1px solid var(--table-border-color);
    padding: 20px;
}

.package-table .package .table-cell h3 {
    font-size: .8rem;
}


/* end package table */


.package-selection {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 10vh;
    width: 100%;
}

.package-selection.single-item{
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 10vh;
  width: 100%;
}

/* different spacing for packages displayed on home page  */
.package-selection.home {
    justify-content: space-evenly;
}

.package-selection .package {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 10px;
    width: 30vw;
    border: var(--package-border-color) 8px solid;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
}

.package-selection .package:first-child {
    margin-right: 10px;
}

.package-selection .package:last-child {
    margin-left: 10px;
}

.package-selection .package a,
.package-selection .package ul {
    margin: 6px 0;
}

.package-selection .package a {
    width: 50%;
    text-align: center;
    align-self: center;
}

.package-selection .package ul {
    margin-left: 1rem;
}

.package-selection .package h1,
.package-selection .package h2 {
    line-height: 40px;
}


.migration-list li p{
    display: inline-block;
    width: 50%;
    margin: auto;
}

.build-package {
    /* display: flex;
    flex-direction: column;
    width: 100%; */
    border: var(--package-border-color) 8px solid;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
}

/* CONTACT SECTION  */

#contact-section #contact-area hr{
    color: #000;
}

#contact-section #contact-area {
    height: 20vh;
    border-top: var(--azure-border-color) 8px solid;
}

#contact-section #contact-area #contact-area-text {
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--alt-background-color-light);
}

/* SOLUTIONS SECTION  */

#build-package form{
    margin: 20px;
}

.package-totals {
    width: 400px;
    background-color: var(--alt-background-color-light);
    margin: 20px;
    padding: 10px;
}

/* SOCIAL MEDIA SECTION */

/* social media icons  */

.social-icon {
    margin: 10px;
    width: 30px;
    height: 30px;
}

.text-icons-right {
    display: flex;
    margin-top: 10px;
}

.media-icons-vertical {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

/* PARTERSHIP SECTION  */

.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    /* flex-direction: row;
    justify-content: space-between;
    align-items: center; */
}

.price-grid .show-mobile {
    display: none;
    font-weight: bold;
}

.price-grid p:nth-child(2) {
    font-weight: bold;
    text-align: left;
}

.price-heading {
    text-align: left !important;
}

.mobile .price-heading {
    text-align: right !important;
}

.price-grid.package-heading,
.price-grid p:nth-child(n+2) {
    text-align: right;
}


.price-grid.package-heading {
    font-weight: bold;
}

/* Shift vat and total */
.price-grid.package-heading p:first-child {
    grid-column-start: 2;
}

/* package totals for mobile display  */

.package-totals.mobile {
    width: auto;
}

.package-totals.mobile .price-grid .show-mobile{
    display: block;
    text-align: left;
}

.package-totals.mobile .price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}


.package-totals.mobile .price-grid.package-heading {
    display: none;
}

#bottom-nav-links {
    display: flex;
    flex-direction: column;
}

#bottom-nav-links a {
    color: var(--bottom-nav-link-color);
    padding: 10px;
}

/* PACKAGE ORDER FORM  */

.order-form-container,
.login-form-container{
    display: flex;
    flex-direction: row;
}

.package-summary {
    padding: 10px;
    line-height: 40px;
    border-right: var(--azure-border-color) 8px solid;
}

.package-summary .summary-price {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.package-info .price-confirm-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
}

.package-info .total-monthly-cost {
    font-size: 1.25rem;
}

/* .package-summary .vertical-blue-line{
    width: 100%;
    border-top: var(--azure-border-color) 8px solid;
    content: '';
    z-index: 200;
} */

.package-info {
    padding : 10px;
    line-height: 40px;
}

main {
    min-height: 70vh;
}

main section#package-order,
main section#login,
main section.page 
{
    background-color: var(--alt-background-color-light);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
}


main section .order-form-container,
main section#login .login-form-container,
main section .info-container {
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

/* PURCHASE SUMMARY SECTION */
main section#purchase-summary .user-confirm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 2fr;
}

/* CHECKOUT  */

main section#package-checkout {
    background-color: var(--alt-background-color-light);
    display: flex;
    justify-content: center;
    align-items: center;
}

main section .order-form-container .package-summary {
    width: 30%;
}

main section .order-form-container,
main section .info-container  {
    background-color: #fff;
    width: 90%;
    margin: 40px;
}

main section .order-form-container .package-info{
    width: 70%;
}

main section .order-form-container .package-info h1{
    text-align: center;
}

main section .order-form-container .package-info p{
    line-height: 1.4;
    margin: 6px 0;
}

main section .order-form-container .package-info form{
    width: 100%;
}

/* LOGIN  */
main section#login .login-form-container {
    width: 60%;
    display: flex;
    flex-direction: column;
    padding: 10px;
    line-height: 40px;
}


/* STRIPE FORM CSS */

.p-GridCell {
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
    width: 100%;
}

.p-GridCell .p-Field {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}



.p-Input-input {
    width: 25rem;
}

.p-Select-select {
    width: 25rem;
}

/* FOOTER  */


footer .footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-top: 10px;
    padding-bottom: 10vh;
}


footer .footer-content  .logo{
    width: 60px;
    height: 40px;
}


footer #scroll-up-btn {
    width: 60px;
    height: 40px;
    fill: var(--azure-shade-start);
    cursor: pointer;
}

/* GRAPHICAL EFFECTS  */
.lds-dual-ring {
    display: inline-block;
    width: 16px;
    height: 16px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 10px;
    height: 10px;
    margin: 2px;
    border-radius: 50%;
    border: 3px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

.lds-dual-ring.hidden {
    display: none;
}

#contact-form-submit .text.hidden,
#custom-form-submit .text.hidden {
    display: none;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* MEDIA QUERIES  */

@media (max-width: 1100px) {
    header #header-bar {
        height: 18vh;
    }

    #header-bar #header-bar-content #logo  {
        width: 75px;
        height: 75px;
    }   

    #header-bar #header-bar-content #search-and-nav {
        justify-content: center;
    }

    #header-bar #header-bar-content #search-and-nav #search-box {
        height: 30px;
    }

    #header-bar #header-bar-content #search-box input {
        margin: 2px;
    }
}

@media (max-width: 950px) {
    #hero-section #header-footer .power-word-block {
        width: 30vw;
    }

    .package-selection .package {
        width: 28vw;
    }
}

@media (max-width: 800px) {
    html, body {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    main section#package-order,
    main section#login,
    main section.page 
    {
        height: auto;
    }

    .form-group input {
        width: 100%;
    }

    .form-subgroup {
        flex-direction: column;
    }
}

@media (max-width: 750px) {
    #hero-section .carousel .slide .slide-content {
        width: 80vw;
        left: 10vw;
    }

    #hero-section .carousel .slide .slide-content .slide-message {
        width: 70vw;
    }

    #hero-section #header-footer .power-word-block {
        font-size: 20px;
    }

    .package-selection {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .package-selection .package {
        margin: 10px 6px;
        width: 100%;
    }
}

@media (max-width: 650px) {
    #hero-section #text-under-slideshow {
        font-size: 12px;
    }

    #hero-section .carousel .slide .slide-content .slide-heading {
        font-size: 20px;
    }
}


@media (max-width: 600px) {
    #header-bar #header-bar-content #logo {
        display: none;
    }
}

@media (max-width: 550px) {
    #hero-section #text-under-slideshow {
        font-size: 10px;
    }

    #hero-section #header-footer .power-word-block {
        font-size: 10px;
    }

    .limit-width-90 {
        width: 90vw;
    }

    #hero-section .carousel .slide .slide-indicators {
        display: none;
    }

    footer .footer-content {
        flex-direction: column;
        align-items: center;
    }
    
    footer .footer-content p{
        margin: 10px 0;

    }

    /* contact form arrangement  */
    .form-group {
        flex-direction: column;
    }

}

@media (max-width: 400px) {
    /* #header-bar #header-bar-content #search-and-nav {
        display: none;
    } */

    #header-bar #header-bar-content .hamburger {
        display: block;

    }

    #header-bar #header-bar-content #nav-box ul {
        position: absolute;
        /* display: none; */
        opacity: 0;
        top: 40;
        left: 0;
        flex-direction: column;
        z-index: 200;
        background-color: #fff;
        transition: opacity .5s ease-in;
    }

    #header-bar #header-bar-content #nav-box ul.visible {
        /* display: block; */
        opacity: 1;
        transition: opacity .5s ease-out;
        box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
    }

    #header-bar #header-bar-content #logo {
        position: absolute;
        display: block;
        margin: 0;
        width: 40px;
        height: 40px;
    }

    header #header-bar {
        height: 18vh;
    }

    #hero-section #text-under-slideshow,
    #contact-section #contact-area #contact-area-text,
    #contact-section #contact-area {
        height: auto;
    }
    

    .text-and-btn-horiz {
        flex-direction: column;
        padding: 10px;
    }

    .text-icons-right {
        flex-direction: column;
    }

    .media-icons-vertical {
        flex-direction: row;
    }

    /* Adjust Slideshow  */
    #hero-section .carousel .slide .slide-content .back-button, #hero-section .carousel .slide .slide-content .forward-button,
    #hero-section .carousel .slide .slide-content .back-button, #hero-section .carousel .slide .slide-content .forward-button  {
        display: none;
    }

    #solutions-hex-container {
        width: 100%;
    }

    .info-container-home {
        padding: 10px;
    }

}

@media (max-width: 300px) {
    #hero-section .carousel .slide .slide-content .slide-heading {
        font-size: 14px;
    }

    #hero-section .carousel .slide .slide-content .slide-text {
        font-size: 10px;
    }

    .btn.hero-btn {
        font-size: 10px;
    }

    .info-container-home {
        padding: 2px;
    }
}


/* beyond this point needs to collapse into hamburger menu and change carousel  */