/*====================================================
Footer section css start Here

#DB0C77
#227DA7
#360F6F
======================================================*/

.footer {
  background: #151515;
  position: relative;
  float: left;
}

.ftr-row {
  display: flex;
  justify-content: space-evenly;
}

.copyright {
  padding: 20px 0;
  position: relative;
  background: #013a6c;
  float: left;
  width: 100%;
}

.copyright a {
  text-decoration: none;
  color: #d0d0d0;
  transition: all 0.5s ease-in-out;
}

.copyright a:hover {
  color: #d02c0d;
  transition: all 0.5s ease-in-out;
}

.copyrightTxt p {
  color: #fff;
  font-size: 15px;
  line-height: 27px;
}

.copyrightRow {
  display: flex;
  justify-content: space-between;
}

.socialMedia ul {
  display: flex;
  list-style: none;
}

.iconLi li {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 32px;
  margin-left: 7px;
  background: #0a7ec2;
}
.iconLi li:hover {
  background: #ee2d75;
  transition: all 0.5s ease-in-out;
}

.iconLi li a {
  color: #fff;
  transition: all 0.5s ease-in-out;
  transform: rotate(0deg);
  display: block;
}

.iconLi li:hover a {
  color: #fff;
  transition: all 0.5s ease-in-out;
  transform: rotate(360deg);
  display: block;
}

/*====================================================
Footer section css End Here
======================================================*/

/* ----------Resposive CSS start here-------------- */

@media (max-width: 1199px) {
}

@media (max-width: 991px) {

  .copyright{
    padding:17px 0;
  }
}

@media (max-width: 767px) {

  .iconLi li{
    width: 27px;
    height: 27px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {

  .copyright{
    padding: 15px 0;
  }

  .copyrightRow{
    display: block;
    justify-content: center;
  }

  .socialMedia ul{
    justify-content: center;
  }

  .copyrightTxt p{
    text-align: center;
  }

}

@media (max-width: 368px) {
}
