*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:#f7fbff;
  /* color:#0b2b40; */
}
/* =======================sec-1====================== */
/* HERO BASE */
.hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
}

/* BACKGROUND VIDEO (BLOB ANIMATION) */
.hero video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  /* background-size: contain; */
  z-index:-2;
  opacity:1;              /* blob soft look */
  filter: blur(20px) saturate(120%);
}

/* OPTIONAL DARK OVERLAY FOR READABILITY */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  /* background:linear-gradient(
    120deg,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.25)
  ); */
  z-index:-1;
}

/* CONTENT ABOVE VIDEO */
.hero-container{
  position:relative;
  z-index:2;
  color:#fff;
}
/* ===== HERO ====== */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:20px 50px 50px 20px;
  background:
    linear-gradient(transparent 17%, rgba(0,0,0,0.0) 16%),
    linear-gradient(40deg, transparent 15%, rgba(0,0,0,0.03) 16%); 
  background-size:40px 40px;
    background:
    linear-gradient(135deg, #FEEBE7 0%, #ffffff 60%);

  /* border: 1px solid; */
}

.hero-container{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:1.5fr 1fr;
  gap:80px;
  align-items:center;
  /* border: 1px solid; */
}

/* ====== LEFT ======== */
.hero h1{
  font-size:48px;
  line-height:1.25;
  margin-bottom:20px;
  background: linear-gradient(to right,#ff6b5a,#ff8b5c);
  -webkit-background-clip: text;
  color: transparent;
}

.hero p{
  font-size:16px;
  line-height:1.7;
  color:#4b677a;
  max-width:560px;
  margin-bottom:14px;
}

.hero strong{
  color:#0b2b40;
}
/* button */
.hero-buttons{
  margin-top:30px;
  display:flex;
  gap:20px;
  align-items:center;
}
.btn-link{
  font-weight:600;
  color:#0b2b40;
  text-decoration:underline;
}

/* ======= RIGHT ======= */
.hero-visual{
  position:relative;
  display:flex;
  justify-content:center;
}

.hero-visual img{
  max-width:100%;
  filter:drop-shadow(0 25px 40px rgba(0,0,0,.15));
}

/* OTP bubble */
.otp-box{
  position:absolute;
  top:40px;
  left:-40px;
  background:#fff;
  padding:14px 16px;
  border-radius:12px;
  box-shadow:0 12px 25px rgba(0,0,0,.15);
  font-size:14px;
  width:260px;
}

/* ====== RESPONSIVE ======= */
@media(max-width:992px){
  .hero{
    padding:60px 30px;
  }
  .hero-container{
    grid-template-columns:1fr;
    text-align:center;
  }
  .hero-buttons{
    justify-content:center;
  }
  .otp-box{
    display:none;
  }
}

/* ===== BUTTON ====== */
.btn-primary{
  padding:14px 30px;
  border-radius:30px;
  border:2px solid #ff6b5a;
  background:#fff;
  color:#ff6b5a;
  font-weight:600;
  cursor:pointer;
}

/* ====== pop frombutton ======*/
.modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
}

/* ====== MODAL BOX ====== */
.modal-box{
  background:#fff;
  width:750px;
  border-radius:8px;
  overflow:hidden;
}

/* Header */
.modal-header{
  padding:16px 20px;
  border-bottom:1px solid #e5e7eb;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight:600;
}

.modal-header span{
  cursor:pointer;
  font-size:22px;
}

/* Body */
.modal-body{
  background:#eef4ff;
  padding:20px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

label{
  font-size:14px;
  margin-bottom:4px;
  display:block;
}

input, textarea{
  width:100%;
  padding:10px;
  border:1px solid #d1d5db;
  border-radius:3px;
}

textarea{
  grid-column:1 / -1;
  height:90px;
  resize:none;
}

/* Footer */
.modal-footer{
  padding:15px;
}

.send-btn{
  width:100%;
  padding:14px;
  background:#ff6b5a;
  color:#fff;
  border:none;
  font-size:16px;
  border-radius:4px;
  cursor:pointer;
}

/*========== RESPONSIVE ======== */
@media(max-width:800px){
  .modal-box{
    width:95%;
  }
  .form-grid{
    grid-template-columns:1fr;
  }
}
/* end from */

/* ==================== sec-2 ===================== */
.why{
  padding:90px 150px;
}

.why h1{
  text-align:center;
  font-size:40px;
  margin-bottom:14px;
}

.subtitle{
  text-align:center;
  max-width:900px;
  margin:0 auto 60px;
  color:#4b677a;
}

/*========= GRID ======== */
.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

/* ======== CARD ========= */
.card{
  background:#eef4ff;
  padding:28px;
  border-radius:14px;
  /* AOS INITIAL STATE */
  opacity:0;
  transform:translateY(50px);
  transition:all .7s ease;
}

/* ACTIVE STATE */
.card.show{
  opacity:1;
  transform:translateY(0);
}

.card:hover{
  transform:translateY(-6px);
  background:#FEEBE7 ;
}

.card h3{
  font-size:20px;
  margin-bottom:14px;
}

.card ul{
  list-style:none;
}

.card li{
  display:flex;
  gap:10px;
  margin-bottom:10px;
  color:#ff8b5c;
}

.check{
  width:18px;
  height:18px;
  border-radius:50%;
  border:2px solid #ff6b5a;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  color:#ff6b5a;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .why{
    padding:60px 25px;
  }
  .why-grid{
    grid-template-columns:1fr;
  }
}
@media(max-width:768px){
  .why{
    padding:40px 20px;
  }
  .why-grid{
    grid-template-columns:1fr;
  }
}
/* ======================== sec-3 =========================*/
/* SECTION */
.es-services{
  padding:0 0 40px;
  text-align:center;
}

.es-heading{
  font-size:36px;
  margin-bottom:40px;
  color:#111;
}

/* SLIDER STRUCTURE */
.es-slider-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0px;
}

.es-nav-btn{
  background:#f5f7fa;
  border:none;
  font-size:26px;
  width:45px;
  height:45px;
  border-radius:8px;
  cursor:pointer;
}

/* VIEWPORT */
.es-viewport{
  overflow:hidden;
  max-width:1100px;
  width:100%;
}

/* TRACK */
.es-track{
  display:flex;
  gap:30px;
  transition:transform 0.5s ease;
}

/* CARD */
.es-card{
  min-width:330px;
  background:#dff4ff;
  padding:40px 10px;
  border-radius:16px;
}

/* PHONE */
.es-phone{
  width:220px;
  height:380px;
  background:#111;
  border-radius:30px;
  margin:0 auto 20px;
  padding:10px;
}

.es-notch{
  width:90px;
  height:12px;
  background:#000;
  border-radius:20px;
  margin:5px auto;
}

.es-screen{
  background:linear-gradient(180deg,#ff6b5a,#ff9472);
  height:100%;
  border-radius:20px;
  padding:20px 10px;
  color:#fff;
}

.es-screen h3{
  font-size:32px;
}

.es-screen span{
  font-size:14px;
  opacity:.9;
}

/* SMS */
.es-sms{
  background:#fff;
  margin-top:25px;
  padding:10px;
  border-radius:10px;
  font-size:13px;
  text-align:left;
  color:#333;
}

/* TEXT */
.es-title{
  font-size:22px;
  margin:15px 0;
}

.es-card p{
  font-size:14px;
  line-height:1.6;
  margin-bottom:15px;
}

/* BUTTON */
.es-btn{
  padding:10px 20px;
  border-radius:25px;
  border:1px solid #ff6b5a;
  background:transparent;
  color:#ff6b5a;
  cursor:pointer;
}

.es-btn:hover{
  background:#ff6b5a;
  color:#fff;
}

/* RESPONSIVE */
@media(max-width:768px){
  .es-viewport{
    max-width:330px;
  }
  .es-track{
    gap:10px;
  }
}
/* ========================sec-4======================= */
.sec-container{
  min-height:100vh;
  background:linear-gradient(180deg,#ff6b5a,#ff7b5a);
  color:#fff;
  padding:150px 0 0px;
  /* border: 1px solid; */
}

.desc-container{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:1.5fr 1fr;
  align-items:center;
  /* border: 1px solid; */
  gap:60px;
}

/*  ====== LEFT ======= */
.sec-container h1{
  font-size:44px;
  line-height:1.3;
  margin-bottom:20px;
}

.sec-container p.desc{
  font-size:16px;
  line-height:1.8;
  opacity:.9;
  max-width:650px;
  margin-bottom:40px;
}

.features{
  display:flex;
  flex-direction:column;
  gap:28px;
}

.featuree{
  display:flex;
  gap:16px;
  align-items:flex-start;
}

.icons{
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,.35);
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.icons svg{
  width:22px;
  fill:#fff;
}

.featuree h4{
  font-size:18px;
  margin-bottom:6px;
}

.featuree p{
  font-size:14px;
  opacity:.85;
  line-height:1.6;
  max-width:500px;
}

/* ================= RIGHT ================= */
.cotain-img{
  display:flex;
  flex-wrap: wrap;
  justify-content:center;
  position:relative;
}

.cotain-img img{
  max-width:100%;
  transform:rotate(-4deg);
  filter:drop-shadow(0 40px 60px rgba(0,0,0,.45));
  animation:float 5s ease-in-out infinite;
}

/* ================= ANIMATION ================= */
@keyframes float{
  0%,100%{transform:translateY(0) rotate(-4deg)}
  50%{transform:translateY(-15px) rotate(-4deg)}
}

/* ================= RESPONSIVE ================= */
@media(max-width:1000px){
  .sec-container{
    padding:70px 30px;
  }
  .desc-container{
    grid-template-columns:1fr;
    text-align:center;
  }
  .features{
    align-items:center;
  }
  .featuree{
    text-align:left;
  }
}
/*  MOBILE VIEW */
@media (max-width: 768px){
.desc-container{
grid-template-columns:1fr; /* single column */
gap:30px;
text-align:center; /* optional */
}
.cotain-img img{
  max-width:100%;
  transform:rotate(-4deg);
  filter:drop-shadow(0 40px 60px rgba(0,0,0,.45));
  animation:float 5s ease-in-out infinite;
}
}
/*======================= sec-5 ========================*/
.why-section{
  padding:80px 20px;
  background:#fff;
}

.why-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.why-container h2{
  font-size:42px;
  font-weight:700;
  color:#000;
  margin-bottom:12px;
}

.why-subtitle{
  max-width:900px;
  margin:0 auto 60px;
  font-size:16px;
  color:#555;
  line-height:1.6;
}

/* GRID */
.features-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px 80px;
  align-items:flex-start;
}

/* FEATURE */
.feature{
  display:flex;
  padding: 15px 10px;
  gap:18px;
  text-align:left;
  transition: 0.8s ease;
}
.feature:hover{
  background-color: #e5e7eb;
  border-radius: 10px;
}

.feature h4{
  font-size:18px;
  font-weight:600;
  color:#000;
  margin-bottom:6px;
}

.feature p{
  font-size:15px;
  color:#111;
  line-height:1.6;
}

/* ICON */
.icon{
  font-size:28px;
  line-height:1;
  margin-top:2px;
}

/* CENTER FEATURE */
.center-feature{
  margin:60px auto 0;
  max-width:600px;
  justify-content:center;
  text-align:left;
}

/* ======= RESPONSIVE ======= */

@media(max-width:992px){
  .why-container h2{
    font-size:34px;
  }
  .features-grid{
    gap:30px 40px;
  }
}

@media(max-width:768px){
  .features-grid{
    grid-template-columns:1fr;
  }
  .center-feature{
    text-align:left;
  }
}

@media(max-width:480px){
  .why-container h2{
    font-size:28px;
  }
  .why-subtitle{
    font-size:14px;
  }
}
/* ===========================sec-6 ========================*/
.benefit-area{
  background:#ff9a80;
  padding:80px 20px;
}

.benefit-container{
  max-width:1300px;
  margin:auto;
  text-align:center;
}

.benefit-title{
  font-size:42px;
  font-weight:700;
  color:#000;
  margin-bottom:12px;
}

.benefit-subtitle{
  max-width:850px;
  margin:0 auto 60px;
  color:#445;
  font-size:16px;
}

.benefit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:50px 30px;
}

.benefit-card{
  padding:10px;
}

.benefit-icon{
  width:70px;
  height:70px;
  background:#ff6b5a;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  margin:0 auto 18px;
  transition: 0.8s ease;
}
.benefit-icon:hover{
     background:#ff543e;
     transform: rotateY(180deg)scale(1.1);
 
}
.benefit-card h4{
  font-size:18px;
  font-weight:600;
  margin-bottom:8px;
  color:#000;
}

.benefit-card p{
  font-size:14px;
  line-height:1.6;
  color:#444;
}

/* =====  RESPONSIVE ======= */
@media(max-width:1024px){
  .benefit-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:768px){
  .benefit-title{ font-size:32px; }
  .benefit-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:480px){
  .benefit-grid{
    grid-template-columns:1fr;
  }
}

/* ========================sec-7 ====================== */

       .contact-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;

        }
        
        /* Header */
        .contact-header {
            text-align: center;
            margin-bottom: 50px;
            margin-top: 20px;
        }
        .contact-header h1 {
            font-size: 48px;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b5a, #ef4444);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }
        
        .contact-subtitle {
            font-size: 20px;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* Main Content */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            padding: 0;
        }
        
        /* Left Column - Contact Info */
        .contact-infos {
            background: linear-gradient(135deg, #ff6b5a 0%, #ff6b5a 100%);
            color: white;
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .contact-infos h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }
        
        .contact-infos p {
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 40px;
            color: #e2e8f0;
            opacity: 0.9;
        }
        
        .support-box {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .support-box h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .support-box h3 i {
            color: #ef4444;
        }
        
        .phone-number {
            font-size: 28px;
            font-weight: 700;
            color: #ef4444;
            margin: 15px 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .hours {
            font-size: 16px;
            color: #cbd5e1;
            line-height: 1.6;
        }
        
        .hours span {
            font-weight: 600;
            color: white;
        }
        
        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 0;
        }
        
        .method-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #ef4444;
        }
        
        .method-details h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .method-details p {
            font-size: 16px;
            color: #94a3b8;
            margin: 0;
        }
        
        /* Right Column - Contact Form */
        .contact-form-section {
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .form-header {
            margin-bottom: 30px;
        }
        
        .form-header h2 {
            font-size: 32px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 10px;
        }
        
        .form-header p {
            color:#ef4444;
            font-size: 16px;
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .form-group label {
            font-weight: 600;
            color: #334155;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .required {
            color: #ef4444;
        }
        
        .form-control {
            padding: 16px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s;
            background-color: #f8fafc;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #ef4444;
            background-color: white;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Captcha */
        .captcha-container {
            background: #f1f5f9;
            border-radius: 12px;
            padding: 20px;
            border: 2px solid #e2e8f0;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .captcha-checkbox {
            width: 24px;
            height: 24px;
            border: 2px solid #94a3b8;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .captcha-checkbox.checked {
            background: #10b981;
            border-color: #10b981;
            color: white;
        }
        
        .captcha-text {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            color: #475569;
        }
        
        .captcha-logo {
            color: #ef4444;
            font-size: 18px;
        }
        
        /* Submit Button */
        .submit-btn {
            background: linear-gradient(90deg, #ff6b5a, #ff6b5a);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
            transition: 0.8s;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            background: #ef4444;
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
        }
        
        .submit-btn:active {
            transform: translateY(-1px);
        }
   
        /* Responsive Design */
        @media (max-width: 992px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 0;
            }
            
            .contact-infos, .contact-form-section {
                padding: 50px 40px;
            }
            
            .contact-header h1 {
                font-size: 40px;
            }
        }
        
        @media (max-width: 768px) {
            body {
                padding: 15px;
            }
            
            .contact-header h1 {
                font-size: 36px;
            }
            
            .contact-subtitle {
                font-size: 18px;
            }
            
            .contact-infos h2, .form-header h2 {
                font-size: 28px;
            }
            
            .phone-number {
                font-size: 24px;
            }
            
            .contact-infos, .contact-form-section {
                padding: 40px 30px;
            }
            
            .captcha-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .contact-header h1 {
                font-size: 32px;
            }
            
            .logo {
                font-size: 24px;
            }
            
            .logo-icon {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
            
            .contact-infos h2, .form-header h2 {
                font-size: 24px;
            }
            
            .contact-infos, .contact-form-section {
                padding: 30px 20px;
            }
            
            .support-box {
                padding: 20px;
            }
            
            .phone-number {
                font-size: 22px;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .contact-content {
            animation: fadeIn 0.8s ease-out;
        }
        
        /* Form Validation Styles */
        .form-control.error {
            border-color: #ef4444;
        }
        
        .error-message {
            color: #ef4444;
            font-size: 14px;
            margin-top: 5px;
            display: none;
        }
        
        .form-control.error + .error-message {
            display: block;
        }
        /* end */
        
 /* ================ cts-sms=========== */
 .cta-sms{
  /* background:linear-gradient(135deg,#f4fcff,#e8f7ff); */
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding:80px 20px;
}

.cta-container{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:1.3fr 1fr;
  align-items:center;
  gap:50px;
}

/* LEFT TEXT */
.cta-content h2{
  font-size:40px;
  font-weight:700;
  color:#000;
  margin-bottom:20px;
}

.cta-content p{
  font-size:16px;
  line-height:1.7;
  color:#444;
  max-width:550px;
}

/* RIGHT CALL BOX */
.cta-call{
  display:flex;
  justify-content:center;
}

.call-bubble{
  background:#0b4ea2;
  color:#fff;
  border-radius:22px;
  padding:25px 30px 25px 70px;
  position:relative;
  box-shadow:0 20px 40px rgba(0,0,0,.2);
}

.call-bubble::after{
  content:"";
  position:absolute;
  bottom:-20px;
  left:50px;
  border-width:20px 18px 0;
  border-style:solid;
  border-color:#0b4ea2 transparent transparent;
}

/* ICON */
.calling-icon{
  position:absolute;
  left:-30px;
  top:50%;
  transform:translateY(-50%);
  width:65px;
  height:65px;
  background:#ff8b5c;
  color:#000;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
}

/* TEXT */
.call-text span{
  display:block;
  font-size:22px;
  font-weight:600;
}

.call-text strong{
  display:block;
  margin-top:6px;
  background:#ff6b5a;
  color:#000;
  padding:8px 14px;
  border-radius:10px;
  font-size:18px;
  width:max-content;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){
  .cta-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .cta-content p{
    margin:auto;
  }

  .call-bubble{
    padding:30px 25px 30px 25px;
  }

  .call-icon{
    position:static;
    transform:none;
    margin:0 auto 15px;
  }

  .call-bubble::after{
    display:none;
  }

  .call-text strong{
    margin:auto;
  }
}

@media(max-width:480px){
  .cta-content h2{
    font-size:28px;
  }

  .call-text span{
    font-size:18px;
  }

  .call-text strong{
    font-size:16px;
  }
}
