@charset "utf-8";
/** Layout Page Styles **/
.container {
	width: 100%;
}
.sec-inner {
  width: 100%;
  max-width: 1480px;
  height: auto;
  margin: 0px auto 0px auto;
}
.txt-center {
  text-align: center;
}
.sec-flex {
  display: flex;
  flex-wrap: wrap;
}
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/** Header Styles **/
.main-header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;  
  background: #031b47;
  background: linear-gradient(135deg,  #059bd9 0%,#031b47 100%);
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  transition: all 0.3s;
}
.main-header.tiny {
  height: 40px;
}
.header-inner {
  display: flex;
  width: 100%;
  max-width: 1300px;
  height: auto;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}
.logo {
  flex: 0;
  padding: 10px 0 0 0;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  font-size: 1.3em;
  font-weight: 700;
  transition: all 0.3s;
}
.logo img {
  width: 181px;
  height: 40px;
  transition: all 0.3s;
}
.main-header.tiny .logo {
  padding: 5px 0 0 0;
}
.main-header.tiny .logo img {
  width: 136px;
  height: 30px;
}
.main-menu {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  transition: all 0.3s;
}
.main-header.tiny .main-menu  {
  padding-top: 5px;
}
.hspacer {
  height: 35px;
}
@media screen and (max-width: 1200px) {
  .header-inner {
    padding: 0 0 0 15px;
  }
}
@media screen and (max-width: 1024px) {
  .logo {
    font-size: 0.85em;
  }
  .main-menu {
    flex: 2;
  }
}
@media screen and (max-width: 768px) {
  .main-header {
    width: 100%;
    height: auto;
    position: relative;
  }
  .header-inner {
    display: block;
    padding: 0;
  }
  .logo {
    padding: 15px 0 15px 0;
    text-align: center;
    font-size: 1.3em;
  }
  .main-menu {
    display: block;
  }
  .hspacer {
    height: 0;
  }
}
@media screen and (max-width: 460px) {
  .logo img {
    max-width: 75%;
    height: auto;
  }
}

/** Home Section Styles **/
.home-area {
  width: 100%;
  padding: 165px 0 165px 0;
  background: #000000 url("img/backdrop.jpg") no-repeat center center;
  background-attachment: fixed;
  background-size: cover;
}
.pb-intro {
  width: 100%;
  min-height: 464px;
  max-width: 768px;
  margin: 0 auto 0 auto;
  padding: 45px 75px 45px 75px;
  background: rgba(255,255,255,0.9);
  border-top: 1px solid rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  color: rgba(0,0,0,1);
  box-sizing: border-box;
  text-align: center;
  line-height: 2.1em;
  transition: all 0.5s;
}
.pb-intro h2 {
  color: #067CBC;
}
@media screen and (max-width: 1200px) {
  .pb-intro {
    min-height: 581px;
  }
}
@media screen and (max-width: 640px) {
  .pb-intro {
    padding: 35px 45px 45px 45px;
  }
}

/** Button Styles **/
.box-button {
	box-shadow:inset 0px 1px 0px 0px rgba(84,163,247,0);
	background: #067CBC;
	border-radius:3px;
	border:1px solid rgba(18,77,119,0);
	display:inline-block;
	cursor:pointer;
	color: rgba(255,255,255,1);
	padding:6px 24px;
	text-decoration:none;
	text-shadow:0px 1px 0px rgba(0,125,193,0);
  transition: all 0.5s;
}
.box-button:hover,
.box-button:focus {
	background-color: #02c3f4;
  color: #000000;
}

/** About Us Section **/
#about-us {
  overflow-x: hidden;
  width: 100%;
  padding: 145px 25px 145px 25px;
  background: #efefef;
  border-top: 2px solid #17181a;
  text-align: center;
  box-sizing: border-box;
  color: #333333;
}
#about-us h2 {
  font-size: 3.1em;
  line-height: 1.3em;
  margin: 15px 0 15px 0;
  color: #031b47;
}
#about-us hr {
  border: 0;
  height: 2px;
  max-width: 145px;
  margin: 0 auto 0 auto;
  background: #03aae3;
}
#about-us h3 {
  color: #067CBC;
}
.au-area {
  display: flex;
  justify-content: center;
}
.au-sec {
  flex: 1;
  background: rgba(255,255,255,0.5);
  border-radius: 5px;
  margin: 15px 2% 0 2%;
  padding: 15px 45px 25px 45px;
  text-align: center;
  box-sizing: border-box;
}
.au-sec ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.au-sec span {
  color: #008A22;
}
.feature {
  flex: 1;
  padding: 0 45px 0 45px;
  text-align: center;
  box-sizing: border-box;
}
.circle {
	width: 100px;
	height: 100px;
  margin: 0 auto 0 auto;
  border-radius: 50%;
  background: #0594d4;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-align: center;
  font-size: 50px;
  box-sizing: border-box;
}
.c01 {
  padding: 20px 0 0 3px;
}
.c02 {
  padding: 23px 0 0 0;
}
.c03 {
  padding: 20px 0 0 1px;
}
@media screen and (max-width: 768px) {
  #cserv {
    padding: 45px 45px 25px 45px;
  }
  .au-area {
    display: block;
  }
  .au-sec {
    text-align: left;
  }
  .circle {
    float: left;
    margin-right: 25px;
  }
}
@media screen and (max-width: 468px) {
  .circle {
    float: none;
    margin-right: auto;
  }
  .au-sec {
    text-align: center;
  }
}

/** Section 1 - "Sanitation Tailored To You" **/
#section01 {
  overflow-x: hidden;
  width: 100%;
  padding: 115px 25px 115px 25px;
  background: #ffffff; 
  text-align: left;
  box-sizing: border-box;
  color: #17181a;
}
#section01 h2 {
  font-size: 3.8em;
  line-height: 1.3em;
  color: #031b47;
}
#section01 hr {
  border: 0;
  height: 2px;
  max-width: 145px;
  margin: 0 0 35px 0;
  background: #03aae3;
}
.about-inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0px auto 0px auto;
  line-height: 2.0em;
}
.about-inner img {
  float: right;
  margin: 0 0 25px 45px
}
@media screen and (max-width: 1024px) {
  .about-inner img {
    width: 50%;
    height: auto;
    margin: 0 0 15px 45px;
  }
}
@media screen and (max-width: 768px) {
  #section01 {
    padding: 115px 45px 75px 45px;
    text-align: center;
  } 
  .about-inner img {
    float: none;
    margin: 0 auto 15px auto;
  }
  #section01 hr {
    border: 0;
    height: 2px;
    max-width: 125px;
    margin: 0 auto 0 auto;
  }
}


/** Section 2 - Commercial Cleaning & Janitorial **/
#section02 {
  overflow-x: hidden;
  width: 100%;
  padding: 45px 0 45px 0;
  background: #f3f3f3;
  text-align: left;
  box-sizing: border-box;
  overflow: hidden;
  color: #333333;
}
#section02 h2 {
  margin: 15px 0 15px 0;
  font-size: 3.3em;
  line-height: 1.3em;
  color: #031b47;
}
#section02 hr {
  border: 0;
  height: 2px;
  max-width: 125px;
  margin: 0 0 35px 0;
  background: #03aae3;
}
.sec02-flex {
  display: flex;
}
.sec02-imgs {
  order: 1;
}
.sec02-imgs img {
  border: 1px solid #ffffff;
  box-shadow: 4px 4px 8px rgba(0,0,0,0.15);
}
.sec02-img01 {
  padding-top: 25px;
}
.sec02-img02 {
  margin: -35px 0 0 35px;
}
.sec02-img03 {
  margin: -50px 0 0 0;
}
.sec02-text {
  flex: 1;
  order: 2;
  margin: 25px 25px 25px 25px;
  padding: 5px 25px 15px 25px;
}
@media screen and (max-width: 1653px) {
  .sec02-text {
    background: rgba(255,255,255,0.55);
  }
}
@media screen and (max-width: 1400px) {
  .sec02-text {
    margin: 25px 25px 25px 400px;
    background: rgba(255,255,255,0.85);
  }
}
@media screen and (max-width: 1024px) {
  #section02 h2 {
    font-size: 2.3em;
  }
  #section02 {
    background-size: cover;
  }
  .sec02-text {
    margin: 25px 25px 25px 25px;
  }
}
@media screen and (max-width: 768px) {
  #section02 hr {
    border: 0;
    height: 2px;
    max-width: 125px;
    margin: 0 auto 0 auto;
  }
  .sec02-flex {
    flex-wrap: wrap;
    text-align: center;
  }
  .sec02-flex ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  .sec02-flex ul li::before {
    content: "● ";
  }
  .sec02-imgs {
    flex-basis: 100%;
    order: 2;
  }
  .sec02-text {
    flex-basis: 100%;
    order: 1;
    padding: 15px 25px 45px 25px;
  }
}

/** Section 2IS - Move In/Move Out Cleaning Services **/
#section02is {
  overflow-x: hidden;
  width: 100%;
  padding: 0;
  background: #ffffff;
  background-image: url(img/move.jpg);
  background-repeat: no-repeat;
  background-position: center right; 
  text-align: left;
  box-sizing: border-box;
  overflow: hidden;
  color: #333333;
}
#section02is h2 {
  font-size: 3.3em;
  line-height: 1.3em;
  color: #031b47;
}
#section02is hr {
  border: 0;
  height: 2px;
  max-width: 125px;
  margin: 0 0 35px 0;
  background: #03aae3;
}
.is-text {
  margin: 25px 800px 25px 25px;
  padding: 5px 25px 15px 25px;
}
@media screen and (max-width: 1653px) {
  .is-text {
    background: rgba(255,255,255,0.55);
  }
}
@media screen and (max-width: 1400px) {
  .is-text {
    margin: 25px 400px 25px 25px;
    background: rgba(255,255,255,0.85);
  }
}
@media screen and (max-width: 1024px) {
  #section02is h2 {
    font-size: 2.3em;
  }
  #section02is {
    background-size: cover;
  }
  .is-text {
    margin: 25px 25px 25px 25px;
  }
}

/** Section 3 - Janitorial Cleaning Service Styles **/
#section03 {
  overflow-x: hidden;
  width: 100%;
  padding: 0;
  background: #f3f3f3;
  text-align: left;
  box-sizing: border-box;
  overflow: hidden;
  color: #333333;
}
#section03 h2 {
  font-size: 3.3em;
  line-height: 1.3em;
  color: #031b47;
}
#section03 hr {
  border: 0;
  height: 2px;
  max-width: 125px;
  margin: 0 0 35px 0;
  background: #03aae3;
}
.sec03-flex {
  display: flex;
}
.sec03-imgs {
  order: 1;
  padding-top: 125px;
}
.sec03-imgs img {
  border: 1px solid #ffffff;
  box-shadow: 4px 4px 8px rgba(0,0,0,0.15);
}
.sec03-img01 {
  padding-top: 25px;
}
.sec03-img02 {
  margin: -35px 0 0 35px;
}
.sec03-img03 {
  margin: -25px 0 0 0;
}
.sec03-img04 {
  margin: -25px 0 0 35px;
}
.sec03-text {
  flex: 1;
  order: 2;
  margin: 25px 25px 25px 25px;
  padding: 5px 25px 15px 25px;
}
@media screen and (max-width: 1653px) {
  .sec03-text {
    background: rgba(255,255,255,0.55);
  }
}
@media screen and (max-width: 1400px) {
  .sec03-text {
    margin: 25px 25px 25px 400px;
    background: rgba(255,255,255,0.85);
  }
}
@media screen and (max-width: 1024px) {
  #section03 h2 {
    font-size: 2.3em;
  }
  #section03 {
    background-size: cover;
  }
  .sec03-text {
    margin: 25px 25px 25px 25px;
  }
}
@media screen and (max-width: 768px) {
  #section03 hr {
    border: 0;
    height: 2px;
    max-width: 125px;
    margin: 0 auto 0 auto;
  }
  .sec03-flex {
    flex-wrap: wrap;
    text-align: center;
  }
  .sec03-flex ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  .sec03-flex ul li::before {
    content: "● ";
  }
  .sec03-imgs {
    flex-basis: 100%;
    order: 2;
    padding: 0 0 45px 0;
  }
  .sec03-text {
    flex-basis: 100%;
    order: 1;
  }
}

/** Section 4 - Industrial Cleaning **/
#section04 {
  overflow-x: hidden;
  width: 100%;
  padding: 0;
  background: #ffffff;
  text-align: left;
  box-sizing: border-box;
  overflow: hidden;
  color: #333333;
}
#section04 h2 {
  font-size: 3.3em;
  line-height: 1.3em;
  color: #031b47;
}
#section04 hr {
  border: 0;
  height: 2px;
  max-width: 125px;
  margin: 0 0 35px 0;
  background: #03aae3;
}
.sec04-flex {
  display: flex;
}
.sec04-imgs {
  order: 1;
  padding-top: 85px;
}
.sec04-imgs img {
  border: 1px solid #ffffff;
  box-shadow: 4px 4px 8px rgba(0,0,0,0.15);
}
.sec04-img01 {
  padding-top: 25px;
}
.sec04-img02 {
  margin: -35px 0 0 35px;
}
.sec04-img03 {
  margin: -25px 0 0 0;
}
.sec04-img04 {
  margin: -25px 0 0 35px;
}
.sec04-text {
  flex: 1;
  order: 2;
  margin: 25px 25px 25px 25px;
  padding: 5px 25px 15px 25px;
}
@media screen and (max-width: 1653px) {
  .sec04-text {
    background: rgba(255,255,255,0.55);
  }
}
@media screen and (max-width: 1400px) {
  .sec04-text {
    margin: 25px 400px 25px 25px;
    background: rgba(255,255,255,0.85);
  }
}
@media screen and (max-width: 1024px) {
  #section04 h2 {
    font-size: 2.3em;
  }
  #section04 {
    background-size: cover;
  }
  .sec04-text {
    margin: 25px 25px 25px 25px;
  }
}
@media screen and (max-width: 768px) {
  #section04 hr {
    border: 0;
    height: 2px;
    max-width: 125px;
    margin: 0 auto 0 auto;
  }
  .sec04-flex {
    flex-wrap: wrap;
    text-align: center;
  }
  .sec04-flex ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  .sec04-flex ul li::before {
    content: "● ";
  }
  .sec04-imgs {
    flex-basis: 100%;
    order: 2;
    padding: 0 0 45px 0;
  }
  .sec04-text {
    flex-basis: 100%;
    order: 1;
  }
}

/** Section 5 - Medical Cleaning & Janitorial **/
#section05 {
  overflow-x: hidden;
  width: 100%;
  padding: 0;
  background: #f3f3f3;
  background-image: url(img/medical.jpg);
  background-repeat: no-repeat;
  background-position: center left; 
  text-align: left;
  box-sizing: border-box;
  overflow: hidden;
  color: #333333;
}
#section05 h2 {
  font-size: 3.3em;
  line-height: 1.3em;
  color: #031b47;
}
#section05 hr {
  border: 0;
  height: 2px;
  max-width: 125px;
  margin: 0 0 35px 0;
  background: #03aae3;
}
.sec05-inner {
  display: flex;
}
.sec05-text {
  flex: 2;
  padding: 25px 25px 25px 30%;
}
@media screen and (max-width: 2400px) {
  .sec05-text {
    padding: 25px 25px 25px 40%;
  }
}
@media screen and (max-width: 1653px) {
  .sec05-text {
    background: rgba(255,255,255,0.55);
  }
}
@media screen and (max-width: 1400px) {
  .sec05-text {
    margin: 25px 25px 25px 400px;
    background: rgba(255,255,255,0.85);
  }
}
@media screen and (max-width: 1024px) {
  #section05 h2 {
    font-size: 2.3em;
  }
  #section05 {
    background-size: cover;
  }
  .sec05-text {
    margin: 25px 25px 25px 25px;
    padding: 15px 25px 25px 25px;
  }
}


/** Section 6 - Floor Mats **/
#section06 {
  overflow-x: hidden;
  width: 100%;
  padding: 0;
  background: #ffffff;
  text-align: left;
  box-sizing: border-box;
  overflow: hidden;
  color: #333333;
}
#section06 h2 {
  font-size: 3.3em;
  line-height: 1.3em;
  color: #031b47;
}
#section06 hr {
  border: 0;
  height: 2px;
  max-width: 125px;
  margin: 0 0 35px 0;
  background: #03aae3;
}
.sec06-flex {
  display: flex;
}
.sec06-imgs {
  order: 1;
  padding-top: 85px;
}
.sec06-imgs img {
  border: 1px solid #ffffff;
  box-shadow: 4px 4px 8px rgba(0,0,0,0.15);
}
.sec06-img01 {
  padding-top: 25px;
}
.sec06-img02 {
  margin: -35px 0 0 35px;
}
.sec06-img03 {
  margin: -25px 0 0 0;
}
.sec06-img04 {
  margin: -25px 0 0 35px;
}
.sec06-text {
  flex: 1;
  order: 2;
  margin: 25px 25px 25px 25px;
  padding: 5px 25px 15px 25px;
}
@media screen and (max-width: 1960px) {
  .sec06-text {
    padding: 25px 45px 25px 15%;
  } 
}
@media screen and (max-width: 1840px) {
  .sec06-text {
    padding: 25px 45px 25px 10%;
  } 
}
@media screen and (max-width: 1480px) {
  .sec06-text {
    padding: 25px 25px 25px 5%;
  }
  #section06 h2 {
    font-size: 2.5em;
  }
}
@media screen and (max-width: 1024px) {
  .sec06-text {
    padding: 15px 15px 15px 5%;
  }
}
@media screen and (max-width: 768px) {
  #section06 hr {
    border: 0;
    height: 2px;
    max-width: 125px;
    margin: 0 auto 0 auto;
  }
  .sec06-flex {
    flex-wrap: wrap;
    text-align: center;
  }
  .sec06-flex ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  .sec06-flex ul li::before {
    content: "● ";
  }
  .sec06-imgs {
    flex-basis: 100%;
    order: 2;
    margin: 0 0 45px 0;
    padding-top: 25px;
  }
  .sec06-text {
    flex-basis: 100%;
    order: 1;
  }
}

/** Section 7 - Covid Cleaning **/
#section07 {
  overflow-x: hidden;
  width: 100%;
  padding: 0;
  background: #f3f3f3;
  background-image: url(img/covid19.jpg);
  background-repeat: no-repeat;
  background-position: center left; 
  text-align: left;
  box-sizing: border-box;
  overflow: hidden;
  color: #333333;
}
#section07 h2 {
  font-size: 3.3em;
  line-height: 1.3em;
  color: #031b47;
}
#section07 hr {
  border: 0;
  height: 2px;
  max-width: 125px;
  margin: 0 0 35px 0;
  background: #03aae3;
}
.sec07-inner {
  display: flex;
}
.sec07-text {
  flex: 2;
  padding: 25px 25px 65px 30%;
}
.align-right {
	float: right;
	margin: 5px 5px 25px 25px;
}
@media screen and (max-width: 1920px) {
  .sec07-text {
    background: rgba(255,255,255,0.75);
  }
}
@media screen and (max-width: 1400px) {
  .sec07-text {
    margin: 25px 25px 25px 400px;
    background: rgba(255,255,255,0.85);
  }
}
@media screen and (max-width: 1024px) {
  #section07 h2 {
    font-size: 2.3em;
  }
  #section07 {
    background-size: cover;
  }
  .sec07-text {
    margin: 25px 25px 25px 25px;
    padding: 15px 25px 25px 25px;
  }
}

/** Application **/
#application {
  overflow-x: hidden;
  width: 100%;
  padding: 0;
  background: #f3f3f3;
  background-image: url(img/medical.jpg);
  background-repeat: no-repeat;
  background-position: center left; 
  text-align: left;
  box-sizing: border-box;
  overflow: hidden;
  color: #333333;
}
#application h2 {
  font-size: 3.3em;
  line-height: 1.3em;
  color: #031b47;
}
#application hr {
  border: 0;
  height: 2px;
  max-width: 125px;
  margin: 0 0 35px 0;
  background: #03aae3;
}
.application-inner {
  display: flex;
}
.application-text {
  flex: 2;
  padding: 25px 25px 25px 30%;
}
@media screen and (max-width: 2400px) {
  .application-text {
    padding: 25px 25px 25px 40%;
  }
}
@media screen and (max-width: 1653px) {
  .application-text {
    background: rgba(255,255,255,0.55);
  }
}
@media screen and (max-width: 1400px) {
  .application-text {
    margin: 25px 25px 25px 400px;
    background: rgba(255,255,255,0.85);
  }
}
@media screen and (max-width: 1024px) {
  #application h2 {
    font-size: 2.3em;
  }
  #application {
    background-size: cover;
  }
  .application-text {
    margin: 25px 25px 25px 25px;
    padding: 15px 25px 25px 25px;
  }
}

/** Footer/Contact Us Section Styles **/
#contact {
  overflow-x: hidden;
  width: 100%;
  background: #000000;
  padding: 115px 25px 115px 25px;
  text-align: center;
  box-sizing: border-box;
  color: #d4cfca;
  font-size: 0.85em;
}
#contact h2 {
  color: #ffffff;
}
.contact-area {
  display: flex;
}
.contact {
  flex: 1;
  padding: 0 25px 0 25px;
  box-sizing: border-box;
  line-height: 1.5em;
}
.contact h3 {
  color: #ffffff;
}
.contact a {
  color: #d4cfca;
}
.contact a:hover {
  color: #ffffff;
}
.rapidscansecure {
  margin: 25px 0 0 0;
}
.bbb {
	margin-top: 15px;
}
@media screen and (max-width: 768px) {
  #contact {
    padding: 45px 45px 25px 45px;
  }
  .contact-area {
    display: block;
  }
  .contact {
    padding: 0 25px 45px 25px;
  }
}

/** Modal Popup Styles **/
.modal-wrapper {
  align-items: center;
  background-color: rgba(100, 100, 100, 0.5);
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  height: 100vh;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  transition: all 0.2s ease-in-out;
  visibility: hidden;
  width: 100%;
  z-index: 1000;
}
.modal-wrapper.visible {
  opacity: 1;
  visibility: visible;
}
.modal-window {
  position: absolute;
  width: 80%;
  margin: 1em auto 1em auto;
  padding: 20px;
  background-color: white;
  border-radius: 3px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  transform: scale(0);
  transition: 0.2s ease-in-out all;
  color: #000000;
  text-align: left;
}
.modal-window a {
  font-weight: bold;
  text-decoration: underline;
  color: #a80002;
}
.modal-window a:hover,
.modal-window a:focus {
  color: #000000;
}
.modal-window h3,
.modal-window h4 {
  color: #000000 !important;
}
.modal-window.visible {
  transform: scale(1);
  position: relative;
}
.modal-header {
  align-items: center;
  background: #ffffff;
  border-bottom: 2px solid black;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.modal-header h2 {
  color: #000000 !important;
}
.close-modal-button {
  align-items: center;
  cursor: pointer;
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  margin: 0 0 0 25px;
}
.close-modal-button::before {
  content: "X";
  color: rgb(112, 112, 112);
}
.close-modal-button:hover::before,
.close-modal-button:focus::before {
  color: #000000;
}
.modal-trigger {
  background: none;
  border: 0;
  color: #d4cfca;
  cursor: pointer;
  text-decoration: underline;
}
.modal-trigger:hover,
.modal-tripper:focus {
  color: #ffffff;
}