body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    display: grid;
    grid-template-columns: 1fr;
    background-color: #e3e1cd;
}

/* IE Error */

#IE-error {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: black;
    z-index: 99;
    display: none;
}
#IE-error .div {
    text-align: center;
}


/* Loader */
.loader {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #e3e1cd;
    display: flex;
    justify-content: center;
    align-items: center;
}
.line-scale > div {
    width: 4px;
    height: 35px;
    border-radius: 2px;
    margin: 2px;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    display: inline-block; 
}
  
.line-scale > div:nth-child(1) {
    background-color: red;
    -webkit-animation: line-scale 1s -0.5s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
    animation: line-scale 1s -0.5s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(2) {
    background-color: orange;
    -webkit-animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
    animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(3) {
    background-color: yellow;
    -webkit-animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
    animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(4) {
    background-color: green;
    -webkit-animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
    animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(5) {
    background-color: blue;
    -webkit-animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
    animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(6) {
    background-color: purple;
  -webkit-animation: line-scale 1s 0.0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: line-scale 1s 0.0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

@-webkit-keyframes line-scale {
    0% {
      -webkit-transform: scaley(1);
              transform: scaley(1); }
    50% {
      -webkit-transform: scaley(0.4);
              transform: scaley(0.4); }
    100% {
      -webkit-transform: scaley(1);
              transform: scaley(1); } }
  @keyframes line-scale {
    0% {
      -webkit-transform: scaley(1);
              transform: scaley(1); }
    50% {
      -webkit-transform: scaley(0.4);
              transform: scaley(0.4); }
    100% {
      -webkit-transform: scaley(1);
              transform: scaley(1); } 
}

.loader-symbol p{
    margin-left: -20px;
    margin-top: 2px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
}
  
.loader.hidden {
    animation: fadeOut .25s linear 1;
    animation-fill-mode: forwards;
}

@keyframes fadeOut {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

/* Nav bar section */

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 38px;
    width: 100vw;
    position: fixed;
    z-index: 2;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    transition: .5s;
}
.nav-wrapper.active {
    background-color: rgba(245, 245, 245, 0.9);
    transition: .5s;
}

.left-side {
    display: flex;
    transition: transform .5s;
    margin-top: -5px;
}

.left-side:hover {
    transform: scale(1.15);

}
.left-side .nav-link-wrapper:hover {
    border-bottom: none;
}
.left-side .nav-link-wrapper{
    border-bottom: none;
}

.middle-side {
    display: flex;
}

.nav-wrapper > .middle-side > div {
    margin-right: 20px;
    font-size: 1em;
    text-transform: uppercase;
}

.nav-link-wrapper {
    height: 22px;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.5s;
}

.nav-link-wrapper a {
    color: black;
    text-decoration: none;
    transition: color 0.5s;
}

.nav-link-wrapper:hover {
    border-bottom: 3px solid black;
}

.right-side {
    margin-right: 4em;
    font-size: 1em;
    color: black;
}
.right-side .fas {
    font-size: 1em;
    width: 25px;
    text-align: center;
    text-decoration: none;
    color: black;
  }
.right-side a {
    color: black;
    text-decoration: none;
}


/* ********SMALL SCREEN SIZE (down)********/


.mobile-screen{
    cursor: pointer;
    margin: 40px 0 0 40px;
    position: fixed;
    z-index: 3;
    
    display: none;
}

.mobile-screen-logo-right {
    display: none;
}
.mobile-screen div{
    margin: 3px 0;
    background-color:black;
    height: 2.5px;
    width: 28px;
    transition: 0.5s;
}

    .mobile-screen:hover .burger-line1{
        transform: translateY(1.25px);
        transition: .25s;
    }


    .mobile-screen:hover .burger-line3{
        transform: translateY(-1.25px);
        transition: .25s;
    }
.opened-side-screen {
    cursor: pointer;
    margin: 40px 0 0 40px;
    position: fixed;
    z-index: 3;
}
.opened-side-screen div{
    margin: 3px 0;
    background-color:black;
    height: 2.5px;
    width: 28px;
    transition: 0.5s;
}
.opened-side-screen:hover div{
    width: 25px;
}

    .opened-side-screen .burger-line1{
        transition: 0.5s;
        transform: rotate(45deg)  translate(-5px, 13px);
    }

    .opened-side-screen .burger-line2{
        background-color: transparent;
        transform: translateX(-10px);
        transition: 0.5s;
    }


    .opened-side-screen .burger-line3{
        transition: 0.5s;
        transform: rotate(-45deg) translate(-5px, -13px);
    }

#side-menu-mobile {
    width: 0px;
    height: 100vh;
    left: -15px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 10px 10px 10px 7px  rgba(128, 128, 128, 0.4);
    position: fixed;
    z-index: 2;
    transition: .75s;
    display: block;
    overflow-x: hidden;
}

.side-menu-wrapper {
    margin: 80px 0 0 40px;
    white-space: nowrap;
}

.side-link-wrapper {
    font-size: 1em;
    text-transform: uppercase;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 20px 0 20px 0;
    width: 80%;
    border-bottom: rgb(224, 224, 224) solid;
}


.side-link-wrapper a {
    color:rgb(92, 91, 91);
    text-decoration: none;
    transition: 0.25s;
}

.side-link-wrapper a:hover {
    color:black;
    font-size: 1.1em;
    transition: .25s;
}

.side-link-wrapper-phone {
    /* position: fixed;
    top: 0; */
    display: flex;
    flex-direction: column-reverse;
    justify-content: end;
    height: calc(100vh - 400px);
    font-size: 1em;
    text-transform: uppercase;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 20px 0 20px 0;
    overflow: hidden;
}

.side-link-wrapper-phone a {
    color:rgb(92, 91, 91);
    text-decoration: none;
    transition: 0.25s;
}


/* ********SMALL SCREEN SIZE (up)********/



/* ********Media Nav Bar (down)********/

@media screen and (max-width: 850px) {

    .nav-link-wrapper {
        display: none;
    }

    .mobile-screen {
        display: block;
    }
    .mobile-screen-logo-right {
        display: flex;
        justify-content: flex-end;
        position: fixed;
        padding: 25px 0;
        width: 95vw;
        z-index: 2;
        transition: transform .5s;
        
    }
    .mobile-screen-logo-right:hover {
        transform: scale(1.01);
    }
    
}

/* ********Media Nav Bar (up)********/

/* Banner section */
#banner {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 14em 4em 6em 4em;
    min-height: 70vh;
    background-image: url(images/MeetingRoom.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-top: 0;
    position: relative;
    text-align: center;
    overflow: hidden;
}
#banner .banner-filter {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color:white;
    opacity: .35;
    z-index: 1;
}

#banner video {
    position: absolute;
    top: 0;
    width:  auto;
    /* height: 100%; */
    min-width: 100%;
    min-height: 650px;
    overflow: hidden;
    z-index: 0;
}

#banner .inner {
    z-index: 1;
} 


#banner h1 {
    color:black;
    font-weight: bold;
    font-size: 7em;
    font-weight: 400;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin-top: -2em;
    text-shadow: 0 0 10px rgb(255, 255, 255),
                0 0 20px rgb(255, 255, 255),
                0 0 30px rgb(255, 255, 255),
                0 0 40px rgb(255, 255, 255),
                0 0 50px rgb(255, 255, 255),
                0 0 60px rgb(255, 255, 255),
                0 0 70px rgb(255, 255, 255),
                0 0 80px rgb(255, 255, 255);

    animation: title 3s linear 1;
}
@keyframes title {
    0% {
        text-shadow: none;
        letter-spacing: 15px;
    }
    50% {
        text-shadow: none;
        letter-spacing: 0;
    }
    100% {
        text-shadow: 0 0 10px rgb(255, 255, 255),
        0 0 20px rgb(255, 255, 255),
        0 0 30px rgb(255, 255, 255),
        0 0 40px rgb(255, 255, 255),
        0 0 50px rgb(255, 255, 255),
        0 0 60px rgb(255, 255, 255),
        0 0 70px rgb(255, 255, 255),
        0 0 80px rgb(255, 255, 255);
        letter-spacing: 0;
    }
} 

#banner p {
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.1em;
    font-weight: lighter;
    animation: subtitle 2s linear 1;
}
@keyframes subtitle {
    0% {
        color: transparent;
        filter: blur(10px);
    }
    80% {
        color: black;
        filter: blur(10px);
    }
    100% {
        color: black;
        filter: none;
    }
}

.button {
    padding: 12px 20px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    outline-width: 2px solid black;
    background-color: rgb(223, 222, 222);
    border: none;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    color: black;
    animation: button 3s linear 1;
  }

  
  .button:hover {
      background-color:black;
      color: rgb(223, 222, 222);
    }

  .button.fas {
    color: black;
  }

@keyframes button{
    0% {
        color: transparent;
        background-color: transparent;
    }
    80% {
        color: transparent;
        background-color: transparent;
    }
    100% {
        color: black;
        background-color: rgb(223, 222, 222);
    }
}

#banner-image {
    height: 325px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: linear-gradient(to bottom, rgba(255,255,255,1), transparent), url(./images/banner_brick.jpg);
}
/**********Media Banner (down)************/

@media screen and (max-width: 570px) {

    #banner h1 {
        color:black;
        font-weight: bold;
        font-size: 5.5em;
        font-weight: 400;
        font-family: Georgia, 'Times New Roman', Times, serif;
        margin-top: -2em;
    }
}

@media screen and (max-width: 450px){

    #banner .banner-filter {
        opacity: .1;
    }
    
    #banner video {
        margin-left: 250px;
    }
}

@media screen and (max-width: 400px) {

    #banner h1 {
        color:black;
        font-weight: bold;
        font-size: 4.25em;
        font-weight: 400;
        font-family: Georgia, 'Times New Roman', Times, serif;
        margin-top: -2em;
    }
}

/**********Media Banner (up)************/

/* Welcome Divider */

#welcome-divider {
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 5em;
}

.headline-3 {
    font-size: 2em;
    color: transparent;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-top: 25px;
}
.headline-3-animate {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: rgb(85, 85, 85);
    margin-top: 25px;
    animation: welcome-divider-header 2s linear 1;
}

@keyframes welcome-divider-header {
    0% {
        margin-left: -300%;
        margin-right: 300%;
    }
    100%{
        margin-left: 0;
        margin-right: 0;
    }
}

.paragraph-3 {
    font-size: 1.1em;
    color: transparent;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 25px;
}

.paragraph-3.paragraph-3-animate {
    font-size: 1.1em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: rgb(85, 85, 85);
    margin-bottom: 25px;
    animation: welcome-divider-paragraph 2s linear 1;
}

@keyframes welcome-divider-paragraph {
    0% {
        margin-right: -300%;
        margin-left: 300%;
    }
    100%{
        margin-right: 0;
        margin-left: 0;
    }
}

/**********Media Divider (down)************/

@media screen and (max-width: 500px) {

    #welcome-divider {
        padding: 20px;
    }
}

/**********Media Divider (up)************/

/* Portfolio section */

.portfolio-items-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.portfolio-item-wrapper {
    position: relative;
    /* fills grid in left to right, top to bottom */
}

.portfolio-img-background {
    height: 350px;
    width: 100%;
    /* padding: 40%; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.img-text-wrapper {
    position: absolute; /*this absolute is used in each grid because of  .portfolio-item-wrapper relative*/
    top: 0; /* absolute needs a reference location*/
    display: flex;
    flex-direction: column;
    justify-content: center; /*centers left-right*/
    align-items: center; /*centers top-bottom*/
    height: 100%;
    text-align: center;
    padding-left: 100px;
    padding-right: 100px;
}

.img-text-wrapper img {
    width: 50%;
    transition: 1s;
    margin-bottom: 20px;
    opacity: 0;
}

.img-text-wrapper:hover img {
    transition: 1s;
    opacity: 1;
}



.img-text-wrapper .subtitle {
    transition: 1s;
    color: transparent;
    font-weight: 400;
    font-size: 1.25em;
}

.img-text-wrapper:hover .subtitle {
    font-weight: 400;
    color: teal;
    font-size: 1.25em;
}

.img-darken {
    transition: 1s;
    filter: brightness(10%);
}


/**********Media Portfolio (down)************/

@media screen and (max-width: 1040px) {

    .portfolio-items-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 724px) {

    .portfolio-items-wrapper {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 425px) {
    .img-text-wrapper {
        padding-left: 25px;
        padding-right: 25px;
    }
}

/**********Media Portfolio (up)************/

/* Reviews */

#reviews {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
    height: auto;
}

h4 {
    font-size: 3em;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.rotate p{
    font-size: 1.5em;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

/**********Media Reviews (down)************/

@media screen and (max-width: 1040px) {

    #reviews {
        margin-bottom: 200px;
        height: 150px;
    }
}
@media screen and (max-width: 868px) {

    #reviews {
        margin-bottom: 250px;
        height: 200px;
    }
}
@media screen and (max-width: 450px) {

    #reviews {
        margin-bottom: 300px;
        height: 250px;
    }
}
@media screen and (max-width: 350px) {

    #reviews {
        margin-bottom: 325px;
        height: 275px;
    }
}
/**********Media Reviews (up)************/

/* Roommate Services */
.roommate-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0em 2em 5em 2em;
    height: 50em;
}


.roommate-services-picture {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}


.roommate-services-writeup {
    margin: auto;
    padding-right: 25px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: darkslategray;
}
    .roommate-services-writeup header {
        font-size: 2em;
    }
    .roommate-services-writeup p {
        font-size: 1.1em;
        margin-top: 2em;
        letter-spacing: 1.05px;
    }

/**********Media Roommate Services (down)************/

@media screen and (max-width: 1650px) {

    .roommate-services {
        display: grid;
        grid-template-columns: 1fr 2fr;
        margin: 0em 2em 5em 2em;
        height: 50em;
    }

}

@media screen and (max-width: 1080px) {

    .roommate-services-writeup p {
        font-size: 1.1em;
        margin-top: 2em;
        letter-spacing: 1px;
    }

}

@media screen and (max-width: 1200px) {

    .roommate-services {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        margin: 1em 1em 5em 1em;
    }

}

@media screen and (max-width: 400px) {

    .roommate-services-picture {
        background-size: 275px;
    }

}

/**********Media Roommate Services (up)************/

/* About Me Page */
.about-me {
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin: 7em 2em 5em 2em;
}


.my-picture {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 1em;
}


.about-me-writeup {
    margin: 2em;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: darkslategray;
}
    .about-me-writeup header {
        font-size: 2em;
        margin-top: 1em;
    }
    .about-me-writeup p {
        font-size: 1.1em;
        margin-top: 2em;
        letter-spacing: 1.05px;
    }

/**********Media About Me (down)************/

@media screen and (max-width: 1080px) {

    .about-me-writeup p {
        font-size: 1.1em;
        margin-top: 2em;
        letter-spacing: 1px;
    }

}

@media screen and (max-width: 850px) {

    .about-me {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        margin: 1em;
    }
    .about-me-writeup {
        margin: 1em;
    }
}

@media screen and (max-width: 500px) {

    .about-me {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1.5fr;
        margin: 1em;
    }

}

/**********Media About Me (up)************/

/* Prices Page */

.pricing-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 3em 0;
}
.centering-container {
    display: flex;
    justify-content: center;
    align-items: center ;
}


.flip-card-container {
    width: 450px;
    height: 600px;
    perspective: 1500px;
}

.flip-card-container:hover .flip-card {
    transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
}

.flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    -moz-trasform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: transform 1s;
    -moz-transition: transform 1s;
    -webkit-transition: transform 1s;
    
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.flip-card-front-top {
    display: block;
    background-size: cover;
    background-position-x: -175px;
    background-repeat: no-repeat;
    height: 75%;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 40px 110px rgba(0, 0, 0, 0.6);
}
.flip-card-front-bottom {
    display: block;
    text-align: center;
    color: rgb(46, 46, 46);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 28%;
    border-radius: 20px;
    background-color: rgb(175, 197, 212);
    box-shadow: 0 40px 110px rgba(0, 0, 0, 0.4);
}
.flip-card-front-bottom div{
    width: 100%;
    height: 30px;
    margin-top: -17px;
    background-color: rgb(175, 197, 212);
    /* box-shadow: 0 40px 110px rgba(0, 0, 0, 0.6); */
}
.flip-card-front-bottom header {
    margin-top: 0px;
    font-size: 2.75em;
    font-weight: bold;
}
.flip-card-front-bottom p {
    display: none;
    font-style: italic;
    font-size: .9em;
    margin-block-start: .5em;
}
.flip-card-back {
    background-color: rgb(106, 94, 107);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: capitalize;
    color: white;
    border-radius: 20px;
    transform: rotateY(180deg);
    box-shadow: 0 40px 110px rgba(0, 0, 0, 0.6);
}
.flip-card-back-text-container {
    width: 100%;
    height: 100%;
}
.flip-card-back header {
    text-align: center;
    font-size: 2.75em;
    font-weight: bold;
    margin: 10px 5px;
}
.flip-card-back p {
    font-size: 1.25em;
    text-align: center;
}
.included-price p {
    font-size: 1em;
    margin-left: -20px;
    text-align: left;
}
.included-price li{
    font-size: 1em;
}


/* .prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    text-align: center;
    color: rgb(46, 46, 46);
}
    .prices header{
        font-size: 2.75em;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: bold;
        margin-bottom: 1.1em;
    }
    .prices p{
        font-size: 1.25em;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        text-transform: capitalize;
    }


.charlotte {
    margin: 1em;
}

.winston-salem {
    margin: 1em;
} */



.additional-info {
    text-align: center;
    color: rgb(46, 46, 46);
    margin-bottom: 3em;
    margin-top: 3em;
}
.additional-info header{
    font-size: 2em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
}
.additional-info p{
    font-size: 1.25em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: capitalize;
    margin-bottom: 1.5em;
}

.swiper-container {
    width: 100vw;
    padding-top: 50px;
    padding-bottom: 100px;
}
.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 30em;
  height: 30em;
}
.swiper-pagination {
    padding-bottom: 25px;
}


/**********Media Prices (down)************/

@media screen and (max-width: 1025px) {
.flip-card-front-bottom p {
    display: block;
    font-size: .8em;
}
}

@media screen and (max-width: 1000px) {
    .pricing-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        margin: 3em 0 0 0;
    }

    .centering-container {
        margin-bottom: 75px;
    }


}

@media screen and (max-width: 550px) {
    .flip-card-container {
        width: 320px;
        height: 450px;
        perspective: 1500px;
    }
    .flip-card-front-bottom header {
        margin-top: 0;
        font-size: 1.75em;
    }
    .flip-card-front-bottom p {
        display: block;
        font-size: .8em;
    }
    .flip-card-front-top {
        background-position-x: -140px;
    }
    .flip-card-back header {
        font-size: 1.3em;
    }
    .flip-card-back p {
        font-size: .9em;
        margin-bottom: 0;
        text-align: center;
    }
    .included-price p {
        font-size: .8em;
        text-align: left;
    }
    .included-price li{
        font-size: .8em;
    }
}

/**********Media Prices (up)************/

/* Application */

#form-applicant {
    margin-left: 3em;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
    #form-applicant input, #form-applicant select {
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        margin-top: 25px;
        font-size: 1.25em;
        border: none;
        outline: none;
        background: none;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        -o-appearance: none;

    }
    #form-applicant input {
        border-bottom: 1.5px solid black;
        border-radius: 0;
        padding: 0;
    }

    #form-applicant label {
        margin-top: 5px;
        font-size: 1em;
        color: rgb(50, 50, 50);
    }

    #form-applicant .check-box label{
        font-size: 1.4em;
    }
    #form-applicant .check-box input{
        border: 1px solid black;
        appearance: checkbox;
        -webkit-appearance: checkbox;
        -moz-appearance: checkbox;
        -o-appearance: checkbox;
    }

    #form-applicant header {
        font-size: 3em;
        margin: 1em 0 .25em 0;
    }
    #form-applicant p {
        font-size: 2em;
        margin: 1.5em .5em 0 0;
    }

.one-field {
    margin: .25em 3em .25em 0;
}
    .one-field input, .one-field label {
        width: 80%;
        display: inline-block;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        -o-appearance: none;
    }
    .one-field label {
        margin-left: 2px;
    }


.two-fields {
    margin: .25em 3em .25em 0;
}
    .two-fields-single {
        display: inline-block;
        width: 40%;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        -o-appearance: none;
    }
    .two-fields input, .two-fields label {
        width: 98%;
    }
    .two-fields label {
        margin-left: 2px;
    }

.three-fields {
    margin: .25em 3em .25em 0;
}
    .three-fields-single {
        display: inline-block;
        width: 26.5%;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        -o-appearance: none;
    }
    .three-fields label, .three-fields input, .three-fields select {
        width: 98%;
    }
    .three-fields label {
        margin-left: 2px;
    }


#form-applicant .submit-button {
    margin: 50px 0;
    padding: 15px;
    border: 1.5px solid black;
    border-radius: 10px;
    background-color: rgb(218, 218, 218);
    cursor: pointer;
}
#form-applicant .submit-button:hover {
    color: white;
    background-color: black;
} 


/**********Media Application (down)************/

@media screen and (max-width: 850px) {
    .one-field input, .one-field label {
        width: 88%;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        -o-appearance: none;
    }
    .two-fields-single, .three-fields-single {
        display: block;
        width: 90%;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        -o-appearance: none;
    }
}

/**********Media Application (up)************/

/* Footer */

#footer {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    padding: 1em 0 1em 0;
    background-color:black;
    text-align: center;
}
h2 {
    color: #e3e1cd;
}
#footer .inner > p {
    color:#e3e1cd;
}

    #footer .inner {
        width: 90%;
        margin: 0 auto;
    }

    #footer .fab, #footer .fas {
        padding: 0 20px 0 20px;
        font-size: 40px;
        width: 25px;
        justify-content: center;
        text-align: center;
        text-decoration: none;
        color: #e3e1cd;
        transform: translateX(-20%);
      }
      
      .fab:hover, .fas:hover {
          opacity: 0.6;
      }

/**********Media Footer (down)************/

@media screen and (max-width: 736px) {

    #footer {
        padding: 3em 0 1em 0;
    }

}

/**********Media Footer (up)************/