* {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  color: #202020;
  font-weight: normal;
}

h1 {
}

h2 {
  font-size: clamp(30px, 4vw, 34px);  
}

h3 {
  font-size: clamp(24px, 3vw, 28px);  
}

img {
  max-width: 100% !important;
  height: auto !important;
}

.hero {
  color: #ffffff; 
  background-color: #2274a5; 
  background-image: url(uploads/52/stars-background_ucla.jpg);  
  background-size: cover;
  padding-top: clamp(27px, 5vw, 40px);
  padding-bottom: clamp(27px, 5vw, 40px);
}

.hero .inner {
  max-width: 1180px;
  margin: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.hero h1 {
  color: #ffffff;
  font-size: clamp(35px, 5vw, 55px);
  padding-top: 0;
  margin-top: 0;
}

.hero h2 {
  color: #ffffff;
  font-size: clamp(20px, 3vw, 35px);
}

.hero .call_to_action {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  background-color: #72b01d;
  border: none;
  padding: 12px 15px;
  cursor: pointer;
  margin-top: 30px;
}


.split_50_50 > div {
  float: left;
  width: 50%;
}

.split_50_50_right > div {
  float: right;
  width: 50%;
}

.split_50_50 > div:nth-of-type(1) {
  padding-right: 20px;
}

.split_50_50_right > div:nth-of-type(1)  {
  padding-left: 20px;
}

.split_50_50 > div > h2:first-of-type, .split_50_50_right > div > h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
}

.split_50_50:after, .split_50_50_right:after {
  content: '';
  display: block;
  clear: both;
}

.split_33_33_33 > div {
  float: left;
  width: 33.3%;
}

.split_33_33_33 > div:nth-of-type(1) {
  padding-right: 20px;
}

.split_33_33_33 > div:nth-of-type(2) {
  padding-right: 20px;
}

.split_33_33_33 > div > h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
}

.split_33_33_33:after {
  content: '';
  display: block;
  clear: both;
}

.main_services > div {
  position: relative;
  padding: 0 !important;
}

.main_services .spacer {
  margin-top: 50%;
}

.main_services .content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background-color: #72b01d;
  padding: 20px;
  border-radius: 10px;
}

.main_services h3 {
  color: #ffffff;
  font-size: 25px;
}

.accordion-1 {
  position: relative;
  box-shadow: 0px 1px 7px #DBDBDB;
}

.accordion-1 .head {
  background-color: #FFFFFF;
  padding: 20px 30px;
  cursor: pointer;
  transition: 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-1 .head h3 {
  font-size: 20px;
}
  
.accordion-1 .arrow {
  background-image: url('/graphics/arrow_down_black.svg');
  background-size: cover;
  height: 20px;
  width: 34px;
  min-width: 34px;
  transition: 0.25s ease;
  opacity: 0.7;
  transform: rotate(0deg);
}

.accordion-1 .head:hover .arrow {
  opacity: 1;
}

.accordion-1 .head:hover, .accordion-1 .active {
  background-color: #f7f7f7;
}

.accordion-1 .arrow-animate {
  transform: rotate(-180deg);
  opacity: 1;
}

.accordion-1 .content {
  background-color: #FFFFFF;
  display: none;
  padding: 20px 30px;
}



@media all and (max-width: 800px) {

  .split_50_50 > div, .split_50_50_right > div {
    float: none;
    width: auto;
    padding: 0;
  }
  
  .split_50_50 > div:nth-of-type(1), .split_50_50_right > div:nth-of-type(1) {
    float: none;
    width: auto;
    padding: 0;
    padding-bottom: 30px;
  }
  
  .split_33_33_33 > div {
    float: none;
    width: auto;
    padding: 0;
  }
  
  .split_33_33_33 > div:nth-of-type(1), .split_33_33_33 > div:nth-of-type(2) {
    float: none;
    width: auto;
    padding: 0;
    padding-bottom: 30px;
  }
  
}