*{
margin:0;
padding:0;
box-sizing:border-box;

font-family:Arial, Helvetica, sans-serif;
}

/* space for fixed navbar */

body{
padding-top:70px;
overflow-x:hidden;
}

/* navbar */

.custom-navbar{
position:fixed;
top:0;
left:0;
width:100%;
height:70px;
background: rgba(255, 255, 255, 0.2);
padding:15px 40px;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 20px 10px rgba(0,0,0,0.3);
z-index:1000;
}

/* logo */

.logo img{
width:140px;
object-fit:cover;
}

/* nav links */

.nav-links{
display:flex;
gap:25px;
align-items:center;
}

/* link style */

.nav-links a{
text-decoration:none;
color:#111;
font-size:17px;
position:relative;
}

/* underline hover effect */

.nav-links a::after{
content:"";
position:absolute;
width:0;
height:2px;
background:#211bc4;
left:0;
bottom:-5px;
transition:0.3s;
}

.nav-links a:hover::after{
width:100%;
}

/* quote button */

.quote-btn{
background:#141178;
color:white !important;
padding:6px 14px;
border-radius:5px;
}

.quote-btn::after{
display:none;
}

/* mobile menu icon */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}


/* NAVBAR */

.custom-navbar{
position:fixed;
top:0;
left:0;
width:100%;
height:90px;
background:white;
padding:15px 40px;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 20px 10px rgba(0,0,0,0.1);
z-index:1000;
}

/* LOGO */

.logo img{
width:140px;
object-fit:cover;
}

/* NAV LINKS */

.nav-links{
display:flex;
gap:25px;
align-items:center;
}

/* LINKS */

.nav-links a{
text-decoration:none;
color:#111;
font-size:17px;
position:relative;
}

/* HOVER UNDERLINE */

.nav-links a::after{
content:"";
position:absolute;
width:0;
height:2px;
background:#211bc4;
left:0;
bottom:-5px;
transition:0.3s;
}

.nav-links a:hover::after{
width:100%;
}


/* LAPTOP (1024px) */
/* ======================= */

@media (max-width:1024px){
.logo img{
width:120px;
}

}

/* TABLET (768px) */

@media (max-width:768px){
.logo img{
width:110px;
}

.nav-links a{
font-size:15px;
}
}

/* MOBILE (480px) */

@media (max-width:480px){

.logo img{
width:110px;
margin-bottom:5px;
}
.custom-navbar{
position:fixed;
top:0;
left:0;
width:100%;
height:70px;
background:white;
padding:15px 40px;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 20px 10px rgba(0,0,0,0.1);
z-index:1000;
}

}

/* --------------carousel code ---------------*/
.carousel-item img{
height:530px;
object-fit:cover;
}
.carousel-overlay{
position: relative;
}

.carousel-overlay::after{
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
}

.carousel-item img{
height: 530px;
object-fit: cover;
}

.carousel-caption{
bottom:30%;
z-index: 2;
}

.carousel-caption h1{
font-size: 50px;
font-weight: bold;
}

.carousel-caption p{
font-size: 20px;
}
/* Tablet */

@media (max-width: 992px){
.carousel-slide{
  overflow-x:hidden;
}
 .carousel-inner{
  overflow-x:hidden;
 } 
.carousel-item img{
height:420px;
}

.carousel-caption{
bottom:25%;
}

.carousel-caption h1{
font-size:36px;
}

.carousel-caption p{
font-size:18px;
}


}


/* Mobile */

@media (max-width: 768px){

.carousel-item img{
height:80vh;
}
.carousel-inner{
  overflow-x:hidden;
 } 
 .carousel-slide{
  overflow-x:hidden;
}
.carousel-caption{
bottom:20%;
padding:0 20px;
}

.carousel-caption h1{
font-size:28px;
}

.carousel-caption p{
font-size:16px;
}

}


/* Small Mobile */

@media (max-width:480px){

.carousel-item img{
height:80vh;
overflow-x:hidden;
}


 
.carousel-caption {
margin-top: 40%;
 
}
  

.carousel-caption h1{

font-size:30px;
}

.carousel-caption p{
font-size:17px;
}
.carousel-caption button {
  padding:11px;
  font-size:16px;
}
}


.caption-btn{
    background-color:#141178;
    padding: 10px 23px;
    color:white;
    border-radius:10px;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    -ms-border-radius:10px;
    -o-border-radius:10px;
}
/* responsive */

@media(max-width:768px){

.menu-toggle{
display:block;
}

.nav-links{
position:absolute;
top:80px;
left:0;
width:100%;
  background:rgba(248, 246, 246, 0.9);
flex-direction:column;
display:none;
text-align:center;
}

.nav-links a{
padding:15px;
border-bottom:1px solid #eee;
}

.nav-links.active{
display:flex;
}}

@media(max-width:480px){

  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:rgba(248, 246, 246, 0.9);
    flex-direction:column;
    display:none;
    text-align:center;
  }

  .nav-links a{
    padding:7px;
    font-size:17px;
    text-decoration:none;
    
  }

  .nav-links.active{
    display:flex;
  }

  .quote-btn{
    background:#141178;
    color:white;
    padding:6px 14px;
    border-radius:5px;
  }

}
/*---------------- about section ---------------*/

.about-section{
  padding: 80px 10%;
  background: #faf8f8;
}

.about-container{
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-image{
  flex: 1;
}

.about-image img{
  width: 100%;
  border-radius: 10px;
}

.about-content{
  flex: 1;
}

.about-content h1{
  font-size: 36px;
  font-weight:600;
  margin-bottom: 20px;
  color: #333;
}

.about-content p{
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

.about-btn{
  padding: 8px 18px;
  border: none;
  background: #141178;
  color: white;
  font-size: 16px;
  border-radius: 9px;
  cursor: pointer;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  -ms-border-radius: 9px;
  -o-border-radius: 9px;
}

.about-btn:hover{
  background: #0d0a5e;
}

/* ---------- Tablet Responsive ---------- */
@media (max-width: 992px){

  .about-section{
    padding: 60px 8%;
  }

  .about-container{
    gap: 30px;
  }

  .about-content h2{
    font-size: 30px;
  }

  .about-content p{
    font-size: 16px;
  }

}


/* ---------- Mobile Responsive ---------- */
@media (max-width: 768px){

  .about-container{
    flex-direction: column;
    text-align: center;
  }

  .about-image{
    width: 100%;
  }

  .about-content{
    width: 100%;
  }

  .about-content h2{
    font-size: 26px;
  }

  .about-content p{
    font-size: 16px;
  }

  .about-btn{
    font-size: 17px;
    padding: 8px 16px;
  }

}


/* ---------- Small Mobile ---------- */
@media (max-width: 480px){

  .about-section{
    padding: 50px 6%;
  }

  .about-content h2{
    font-size: 26px;
  }

  .about-content p{
    font-size: 16px;
  }

}

/* WHAT WE DO SECTION */
.what-section{
padding:80px 20px;
background:#e9e6e6;
}
.container{overflow-x:hidden;}
.what-section h1{
text-align:center;
font-weight:600;
margin-bottom:40px;
font-size:36px;
}

/* CARD */

.what-card{
border:none;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:0.3s;
height:100%;
}

.what-card img{
width:100%;
height:230px;
object-fit:cover;
}

.what-card .card-body{
text-align:center;
padding:25px;
}

.what-card .card-title{
font-size:21px;
font-weight:600;
}

.what-card .card-text{
color:#666;
font-size:16px;
}

.what-card .btn{
background:#141178;
border:none;
padding:8px 18px;
}

.what-card .btn:hover{
background:#0d0a5e;
}

.what-card:hover{
transform:translateY(-10px);
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* ======================= */
/* LAPTOP (1024px) */
/* ======================= */

@media (max-width:1024px){

.what-section{
padding:70px 30px;
}

.what-section h1{
font-size:32px;
}

.what-card img{
height:200px;
}

}


/* TABLET (768px) */
/* ======================= */

@media (max-width:768px){

.what-section{
padding:60px 20px;
}

.what-section h1{
font-size:28px;
}

.what-card img{
height:180px;
}

.what-card .card-title{
font-size:20px;
}

.what-card .card-text{
font-size:16px;
}

}


/* MOBILE (480px) */
/* ======================= */

@media (max-width:480px){

.what-section{
padding:50px 15px;
overflow-x:hidden;
}

.what-section h1{
font-size:29px;
}

.what-card img{
height:160px;
}

.what-card .card-body{
padding:20px;
}

.what-card .card-title{
font-size:19px;
}

.what-card .card-text{
font-size:16px;
}

.what-card .btn{
padding:6px 14px;
font-size:14px;
}

}


/* why choose us */
/* SECTION */
.services-section {
  padding: 80px 5%;
  background: #c7c6c6;
  text-align: center;
}

/* TITLE */
.services-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}
.services-title span {
  color: #2b26b6;
}

.services-subtitle {
  font-size: 20px;
  color: #333;
  margin-bottom: 50px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.service-card {
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-card i {
  font-size: 28px;
  text-align:center;
  color: #1a1696;
}

.service-card h5 {
  font-size: 25px;
  font-weight:500;
  text-align:center;
  color: #0c0875;
}

.service-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border:1.5px solid #211bc4;  
}
@media (max-width: 1200px) {
  .services-title {
    font-size: 32px;
  }
  .services-subtitle {
    font-size: 17px;
    margin-bottom: 40px;
  }
  .service-card h5 {
    font-size: 22px;
  }
}

/* TABLET */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .services-title {
    font-size: 30px;
  }
  .services-subtitle {
    font-size: 16px;
    margin-bottom: 35px;
  }
  .service-card h5 {
    font-size: 20px;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .services-section {
    padding: 50px 3%;
    overflow-x:hidden;
  }
  .services-title {
    font-size: 26px;
  }
  .services-subtitle {
    font-size: 17px;
    margin-bottom: 30px;
  }
  .service-card h5 {
    font-size: 19px;
  }
  .service-card p {
    font-size: 16px;
  }
  .service-card i {
    font-size: 26px;
  }
}
/*------- gallery section -------*/
.project-gallery{
padding:80px 10%;
text-align:center;
background:#e1dede;
}

/* TITLE */

.gallery-title{
font-weight:600;
font-size:32px;
margin-bottom:20px;
}

/* FILTER BUTTONS */

.gallery-buttons{
margin-bottom:40px;
}

.gallery-buttons button{
padding:8px 23px;
margin:5px;
background:#141178;
color:white;
border-radius:9px;
cursor:pointer;
border:none;
transition:0.3s;
}

.gallery-buttons button:hover{
background:#0c3170;
}

/* GALLERY GRID */

.gallery-container{
display:grid;
margin-top:20px;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:15px;
}

.gallery-item{
display:none;
}

.gallery-item img{
width:100%;
height:200px;
object-fit:cover;
border-radius:6px;
transition:0.3s;
}

.gallery-item img:hover{
transform:scale(1.05);
}

/* LEARN MORE BUTTON */

.learn-btn{
display:flex;
justify-content:center;
margin-top:40px;
}

.learn-btn button{
background:#0f0b72;
border:none;
padding:10px 26px;
border-radius:6px;
cursor:pointer;
transition:all 0.3s ease;
}

.learn-btn button a{
color:#fff;
text-decoration:none;
font-size:16px;
font-weight:500;
display:block;
}

.learn-btn button:hover{
background:#1d1990;
transform:translateY(-3px);
}



/* LAPTOP */
/* ======================= */

@media (max-width:1024px){

.project-gallery{
padding:70px 7%;
}

.gallery-title{
font-size:28px;
}

.gallery-container{
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
}

.gallery-item img{
height:180px;
}

.learn-btn button a{
font-size:17px;
}

}

/* TABLET */
/* ======================= */

@media (max-width:768px){

.project-gallery{
padding:60px 6%;
}

.gallery-title{
font-size:27px;
}

.gallery-buttons button{
padding:7px 18px;
font-size:16px;
}

.gallery-container{
grid-template-columns:repeat(2,1fr);
gap:12px;
}

.gallery-item img{
height:190px;
}

.learn-btn button{
padding:11px 22px;
}

.learn-btn button a{
font-size:16px;
}

}

/* MOBILE */
/* ======================= */

@media (max-width:480px){

.project-gallery{
padding:50px 5%;
}

.gallery-title{
font-size:26px;
}

.gallery-buttons{
display:flex;
flex-wrap:wrap;
justify-content:center;
}

.gallery-buttons button{
padding:6px 14px;
font-size:16px;
margin:4px;
}

.gallery-container{
grid-template-columns:repeat(2,1fr);
gap:8px;
}

.gallery-item img{
height:200px;
}

.learn-btn button{
padding:8px 18px;
}

.learn-btn button a{
font-size:17px;
border-radius:10px;

}

}
/* footer code */
/* FOOTER */

.footer{
background:#a39d9d;
color:#000000;
padding:40px 20px 0;
}

/* GRID LAYOUT */

.footer-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

/* LOGO */

.footer-col img{
width:150px;
margin-bottom:15px;
}

/* HEADING */

.footer-col h3{
margin-bottom:15px;
font-size:18px;
color:#2e1f8e;
}

/* TEXT */

.footer-col p{
font-size:16px;
line-height:1.6;
color:#fff;
}

/* LINKS */

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col ul li a{
color:#fff;
text-decoration:none;
transition:0.3s;
}

.footer-col ul li a:hover{
color:#fff;
padding-left:5px;
}

/* SOCIAL ICONS */

.social-links{
display:flex;
gap:12px;
margin-top:20px;
}

.social-links a{
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
width:40px;
height:40px;
background:#2c2c2c;
border-radius:50%;
color:#fff;
font-size:19px;
transition:0.3s;
}

.social-links a:hover{
background:#141178;
transform:translateY(-3px);
}

/* COPYRIGHT */

.footer-bottom{
text-align:center;
border-top:1px solid #444;
margin-top:30px;
padding:15px;
font-size:16px;
color:#fff;
}


/* 1024px  */
/* ===================== */

@media (max-width:1024px){

.footer-container{
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.footer-col img{
width:140px;
}

}


/* 768px*/
/* ===================== */

@media (max-width:768px){

.footer-container{
grid-template-columns:repeat(2,1fr);
text-align:center;
}

.footer-col img{
margin:auto;
}

.social-links{
justify-content:center;
}

}


/* 480px RESPONSIVE */
/* ===================== */

@media (max-width:480px){

.footer-container{
grid-template-columns:1fr;
gap:20px;
text-align:center;
}

.footer-col img{
margin:auto;
width:130px;
}

.footer-col h3{
font-size:17px;
}

.footer-col p{
font-size:16px;
}
.footer-col li a{
    font-size:16px;
}
.social-links{
justify-content:center;
}

.footer-bottom{
font-size:15px;
}

}


/* service area code */

.service-area h2 
{
 text-align:center;
padding:20px;
font-weight:600;
    
}
.service-area 
{padding:70px;
 text-align:center;
font-weight:600;
    
}

.area-list{
  list-style:none;
  padding:0;
  margin:40px 0;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:25px;
  max-width:900px;
  margin:auto;
}

/* BUTTON STYLE */
.area-list li{
  position:relative;
  overflow:hidden;
  text-align:center;
  font-size:19px;
  border:2px solid #141178;
  background:white;
  border-radius:10px;
  padding:16px 20px;
  color:#141178;
  font-weight:600;
  cursor:pointer;
  transition:0.4s ease;
  z-index:1;

  /* ENTRY ANIMATION */
  animation:floatUp 1s ease forwards;
  opacity:0;
}

/* BACKGROUND FILL */
.area-list li::before{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:0%;
  background:#141178;
  transition:0.4s ease;
  z-index:-1;
}

/* HOVER */
.area-list li:hover::before{
  height:100%;
}

.area-list li:hover{
  color:white;
  transform:translateY(-8px) scale(1.03);
  box-shadow:0 10px 20px rgba(0,0,0,0.2);
}

/* STAGGER EFFECT */
.area-list li:nth-child(1){ animation-delay:0.1s; }
.area-list li:nth-child(2){ animation-delay:0.3s; }
.area-list li:nth-child(3){ animation-delay:0.5s; }
.area-list li:nth-child(4){ animation-delay:0.7s; }
.area-list li:nth-child(5){ animation-delay:0.9s; }
.area-list li:nth-child(6){ animation-delay:1.1s; }

/* KEYFRAME */
@keyframes floatUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* TABLET */
@media(max-width:768px){
  .area-list{
    grid-template-columns:repeat(2,1fr);
  }
}

/* MOBILE */
@media(max-width:480px){
    .service-area h2{font-size:28px;
        font-weight:600;
    }
  .area-list{
    grid-template-columns:1fr;
  }
}



/* POPUP BACKGROUND */
.form-popup{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


/* FORM BOX */
.form-container{
  background: #ffffff;
  padding: 15px;
  width: 500px;
  max-width: 90%;
  border-radius: 12px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
      
}


/* CLOSE BUTTON */
.close-btn{
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
  color: #242222;
}


/* HEADING */
.form-container h2{
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 2px;
}


/* PARAGRAPH */
.form-container p{
  font-size: 14px;
  color: #666;
}


/* INPUT FIELDS */
.form-container input,
.form-container textarea{
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}


/* INPUT FOCUS */
.form-container input:focus,
.form-container textarea:focus{
  border-color: #6a63c6;
}


/* TEXTAREA */
.form-container textarea{
  min-height: 90px;
  resize: none;
}


/* SUBMIT BUTTON */
.form-submit{
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  background: linear-gradient(to top , #6765bb, #09098d);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.form-submit:hover{
background: linear-gradient(90deg , #525ebd, #0b18a1);
}
/* popup message after form submit */
.popup-message{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  background:rgba(0,0,0,0.6);
  justify-content:center;
  align-items:center;
  padding:20px;
  z-index:9999;
}
.popup-content{
  background:#fff;
  padding:35px 30px;
  border-radius:12px;
  text-align:center;
  width:100%;
  max-width:400px;
  position:relative;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.popup-content h2{
  font-size:26px;
  margin-bottom:10px;
}

.popup-content p{
  font-size:16px;
  line-height:1.5;
}

.close-popup{
  position:absolute;
  top:12px;
  right:15px;
  cursor:pointer;
  font-size:22px;
}

/* Laptop */
/* ======================= */

@media (max-width:1024px){

.form-container{
  width:450px;
  padding:18px;
}

.form-container h2{
  font-size:26px;
}

.popup-content{
  max-width:380px;
}

}


/* ======================= */
/* Tablet */
/* ======================= */

@media (max-width:768px){

.form-container{
  width:100%;
  max-width:420px;
  padding:20px;
}

.form-container h2{
  font-size:24px;
}

.form-container input,
.form-container textarea{
  font-size:14px;
  padding:11px;
}

.form-submit{
  font-size:15px;
  padding:12px;
}

.popup-content{
  max-width:340px;
  padding:30px 25px;
}

.popup-content h2{
  font-size:22px;
}

.popup-content p{
  font-size:15px;
}

}


/* ======================= */
/* Mobile */
/* ======================= */

@media (max-width:480px){
.form-popup{
  align-items:flex-start;
  overflow-y:auto;
  padding:20px 10px;
}

.form-container{
  margin-top:20px;
  margin-bottom:20px;
  max-height:90vh;
  overflow-y:auto;
}
.form-container h2{
  font-size:20px;
}

.form-container p{
  font-size:13px;
}

.form-container input,
.form-container textarea{
  font-size:13px;
  padding:10px;
}

.form-submit{
  font-size:14px;
  padding:11px;
}

.popup-content{
  max-width:90%;
  padding:25px 20px;
}

.popup-content h2{
  font-size:20px;
}

.popup-content p{
  font-size:14px;
}

.close-btn,
.close-popup{
  font-size:20px;
}

}




/* WHATSAPP FLOAT BUTTON */
.whatsapp-btn{
  position:fixed;
  bottom:25px;
  right:25px;

  width:60px;
  height:60px;

  background:#25D366;
  color:white;

  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;

  font-size:32px;
  text-decoration:none;

  box-shadow:0 5px 15px rgba(0,0,0,0.3);

  z-index:999;
  transition:0.4s ease;

  animation:whatsappPulse 1.5s infinite;
}

/* HOVER */
.whatsapp-btn:hover{
  transform:scale(1.1);
  background:#1ebe5d;
}

/* PULSE ANIMATION */
@keyframes whatsappPulse{

  0%{
    box-shadow:0 0 0 0 rgba(37,211,102,0.7);
  }

  70%{
    box-shadow:0 0 0 18px rgba(37,211,102,0);
  }

  100%{
    box-shadow:0 0 0 0 rgba(37,211,102,0);
  }

}

/* MOBILE */
@media(max-width:480px){

  .whatsapp-btn{
    width:55px;
    height:55px;
    font-size:28px;
    bottom:20px;
    right:20px;
  }

}