body {
  margin: 0px
} 
 * {
  box-sizing: border-box;
}

a {
  text-decoration: none;  
}

body {
  font-family: "Gill Sans", serif;
  font-size: 16px;
  line-height: 1.5;
}

.hero {
  text-align: center;
  position: relative;
  height: auto;
  padding-bottom: 40px;
  background: #cc0000;
  color: #fff;
  overflow: hidden;
}
.hero > img {
  margin: 10px 0px;
}
.hero h1 {
  margin: 20px 0 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 35px;
}
.hero h1 span {
  font: 600 40px/1 "Montserrat", bold;
  display: block;
}
.hero h2 {
  margin-left: auto;
  margin-right: auto;
  font-size: 1em;
  font-weight: 400;
}
@media only screen and (min-width: 37.5em) {
  .hero h1 {
    font-size: 40px;
  }
  .hero h2 {
    width: 76%;
    font-size: 18px;
  }
}


.wrapper {
  margin: 0 auto;
  width: 96%;
  max-width: 1120px;
}

.section {
  padding: 40px 0;
}
.section__title {
  font-size: 24px;
  color: #3b3b58;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  margin: 14px 0;
}
.section__intro {
  display: block;
  text-align: center;
  margin: 0 5% 30px;
}
.section__content {
  display: block;
  text-align: center;
  margin: 30px 0px 10px 0px;
}
@media only screen and (min-width: 43.75em) {
  .section__intro {
    margin-left: 15%;
    margin-right: 15%;
  }
}
.section--cta {
  color: #454545;
  background: #ffcc00;
}

section.section {
  background-color: #EEE;
}




.box {
  display: flex;
  flex: 1 0 100%;
  margin-bottom: 20px;
  background: #FFF;
  box-shadow: 0 3px 15px rgb(103 122 141 / 17%);
}
.box__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.box__title {
  font-family: "Montserrat", sans-serif;
}
.box__more {
  color: #ff4e5c;
}
.box__content {
  width: 100%;
  color: #454545;
  text-align: center;
  padding: 20px;
}
a.box__content:hover {
    background-color: deepskyblue;
    color: white;
    transition: 0.2s;
}
.box__content > i {
  color: #3b3b58;
}
.box__content:hover .box__more {
  color: #ff3545;
}
.box__content:hover .box__more i {
  padding-left: 4px;
  transition: all 0.2s ease-in-out;
}
.box__link {
  display: block;
  color: black;
  padding:5px;
  border-radius: 5px;
}
.box__link > span {
  color: #999;
  font-size: 12px;
}
.box__link:hover {
  color: white;
  transition: 0.2s;
}
.box__link:hover > span {
  color: #FFCC00;
}
.citrix_list .box__link:nth-child(1):hover {
  background-color: #5D87A1;  
}
.citrix_list .box__link:nth-child(2):hover {
  background-color: #94A545;  
}
.citrix_list .box__link:nth-child(3):hover {
  background-color: #F6A01A;  
}
.citrix_list .box__link:nth-child(4):hover {
  background-color: #C0311A;  
}
.citrix_list .box__link:nth-child(5):hover {
  background-color: #5E6E66;  
}

.support_list .box__link:nth-child(1):hover {
  background-color: #776441;  
}
.support_list .box__link:nth-child(2):hover {
  background-color: #005A84;  
}
.support_list .box__link:nth-child(3):hover {
  background-color: #820053;  
}




@media only screen and (min-width: 43.75em) {
  .box {
    flex: 0 0 30%;
  }
}

.btn {
  color: black;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  display: block;
  margin: 0 auto;
  max-width: 300px;
  padding: 12px 18px;
  border-radius: 100px;
  background: white;
}
.btn:hover {
  background: grey;
}

.footer {
  color: #fff;
  text-align: center;
  padding: 10px 0;
  background: #CC0000;
  padding-bottom: 50px;
}
.footer p {
  margin-bottom: 20px;
}

#service-desk-contact {
  margin: auto;
}
#service-desk-contact thead * {
  font-weight: bold;
  font-size: 20px;
  color: white;
  text-align: center;
  padding-bottom: 10px;
}
#service-desk-contact tbody td {
  padding: 0px 20px 10px 20px;
}
#service-desk-contact * {
  vertical-align: middle;
  text-align: left;
}
#service-desk-contact a {
  display: block;
  margin-bottom: 10px;
  color: white;
}
#service-desk-contact a > i {
    font-size: 18px;
    color: #444;
    background-color: white;
    padding: 7px;
    border-radius: 50%;
}
