:root {
  --main-color: #393185;
  --primary-color: #FFB100;
  --bg-color-1: #290200;
  --bg-color-2: #F9F9F6;
  --bg-color-3: #fffbf0;
  --red: #f42f2f;
  --footer-bg-color: #0F2D55;
  --color1: #222;
  --color2: #444444;
  --white: #fff;
  --menu-bg-color: #581C02;
  --color1-text: #2F0909;

  --font-family1: 'Cardo', serif;
  --font-family2: 'Fira Sans', sans-serif;
  --font-family3: 'Noto Sans', sans-serif;
  --font-family4: 'Poppins', sans-serif;
  --font-family5: 'Roboto Slab', serif;
  --tamil-font-family: "Noto Sans Tamil", sans-serif;
  --body-color: #fffffc;
}

.pending {
  color: red;
  font-size: 16px;
  font-weight: 600;
}

body {
  font-family: var(--font-family4);
  color: var(--color2);
  /* background-color: var(--bg-color-3); */
  background-color: var(--body-color);
}

/* p::selection {
  background-color: var(--primary-color);
  color: var(--white);
} */
::-moz-selection {
  background-color: var(--primary-color);
  color: var(--white);
}

::selection {
  background-color: var(--primary-color);
  color: var(--white);
}

a {
  color: var(--red);
  text-decoration: none;
  font-family: var(--font-family4);
}

a:hover {
  color: var(--red);
  text-decoration: none;
  font-family: var(--font-family4);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family1)
}

/* Print Disable */
/* @media print {
  .basic-protect::before {
    content: "Not available for printing. "
  }

  .basic-protect * {
    display: none;
  }
} */

/* End  Print Disable */

/* Disable selection */
.basic-protect * {
  /* Selection */
  /* -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; */
}

/* End Disable selection */




/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--white);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--main-color);
  border-top-color: #d1e6f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}






/*--------------------------------------------------------------
# Back to button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 25px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: var(--white);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--bg-color-1);
  color: var(--white);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  padding: 20px 0;
  z-index: 10;
  position: relative;
  background-color: var(--menu-bg-color);
  margin-bottom: 30px;
  position: fixed;
  width: 100%;
  transition: 0.5s;
  margin-bottom: 30px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 50px;
}

@media (max-width: 768px) {
  #header .logo img {
    max-height: 40px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: var(--font-family4);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  text-decoration: none;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--primary-color);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--bg-color-1);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  /* background: rgba(8, 30, 91, 0.9); */
  background: rgb(88 28 2);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: rgb(88 28 2);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--primary-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--primary-color);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /* height: 90vh; */
  /* background: url("../img/hero.webp"); */
  background-size: cover;
  position: relative;
  margin-top: 10px;
  z-index: 9;
}



/* #hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
} */

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  line-height: 56px;
  color: #222;
}

#hero h2 {
  color: #333;
  margin-bottom: 30px;
  font-size: 24px;
}


@keyframes animate-loading-notify {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


@media screen and (min-width: 769px) and (max-width: 1024px) {
  #hero {
    width: 100%;
    /* height: 70vh !important; */
    padding: 0;
    margin: 0;
  }
}

@media screen and (min-width:200px) and (max-width:480px) {
  #hero {
    width: 100%;
    /* height: 25vh !important; */
    padding: 0;
    margin: 0;
  }
}

@media screen and (min-width:481px) and (max-width:768px) {
  #hero {
    width: 100%;
    /* height: 47vh !important; */
    padding: 0;
    margin: 0;
  }
}

@media screen and (min-width:1024px) and (max-width:768px) {}

@media (max-width: 768px) {
  /* #hero {
    width: 100%;
    height: 70vh !important;
    padding: 0;
    margin: 0;
  } */

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .php-email-form input {
    margin: 0 auto;
  }
}


/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/
.hero-footer {
  width: 100%;
  /* height: 35vh; */
  /* background: url('./assets//img/clouds.webp'); */
  background-image: url('../img/clouds.webp');
  background-size: cover;
  position: relative;
  background-position-y: center;
  background-color: rgb(250 250 250);
}

.hero-footer::before {
  /* content: '';
  position: relative;
  background-image: url('./assets//img/clouds.webp');
  background-position: bottom;
  background-repeat: no-repeat; */

}

.hero-footer h1 {
  padding: 60px 20px;
  font-size: 44px;
  font-weight: 600;
  color: var(--bg-color-1);
  font-family: var(--font-family1);
}

.box {
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.box p {
  font-size: 14px;
  margin: auto 0;
  font-weight: 800;
  margin-top: -26px;
  margin-left: -26px;
  text-transform: uppercase;
  color: #222;
}

.box span {
  display: block;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  margin: -10px;
  animation: animate 2s infinite;
}

.box span:nth-child(2) {
  animation-delay: -0.2s;
}

.box span:nth-child(3) {
  animation-delay: -0.4s;
}

@keyframes animate {

  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}


@media screen and (max-width:425px) {
  /* #hero {
    width: 100%;
    height: 37vh !important;
    padding: 0;
    margin: 0;
  } */


  .box p {
    display: none;
  }

  .box span {
    display: none;
  }

  .hero-footer {
    background-image: none;
  }

  .hero-footer h1 {
    padding: 20px 10px;
    font-size: 34px;
  }

  .aboutus-box h1 {
    font-size: 24px !important;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
  padding: 60px 0;
  overflow: hidden;
}


.aboutus-box {
  background-color: var(--bg-color-1);
  background-image: url('../img//aboutus-bg.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


.aboutus-box h1 {
  font-size: 30px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.5;
  font-weight: 400;
  margin: 20px 0 10px 0;
}

.aboutus-box p {
  color: #F9F9F6;
  padding: 10px 0 20px 0;
  line-height: 2;
  margin: 10px 0 20px 0;
}

.aboutus-box img {
  width: 100%;
  max-height: 600px;
}

@media screen and (min-width:1440px) and (max-width:2560px) {
  .aboutus-box img {
    width: 500px;
    max-height: 700px;
  }
}

.aboutus-box a {
  background-color: #FFB100;
  color: var(--bg-color-1);
  padding: 14px 22px;
  border-radius: 30px;
  font-weight: 600;

}

.home-slide {
  background-color: var(--bg-color-2);
}

.test-bg1 {
  background-image: url('../img/test1.webp');
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 150px;
  margin-top: 20px;
}

.test-bg2 {
  background-image: url('../img/test2.webp');
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 150px;
  margin-top: 20px;
}

/*--------------------------------------------------------------
# Works
--------------------------------------------------------------*/
.work-top {
  margin-top: 80px;
}

.work-top span {
  background-color: var(--color1-text);
  color: #FFB100;
  padding: 4px;
}

.work-top h1 {
  font-size: 40px;
  font-weight: 600;
  color: #222;
  letter-spacing: 1.5px;
}

.work-top img {
  width: 100%;
}

.work-top-left {
  text-align: left;
}

.work-top-left h2 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}

.work-top-left p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.work-top-left a {
  background-color: #FFB100;
  /* color: #2F0909; */
  background-color: var(--color1-text);
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 20px;
  margin: 50px 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.work-top-right {
  position: relative;
}

.work-top-right:before {
  content: "";
  position: absolute;
  /* background-image: url(./assets//img/work_bg.webp); */
  background-image: url('../img/work_bg.webp');
  width: 100%;
  height: 100%;
  animation: spin 50s linear infinite;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.work-top-right img {
  padding: 50px;
  position: relative;
}

@media screen and (max-width:480px) {
  .work-top-right {
    padding: 10px !important;
    margin-bottom: 50px;
  }

  .work-top-right img {
    padding: 10px !important;
  }
}

#one {
  display: none;
}

#two {
  display: none;
}

#three {
  display: none;
}

.book-info-item {}

.book-info-item img {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-items: center;
}

.book-info-item h2 {
  font-size: 40px;
  font-weight: 600;
  color: #222;
  letter-spacing: 1.3px;
  font-family: var(--font-family3);
}

.book-info-item p {
  line-height: 2;
}

.book-info .book-infos {
  /* background-image: url('./assets/img/book-bg.png'); */
  position: relative;
  /* z-index: 999999; */
  overflow: hidden;
}

.book-info .book-infos:before {
  position: absolute;
  content: '';
  background-image: url('../img/book-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  /* animation: spin 50s linear infinite; */
  -webkit-animation: spin 10s linear infinite;
  -moz-animation: spin 10s linear infinite;
  animation: spin 10s linear infinite;
  margin-top: 50px;

}

.book-info {
  background-color: var(--color1-text);
}

.book-item {
  padding: 20px;
  text-align: center;
  max-width: 320px;
  margin-top: 30px;
  position: relative;
  /* z-index: 9999; */
}

.book-item a img {
  width: 100%;
  /* padding: 5px; */
}

.book-item a p {
  text-align: left;
  margin: 10px 0;
  padding: 5px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1px;
}

.more-box {
  text-align: center;
}

.more-box a p {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.more-box a i {
  font-size: 14px;
  text-align: center;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/


.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 0;
  margin: 0 auto;
  /* min-height: 200px; */
  max-width: 650px;
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  max-width: 450px;
  border-radius: 10px;
  /* border: 6px solid #fff; */
  text-align: center;
  margin: 20px 0;
}


.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #badaf7;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item h2 {
  font-size: 28px;
  color: #222;
  line-height: 1.3;
  margin: 0px auto;
  text-transform: uppercase;
  max-width: 350px;
  font-weight: 600;
  padding: 20px 0 0 0;
}

.testimonials .testimonial-item p {
  font-size: 14px;
  line-height: 2;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #1977cc;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1977cc;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }

  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: 50px;
  }

  .testimonials .testimonial-item .testimonial-img {
    max-width: 250px;
  }


}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 50px;

}


.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 0px;
  right: auto;
  color: #8c8c8c;
  width: 26px;
  height: 26px;
  background-color: transparent;
  /* border: 3px solid #8c8c8c; */
  border: 1px solid var(--bg-color-1);
  border-radius: 50%;
  padding: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: '\F12F';
  font-size: 20px;
  font-weight: 600;
  font-family: "bootstrap-icons";
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: '\f138';
  font-size: 20px;
  font-weight: 600;
  font-family: "bootstrap-icons";
}

.swiper-button-next,
.swiper-button-prev {
  text-rendering: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 140px;
  left: auto;
  color: var(--bg-color-1) !important;
  width: 26px;
  height: 26px;
  background-color: #ffedc4 !important;
  border: 1px solid var(--bg-color-1) !important;
  border-radius: 50%;
  padding: 20px;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 140px;
  right: auto;
  color: var(--bg-color-1) !important;
  width: 26px;
  height: 26px;
  background-color: #ffedc4 !important;
  border: 1px solid var(--bg-color-1) !important;
  border-radius: 50%;
  padding: 20px;
}


@media screen and (max-width:768px) {

  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: 0px;
  }

  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: 0px;
  }

  .testimonials .testimonial-item {
    padding: 20px;
    margin: 10px;
  }

  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    padding: 16px;
  }

  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    padding: 16px;
  }

  .test-bg2 {
    background-size: 60px;
    margin-top: 0;
  }

  .test-bg1 {
    margin-top: 0;
  }

}

@media screen and (max-width:320px) {
  .testimonials .testimonial-item h2 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# accolades
--------------------------------------------------------------*/
.acclades-top {
  margin-top: 80px;
}

.acclades-top span {
  background-color: var(--color1-text);
  color: #FFB100;
}

.acclades-top h1 {
  font-size: 34px;
  line-height: 1.3;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-family: var(--font-family1);
}

.acclades-top img {
  width: 100%;
}

.acclades-top-left {
  text-align: right;
}

.accolades-box-item {
  padding: 50px 20px;
  margin: 50px 0;
}

.accolades-box-item:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  border-radius: 20px;
}

.accolades-box-item-top h6 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color1-text);
  font-family: var(--tamil-font-family);
}

.accolades-box-item-top p {
  /* font-size: 14px; */
  margin-bottom: 30px;
  font-family: var(--tamil-font-family);
}

.accolades-box-item-bottom {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
}

.accolades-box-item-bottom p {
  /* font-size: 16px; */
  text-align: center;
  /* color: var(--color2); */
  /* font-family: var(--tamil-font-family); */
  /* font-style: italic; */
  /* font-weight: 300; */
  line-height: 2;
}

.accolades-box-item-bottom p i {
  font-size: 48px;
}

/*--------------------------------------------------------------
# mahabharatham
--------------------------------------------------------------*/
.work-top {
  margin-top: 80px;
}

.work-top span {
  background-color: var(--color1-text);
  color: #FFB100;
  padding: 4px;
}

.work-top h1 {
  font-size: 40px;
  font-weight: 600;
  color: #222;
  letter-spacing: 1.5px;
}

.work-top img {
  width: 100%;
}

.work-top-left {
  text-align: left;
}

.work-top-left h2 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}

.work-top-left p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.work-top-left a {
  background-color: #FFB100;
  color: var(--color1-text);
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 20px;
  margin: 50px 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.work-top-right {
  position: relative;
}

.work-top-right:before {
  content: "";
  position: absolute;
  /* background-image: url(./assets//img/work_bg.webp); */
  background-image: url('../img//work_bg.webp');
  width: 100%;
  height: 100%;
  animation: spin 50s linear infinite;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.work-top-right img {
  padding: 50px;
  position: relative;
}

.line-hr {
  width: 100%;
  height: 1px;
  background-color: #EAECF0;
  opacity: 1;
  border: 0;
}

.maha-book-item {
  background-color: #FFFEFD;
  padding: 20px;
  text-align: center;
  margin: 20px 6px;
  border-radius: 10px;
  box-shadow: 0px 0px 11px -3px rgba(0, 0, 0, 0.1);
}

.maha-book-item img {
  box-shadow: -7px 9px 16px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  width: 90%;
  height: 100%;
}

.maha-book-item .maha-book-item-des {
  text-align: left;
  padding: 10px;
}

.maha-book-item .maha-book-item-des i {
  font-size: 14px;
}

.maha-book-item .maha-book-item-des h4 {
  margin-top: 10px;
  font-size: 15px;
  color: #6A1717;
  font-weight: 700;
}

.maha-book-item .maha-book-item-des a {
  font-size: 16px;
  color: #222;
  font-weight: 600;
}

.maha-book-item .maha-book-item-des a:hover {
  border-bottom: 1px solid #FFB100;
}

/*--------------------------------------------------------------
# Contact us 
--------------------------------------------------------------*/
@media only screen and (min-device-width:270px) and (max-device-width:768px) {
  .contact-top {
    margin-top: 60px !important;
    padding: 40px 10px !important;
  }

  .contact-form input {
    margin-bottom: 20px;
  }
}


.contact-top {
  margin-top: 80px;
  text-align: center;
  padding: 40px 10px;
}

#contactheader {
  position: relative;
}

#contactheader:before {
  content: "";
  /* background-image: url(./assets/img/contact-header.png); */
  background-image: url('../img/contact-header.png');
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: left;
  background-clip: content-box;
  position: absolute;
  top: -590px;
  left: -340px;
}

.contact-form {
  text-align: left;
}

.contact-top h1 {
  color: #FFB100;
  font-size: 18px;
  font-weight: 600;
  padding: 5px 0;
}

.contact-top h6 {
  font-size: 40px;
  font-weight: 600;
  color: #222;
  /* padding: 5px 0; */
}

.contact-top p {
  color: #6A1717;
  font-size: 18px;
  padding: 5px 0;
  font-weight: 600;
}

.contact-form {}

.contact-form .row {
  margin-top: 22px;
}

.contact-form .form-label {
  color: #525252;
  font-size: 16px;
  font-weight: 500;
  margin-left: 10px;
}

.contact-form input {
  width: 100%;
  height: 50px;
  margin: 2px 0;
  border-radius: 10px;
}

.contact-form textarea {
  width: 100%;
  margin: 2px 0;
  border-radius: 10px;
}

.contact-form input[type="checkbox"] {
  width: 20px;
  height: 20px
}

.btn-submit {
  background-color: #FFB100;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  margin: 30px 0;
  border: 2px solid #FFB100;
}

.btn-submit:hover {
  background-color: transparent;
  color: #6A1717;
  transition: 0.5s;
  border: 2px solid #FFB100;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #F9F9F6;
  font-size: 14px;
  background: var(--bg-color-1);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: var(--bg-color-1);
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-family4);
  color: #F9F9F6;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--color2);
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  list-style: none;
  text-decoration: none;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--primary-color);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}



@media only screen and (max-width:789px) {
  .copyright {
    display: inline-block !important;
  }
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #F9F9F6;
}


#footer .footer-top h4 {
  font-size: 22px;
  font-weight: bold;
  color: var(--white);
  position: relative;
  padding-bottom: 18px;
  font-weight: 600;
}

#footer .footer-top .footer-links ul a {
  color: #dadada;
  transition: 0.3s;
  display: inline-block;
  line-height: 1.5;
  /* font-weight: 400; */
  font-size: 14px;
  text-decoration: none;
}

#footer .footer-top .footer-links p {
  color: #dadada;
  transition: 0.3s;
  display: inline-block;
  line-height: 2;
  /* font-weight: 400; */
  font-size: 14px;
}

.footer-line:after {
  content: "";
  position: static;
  display: block;
  max-width: 850px;
  height: 2px;
  background: #fff;
  bottom: 0;
  left: calc(50% - 25px);
  margin: 0 auto;
}


.footer-line h3 {
  line-height: 1.5;
  max-width: 450px;
  margin: 20px;
  font-size: 30px;
  font-weight: 500;
}

.footer-btn a {
  background-color: #fff;
  padding: 12px 26px;
  text-align: center;
  border: 1px solid #FFB100;
  border-radius: 30px;
  color: var(--bg-color-1);
  margin: 20px;
  display: inline-flex;
  font-size: 14px;
}