*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Work Sans", Arial, sans-serif;
    color: #000;
    background-color: #fff;
}
@media screen and (max-width: 767px) {
  body{
    overflow-x: hidden;
  }
}
.header {
  background-color: #fff;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  position: fixed;
  width: 100%;
  z-index: 3;
}
.header span{
  font-size: 40px;
  color: #1eaaf1;;
  font-family: "Work Sans", Arial, sans-serif;
  font-weight:700;
}
.header p{
  margin-left: 20px;
  display: inline-block;
  color: #1eaaf1;;
  font-family: "Work Sans", Arial, sans-serif;
  margin-top: 5px;
}
.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #fff;
}

.header li a {
  display: block;
  padding: 20px 20px;
  color: #000;
  border-right: 1px solid #f4f4f4;
  text-decoration: none;
}

.header li a:hover,
.header .menu-btn:hover {
 background-color: #3498db;
 color: #fff;
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  /* float: right; */
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */

@media (min-width: 48em) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 20px 30px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}
/* Nav section end here */

.header-image img{
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header-image img{
    background-image: url(SmallHelp.png);
  }
}
.title{
    font-size: 50px;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
}
section p{
  text-align: center;
  margin-bottom: 40px;
}

.questions-container{
    max-width: 900px;
    margin: 0 auto;
}

.question{
    border-bottom: 1px solid #000;
}
.question button{
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    border:none;
    outline: none;
    font-size: 22px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
}
.question p{
    font-size: 22px;
    max-height: 0;
    opacity: 0;
    line-height: 1.5;
    overflow: hidden;
    transition: all 0.6s ease;
}
.d-arrow{
    transition: transform 0.5s ease-in ;
    color: #000;
}

/*add this class when click*/
.question p.show{
    max-height: 200px;
    opacity: 1;
    padding:0px 15px 30px 15px;
}
.question button .d-arrow.rotate{
    transform: rotate(180deg);
}
/* Yes No section */
.container{
  text-align: center;
  margin-bottom: 0;
  margin-top: 30px;
}
.btn{
  border: 1px solid #3498db;
  background: none;
  padding: 10px 20px;
  font-size: 20px;
  font-family: "montserrat";
  cursor: pointer;
  margin: 10px;
  transition: 0.8s;
  position: relative;
  overflow: hidden;
}
.btn1,.btn2{
  color: #3498db;
}
.btn1:hover,.btn2:hover{
  color: #fff;
}
.btn::before{
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0%;
  background: #3498db;
  z-index: -1;
  transition: 0.8s;
}
.btn1::before{
  top: 0;
  border-radius: 0 0 50% 50%;
}
.btn2::before{
  bottom: 0;
  border-radius: 50% 50% 0 0;
}
.btn1:hover::before,.btn2:hover::before{
  height: 180%;
}
/* footer section start here */
footer{
  position: relative;
  width: 100%;
  height: auto;
  padding: 50px 100px;
  background: #121652;
  margin-top: 80px;
}
footer .container{
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-gap: 20px;
}
footer .container .sec h2{
  position: relative;
  color: #dbdbdb;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: left;
}
footer .container .sec h2::before{
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #ffeb3b;

}
footer .container .sec p{
  color: #dbdbdb;
  margin-right: 30px;
  line-height: 1.5;
  text-align: left;
}
.sci{
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4,50px);
  grid-gap: 10px;
}
.sci li{
  list-style: none;
}
.sci li a{
  display: inline-block;
  width: 48px;
  height: 48px;
  background: #121652;
  display:grid;
  align-content: center;
  justify-content: center;
  text-decoration: none;
}
.sci li a .fab:hover{
  background: #121652;
}
.sci li a .fab{
  color: #fff;
  font-size: 20px;
}
.qulicklinks{
  position: relative;
}
.qulicklinks li{
  list-style: none;
  text-align: left;
}
.qulicklinks li a{
  color: #dbdbdb;
  text-decoration: none;
  margin-bottom: 10px;
}
.qulicklinks li a:hover{
  color: #ffeb3b;
}
.info{
  position: relative;
}
.info li{
  display: grid;
  grid-template-columns: 30px 1fr;
  margin-bottom: 16px;
}
.info li img{
  width: 18px;
}
.contact{
  margin-right: -150px;
}
.contact span{
  font-size: 14px;
  font-weight: normal;
  color: #dbdbdb;
  line-height: 1.5;
  text-align: left;
}
.contact a{
  font-size: 14px;
  font-weight: normal;
  color: #dbdbdb;
  text-decoration: none;
}
.contact li a:hover{
  color: #ffeb3b;
}
.copyrightText{
  width: 100%;
  background: #0c0e2d;
  padding: 8px 100px;
  text-align: center;
  color: #dbdbdb;
}
@media (max-width: 991px) {
  footer{
    padding: 40px;
  }
  footer .container{
    grid-template-columns: repeat(2,1fr);
  }
}
@media (max-width: 768px) {
  footer .container{
    grid-template-columns: repeat(1,1fr);
  }
}
