body {
  margin: 0;
  font-family: Helvetica, Arial, Lucida Grande, sans-serif;
  font-size: 16px;
  line-height: 1.25;
}
a {
  color: #401e67;
  font-weight: bold;
}
a:hover {
  text-decoration: none;
}

.h3, h3 {
  font-size: 1.25rem !important;
}

section > div {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
}
/******** section styles ********/
.bg-gradient {
  background-image: url(https://image.e.ama-assn.org/lib/fe3c11717064047d741172/m/1/6acf54dc-aa61-46c5-96f1-309945f00189.png);
  background-position: center top;
  background-size: cover;
  padding-top: 150px;
  padding-bottom: 60px;
}
.bg-blue {
  background: #daeefa;
}
.bg-gray {
  background: #ebe6e0;
}
.bg-gray-dk {
  background: #212529;
}

/******** button stlyes ********/
.submit-button {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: bold;
  background: linear-gradient(to right, #da5538 8%, #fdae00 87%);
  border: none;
  text-decoration: none;
}
.masked-arrow-button {
  position: relative;
  display: inline-block;
  padding: 10px 20px 10px 45px;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: bold;
  background: linear-gradient(to right, #da5538 8%, #fdae00 87%);
  border: none;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.masked-arrow-button:before {
  display: block;
  background-image: url("https://image.e.ama-assn.org/lib/fe3c11717064047d741172/m/1/919bebfc-44b6-4a13-bf7e-9b472b622e02.png");
  background-repeat: no-repeat;
  background-size: 15px;
  height: 15px;
  width: 15px;
  position: absolute;
  top: calc(50% - 7px);
  left: 20px;
  content: "";
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.masked-arrow-button:after {
  display: block;
  background-image: url("https://image.e.ama-assn.org/lib/fe3c11717064047d741172/m/1/3ca704ed-f6b3-40c0-a512-72cac47f2023.png");
  background-repeat: no-repeat;
  background-size: 15px;
  height: 15px;
  width: 0px;
  position: absolute;
  top: calc(50% - 10px);
  right: 20px;
  transform: rotate(180deg);
  content: "";
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.masked-arrow-button:hover {
  padding-right: 45px;
  padding-left: 20px;
}
.masked-arrow-button:hover:before {
  width: 0px;
}
.masked-arrow-button:hover:after {
  width: 15px;
}

/******** body link styles ********/
.jim-header-top {
  text-align: center;
  max-width: 1000px;
}
.jim-header-top h2 {
  width: 100%;
  font-weight: lighter;
  color: #ffffff;
}
.jim-header-top a {
  width: 100%;
  font-weight: lighter;
  color: #ffffff;
}

.jim-header-top h4 {
  width: 100%;
  font-weight: lighter;
  color: #ffffff;
  align-content: center;
  font-size: 20px;
}

.jim-header-top p {
  width: 100%;
  font-weight: lighter;
  color: #ffffff;
  align-content: center;
  font-size: 22px;
}

.jim-header-top img {
  margin: 0 auto;
 padding-bottom: 25px;
}

/******** header styles ********/

.jim-header img {
  margin: 0 auto 20px;
  display: block;
}
.jim-header .left h2 {
  font-weight: lighter;
  color: #a7e0f6;
}
.jim-header .right > div {
  /** background: white; **/
  padding: 20px;
  text-align: center;
  border-radius: 20px;
  border-style: solid;
  border-color: #a7e0f6;
 background-color: hsla(200, 100%, 50%, 0.3);
}
.jim-header .right h2 {
  color: #f9fdff;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
  text-transform: none;
}
.jim-header .right > div > * {
  margin: 15px;
}
.jim-header-form {
  width: 100%;
  background: white;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.jim-header-form > * {
  margin: 10px;
}
.jim-header-form input {
  padding: 9px;
  border: 1px solid #808080;
  color: #808080;
}
.jim-header-form h2 {
   font-weight: bolder;
  color: #000000;
 font-size: 16px
}
  
  .jim-header-form a {
   
  color: #000000;
}
  
@media (max-width: 650px) {
  .jim-header-form {
    display: block;
  }
}
/******** intro copy styles ********/
.jim-intro-copy h3 {
  font-weight: normal;
  line-height: 45px;
  font-size: 27px;
  color: #000000;
}
.jim-intro-copy p {
  position: relative;
  margin-left: 70px;
  margin-bottom: 30px;
  line-height: 24px;
  color: #000;
  font-weight: lighter;
}
.jim-intro-copy p img {
  width: 50px;
  position: absolute;
  left: -60px;
}
.jim-intro-copy .col-width50p {
  width: 46%;
  margin: 2%;
}
@media screen and (max-width: 800px) {
  .jim-intro-copy .col-width50p {
    width: 96%;
  }
}
/******** intro link styles ********/
.jim-intro-links {
  justify-content: space-evenly;
  background: white;
  box-shadow: 11px 10px 13px 8px rgba(0, 0, 0, 0.1);
  width: 85vw;
  max-width: 800px;
}
.jim-intro-links > div {
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 20%;
  margin: 2%;
}
@media screen and (max-width: 800px) {
  .jim-intro-links > div {
    width: 96%;
  }
}
.jim-intro-links > div > a {
  padding: 20px;
  height: 100%;
}
.jim-intro-links .col-width33p img {
  margin: 15px 0;
}
/******** body copy styles ********/
.jim-body-copy {
  max-width: 800px;
  align-items: center;
}
.jim-body-copy-image {
  width: 29%;
  margin: 2%;
  height: 100%;
}
.jim-body-copy-image img {
  border-radius: 50%;
  width: 100%;
}

.jim-body-copy-full {
  width: 100%;
  margin: 2%;
  height: 100%;
}
 .jim-body-copy-full h3 {
   align-items: center;
  text-align: center;
  font-weight: normal;
  
}
.jim-body-full h2 {
  font-size: 28px;
  font-weight: bold;
}

.jim-body-copy-wrapper {
  width: 62%;
  margin: 2%;
  height: 100%;
}
.jim-body-copy h2 {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  color: #d7763a;
}
.jim-body-copy li {
  list-style-type: none;
  padding: 0;
  margin: 20px 0px;
  font-size: 16px;
  font-weight: lighter;
  position: relative;
}
.jim-body-copy li:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 19px;
  background-image: url("https://image.e.ama-assn.org/lib/fe3c11717064047d741172/m/1/c7b87ad0-cb8f-420c-845f-9c092020d4ab.png");
  background-size: cover;
  position: absolute;
  top: 0;
  left: -30px;
}
/******** body link styles ********/
.jim-body-links {
  text-align: center;
  max-width: 750px;
}
.jim-body-links h2 {
  width: 100%;
}
.jim-body-links h3 {
  text-align: center;
  max-width: 700px;
  margin: 20px auto 70px;
  font-weight: bold;
  line-height: 29px;
  color: #d7763a;
  font-size: 21px;
}
.jim-body-links img {
  margin: 0 auto;
}
/******** bottom styles ********/
.jim-bottom {
  max-width: 740px;
}

.jim-bottom h2 {
  font-weight: bold;
  line-height: 29px;
  color: #d7763a;
  font-size: 28px;
}

.jim-bottom p {
  font-weight: lighter;
  line-height: 27px;
}
.jim-bottom > div {
  margin: 2%;
  font-size: 14px;
  box-sizing: border-box;
  background: #edf6fc;
}
.jim-bottom > div a {
  text-decoration: none;
  color: black;
  padding: 20px;
  display: block;
  font-weight: normal;
  height: 100%;
  box-sizing: border-box;
  box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
}
.jim-bottom > div a:hover {
  background: #c5e9fe;
  box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.05);
}
.jim-bottom img {
  width: 125px;
  height: 125px;
}
.jim-bottom > div div {
  width: calc(100% - 125px);
  padding-left: 5%;
  box-sizing: border-box;
}
/******** footer styles ********/
.jim-footer {
  color: #868e96;
  padding-bottom: 30px;
  display: block;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
}
.jim-footer img {
  max-width: 100px;
  margin: 0 auto 20px;
  display: block;
}
.jim-footer a {
  color: #868e96;
  font-weight: bold;
}
.jim-footer a:hover {
  text-decoration: none;
}
/******** modal window styles ********/
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
}
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    width: 60%;
    max-width: 460px;
    border-radius: 10px;
    box-sizing: border-box;
  position: relative;
}
.close {
  color: #aaa;
  font-size: 35px;
  font-weight: bold;
    right: 8px;
    top: -4px;
    position: absolute;
  width: 100%;
  display: block;
  text-align: right;
  height: 0;
}
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.modal-form {
  width: 100%;
}
.modal-form > * {
    margin: 10px 0;
}
.modal-form input {
  padding: 9px;
  border: 1px solid #808080;
  color: #808080;
  margin: 10px 0;
}
 
/* download hero area */  
  
 .col-width50p {
  width: 46%;
  margin: 2%;
} 

  @media screen and (max-width: 700px) {
  .jim-header .col-width50p {
    width: 96%;
  }
}

/*------------------------------------*\
    #Video
\*------------------------------------*/
    

.btn-video {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  border-radius: 50%; }
  .btn-video i {
    font-size: 16px;
    color: #02aaec; }
  .btn-video:hover {
    background-color: #02aaec; }
    .btn-video:hover i {
      color: #ffffff; }

.bg-section {
  position: relative;
  overflow:
hidden;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position:
center center;
  width: 100%;
  height: 50%;
}

a {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
 transition: 0.3s ease;
  color: #02aaec;
}

.video {
  height: 240px;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack:
center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align:
center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}
 