* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Tajawal', sans-serif;
}

*::-moz-selection {
  background-color: #D91E26;
  color: #fff;
}

*::selection {
  background-color: #D91E26;
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #D91E26;
}

/***************************** Global Style *****************************/
p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

ul {
  list-style-type: none;
  padding: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #D91E26;
}

.scroll-top-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: linear-gradient(-135deg, #e99ea2, #D91E26);
  color: #000;
  text-align: center;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 1000;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn:hover {
  background-color: #000;
  color: #fff;
}

.dir-l {
  direction: ltr;
}

.in-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.center-vr {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/***************************** Animations *****************************/
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

@-webkit-keyframes imagemove {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  100% {
    -webkit-transform: rotate(5deg) scale(1.1);
            transform: rotate(5deg) scale(1.1);
  }
}

@keyframes imagemove {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  100% {
    -webkit-transform: rotate(5deg) scale(1.1);
            transform: rotate(5deg) scale(1.1);
  }
}

@-webkit-keyframes a-seven {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  to {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}

@keyframes a-seven {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  to {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}

@-webkit-keyframes a-two {
  0% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
  50% {
    -webkit-transform: translate(20px, 20px);
            transform: translate(20px, 20px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

@keyframes a-two {
  0% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
  50% {
    -webkit-transform: translate(20px, 20px);
            transform: translate(20px, 20px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

@-webkit-keyframes a-one {
  0% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
  50% {
    -webkit-transform: translate(-20px, -20px);
            transform: translate(-20px, -20px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

@keyframes a-one {
  0% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
  50% {
    -webkit-transform: translate(-20px, -20px);
            transform: translate(-20px, -20px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

/***************************** Start Edit Navbar & Footer *****************************/
.navbar {
  background-color: #000;
}

.navbar.bg-gray {
  background-color: #000;
}

.navbar .navbar-brand img {
  width: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navbar .nav-link {
  color: #ddd;
  margin: 0 10px;
  font-size: 15px;
}

.navbar .nav-link.active {
  color: #D91E26;
  font-weight: bold;
}

.navbar .link-btn {
  border: 1px solid #e9b006;
  background-color: #e9b006;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  width: 140px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  display: block;
  margin: 0 5px;
}

.navbar .link-btn:hover {
  background-color: #D91E26;
  border: 1px solid #D91E26;
}

.navbar .dropdown .lang-btn {
  border: 1px solid #ddd;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
  width: 85px;
  height: 45px;
  line-height: 45px;
  padding: 0;
  display: block;
}

.navbar .has-dropdown {
  position: relative;
}

.navbar .has-dropdown .nav-link::after {
  content: '\f0d7';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin: 0 3px;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
}

.navbar .has-dropdown .drop-down {
  padding: 15px 0;
  min-width: 180px;
  width: 200px;
  position: absolute;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 15px #ddd;
          box-shadow: 0 5px 15px #ddd;
  border-top: 3px solid #D91E26;
  margin-bottom: 0;
  display: block;
  z-index: 1000;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
  border-radius: 5px;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  opacity: 0;
  visibility: hidden;
}

.navbar .has-dropdown .drop-down::before {
  content: "";
  position: absolute;
  top: -2px;
  right: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 7px solid #495057;
  border-color: transparent transparent #D91E26 #D91E26;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navbar .has-dropdown .drop-down .dropdown-link {
  display: block;
  padding: 10px 20px;
  clear: both;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  color: #84888c;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
}

.navbar .has-dropdown .drop-down .dropdown-link:hover {
  background-color: #f7f7f7;
  color: #D91E26;
}

.navbar .has-dropdown:hover .drop-down {
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  opacity: 1;
  visibility: visible;
}

.navbar .has-dropdown:hover .nav-link::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.navbar .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navbar .navbar-toggler .navbar-toggler-icon {
  width: 15px;
  height: 2px;
  background: #D91E26;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after, .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #D91E26;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

footer {
  padding-top: 100px;
  background-color: #000;
  position: relative;
}

footer .content {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

footer .content h5 {
  color: #fff;
  font-weight: 600;
  position: relative;
  margin-bottom: 1.5rem;
}

footer .content h5::after {
  content: '';
  width: 100px;
  height: 1px;
  display: block;
  background-color: #D91E26;
  position: relative;
  top: 10px;
}

footer .content table {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

footer .content table td {
  padding: 10px 15px;
  color: #999;
  text-align: start;
}

footer .content .logo {
  display: block;
  margin: 0 auto 20px auto;
}

footer .content .logo img {
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

footer .content p {
  color: #999;
  font-size: 12px;
}

footer .content .social-links a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 1px;
  display: inline-block;
  background-color: #2B2F36;
  color: #fff;
  text-align: center;
}

footer .content .social-links a:hover {
  background-color: #D91E26;
}

footer .content .links a {
  display: block;
  padding: 10px 0;
  color: #999;
}

footer .content .links a:hover {
  color: #D91E26;
}

footer .copyright {
  position: relative;
  z-index: 2;
  background-color: #070707;
  text-align: center;
  padding: 15px 0;
}

footer .copyright p {
  margin-bottom: 0;
  color: #fff;
}

footer .pattern {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: .2;
}

/***************************** Start Edit Home Page *****************************/
header {
  background-color: #F5F6F8;
  position: relative;
  overflow: hidden;
}

header .img-box {
  position: relative;
  z-index: 2;
}

header .img-box .main-img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

header .img-box .header-img-r {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
}

header .img-box .header-img-l {
  position: absolute;
  top: 120px;
  left: -35px;
}

header .text-box {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}

header .text-box h5 span {
  color: #D91E26;
}

header .text-box h1 {
  font-size: 3rem;
  font-weight: 700;
}

header .text-box .link-btn {
  background-color: #D91E26;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  display: block;
  width: 150px;
  height: 55px;
  line-height: 55px;
  text-align: center;
}

header .text-box .link-btn:hover {
  background-color: #000;
}

header .lines {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.services-sec {
  overflow: hidden;
  padding: 70px 0;
}

.services-sec .img-box {
  position: relative;
  height: 450px;
}

.services-sec .img-box::before {
  position: absolute;
  content: "";
  top: -10px;
  left: -10px;
  width: 75%;
  height: 70%;
  border-radius: 10px;
  z-index: -1;
  -webkit-animation: a-one 5s linear infinite alternate;
          animation: a-one 5s linear infinite alternate;
  background-color: #D91E26;
  opacity: .2;
}

.services-sec .img-box::after {
  position: absolute;
  content: "";
  bottom: -10px;
  right: -10px;
  width: 75%;
  height: 70%;
  border-radius: 10px;
  z-index: -1;
  -webkit-animation: a-two 5s linear infinite alternate;
          animation: a-two 5s linear infinite alternate;
  background-color: #D91E26;
  opacity: .2;
}

.services-sec .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  border-radius: 10px;
  -webkit-animation: a-seven 10s linear infinite alternate;
          animation: a-seven 10s linear infinite alternate;
}

.services-sec .text-box {
  padding: 15px;
}

.services-sec .text-box .p {
  font-size: 13px;
  line-height: 1.7rem;
  margin: 1.2rem 0 1.5rem 0;
}

.services-sec .more-btn {
  width: 170px;
  height: 50px;
  border-radius: 5px;
  line-height: 50px;
  text-align: center;
  display: block;
  background-color: #D91E26;
  color: #fff;
}

.services-sec .more-btn:hover {
  background-color: #E7C906;
}

.methods-sec {
  background-color: #f9f9f9;
}

.methods-sec .service-card {
  padding: 35px 15px;
  border-radius: 25px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.methods-sec .service-card .icon {
  width: 85px;
  height: 85px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.methods-sec .service-card .card-body {
  text-align: center;
}

.methods-sec .service-card .card-body p {
  font-size: 12px;
  margin-bottom: 0;
  margin-top: 15px;
}

.methods-sec .service-card:hover {
  -webkit-box-shadow: 0 0 55px 0 #ddd;
          box-shadow: 0 0 55px 0 #ddd;
}

.methods-sec .service-card:hover .icon {
  -webkit-animation: tada 1s both;
          animation: tada 1s both;
}

.methods-sec .more-btn {
  margin: auto;
}

.methods-sec.methods-pg .service-card {
  border: 1px solid #eee;
  margin-bottom: 15px;
}

.courses-sec {
  background-color: #BDCFCF;
  position: relative;
  overflow: hidden;
}

.courses-sec .text-box {
  padding: 70px 0;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.courses-sec .text-box h1 b {
  color: #D91E26;
}

.courses-sec .text-box .link-btn {
  background-color: #D91E26;
  color: #fff;
  font-weight: bold;
  border-radius: 25px;
  display: block;
  width: 200px;
  height: 55px;
  line-height: 55px;
  text-align: center;
}

.courses-sec .text-box .link-btn:hover {
  background-color: #000;
}

.courses-sec .courses-img {
  width: 90%;
}

.charities-sec {
  padding: 70px 0;
  background-color: #EFF2F4;
}

.charities-sec .charity-img {
  width: 150px;
  height: 150px;
  background-color: #fff;
  border-radius: 50%;
  display: block;
  text-align: center;
  overflow: hidden;
  margin: auto;
}

.charities-sec .charity-img img {
  width: 100%;
  height: 100%;
  display: block;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.charities-sec .charity-img:hover img {
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
          animation: heartbeat 1.5s ease-in-out infinite both;
}

/*swiper-container*/
.swiper-container .swiper-pagination {
  position: relative;
  margin-top: 2rem;
}

.swiper-container .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

.swiper-container .swiper-pagination-bullet-active {
  background: #D91E26;
}

.insta-sec {
  padding: 70px 0;
  background-color: #F5F6F8;
  position: relative;
}

.insta-sec .inner {
  position: relative;
  z-index: 2;
}

.insta-sec .inner .followers-num {
  padding: 15px 25px;
  border-radius: 25px;
  background-color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.insta-sec .inner .followers-num .icon {
  width: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}

.insta-sec .inner .followers-num p {
  padding: 0 35px;
  margin-bottom: 0;
  margin-top: 12px;
  font-size: 25px;
}

.insta-sec .inner .followers-num p b {
  color: #D91E26;
  width: 80px;
  display: inline-block;
  text-align: center;
}

.insta-sec .inner .insta-card {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.insta-sec .inner .insta-card .img-box {
  width: 100%;
  height: 300px;
  position: relative;
}

.insta-sec .inner .insta-card .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.insta-sec .inner .insta-card .img-box .insta-link {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 50%;
  line-height: 55px;
  background-color: #3598DB;
  color: #fff;
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: center;
  font-size: 22px;
}

.insta-sec .inner .insta-card .img-box .insta-link:hover {
  background-color: #D91E26;
}

.insta-sec .inner .insta-card .card-body {
  padding: 1.75rem 1.25rem;
  background-color: #fff;
}

.insta-sec .inner .insta-card .card-body .date {
  font-size: 12px;
  color: #999;
  font-weight: 500;
}

.insta-sec .inner .insta-card .card-body h6 {
  margin-bottom: 0;
  margin-top: .7rem;
  color: #202020;
}

.insta-sec .inner .insta-card:hover {
  -webkit-box-shadow: 1px -1px #eee, 2px -2px #eee, 3px -3px #eee, 4px -4px #eee,  5px -5px #eee, 6px -6px #eee,  7px -7px #eee, 8px -8px #eee;
          box-shadow: 1px -1px #eee, 2px -2px #eee, 3px -3px #eee, 4px -4px #eee,  5px -5px #eee, 6px -6px #eee,  7px -7px #eee, 8px -8px #eee;
  -webkit-transform: translateX(-8px) translateY(8px);
          transform: translateX(-8px) translateY(8px);
}

.insta-sec .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.newsletter-sec {
  padding: 70px 0;
}

.newsletter-sec .inner {
  background-image: url(../images/newsletter-sec.png);
  background-size: cover;
  border-radius: 5px;
  padding: 80px 0;
}

.newsletter-sec .inner .text-box {
  text-align: center;
}

.newsletter-sec .inner .text-box h2 {
  color: #fff;
}

.newsletter-sec .inner .text-box p {
  color: #eeee;
  margin-top: 1rem;
}

.newsletter-sec .inner .text-box .form-group {
  position: relative;
  margin-bottom: 0;
}

.newsletter-sec .inner .text-box .form-group .form-control {
  height: 70px;
  border-radius: 10px;
}

.newsletter-sec .inner .text-box .form-group .submit-btn {
  width: 150px;
  height: 60px;
  position: absolute;
  left: 5px;
  top: 5px;
  display: block;
  border-radius: 10px;
  background-color: #D91E26;
  border: 1px solid #D91E26;
  color: #fff;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.newsletter-sec .inner .text-box .form-group .submit-btn:hover {
  background-color: #202020;
}

/***************************** Start Edit About Page *****************************/
/* heading-pg */
.heading-pg {
  background-color: #E7C906;
  padding: 40px 0 65px 0;
  position: relative;
}

.heading-pg .inner {
  position: relative;
  z-index: 2;
}

.heading-pg .inner .breadcrumb {
  background-color: transparent;
}

.heading-pg .inner .breadcrumb a {
  color: #000;
}

.heading-pg .inner .breadcrumb .breadcrumb-item.active {
  color: #333;
  font-weight: bold;
}

.heading-pg .inner .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-left: .5rem;
  color: #D91E26;
  content: "\f192";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.heading-pg .inner h2 {
  text-align: center;
  margin-bottom: 0;
  color: #000;
  font-weight: bold;
}

.heading-pg .line {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.about-pg {
  padding: 70px 0;
  background-color: #F5F6F8;
  position: relative;
}

.about-pg .img-box {
  width: 100%;
  height: 500px;
  position: relative;
  z-index: 2;
}

.about-pg .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-pg .img-box .dr-name {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  background-color: #D91E26;
  text-align: center;
  width: 300px;
  height: 130px;
}

.about-pg .img-box .dr-name h3 {
  margin-bottom: 0;
  color: #fff;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.about-pg .img-box .dr-name::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 13px;
  right: -13px;
  background-color: transparent;
  border: 5px solid #D91E26;
  z-index: -1;
}

.about-pg .text-box {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}

.about-pg .text-box h2 {
  color: #D91E26;
}

.about-pg .text-box p {
  font-size: 16px;
  line-height: 2rem;
}

.about-pg .text-box .link-btn {
  background-color: #000;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  display: block;
  width: 150px;
  height: 55px;
  line-height: 55px;
  text-align: center;
}

.about-pg .text-box .link-btn:hover {
  background-color: #D91E26;
}

.about-pg .lines {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.goals-sec {
  padding: 70px 0;
  background-color: #EFF2F4;
}

.goals-sec .text-box {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.goals-sec .text-box h3 {
  color: #D91E26;
}

.goals-sec .text-box li {
  margin-bottom: 20px;
  font-size: 16px;
}

.goals-sec .text-box li i {
  color: #D91E26;
}

.goals-sec .text-box .nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 5rem auto 0 auto;
  position: relative;
}

.goals-sec .text-box .nav .nav-item .nav-link {
  border-radius: 0;
  background-color: #EBEBEB;
  width: 170px;
  height: 45px;
  line-height: 45px;
  padding: 0;
  text-align: center;
  font-weight: bold;
  margin: 0;
}

.goals-sec .text-box .nav .nav-item .nav-link.active {
  background-color: #D91E26;
}

.goals-sec .text-box .nav .nav-item:nth-of-type(1) {
  -webkit-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.goals-sec .text-box .nav .nav-item:nth-of-type(2) {
  -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

.goals-sec .text-box .nav .line {
  width: 20px;
  background-color: #202020;
  -webkit-clip-path: polygon(80% 0%, 100% 0, 20% 100%, 0 100%);
          clip-path: polygon(80% 0%, 100% 0, 20% 100%, 0 100%);
  display: block;
  position: absolute;
  height: 45px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.goals-sec .goals-img {
  width: 100%;
  height: 445px;
  -o-object-fit: contain;
     object-fit: contain;
}

.content-inner {
  padding: 50px 25px;
  background-color: #fff;
  border-radius: 25px;
}

.content-inner .headline {
  font-weight: 600;
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
}

.content-inner .headline b {
  color: #D91E26;
  font-weight: 600;
}

.content-inner .desc {
  line-height: 2rem;
}

/***************************** Start Edit Contact Page *****************************/
.contact-pg {
  padding: 70px 0;
  background-color: #F5F6F8;
  overflow: hidden;
}

.contact-pg .contact-cards {
  background-color: #fff;
  margin: 0;
  z-index: 3;
  position: relative;
  -webkit-box-shadow: 0 0 50px 0 #ddd;
          box-shadow: 0 0 50px 0 #ddd;
}

.contact-pg .contact-cards .item {
  padding: 40px 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
  background-color: #fff;
  width: 100%;
  border: 1px solid #ddd;
}

.contact-pg .contact-cards .item .icon {
  width: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-pg .contact-cards .item .icon.country-icon {
  width: 40px;
}

.contact-pg .contact-cards .item .text {
  padding: 0 15px;
}

.contact-pg .contact-cards .item .text .h_country {
  color: #D91E26;
}

.contact-pg .contact-cards .item .text p {
  margin-bottom: 0;
}

.contact-pg .contact-cards .item:hover, .contact-pg .contact-cards .item.active-card {
  background-color: #D91E26;
}

.contact-pg .contact-cards .item:hover .icon, .contact-pg .contact-cards .item.active-card .icon {
  -webkit-filter: invert(100%) sepia(1%) saturate(115%) hue-rotate(157deg) brightness(216%) contrast(100%);
          filter: invert(100%) sepia(1%) saturate(115%) hue-rotate(157deg) brightness(216%) contrast(100%);
}

.contact-pg .contact-cards .item:hover h6, .contact-pg .contact-cards .item:hover .h_country, .contact-pg .contact-cards .item.active-card h6, .contact-pg .contact-cards .item.active-card .h_country {
  color: #fff;
}

.contact-pg .contact-cards .item:hover p, .contact-pg .contact-cards .item.active-card p {
  color: #eee;
}

.contact-pg .contact-cards .item.active-card:hover {
  background-color: #E7C906;
}

.contact-pg .map-box {
  position: relative;
}

.contact-pg .map-box .bg_colored {
  width: 70%;
  height: 103%;
  position: absolute;
  top: -20px;
  right: -20px;
  display: block;
  background-color: #D91E26;
  z-index: 1;
  -webkit-box-shadow: -5px 10px 50px #f3c1c4;
          box-shadow: -5px 10px 50px #f3c1c4;
}

.contact-pg .map-box iframe {
  position: relative;
  z-index: 2;
}

.contact-pg .map-box .show-map {
  width: 100%;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: #D91E26;
  color: #fff;
  display: block;
  margin-top: -8px;
  position: relative;
  z-index: 2;
  font-weight: 500;
}

.contact-pg .map-box .show-map i {
  margin: 0 5px;
}

.contact-pg .headline_form {
  text-align: center;
  font-weight: 600;
  margin-bottom: 2rem;
}

.contact-pg .headline_form b {
  font-weight: 600;
  color: #D91E26;
}

.contact-pg .form-wrapper {
  padding: 50px 0;
}

.contact-pg .form-wrapper,
.contact-pg .floating-label,
.contact-pg .form-control {
  background-color: #fff !important;
}

.branchModal .modal-content {
  padding: 15px;
  border-radius: 20px;
}

.branchModal .close {
  text-align: end;
}

.branchModal .item {
  padding: 40px 30px;
}

/*form-wrapper*/
.form-wrapper .form-group {
  position: relative;
  margin-bottom: 1.8rem;
}

.form-wrapper .form-control {
  background-color: #F5F6F8;
}

.form-wrapper input, .form-wrapper select {
  height: 55px;
  font-size: 14px;
}

.form-wrapper .floating-label {
  font-size: 13px;
  color: #999;
  position: absolute;
  pointer-events: none;
  top: 18px;
  right: 12px;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  background-color: #F5F6F8;
  padding: 0 5px;
}

.form-wrapper .form-control:focus ~ .floating-label,
.form-wrapper .form-control:not(:focus):valid ~ .floating-label {
  top: -9px;
  bottom: 0px;
  right: 10px;
  font-size: 12px;
  opacity: 1;
  color: #555;
  font-weight: 500;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.form-wrapper .submit-btn {
  width: 160px;
  height: 50px;
  border-radius: 10px;
  background-color: #D91E26;
  border: 1px solid #D91E26;
  color: #fff;
  font-weight: bold;
  display: block;
  margin: auto;
}

.form-wrapper .submit-btn i {
  margin: 0 2px;
}

.form-wrapper .submit-btn:hover {
  background-color: #2E292A;
}

/***************************** Start Edit Booking Page *****************************/
.booking-pg {
  padding: 70px 0;
}

.booking-pg .heading-t {
  border: 1px solid #eee;
  text-align: center;
  padding: 35px 15px;
  position: relative;
}

.booking-pg .heading-t.heading-t-r {
  padding: 0 15px;
}

.booking-pg .heading-t h3 {
  font-weight: 800;
  color: #D91E26;
  margin-bottom: 0;
}

.booking-pg .heading-t h3 span {
  color: #8F8F8F;
}

.booking-pg .heading-t p {
  font-weight: bold;
  margin-bottom: 0;
  margin-top: .5rem;
  color: #8F8F8F;
  font-size: 18px;
}

.booking-pg .form-wrapper {
  padding: 25px 15px;
  border: 1px solid #eee;
}

.booking-pg .form-wrapper .form-control,
.booking-pg .form-wrapper .floating-label {
  background-color: #fff;
}

.booking-pg table th, .booking-pg table td {
  border: 1px solid #eee;
}

.booking-pg table th {
  text-align: center;
  color: #D91E26;
  font-size: 25px;
}

.booking-pg table th span {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #777;
}

.booking-pg .radio-card {
  text-align: center;
  position: relative;
  direction: ltr;
}

.booking-pg .radio-card h6 {
  color: #333;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0;
}

.booking-pg .radio-card .card-input-element {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
}

.booking-pg .radio-card .card-input {
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 20px 5px;
}

.booking-pg .radio-card label {
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.booking-pg .radio-card .card-input-element:checked + .card-input {
  border: 1px solid #D91E26;
  -webkit-box-shadow: 0px 0px 25px 0px #eee;
          box-shadow: 0px 0px 25px 0px #eee;
}

.booking-pg .radio-card .card-input-element:checked + .card-input h6 {
  color: #D91E26;
}

/***************************** Start Edit Service Page *****************************/
.single-service {
  padding: 70px 0;
  background-color: #f8f8f8;
}

.single-service .single-service-img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-service .inner {
  padding: 30px;
  background-color: #fff;
}

.single-service .inner .text-box {
  border: 1px solid #D91E26;
}

.single-service .inner .text-box span {
  color: #777;
  font-weight: bold;
}

.single-service .inner .text-box span i {
  color: #D91E26;
  margin: 0 5px;
}

.single-service .inner .text-box h3 {
  margin-top: .7rem;
  margin-bottom: 1.3rem;
}

.single-service .inner .text-box .p {
  font-size: 16px;
  line-height: 2rem;
  margin-bottom: 0;
}

/***************************** Start Edit courses Page *****************************/
.courses-pg {
  padding: 70px 0;
  background-color: #f8f8f8;
}

.courses-pg .course-card {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  margin-bottom: 25px;
}

.courses-pg .course-card .img-box {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.courses-pg .course-card .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 5s ease;
  transition: all 5s ease;
}

.courses-pg .course-card .img-box .cousrse-link {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 50%;
  line-height: 55px;
  background-color: #3598DB;
  color: #fff;
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: center;
  font-size: 22px;
}

.courses-pg .course-card .img-box .cousrse-link:hover {
  background-color: #D91E26;
}

.courses-pg .course-card .card-body {
  padding: 1.5rem 1.25rem;
  background-color: #fff;
  text-align: center;
}

.courses-pg .course-card .card-body h6 {
  margin-bottom: 0;
  color: #202020;
}

.courses-pg .course-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 10px 35px 0 #ddd;
          box-shadow: 0 10px 35px 0 #ddd;
}

.courses-pg .course-card:hover .img-box img {
  -webkit-transform: rotate(15deg) scale(1.5);
          transform: rotate(15deg) scale(1.5);
}

.courses-pg .course-card:hover .cousrse-link i {
  -webkit-animation: tada 1s both infinite;
          animation: tada 1s both infinite;
}

/***************************** Start Edit checkout Page *****************************/
.checkout-pg {
  /*Pay Wrapper*/
}

.checkout-pg .booking-det {
  padding: 35px 15px 15px 15px;
  border: 1px solid #eee;
}

.checkout-pg .booking-det .item {
  position: relative;
  margin-bottom: 1.3rem;
}

.checkout-pg .booking-det .item .label {
  position: absolute;
  top: -11px;
  right: 4px;
  font-size: 12px;
  color: #555;
  font-weight: 500;
  background-color: #fff;
  padding: 2px 10px;
}

.checkout-pg .booking-det .item .data {
  height: 55px;
  line-height: 55px;
  padding: 0 1rem;
  font-size: 14px;
  margin-bottom: 0;
  border-radius: 5px;
  display: block;
  border: 1px solid #ddd;
}

.checkout-pg .pay .pay-method .card-input-element {
  display: none;
}

.checkout-pg .pay .pay-method .card-input {
  padding: 10px;
  border: 1px solid transparent;
  -webkit-transform: all .3s ease;
          transform: all .3s ease;
  margin-bottom: 15px;
  border: 1px solid #ddd;
}

.checkout-pg .pay .pay-method .card-input:hover {
  -webkit-box-shadow: 0px 0px 15px 0px #ddd;
          box-shadow: 0px 0px 15px 0px #ddd;
}

.checkout-pg .pay .pay-method .card-input:hover {
  cursor: pointer;
}

.checkout-pg .pay .pay-method img {
  width: 100%;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}

.checkout-pg .pay .pay-method .card-input-element:checked + .card-input {
  -webkit-box-shadow: 0px 0px 15px 0px #ddd;
          box-shadow: 0px 0px 15px 0px #ddd;
  border: 1px solid #D91E26;
}

.checkout-pg .in-flex {
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.checkout-pg .btn i {
  margin: 0 5px;
}

.checkout-pg .submit-btn {
  margin: unset;
  line-height: 50px;
  padding: 0;
}

/***************************** Start Edit Blog Page *****************************/
.blog-pg {
  padding: 70px 0;
  background-color: #f8f8f8;
}

/*blog-card*/
.blog-card {
  border: 1px solid #eee;
  border-radius: 15px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  margin-bottom: 25px;
}

.blog-card .img-box {
  height: 250px;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

.blog-card .img-box .blog-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px 15px 0 0;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
}

.blog-card .card-body {
  background-color: #fff;
}

.blog-card .card-body .headline {
  font-weight: 600;
}

.blog-card .card-body .p {
  margin-bottom: 0;
  font-size: 12px;
}

.blog-card .card-footer {
  padding: 1.3rem 1.25rem;
  background-color: #fff;
  border-radius: 0 0 15px 15px;
}

.blog-card .card-footer .date {
  color: #666;
  font-weight: 600;
  font-size: 14px;
}

.blog-card .card-footer i {
  margin: 0 5px;
}

.blog-card .card-footer .link-btn {
  font-size: 15px;
  color: #D91E26;
  font-weight: 600;
}

.blog-card .card-footer .link-btn:hover {
  color: #b3050e;
}

.blog-card:hover {
  -webkit-box-shadow: 0 0 35px 0 #ddd;
          box-shadow: 0 0 35px 0 #ddd;
}

.blog-card:hover .blog-img {
  -webkit-transform: rotate(5deg) scale(1.1);
          transform: rotate(5deg) scale(1.1);
}

.blog-card:hover .headline {
  color: #D91E26;
}

/***************************** Start Edit Blog det Page *****************************/
.blog-det-pg {
  padding: 70px 0;
  background-color: #f8f8f8;
}

.blog-det-pg .blog-det {
  border-radius: 15px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 35px 0 #eee;
          box-shadow: 0 0 35px 0 #eee;
}

.blog-det-pg .blog-det .blog-det-img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.blog-det-pg .blog-det .card-body .headline {
  color: #D91E26;
  font-weight: 600;
}

.blog-det-pg .blog-det .card-body .p {
  line-height: 2rem;
  margin-bottom: 0;
  margin-top: 1rem;
}

.blog-det-pg .side-l {
  background-color: #fff;
  padding: 35px 15px;
  border-radius: 25px;
}

.blog-det-pg .side-l .item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 20px;
}

.blog-det-pg .side-l .item:nth-last-of-type() {
  margin-bottom: 0;
}

.blog-det-pg .side-l .item .blog-img {
  width: 100px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.blog-det-pg .side-l .item .text {
  padding: 0 10px;
}

.blog-det-pg .side-l .item .text .p {
  font-size: 12px;
  margin-bottom: 0;
}

.blog-det-pg .side-l .item:hover .title {
  color: #D91E26;
}

/***************************** Start Edit Gallery Page *****************************/
.gallery-pg {
  position: relative;
  overflow: hidden;
  background-color: #f8f8f8;
  padding: 70px 0;
}

.gallery-pg .tabs {
  margin-bottom: 45px;
}

.gallery-pg .tabs .nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px auto;
}

.gallery-pg .tabs .nav .nav-link {
  color: #333;
  position: relative;
  padding: .5rem 1.5rem;
  font-size: 16px;
  font-weight: bold;
}

.gallery-pg .tabs .nav .nav-link::before {
  content: '\f104';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  right: -10px;
  opacity: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  color: #F9DF7B;
}

.gallery-pg .tabs .nav .nav-link.active {
  background-color: transparent;
  color: #D91E26;
}

.gallery-pg .tabs .nav .nav-link.active::before {
  opacity: 1;
  right: 5px;
}

.gallery-pg .item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 15px;
  height: 300px;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
}

.gallery-pg .item .gallery-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}

.gallery-pg .item .more-butn {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #e7464e;
  color: #fff;
  font-size: 20px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  text-align: center;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  opacity: 0;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  border-radius: 0 0 0 10px;
}

.gallery-pg .item .overlay-text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  margin-bottom: 0;
  text-align: center;
  padding: 0 15px 6px;
  -webkit-transform: perspective(500px) rotateX(90deg);
          transform: perspective(500px) rotateX(90deg);
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  z-index: 1;
  height: 110px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #D91E26;
}

.gallery-pg .item .overlay-text .categ {
  color: #ddd;
  font-weight: 500;
}

.gallery-pg .item .overlay-text .title {
  margin-bottom: 0;
  margin-top: .5rem;
  color: #fff;
}

.gallery-pg .item::before {
  content: "";
  bottom: 0;
  position: absolute;
  max-width: 100%;
  height: 0;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.gallery-pg .item:hover {
  -webkit-box-shadow: 0 5px 35px 0 #ccc;
          box-shadow: 0 5px 35px 0 #ccc;
}

.gallery-pg .item:hover .gallery-img {
  -webkit-animation-name: imagemove;
          animation-name: imagemove;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.gallery-pg .item:hover .more-butn {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  opacity: 1;
}

.gallery-pg .item:hover::before {
  opacity: 1;
  z-index: 1;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  height: 100%;
}

.gallery-pg .item:hover .overlay-text {
  -webkit-transform: perspective(500px) rotateX(0);
          transform: perspective(500px) rotateX(0);
}

/***************************** Start Edit Services Page *****************************/
.services-pg .text-box .headline {
  font-weight: 600;
  color: #000;
}

.services-pg .text-box .headline b {
  font-weight: 600;
  color: #D91E26;
}
/*# sourceMappingURL=style.css.map */