/* ==========================================================================
             ================ About page css================
============================================================================= */

/* ============= our values section ===================== */
.mycard{
	font-family: Helvetica, Arial, sans-serif;
}
.mycard {
  box-sizing: border-box;
  width: 300px;
  border: 1px solid white;
  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  border-radius: 17px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  color:black;
  padding: 15px;
}

.mycard:hover {
  border: 1px solid #5271ff;
  transform: scale(1.05);
}

.mycard:active {
  transform: scale(0.95) rotateZ(1.7deg);
}

/* ================= OUR TEAM ======================== */
/*

body {
  background: #e8cbc0;
  background: -webkit-linear-gradient(to right, #e8cbc0, #5271ff);
  background: linear-gradient(to right, #e8cbc0, #5271ff);
  min-height: 100vh;
}
*/
.social-link {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s;
  font-size: 0.9rem;
  background: #5271ff;
}

.social-link:hover, .social-link:focus {
  background: #fff;
  text-decoration: none;
  color: #5271ff;
}

/* 
=====================================================================================================
    ================================== FAQS  =================================================
==================================================================================================
*/

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #d4e5fc;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-weight: bolder;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  padding-left: 25px;
  cursor: pointer;
  color: #0d58ba;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
  font-weight: 600;
}

.faq .faq-list .collapsed:hover {
  color: #106eea;

}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

