/* Project Name: Landing Page Using SwiperJS
Youtube: https://youtube.com/@devRasen
Copyright: ©MdRasen */

/* Google Font */
/* @import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600&family=Roboto:wght@300;400;500;900&display=swap"); */

/* General CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Open Sans", sans-serif; */
  /* font-family: 'Calibri', sans-serif!important; */
}

/* Custom CSS */
.container {
  width: 100%;
  /* min-height: 100vh; */
  column-gap: 40px;
  /* padding: 60px 6%; */
}




.container .side-info {
  margin: 20px 0;
  width: 100%;
}

.container .side-info span {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 16px;
  color: #717171;
}

container .side-info h1 {
    /* text-transform: capitalize; */
    letter-spacing: 0.8px;
    /* font-family: "Roboto", sans-serif; */
    font-weight: 400;
    font-size: 3rem;
    background-color: #000;
    /*background-image: linear-gradient(45deg, #2671a8, #000000);*/
    background-size: 100%;
    background-repeat: repeat;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
  }
  
  .container .side-info hr {
    display: block;
    /*background: #000;*/
    height: 2px;
    width: 65%;
    margin: 12px 0;
  }

.container a {
  display: inline-block;
  text-decoration: none;
  /* text-transform: uppercase; */
  /* color: #717171; */
  font-weight: 500;
  /* background: #fff; */
/*  border-radius: 50px;*/
  /* border: 2px solid #c2c2c2; */
  /* border: 2px solid #2671a8      ; */
  /* color: #2671a8; */
  padding: 8px 16px;
  margin-top: 5px;
  transition: 0.3s ease-in-out;
}

/* .container a :hover { */
  /* border: 2px solid #00afef; */
  /* color: #ffffff; */
  /* background-color: #2671a8; */


  /* background-color: #ffffff;
  color: #00afef;
  border: 2px solid #00afef; */
/* } */

.container .swiper {
  width: 100%;
}


/* Responsive Design */
@media (min-width: 800px) {
  .container {
    display: flex;
    align-items: center;
  }

  .container .side-info {
    margin-bottom: 20px;
  }
}

@media (max-width: 500px) {
  .container .side-info h1 {
    font-size: 46px;
  }

  .container .side-info p {
    font-size: 14px;
  }
}




/* card design css */
/* Styles for Card Layout */
/*.container-fluid{
  display: flex;*/
  /* flex-direction: ; */
  /*justify-content: space-evenly;
}*/

.card {
  width: 280px;
  padding: 20px;
  margin: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-top: 2px solid #00afef;
 
}

.card img {
  /* max-width: 100%; */
  border-radius: 8px;
}

.card h2 {
  margin-top: 15px;
  font-size: 20px;
  color: #333;
}
.card p{
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.card button {
  display: block;
  margin: 15px auto;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #00afef;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.card button:hover {
  background-color: #ffffff;
  color: #00afef;
  border: 2px solid #00afef;
}
/*.btn:hover{
 color: #00afef;
 background-color: #ffffff;
 border: 2px solid #00afef;
}*/