@import url('../css2');
@import url('../css2-1');

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.hdd {
  font-family: "Vidaloka", serif;
 
}

img {
  max-width: 100%;
}

.main-container {
  float: left;
  width: 100%;
}

.top-left {
  padding: 0;
  text-align: center;
  background: orangered;
}

.top-left-1 {
  color: white;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0px 0px 3px;
}

.marquee {
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* width: 100%; */
  overflow: hidden;
  /* pointer-events: none; */
}

.marquee__inner {
  width: fit-content;
  display: flex;
  position: relative;
  --offset: 1rem;
  --move-initial: calc(-25% + var(--offset));
  /* --move-final: calc(-50% + var(--offset)); */
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 5s linear infinite;
  animation-play-state: paused;
  animation-play-state: running;
  /* transition-duration: 1s; */
}

.marquee span {
  white-space: nowrap;
  padding: 11px 25px 8px;
  text-shadow: 0 0 20px darkred;
}

@keyframes marquee {
  0% {
      transform: translate3d(var(--move-initial), 0, 0);
  }

  100% {
      transform: translate3d(var(--move-final), 0, 0);
  }
}

.top-left-1 p {
  color: darkred;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0px 15px 3px;
  background: darkred;
  animation: animate 0.8s linear infinite;
}

@keyframes animate {
  0% {
      text-shadow: 0 0 5px darkred;
  }

  50% {
      text-shadow: 0 0 20px darkred;
  }

  100% {
      text-shadow: 0 0 20px darkred;
  }
}


.top-right {
  padding: 0px 5px 10px;
  position: relative;
  margin-bottom: -68px;
  float: right;
}

.top-right:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 75%;
  display: block;
  background-color: orangered;
}

.top-right-1 {
  position: relative;
  text-align: center;
}

.top-right-1 p {
  color: #ffffff;
  font-size: 23px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 6px 15px 5px;
  text-align: center;
  background: darkred;
}

.toplist1 ul li {
  padding: 7px 15px 63px;
  display: inline-block;
  position: relative;
  font-size: 18px;
  color: #000;
  text-align: center;
  text-transform: capitalize;
  font-weight: 700;
}

.toplist1 li span {
  position: absolute;
  height: 52px;
  width: 52px;
  bottom: 0;
  color: #fff;
  right: 0;
  margin: 0 auto;
  left: 0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #000;
  font-size: 21px;
  box-shadow: 0 0px 0px 6px #ffffff;
  background: darkred;
}

/* top header section end */





/* head section start */
.head-align {
  align-items: flex-end;
}

.head-left1 {
  padding: 0;
}

.head-right1 {
  padding: 0;
  text-align: right;
}

.head-right2 {
  display: flex;
  align-items: center;
  justify-content: right;
  margin-top: 70px;
}

.head-left2 img {
  max-width: 100%;
  margin-top: -20px;
}

.head-right2 .head-call {
  text-transform: capitalize;
  font-size: 35px;
  font-weight: 800;
  padding: 0 15px 0 0;
  animation: bounce infinite;
  animation-duration: 1s;
  color: #ffffff;
  display: inline-block;

}

@keyframes bounce {
  0% {
      color: darkred;
  }

  100% {
      color: #000;
  }
}

.head-right2 .head-text {
  text-transform: capitalize;
  font-size: 21px;
  font-weight: 500;
  color: #ffffff;
  padding: 1px 23px 2px;
  background: darkred;
  display: inline-block;
  border-radius: 40px;
}

/* head section end */

/* head line section start */
.headline-sec {
  padding: 0;
  background: darkred;
  animation: 1s blink infinite;
}

@keyframes blink {
  0% {
      background: darkred;
  }

  50% {
      background: #000;
  }

  100% {
      background: darkred;
  }
}

.headline-left1 {
  padding: 0;
}

.headline-left2 span {
  font-weight: 700;
  padding: 0px 0 3px;
  font-size: 25px;
  text-transform: capitalize;
  display: inline-block;
  color: #ffffff;
  margin-top: 5px;
}

.headline-right1 {
  padding: 0;
}

.headline-right2 span {
  font-weight: 900;
  padding: 4px 15px 4px;
  color: white;
  font-size: 25px;
  text-transform: uppercase;
  display: block;
  background: orangered;
  text-align: center;
}


.services-heading {
  text-align: center;
  padding: 0;
}

.services-heading p {
  margin: 0;
}

.services-heading p span {
  height: 2px;
  display: inline-block;
  margin: 0px 0px 3px 0px;
  width: 50px;
  position: relative;
  background: linear-gradient(45deg, #98ffeb, darkred);
}

.services-heading p span:before {
  height: 20px;
  width: 20px;
  position: absolute;
  content: "";
  top: -9px;
  background: linear-gradient(45deg, #98ffeb, darkred);
  left: 0px;
  border-radius: 50px;
}

.services-heading i {
  background: linear-gradient(45deg, #98ffeb, darkred);
  color: #000;
  padding: 7px 20px 7px;
  text-shadow: 1px -1px 6px darkred;
  display: inline-block;
  font-size: 15px;
  font-style: normal;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
}

.services-heading p .bgicon-right:before {
  height: 20px;
  width: 20px;
  position: absolute;
  content: "";
  top: -9px;
  background: linear-gradient(45deg, #98ffeb, darkred);
  left: 0px;
  border-radius: 50px;
  right: 0;
  left: auto;
}

.services-heading strong {
  font-size: 47px;
  font-weight: 600;
  display: block;
  text-transform: capitalize;
  color: darkred;
}

.whychoose-section {
  padding: 0;
}

.whychoose-section1 {
  padding: 50px 0;
}

.chooseus-left1 {
  padding: 0px;
}

.chooseus-left2 {
  padding: 0px;
}

.choose-us {
  padding: 20px 0 0 0;
}

.choose-us:before {
  content: "";
  height: 60px;
  width: 60px;
  position: absolute;
  border-radius: 50%;
  top: -2px;
  left: 20px;
  background: #fff;
  z-index: 9;
}

.choose-us:after {
  content: "";
  height: 40px;
  width: 40px;
  border-radius: 50%;
  left: 30px;
  top: 9px;
  position: absolute;
  z-index: 9999999;
  box-shadow: inset 0.2em 0.2em 0.2em 0 rgb(46 112 169), inset -0.2em -0.2em 0.2em 0 rgb(98 180 254);
  background: #5fb1fe;
  border: 4px solid #87ccf1;
}

.choose-us1 {
  padding: 10px 0px;
}

.choose-us1:before {
  content: "";
  height: 60px;
  width: 60px;
  position: absolute;
  border-radius: 50%;
  bottom: -30px;
  left: 20px;
  background: #fff;
  z-index: 9;
}

.choose-us2 {
  padding: 20px 13px 30px 100px;
  display: flex;
  background: linear-gradient(45deg, orangered, yellow);
  justify-content: left;
  align-items: center;
  border-radius: 0 10px 10px 0;
}

.choose-us2:after {
  content: "";
  height: 40px;
  width: 40px;
  border-radius: 50%;
  left: 30px;
  bottom: -30px;
  position: absolute;
  z-index: 99999;
  box-shadow: inset 0.2em 0.2em 0.2em 0 rgb(46 112 169), inset -0.2em -0.2em 0.2em 0 rgb(98 180 254);
  background: #5fb1fe;
  border: 4px solid #87ccf1;
}

.choose-text {
  width: 80%;
  text-align: left;
}

.choose-text strong {
  font-size: 37px;
  font-weight: 700;
  text-transform: capitalize;
  display: block;
  border-bottom: 1px solid #eee;
  -webkit-text-stroke-width: 0.4px;
  -webkit-text-stroke-color: white;
}

.choose-text p {
  color: #000;
  font-size: 15px;
  margin: 0;
  padding: 10px 0 0;
  line-height: 30px;
 
}

.choose-image {
  padding: 0px;
  text-align: center;
  width: 20%;
}

.choose-image span {
  display: block;
  height: 100px;
  width: 100px;
  line-height: 100px;
  border-radius: 50%;
  background: #fff;
  text-align: center;
  margin: 0 auto;
}

.choose-image span img {
  height: 63px;
}

.chooseus-right1 {
  padding: 0;
}

.chooseus-right1:before {
  background: url(../images/sidebg.jpg);
  content: "";
  right: 0;
  height: 100%;
  width: 70%;
  position: absolute;
  z-index: -9;
}

.chooseus-right1:after {
  background: darkredeb;
  content: "";
  width: 70%;
  height: 100%;
  right: 0;
  position: absolute;
  z-index: -9;
}

.chooseus-right2 {
  padding: 70px 0 70px;
}

.choose-banner {
  padding: 40px 0px 0 40px;
}

.choose-banner img {
  border: 3px solid #fff;
  border-radius: 30px;
}

.marksection {
  padding: 0;
  background: darkred;
}

.marksection1 {
  padding: 40px 0 30px;
}

.mark-left1 {
  padding: 0;
  text-align: center;
}

.mark-left2 {
  padding: 10px;
}

.mark-left2:before {
  background: darkred;
  content: "";
  position: absolute;
  height: 110px;
  width: 50%;
  left: 0;
  top: 34px;
}

.mark-left2 span {
  height: 150px;
  width: 150px;
  line-height: 140px;
  display: block;
  background: darkred;
  text-align: center;
  position: relative;
  border-radius: 50%;
  z-index: 9;
  margin: 0 0 0 30px;
}

.mark-left2 span:before {
  height: 120px;
  width: 120px;
  background: #ffffff;
  content: "";
  left: 0px;
  right: 0;
  margin: 14px auto 0;
  position: absolute;
  border-radius: 50%;
  z-index: -9;
}

.mark-left2 span img {
  /* filter: brightness(0) invert(1); */
  height: 67px;
}

.mark-right1 {
  padding: 0 0px 0 0px;
  text-align: left;
}

.mark-right2 {
  padding: 0 0px;
  text-align: center;
  color: #fff;
}

.mark-right2 strong {
  padding: 0px;
  display: block;
  font-size: 50px;
  font-weight: 500;
  color: #b5fff1;
  text-transform: capitalize;
  margin: 0;
}

.mark-right3 {
  padding: 10px 0 0;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mark-right3 p {
  width: 60%;
  padding: 0px 20px 0 0px;
  font-size: 17px;
  line-height: 34px;
 
  text-transform: capitalize;
  margin: 0;
}

.mark-right3 a {
  width: 40%;
  line-height: 71px;
  padding: 0px;
  background: #b5fff1;
  font-size: 41px;
  font-weight: 500;
  color: darkred;
  text-transform: capitalize;
  display: block;
}

.award {
  float: left;
  width: 100%;
  padding: 50px 0px;
}

.awards {
  float: left;
  width: 100%;
  margin-top: 30px;
}

.banner-section {
  padding: 0;
}

.banner-section:before {
  height: 100%;
  width: 17%;
  position: absolute;
  background: #cbfff5;
  content: "";
  z-index: -9;
  left: 100px;
  bottom: 0px;
  border-radius: 0;
}

.banner-section:after {
  height: 100%;
  width: 16%;
  position: absolute;
  background: #cbfff5;
  content: "";
  z-index: -9;
  right: 100px;
  bottom: 0px;
  border-radius: 0;
}

.banner-section1 {
  padding: 80px 0 80px;
}

.banner-1 {
  padding: 0px;
}

.banner-2 {
  padding: 0;
  text-align: center;
}

.banner-11 {
  padding-top: 30px;
}

.mid-section {
  padding: 0;
  float: left;
  width: 100%;
}

.mid-section1 {
  padding-top: 50px;
}

.midsection-left1 {
  padding: 0px 0px 0 0;
}

.midsection-left1 {
  padding: 0px 0px 0 0;
}

.midsection-left2 {
  padding: 0px 30px 50px 0px;
}

.form-section {
  padding: 0 0px 0 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-left1 {
  padding: 0;
}

.form-section1 {
  padding: 60px 0 31px;
  border-radius: 20px;
}

.aboutus-image {
  text-align: center;
  padding: 0px 0 0px;
  overflow: hidden;
  margin: -110px 0 0;
  z-index: -9;
}

.aboutus-image .mata-ji {
  height: auto;
  display: block;
  margin: 0 auto;
  width: 70%;
}

.aboutus-image .round-image {
  position: absolute;
  left: 0;
  top: 141px;
  height: 305px;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  animation: rotation 15s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(1turn);
  }
}

.midsection-right1 {
  padding: 0 0px 0 0px;
}

.midsection-right2 {
  padding: 0px 0px 0 0px;
}

.aboutus-design {
  padding: 0px 0px 50px 30px;
  z-index: 9;
}

.aboutus-heading {
  padding: 0;
  text-align: left;
}

.aboutus-heading p {
  margin: 0;
  position: relative;
  z-index: 9;
}

.aboutus-heading p i {
  background: linear-gradient(45deg, #98ffeb, darkred);
  color: #000;
  padding: 7px 20px 7px;
  text-shadow: 1px -1px 6px darkred;
  display: inline-block;
  font-size: 15px;
  font-style: normal;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
}

.aboutus-heading p span {
  height: 2px;
  display: inline-block;
  margin: 0px 0px 3px 0px;
  width: 50px;
  position: relative;
  background: linear-gradient(45deg, #98ffeb, darkred);

}

.aboutus-heading p span:before {
  height: 20px;
  width: 20px;
  position: absolute;
  content: "";
  top: -9px;
  background: linear-gradient(45deg, #98ffeb, darkred);
  right: 0px;
  border-radius: 50px;
}

.aboutus-heading h1 {
  font-size: 40px;
  padding: 10px 0 0;
  font-weight: 600;
  color: darkred;
  display: block;
  text-transform: capitalize;
}

.aboutus-heading h1 a {
  color: darkred;
}

.about-design {
  padding: 16px 0 0 0;
  text-align: left;
}

.about-design p {
  color: #000000;
  font-size: 15px;
  padding: 10px 40px 0 0px;
  margin: 0;
  line-height: 30px;
 
}

.about-design p strong {
  color: darkred;
  font-weight: 600;
}

.about-design a {
  color: white;
  text-shadow: 1px -1px 6px #000;
  font-size: 17px;
  display: inline-block;
  font-weight: 500;
  border-radius: 30px 0 0px 30px;
  background: darkred;
  padding: 8px 23px 8px;
  margin: 0;
  float: right;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.chooseus-section {
  padding: 0;
}

.chooseus-section1 {
  padding: 0px;
}

.pick-1 {
  overflow: hidden;
  padding: 40px 10px;
}

.pick-2 {
  padding: 0;
  text-align: center;
}

.pick-2:before {
  top: -13px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  background: #222;
  border: 6px solid #fff;
  z-index: 99;
}

.pick-3 {
  height: 244px;
  background: #fff;
  width: 245px;
  border: 0;
  text-align: center;
  border-radius: 50%;
  margin: 0 auto 0;
  padding: 0px 20px;
  overflow: hidden;
}

.pick-3 span {
  height: 87px;
  line-height: 68px;
  overflow: hidden;
  text-align: center;
  padding: 10px 0 20px;
  width: 87px;
  display: block;
  background: darkred;
  background: linear-gradient(45deg, #98ffeb, darkred);
  border-radius: 0px 0px 50% 50%;
  margin: 0px auto 0px;
}

.pick-3 span img {
  height: 45px;
  filter: brightness(0) invert(0);
}

.pick-3 strong {
  font-size: 20px;
  margin: 14px 0 3px;
  font-weight: 700;
  display: block;
  text-transform: capitalize;
  color: darkred;
}

.pick-3 p {
  color: #000;
  font-size: 14px;
  line-height: 24px;
  margin: 0;
 
}

.pick-2 .round-pick1 {
  position: absolute;
  left: 0;
  bottom: 20px;
  right: 0;
  top: 0;
  overflow: hidden;
  margin: auto;
  z-index: -1;
  animation: rotation 15s linear infinite;
}

.pick-12 {
  margin-top: 100px;
}

.best-ser {
  float: left;
  width: 100%;
  padding: 50px 0px;
}

.best-services1 {
  padding: 15px 15px;
  margin-top: 30px;
}

.best-services2 {
  padding: 0px 15px 0px 15px;
  border: 1px solid;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(45deg, orange, red);
  border-radius: 0 0 180px 180px;
}

.best-services3 {
  padding: 0;
  margin: -70px 0 0;
  text-align: center;
  z-index: 9;
}

.best-services3 img {
  border: 16px solid #eee;
  border-radius: 50%;
}

.best-services4 {
  padding: 10px 12px 0 20px;
}

.best-services4 strong {
  font-size: 31px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0;
  display: block;
  color: darkred;
}

.best-services4 p {
  color: #000;
  line-height: 29px;
  margin: 0;
 
  padding: 7px 0 11px 0;
  font-size: 15px;
}

.best-services5 {
  padding: 0px;
  overflow: hidden;
}

.best-services5 a {
  height: 110px;
  width: 180px;
  display: block;
  font-size: 20px;
  line-height: 80px;
  text-align: center;
  text-transform: capitalize;
  margin: 0 auto -40px;
  background: darkred;
  border-radius: 50%;
  color: #fff;
}

.ourservices-section {
  padding: 0;
  background: orangered;
  float: left;
  width: 100%;
}

.ourservices-section1 {
  padding: 0px 0px;
}

.our-services1 {
  padding: 0 10px;
}

.our-services2 {
  color: #fff;
  text-align: center;
  padding: 0;
}

.our-services2:before {
  border: 6px solid;
  border-top: 0;
  border-bottom: 0;
  border-image-slice: 1;
  border-width: 4px;
  content: "";
  position: absolute;
  height: 100%;
  width: 81%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.our-services3 {
  padding: 50px 0 0 0;
}

.our-services3 img {
  border-radius: 10px;
  border: 2px solid #fff;
}

.our-services4 {
  padding: 0px 40px;
  float: left;
  width: 100%;
}

.our-services_4 {
  padding: 0px;
  position: relative;
}

.our-services_4 strong {
  background: linear-gradient(45deg, #98ffeb, darkred);
  display: block;
  font-size: 23px;
  font-weight: 600;
  padding: 4px 26px 4px;
  color: #000000;
  text-transform: capitalize;
  position: relative;
}

.our-services_4 strong span {
  display: block;
}

.our-services_4 p {
  color: #fff;
  font-size: 15px;
  margin: 0;
  padding: 20px 10px 40px 10px;
  line-height: 28px;
 
}

.our-services_4 a {
  background: linear-gradient(45deg, #98ffeb, darkred);
  color: #000;
  padding: 3px 17px 3px 18px;
  display: inline-block;
  line-height: 37px;
  font-size: 20px;
  border-radius: 8px;
  font-weight: 500;
  text-transform: capitalize;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 58%;
  bottom: -20px;
}

.testimonials1 {
  padding: 10px;
}

.testimonials2 {
  background-color: darkred;
  position: relative;
  text-align: center;
  padding: 0px 10px 20px;
  box-shadow: 0 1px 6px rgb(32 33 36 / 28%);
  margin-top: 30px;
}

.testi-pic {
  width: 80%;
  padding: 10px 0 10px 0px;
  background: linear-gradient(45deg, #98ffeb, darkred);
  text-align: center;
  margin: 0 auto;
}

.testi-pic img {
  border-radius: 50%;
  border: 11px solid darkred;
  height: 100px;
  margin: 0px 0 -30px 0;
}

.testimonials3 {
  padding: 29px 13px 0px;
  position: relative;
}

.testimonials3 strong {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
}

.testimonials3 i {
  color: #98ffeb;
  font-style: normal;
  font-size: 16px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: -4px 0 0;
}

.testimonials3 span {
  right: 8px;
  top: 42px;
  color: #fff;
  display: block;
}

.testimonials3 p {
  color: #ffffff;
  font-size: 15px;
  padding: 0px;
  line-height: 31px;
  text-align: center;
  margin: 20px 0 0px 0;
 
}

.footer {
  padding: 42px 15px 0;
  float: left;
  width: 100%;
  background: orangered;
}

.head-align {
  align-items: center;
}

.footer-left {
  padding: 0;
}

.footer-left-1 {
  padding: 0;
  text-align: center;
}

.foot-contac {
  padding: 0 28px;
}

.foot-leftt {
  padding: 0;
}

.foot-contac {
  padding: 0 28px;
}

.foot-leftt {
  padding: 0;
}

.foot-leftt-1 {
  padding: 0 25px 0 0;
}

.foot-leftt-1 img {
  background: #fff;
  border-radius: 12px;
  max-width: 100%;
}

.foot-rightt {
  padding: 0;
}

.foot-rightt-1 {
  padding: 0;
}

.footer-about {
  padding: 0 27px 0;
  text-align: left;
  border-left: 1px dashed #ffffff2e;
}

.footer-about span {
  text-align: center;
  padding: 2px 18px 2px;
  font-size: 21px;
  font-weight: 600;
  line-height: 31px;
  color: #000;
  text-transform: capitalize;
  background: darkred;
  border-radius: 40px 40px 0;
}

.footer-about p {
  padding: 10px 0 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 33px;
  color: #fff;
}

.footer-about p strong {
  color: darkred;
 
}

.footer-right {
  padding: 0 0 0 20px;
}

.footer-right-1 {
  padding: 0;
}

.footer-contact1 {
  padding: 0px 5px 0;
}

.footer-contact2 {
  padding: 20px 4px;
  text-align: center;
}

.footer-contact2 span {
  height: 85px;
  width: 85px;
  line-height: 74px;
  border-radius: 50%;
  background: darkred;
  text-align: center;
  display: block;
  margin: 0 auto;
  animation: pulse2 2s linear infinite;
  outline: darkred solid 2px;
  border: 6px solid darkred;
  color: darkred;
  font-size: 34px;
}

.footer-contact2 span i {
  font-weight: 600;
}

.footer-contact2 strong {
  display: block;
  color: darkred;
  padding: 26px 0 0px;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
}

.footer-contact2 a {
  display: block;
  padding: 0px 0px 0;
  border-radius: 60px;
  font-size: 18px;
 
  color: #fff;
}

.footer-contact1 {
  padding: 0px 5px 0;
}

.footer-contact2 {
  padding: 20px 4px;
  text-align: center;
}

.footer-contact2 span {
  height: 85px;
  width: 85px;
  line-height: 74px;
  border-radius: 50%;
  background: orange;
  text-align: center;
  display: block;
  margin: 0 auto;
  animation: pulse2 2s linear infinite;
  outline: darkred solid 2px;
  border: 6px solid darkred;
  color: black;
  font-size: 34px;
}

.footer-contact2 span i {
  font-weight: 600;
}

.footer-contact2 strong {
  display: block;
  color: white;
  padding: 26px 0 0px;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
}

.footer-contact2 a {
  display: block;
  padding: 0px 0px 0;
  border-radius: 60px;
  font-size: 18px;
 
  color: #fff;
}.dis-sec {
  padding: 0;
}.copyryt {
  padding: 0;
  position: relative;
  z-index: 0;
  text-align: center;
}.copyryt span {
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  color: #000000;
  text-align: center;
  padding: 5px 47px 3px;
  display: inline-block;
  background: darkred;
  clip-path: polygon(9% 0%, 91% 0%, 100% 100%, 0% 100%);
}#callbook {
  background: green;
  bottom: 0;
  height: 40px;
  left: 0;
  position: fixed;
  display: none;
  right: 0;
  z-index: 999999;
}#callbook ul {
  padding: 0px;
}#callbook ul li {
  background: #9d021b;
  position: relative;
  padding: 6px 21px 20px;
  width: 50%;
  list-style: none;
  float: left;
  text-align: center;
}#callbook ul li a span {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  top: 0px;
}#callbook ul li:last-child {
  background: #038303;
}


            .call a i {
                line-height: 60px;
            }

            .whatsapp a i {
                line-height: 60px;
            }

            @keyframes pulsate {
                0% {
                    transform: scale(0.9, 0.9);
                    opacity: 1;
                }

                50% {
                    transform: scale(1.2, 1.2);
                    opacity: 1;
                }

                100% {
                    transform: scale(0.9, 0.9);
                    opacity: 1;
                }
            }

            @keyframes callb {
                0% {
                    transform: scale(0.9);
                }

                20% {
                    transform: scale(1);
                }

                40% {
                    transform: scale(1.1);
                }

                60% {
                    transform: scale(1.2);
                }

                80% {
                    transform: scale(1.3);
                }

                100% {
                    transform: scale(1.4);
                }
            }

            @keyframes calla {
                0% {
                    box-shadow: 0px 0px 0px 4px rgba(162, 162, 162, 0.8);
                }

                20% {
                    box-shadow: 0px 0px 0px 6px rgba(162, 162, 162, 0.6);
                }

                40% {
                    box-shadow: 0px 0px 0px 8px rgba(162, 162, 162, 0.4);
                }

                60% {
                    box-shadow: 0px 0px 0px 10px rgba(162, 162, 162, 0.2);
                }

                80% {
                    box-shadow: 0px 0px 0px 12px rgba(162, 162, 162, 0.1);
                }

                100% {
                    box-shadow: 0px 0px 0px 14px rgba(162, 162, 162, 0);
                }
            }

            .call {
                position: fixed;
                z-index: 999999;
                left: 10px;
                bottom: 10px;
                display: inline;
                font-size: 30px;
                text-align: center;
                height: 60px;
                width: 60px;
                border-radius: 1px solid #000;
                animation-name: calla;
                animation-duration: 0.8s;
                animation-iteration-count: infinite;
                background: #df0505;
                line-height: 60px;
                border-radius: 50%;
            }

            .whatsapp {
                position: fixed;
                z-index: 999999;
                right: 10px;
                bottom: 10px;
                display: inline;
                font-size: 30px;
                text-align: center;
                height: 60px;
                width: 60px;
                border-radius: 1px solid #000;
                animation-name: calla;
                animation-duration: 0.8s;
                animation-iteration-count: infinite;
                background: #03A437;
                line-height: 60px;
                border-radius: 50%;
            }
        
@media(min-width:992px) and (max-width:1200px){
  .head-left2 img {
    margin-top: 50px;
  }
  .head-right1 {
    margin-top: -50px;
  } .our-services_4 a {
    padding: 8px 10px;
    line-height: 20px;
    font-size: 14px;
  }
}
@media(min-width:768px) and (max-width:991px){
  .award .col-sm-4{width: 50%;}
  .our-services_4 a {
    padding: 8px 10px;
    line-height: 25px;
    font-size: 14px;
  }
  .best-ser .col-sm-4{width: 50%;}
  .head-left2 img {
    margin-top: 50px;
  }
  .head-right1 {
    margin-top: -50px;
  }
}
@media(min-width:640px) and (max-width:767px){
  .head-left2 img {
    margin-top: 50px;
  }
  .our-services_4 {
    padding: 0px 20px;
  }
}
@media(min-width:480px) and (max-width:639px)
{  .pick-12 {
  margin-top: 20px;
}.toplist1 {
  display: none;
}
.head-left2 img {
  margin-top: 50px;
}
.head-right2 {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.whatsapp-left1 {
  display: none;
}
.aboutus-image .round-image {
  top: 15px;
  height: 201px;
}
.aboutus-heading h1 {
  font-size: 35px;
}
.mark-right2 strong {
  font-size: 25px;
}
.mark-right3 {
  display: block;
}
.mark-right3 p {
  width: 100%;
}
.mark-right3 a {
  width: 100%;
}
.services-heading strong {
  font-size: 35px;
}
}
@media(min-width:320px) and (max-width:479px)
{
.toplist1 {
    display: none;
  }
  .head-left2 img {
    margin-top: 50px;
  }
  .head-right2 {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .whatsapp-left1 {
    display: none;
  }
  .aboutus-image .round-image {
    top: 15px;
    height: 201px;
  }
  .aboutus-heading h1 {
    font-size: 35px;
  }
  .mark-right2 strong {
    font-size: 25px;
  }
  .mark-right3 {
    display: block;
  }
  .mark-right3 p {
    width: 100%;
  }
  .mark-right3 a {
    width: 100%;
  }
  .services-heading strong {
    font-size: 35px;
  }
  .choose-us2 {
    padding: 20px 13px 30px 30px;
    display: block;
  }
  .choose-text strong {
    font-size: 30px;
  }
  .pick-12 {
    margin-top: 20px;
  }
  .our-services4 {
    padding: 0px 20px;
  }
  .our-services_4 a {
    padding: 8px 10px;
    line-height: 25px;
    font-size: 14px;
  }
}