@font-face {
    font-family: 'Emb-regu';
    src: url('Assets/Fonts/Ember-regular.woff') format('woff2')
}
@font-face {
    font-family: 'Emb-bold';
    src: url('Assets/Fonts/Ember-bold.ttf') format('truetype')
}
@font-face {
    font-family: 'Emb-simp';
    src: url('Assets/Fonts/Emb-simp.woff') format('woff')
}

* {
    margin: 0;
    padding: 0;
    
}

body {
    background-color: rgb(0, 15, 29);
    background: linear-gradient(
        to right, 
        rgb(0, 28, 53) 70%, 
        rgb(0, 28, 53) 90%, 
        rgb(0, 51, 98) 100% 
    );
    font-family: 'Emb-simp';
    padding-bottom: 120px;
    display: flex;
    justify-content: center;
    
}



h1,h2,h3,h4,h5,h6 {
    font-family: 'Emb-bold', sans-serif;
  color: 	#ffffff;
  margin: 10px 0;

}

p { 
    font-family:'Emb-simp';
    color: 	#ffffff;
    text-align: center;
    font-size: 18px;
    line-height: 1.3;
    margin: 18px 30px;
}

h3 {
  font-family: 'Emb-bold', sans-serif;
  color: 	#ffffff;
  font-size: 48px;
  text-align: center;
}

.mini-heading {
    font-size: 35px;
}
h4 {
    font-size: 25px;
    color: #39c0ff;
}
@keyframes gentle-jerk {
    0%, 100% {
        transform: scale(1);  /* Start and end at the original size */
    }
    50% {
        transform: scale(1.1); /* Slightly enlarge the button */
    }
}


.upper-cont {
    margin: 0 50px;
    
}

.floating-button {
    position: fixed;  
    bottom: 30px;
    width: 100%;      
    transform: translateX(-50%);  
    display: flex;     
    flex-direction: column;
    align-items: center;     
    justify-content: center;  
    animation: gentle-jerk 1.5s ease-in-out infinite; 
}

.floating-button p {
    color: white;
    font-size: 17px;
    margin: 0;
    background-color: rgb(0, 15, 29);
    
}

.btn-text {
    font-family: 'Emb-bold';
    color: white;
    font-size: 23px;
    border-radius: 30px;
    text-decoration: none;
    background-color: 	#118eee;
    padding: 15px 35px;
}

.btn-text:hover {
    background-color: 	#0076d1;
}

.upper-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 85%;
    margin: 20px 0;
}

.offers-wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    
}

.offer-card {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    margin: 20px 20px;
    border: #118eee 2px solid;
    width: 270px;
    min-height: 300px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 145, 255, 0.642);


}

.offer-card h4 {
    margin: 15px 0 0 0;
}
.offer-card p {
    margin: 15px 10px 15px 10px;
}
.offer-card img {
    max-width: 100%;
    border-radius: 20px 20px 0 0;
}

.offer-card-2 {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    margin: 20px 20px;
    border: #118eee 2px solid;
    width: 270px;
    min-height: 200px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 145, 255, 0.642);

}


.offer-card-2 img {
    max-width: 100%;
    margin: 10px 0;
}

.logos {
    margin: 30px 20px;
    color: white;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    
}

.cut-off {
    position: relative;
    display: inline-block;
    color:rgb(0, 139, 245); 
    margin-right: 10px; 
    font-size: 20px;

}

.pp {
    margin: 0;
}

.wrap-hd {
    margin: 20px 30px 10px 30px;
    text-align: center;
    font-size: 26px;
}

.cut-off::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px; 
    background-color:#92ddff; 
    transform: translateY(-50%); 
}

.real-price {
    font-size: 29px;
    color: #f6fcff;
}

.page-link {
    font-family: Emb-bold;
    color: #39c0ff;
    font-size: 35px;
}
.page-link:hover {
    color: #0093d7;
}
.fun-fact {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    margin: 20px 10px;
    padding: 10px 20px;
    border: #118eee 2px solid;
    width: 80%;
    border-radius: 20px;

}
.fun-fact h4 {
    color: white;
    font-size: 23px;
}


/* FAQ PAGE CSS */

@import url('https://fonts.googleapis.com/css?family=Hind:300,400&display=swap');

* {
  box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
}


.container {
  margin: 0 auto;
  padding: 4rem;
  width: 48rem;
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #39c0ff;
}

.accordion button {
    font-family: 'Emb-regu';
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #39c0ff;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #39c0ff;
  border: 1px solid #39c0ff;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: #39c0ff;
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
    font-family: 'Emb-regu';
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}



/* HELPFUL LINKS */

.helpful-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.deals-btn {
    font-family: 'Emb-bold';
    color: white;
    font-size: 23px;
    border-radius: 30px;
    text-decoration: none;
    background-color: 	#118eee;
    padding: 15px 35px;
    margin-bottom: 20px;
}