@charset "utf-8";

/* CSS Document */
        /* ===== Google Font Import - Poppins ===== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

/*
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition: all 0.4s ease;;
}
*/

@import url("https://fonts.googleapis.com/css?family=Open+Sans");


/*
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.1s ease;
}
*/
      
 body {
    width: 97%;
       margin: 0 auto;
            font-family: 'Poppins', sans-serif;
        }

nav {
    height: auto;
/*    background-size: cover;*/
     z-index: 9999;
     position: absolute;
    width: 98%;

    margin-top: -20px;  
/*     border-radius: 10px;*/
}
     
      
  video {
  object-fit: cover;
/*  width: 97vw;*/
     width: 100%;
  height: 35vh;
/*   position: absolute;*/
    min-height: 270px;
    margin-top: -114px;  border-radius: 10px;
    color: black;
}    


   .section-title.service-title h2 {
        text-align: center; 
        color: #222; 
        font-size: 1.6em;
        font-weight: 600;
        position: relative;
     margin-top: 55px;
        margin-bottom: 15px;
          padding:5px;
     text-transform: uppercase;
      }
   
.section-title h2::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 110px;
    height: 2px;
    background: #ff5e14;
    bottom: -15px;
    margin-left: -50px;
  margin-right: -50px;
}
    .section-title.service-title h3 {
      width: 80%; 
      position: relative;  
      text-align: center; 
      margin: 20px auto;
      font-size: 1.4em;
      font-weight: 400;
      color: rgba(33, 47, 61, 0.9);
      padding: 10px
 }
    .section-title h3::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 110px;
    height: 2px;
    background: #ff5e14;
    bottom: -15px;
    margin-left: -50px;
  margin-right: -50px;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.package-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  margin-top: 4rem;
}
@media screen and (max-width: 800px) {
  .package-2 {
    grid-template-columns: 1fr;
    grid-row-gap: auto;
  }
}
.package-2-item { 
/*  order: 4px solid #ddd;*/
/*  height: 100%;*/
  transition: all ease-in-out 0.3s;
}

.package-2-item .package-2-body {
  padding: 0rem 1.2rem;
  

}
/*xxxxxxxxxxxxxxxxxxxxxxxxx*/
.package-2-body h3 {
      width: 100%; 
      position: relative;  
      text-align: left; 
      margin: 20px auto;
      font-size: 1.0em;
      font-weight: 400;
      color: rgba(33, 47, 61, 0.9);
      padding: 0px;
 }
   .package-2-item h2 {
      color: #3D9FCC;
      text-align: center;
      font-size: 1.3em;
      font-weight: 500
    } 
/*
    .package-2-body h3::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 110px;
    height: 2px;
    background: #ff5e14;
    bottom: -15px;
    margin-left: -50px;
  margin-right: -50px;
}
*/
.package-2-item:nth-child(1) .package-2-body {
 background-color: white;
}
.package-2-item:nth-child(2) .package-2-body {
  border-left: 1px solid #ddd;
  background-color: white;
  
  
}
.package-2-item:nth-child(3) .package-2-body  {
  background-color: white;
}
/*
.package-2 .package-2-body h3:nth-of-type(2)  {
    border-right: 5px solid yellow;color: aqua;
}
*/
/*
h3:nth-child(3)  {
    border-right: 2px solid blue;color: crimson;
}
*/
/*
h3:nth-child(2) {
    border: 1px solid black;
}
*/

/* Select every third list item */
/*
.package-2-body h3:nth-child(3) {
    border-left: 2px solid red;
}
*/
/* Select every second list item */
/*
.package-2-body h3:nth-child(2) {
    border-left: 2px solid yellow;
}
*/

/* Select the first element */
/*
.package-2-body h3:nth-child(1) {border-left: 2px solid blue;
   font-size: .90rem;font-weight: 400;
}
*/
/*
.package-2-body h3{
  font-size: .90rem;font-weight: 400;  border-right: 2px solid green; padding: 10px;
}
*/

/*span{background-color: aquamarine;}*/
.package-2-body p{ padding-top: 1rem;}




@media screen and (max-width: 800px) {
  .package-2-item .package-2-body {
    min-height: 100%;
  }
}
.package-2-item .package-2-body .package-2-price-container {
  min-height: 120px;
  background-color: rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
  text-transform: uppercase;
}
@media screen and (max-width: 800px) {
  .package-2-item .package-2-body .package-2-price-container {
    min-height: 100%;
  }
}
.package-2-item .package-2-body .package-2-price-container--column {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .package-2-item .package-2-body .package-2-price-container--column {
    grid-template-columns: 1fr;
/*    background: #FB9B11;*/
  }
}






/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.package {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  margin-top: 1rem;

}
@media screen and (max-width: 800px) {
  .package {
    grid-template-columns: 1fr;
    grid-row-gap: 4rem;
  }
}
.package-item { border: 1px solid #ddd;
  
  height: 100%;
  transition: all ease-in-out 0.3s;
}
.package-item:hover {
/*  transform: translateY(-5px);*/
}
.package-item .package-header {
  background-color: white;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.package-item .package-header .package-name {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  padding: 4px;
  color: white;
  text-transform: uppercase;
}
.package-item .package-body {
  background-color: white;
  padding: 1rem;
  min-height: 92%;font-size: 0.875rem;
}

.package-body p { 
  padding-top: 1rem; 
  line-height: 1.5;
}


  @media (max-width:1190px){ 
      
    .press h2 { top: 10;margin-top: -60px; margin-bottom: -10px;
      font-size: 1.4em;
      line-height: 1.1;
      color:black;
    }
    }

      @media (max-width:750px){

    .press h2 { 
    display: none;
}
}

@media screen and (max-width: 800px) {
  .package-item .package-body {
    min-height: 90%;
  }
}
.package-item .package-body .package-price-container {
  min-height: 60px;
  background-color: rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
  text-transform: uppercase;
}
@media screen and (max-width: 800px) {
  .package-item .package-body .package-price-container {
    min-height: 90%;
  }
}
.package-item .package-body .package-price-container--column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .package-item .package-body .package-price-container--column {
    grid-template-columns: 1fr;
/*    background: #FB9B11;*/
  }
}

.package-item .package-body .package-price {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
}
.package-item .package-body .package-price--sm {
  font-size: 1.8rem;
}
.package-item .package-body .package-price--xs {
  font-size: 1.2rem;
}

.package-item .package-body ul {
  margin-top: 1rem;
}
.package-item .package-body ul li {
  position: relative;
  font-size: 0.775rem;
  font-weight: 600;
  padding-bottom: 5px;
  color: #31363c;
  margin-left: 40px;
   line-height: 1.5;
}
.package-item .package-footer input {
  background-color: #2287f5;
  color: white;
  padding: 8px 0;
  width: 100%;
  border: 0;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  cursor: pointer;
  position: relative;
  transition: all ease-in-out 0.3s;
  font-weight: 600;
}
.package-item .package-footer input::after {
  content: "»";
  opacity: 0;
  position: absolute;
  top: 0;
  font-size: 1.5rem;
  transition: all ease-in-out 0.3s;
}
.package-item .package-footer input:hover::after {
  opacity: 1;
  transform: translateX(4px);
}
.package-item:nth-child(1) .package-header {
  background-color: #eea726;
}
.package-item:nth-child(1) .package-footer input {
  background-color: #eea726;
}
.package-item:nth-child(1) .package-footer input:hover {
  background-color: #e49912;
}
.package-item:nth-child(2) .package-header {
  background-color: rgba(128, 0, 128);
}
.package-item:nth-child(2) .package-footer input {
  background-color:rgba(128, 0, 128);
}
.package-item:nth-child(2) .package-footer input:hover {
  background-color: rgba(128, 0, 128);
}
.package-item:nth-child(3) .package-header {
  background-color: rgba(228, 34, 23);
}
.package-item:nth-child(3) .package-footer input {
  background-color: rgba(228, 34, 23);
}
.package-item:nth-child(3) .package-footer input:hover {
  background-color: rgba(228, 34, 23);
}
 .package-item:nth-child(4) .package-header {
  background-color:  #459bba;
}
.package-item:nth-child(4) .package-footer input {
  background-color: #459bba;
}
.package-item:nth-child(4) .package-footer input:hover {
  background-color: #459bba;
}
.package-item:nth-child(5) .package-header {
  background-color: #0033FF; 
}
.package-item:nth-child(5) .package-footer input {
  background-color: #0033FF; 
}
.package-item:nth-child(5) .package-footer input:hover {
  background-color: #0033FF; 
}
.package-item:nth-child(6) .package-header {
  background-color: #191970;
}
.package-item:nth-child(6) .package-footer input {
  background-color: #191970;
}
.package-item:nth-child(6) .package-footer input:hover {
  background-color: #191970;
} 
.package-item:nth-child(7) .package-header {
  background-color: #373773;
}
.package-item:nth-child(7) .package-footer input {
  background-color: #373773;
}
.package-item:nth-child(7) .package-footer input:hover {
  background-color: #373773;
} 


.package-item .package-footer button {
  background-color: #2287f5;
  color: white;
  padding: 8px 0;
  width: 100%;
  border: 0;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  cursor: pointer;
  position: relative;
  transition: all ease-in-out 0.3s;
  font-weight: 600;
}
.package-item .package-footer button::after {
  content: "»";
  opacity: 0;
  position: absolute;
  top: 0;
  font-size: 1.5rem;
  transition: all ease-in-out 0.3s;
}
.package-item .package-footer button:hover::after {
  opacity: 1;
  transform: translateX(4px);
}
.package-item:nth-child(1) .package-header {
  background-color: #eea726;
}
.package-item:nth-child(1) .package-footer button {
  background-color: #eea726;
}
.package-item:nth-child(1) .package-footer button:hover {
  background-color: #e49912;
}
.package-item:nth-child(2) .package-header {
  background-color: rgba(128, 0, 128);
}
.package-item:nth-child(2) .package-footer button {
  background-color:rgba(128, 0, 128);
}
.package-item:nth-child(2) .package-footer button:hover {
  background-color: rgba(128, 0, 128);
}
.package-item:nth-child(3) .package-header {
  background-color: rgba(228, 34, 23);
}
.package-item:nth-child(3) .package-footer button {
  background-color: rgba(228, 34, 23);
}
.package-item:nth-child(3) .package-footer button:hover {
  background-color: rgba(228, 34, 23);
}
 .package-item:nth-child(4) .package-header {
  background-color:  #459bba;
}
.package-item:nth-child(4) .package-footer button {
  background-color: #459bba;
}
.package-item:nth-child(4) .package-footer button:hover {
  background-color: #459bba;
}
.package-item:nth-child(5) .package-header {
  background-color: #0033FF; 
}
.package-item:nth-child(5) .package-footer button {
  background-color: #0033FF; 
}
.package-item:nth-child(5) .package-footer button:hover {
  background-color: #0033FF; 
}
.package-item:nth-child(6) .package-header {
  background-color: #191970;
}
.package-item:nth-child(6) .package-footer button {
  background-color: #191970;
}
.package-item:nth-child(6) .package-footer button:hover {
  background-color: #191970;
} 
.package-item:nth-child(7) .package-header {
  background-color: #373773;
}
.package-item:nth-child(7) .package-footer button {
  background-color: #373773;
}
.package-item:nth-child(7) .package-footer button:hover {
  background-color: #373773;
} 

 /*XXXXXXXXXXX-----  LINK ARROW  -----XXXXXXXXXXXXXXXXXX*/     
.arrow-link2 {
    display: flex;
       color: #284B70;
    background-color: transparent;
/*    text-transform: uppercase;*/
    transition: all .3s ease;
    font-weight: bold;
    cursor: pointer;
    align-items: center;
    letter-spacing: 0.2px;
}
.arrow-link2 > .arrow2 {
    width: 8px;
    height: 8px;
    border-right: 2px solid #284B70;
    border-bottom: 2px solid #284B70;
    position: relative;
    transform: rotate(-45deg);
    margin-left: 3px;
    transition: all .3s ease;
}
.arrow-link2 > .arrow2::before {
    display: block;
    background-color: #284B70;
    width: 3px;
    transform-origin: bottom right;
    height: 2px;
    position: absolute;
    opacity: 0;
    bottom: calc(-2px / 2);
    transform: rotate(45deg);
    transition: all .3s ease;
    content: "";
    right: 0;
}
.arrow-link2:hover > .arrow2 {
    transform: rotate(-45deg) translate(4px, 4px);
    border-color: #284B70;
}
.arrow-link2:hover > .arrow2::before {
    opacity: 1;
    width: 8px;
}
.arrow-link2:hover {
    color: #284B70;
}
span2 {background-color: transparent;}
    
/*XXXXXXXXXXX-----  LINK BUTTON ENDS  -----XXXXXXXXXXXXXXXXXX*/ 
