body {margin:0;font-family:Arial}

.topnav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
     overflow: hidden;
     background-color: black;
}

.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 14px;
}

.active {
  background-color: #4CAF50;
  color: white;
}

.topnav .icon {
  display: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 14px;    
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: rgb(142, 0, 0);
  color: white;
}

.dropdown-content a:hover {
    background-color: #ddd;
    color: black;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media screen and (max-width: 600px) {
   
   .topnav {
        display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
   }
   
  .topnav a /*:not(:first-child) */, .dropdown .dropbtn {
    display: none;
  }
  
  .topnav a.icon {
    float: right;
    display: block;
    /* background-color: #29eedc ; */
    background: linear-gradient(to right, rgb(200,0,0), rgb(20,0,0));
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .topnav.responsive {
     display: -ms-flexbox;
     display: flex;
     -ms-flex-direction: column;
      flex-direction: column;
  }
  
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

.hiddenrsp {
  display: none;
}


/* animation box text */
.animation-box {
  width: 70%;
  height: 24.5rem;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  background: url(/rsp-assets/img/caflag.jpeg) no-repeat center center;
}


@media screen and (max-width: 600px){
.animation-box {
  width: 100%;
  height: 16.5rem;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

}


.animation-box-mail {
  width: 100%;
  height: 9rem;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  background: linear-gradient(to right, rgb(200,0,0), rgb(20,0,0));
  /* background: url(/rsp-assets/img/email-rsp.jpeg) no-repeat center center; */
}

@media screen and (max-width: 600px){
.animation-box-mail {
  width: 100%;
  height: 6.5rem;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

}

.animation-container {
  width: 1000rem;
  height: 30rem;
}

@keyframes topFadeOut {
  0% {
    position: absolute;
    top: -3rem;
    opacity: 0;
  }

  75% {
    opacity: 0.75;
  }

  100% {
     position: absolute;
    top: 5%;
    opacity: 1;
  }
}

@-webkit-keyframes topFadeOut {
  0% {
    position: absolute;
    top: -3rem;
    opacity: 0;
  }

  75% {
    opacity: 0.75;
  }

  100% {
    position: absolute;
    top: 5%;
    opacity: 1;
  }
}


@keyframes topFadeOutToHalfSection {
  0% {
    position: absolute;
    top: -3rem;
    opacity: 0;
  }

  75% {
    opacity: 0.75;
  }

  100% {
    position: absolute;
    top: 38%;
    opacity: 1;
  }
}

@-webkit-keyframes topFadeOutToHalfSection {
  0% {
    position: absolute;
    top: -3rem;
    opacity: 0;
  }

  75% {
    opacity: 0.75;
  }

  100% {
    position: absolute;
    top: 38%;
    opacity: 1;
  }
}

@keyframes bottomFadeOut {
  0% {
    position: absolute;
    bottom: -5rem;
    opacity: 0;
  }

  75% {
    opacity: 0.75;
  }

  100% {
      position: absolute;
    bottom: 5%;
    opacity: 1;
  }
  
}

@-webkit-keyframes bottomFadeOut {
  0% {
    position: absolute;
    bottom: -5rem;
    opacity: 0;
  }

  75% {
    opacity: 0.75;
  }

  100% {
      position: absolute;
    bottom: 5%;
    opacity: 1;
  }
  
}

@keyframes topFadeOutVertical {
  0% {
    position: absolute;
    top: -3rem;
    opacity: 0;
  }

  75% {
    position: absolute;
    top: 45%;
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes rightFadeInOut {
  0% {
    position: absolute;
    right: -3rem;
    opacity: 0;
  }

  75% {
    opacity: 0.75;
  }

  100% {
    position: absolute;
    opacity: 1;
    right: 15%;

  }
}


@-webkit-keyframes rightFadeInOut {
  0% {
    position: absolute;
    right: -3rem;
    opacity: 0;
  }

  75% {
    opacity: 0.75;
  }

  100% {
    position: absolute;
    opacity: 1;
    right: 15%;
  }
}


@keyframes fadeInOut {
  0% {
    opacity: 0;
  }

  75% {
   opacity: 0.75;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInOut {
  0% {
    opacity: 0;
  }

  75% {
   opacity: 0.75;
  }

  100% {
    opacity: 1;
  }
}

.first-text {
  font-size: 1.5rem;
   font-weight:bold;
  position:absolute;
  left:25%;
  top:15%;
  opacity: 0;
  animation-name: topFadeOut;
  animation-duration: 3s;
  color: rgb(142, 0, 0);
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
}

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

.first-text {
  font-size: 0.9rem;
   font-weight:bold;
   left: 15%;
}


}

.second-text {
  font-size: 1.5rem;
   font-weight:bold;
   background-color: #d5d513 ;
   border: 0.5px solid;
    padding: 15px;
    box-shadow: 5px 10px 8px black;
    border-radius: 15px 50px; 
 position: absolute;
    right: 10rem;
    opacity: 0;
  animation-name: rightFadeInOut;
  animation-delay: 2s;
  animation-duration: 1s;
 /* color: #F0EBA3; */
  color: black;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
}

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

.second-text {
  font-size: 1rem;
   font-weight:bold;
}

}

.third-text {
  transform: rotate(-90deg);
  font-size: 2rem;
  position: absolute;
  left: 45%;
  top: 45%;
  opacity: 0;
  animation-name: topFadeOutVertical;
  animation-delay: 7.5s;
  animation-duration: 6s;
  color: #A3DDF0;
  white-space: nowrap;
}


.fourth-text {
  font-size: 2.4rem;
  position: absolute;
  top: 10.5rem;
  left: 10%;
  opacity: 0;
  color: #F0A3BE;
  animation-name: fadeInOut;
  animation-delay: 8.5s;
  animation-duration: 9s;
}

.fifth-text {
  font-size: 1.5rem;
  position: absolute;
  left: 25%;
  bottom: 15%;
  opacity: 0;
  /*color: #F0EBA3;*/
  color: black;
  font-weight:bold;
  animation-name: bottomFadeOut;
  animation-delay: 0.8s;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
}

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

.fifth-text {
  font-size: 0.9rem;
   font-weight:bold;
   left: 15%;
}


}

.sixth-text {
  font-size: 1.9rem;
   font-weight:bold;
  position: absolute;
  left: 36%;
  top: 30%;
  opacity: 0;
  animation-name: topFadeOutToHalfSection;
  animation-duration: 3s;
  color: white;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
}

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

.sixth-text {
  position: absolute;
  left: 25%;
  opacity: 0;
  top: 20%;
  font-size: 0.9rem;
   font-weight:bold;
    animation-name: topFadeOutToHalfSection;
    animation-duration: 3s;
    color: white;
    animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
}


}

.eighth-text {
  font-size: 1.9rem;
   font-weight:bold;
  position: absolute;
  left: 35%;
  top: 30%;
  opacity: 0;
  animation-name: topFadeOutToHalfSection;
  animation-duration: 3s;
  color: white;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
}

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

.eighth-text {
  position: absolute;
  left: 26.5%;
  opacity: 0;
  top: 20%;
  font-size: 0.9rem;
   font-weight:bold;
    animation-name: topFadeOutToHalfSection;
    animation-duration: 3s;
    color: white;
    animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
}


}

/* end animation box text */

.rsp-image-365b img{width: 100%; height:460px; object-fit:cover}

@media only screen and (max-width: 800px) {
       .rsp-image-365b img { width: 100%;height:auto;}
       
    }
    
    
#accordion-container {
	font-size: 13px;
	background: #ffffff;
	padding: 5px 10px 10px 10px;
	border: 1px solid #cccccc;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: 0 5px 15px #cccccc;
	-webkit-box-shadow: 0 5px 15px #cccccc;
	box-shadow: 0 5px 15px #cccccc;
}

.accordion-header {
	font-size: 16px;
	background: #ebebeb;
	margin: 5px 0 0 0;
	padding: 5px 20px;
	border: 1px solid #cccccc;
	cursor: pointer;
	color: #666666;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.active-header {
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
	background: url(images/active-header.gif) #cef98d;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.active-header:hover {
	background: #c6f089;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.inactive-header {
	background: #ebebeb;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.inactive-header:hover {
	background: #f5f5f5;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.accordion-content {
	display: none;
	padding: 20px;
	background: #ffffff;
	border: 1px solid #cccccc;
	border-top: 0;
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
}

.imgfaq {}

.rotate {
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
  
    /* End FAQ section */  
    
    .rsplogo {
            width:100px;
        }
    
    @media all and (max-width: 990px) {
        .rsplogo {
            width:80px;
        }}
