@font-face {
  font-family: Arnopro-Display;
  src: url("../assets/fonts/arnopro-display.otf");
}
@font-face {
  font-family: Arnopro-Caption;
  src: url("../assets/fonts/ArnoPro-Caption.otf");
}
@font-face {
  font-family: Arnopro-ItalicCaption;
  src: url("../assets/fonts/ArnoPro-ItalicCaption.otf");
}
:root {
  --blue: #0d4282;
  --red: #bf0a30;
  --a-display: Arnopro-Display;
  --a-caption: Arnopro-Caption;
  --a-italic-caption: Arnopro-ItalicCaption;
}
*,
*:after,
*:before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
    background-color: #f7f7f0;
    overflow-x: hidden;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
.bg_white {
  background-color: #f7f7f0;
}
.z-10 {
  z-index: 10;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--a-display);
  font-weight: 700;
}
p {
  color: #2c2f32;
  font-family: var(--a-caption);
  font-size: 20px;
}
img {
  max-width: 100%;
  height: auto;
}
hr {
  color: #88909c;
  margin: 0;
}
ul {
  padding: 0;
  margin: 0;
}
video {
  border-radius: 10px;
}
.relative {
  position: relative;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}
@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 20px;
  text-align: center;
}
.menu {
  padding: 10px 0 0 10px;
}
.menu svg {
  width: 40px;
  height: auto;
  cursor: pointer;
}
.header img {
  margin-bottom: 10px;
  max-width: 200px;
}
.header h1 {
    font-size: 5rem;
}
.hero > h2 {
  font-size: 12rem;
  margin: 2.5vh 15px;
  text-align: center;
}
.hero > h2:first-of-type {
  color: var(--blue);
}
.hero > h2:nth-of-type(2) {
  color: var(--red);
  font-size: 12rem;
  text-transform: uppercase;
}
@media (max-width: 568px) {
    .hero > h2, .hero > h2:nth-of-type(2) {
        font-size: 8rem;
    }
}
nav {
    display: none;
}
@media (min-width: 1020px){
    .menu {
        display: none;
    }
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: #3e8da8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
  display: block;
}
nav .navbar {
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 50px;
}
.navbar .logo a {
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
nav .navbar .nav-links {
  line-height: 70px;
  height: 100%;
}
nav .navbar .links {
  display: flex;
}
nav .navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
  transform: rotate(180deg);
}

nav .navbar .links li .arrow {
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu {
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #3e8da8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
  padding: 0;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
  display: block;
}
.navbar .links li .sub-menu li {
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar .links li .sub-menu a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow {
  line-height: 40px;
}

.navbar .links li .sub-menu .more-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu {
  display: block;
}
.navbar .search-box {
  position: relative;
  height: 40px;
  width: 40px;
}
.navbar .search-box i {
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box {
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #3e8da8;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box {
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #3e8da8;
}
.search-box .input-box::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  background: #3e8da8;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo {
  display: none;
}
.navbar .bx-menu {
  display: none;
}
}

/*.hero h2 span:hover {*/
/*  color: #313d4b;*/
/*  font-style: italic;*/
/*  font-family: var(----a-italic-caption);*/
/*}*/
.hero_images {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 45px 0;
}
.hero_images img {
  padding: 20px;
}
.describe h2 {
  font-size: 4rem;
  color: var(--blue);
}
.btn_style {
  --text-opacity: 1;
  color: #f7f7f0;
  color: rgba(247, 247, 240, var(--text-opacity));
  font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica,
    system-ui, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif,
    Oxygen-Sans, Arial;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border-width: 1px;
  border-color: transparent;
  border-radius: 0.25rem;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 10%), 0 1px 2px 0 rgb(0 0 0 / 6%);
  --bg-opacity: 1;
  background-color: #627a95;
  background-color: rgba(98, 122, 149, var(--bg-opacity));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  transition-property: background-color, border-color, color, fill, stroke,
    opacity, box-shadow, transform;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.btn_style:hover {
  color: #fff;
  background-color: #3c4a5a;
}
.hero_desc {
  background: url("../images/bg_section.png");
  background-size: cover;
}
.colorful-bkgd {
  background-image: linear-gradient(
    -45deg,
    #c6cfbc,
    #c6cfbc,
    #c5cfdb,
    #c0d8d7,
    #f6e9e4,
    #e2dfc2,
    #e2dfc2
  );
  background-size: 400% 400%;
  background-repeat: no-repeat;
  -webkit-animation: gradient 25s ease infinite;
  animation: gradient 25s ease infinite;
  position: absolute;
  top: 0;
  left: 0;
  height: 2400px;
}
@keyframes gradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  to {
    background-position: 0 50%;
  }
}
.hero_desc .row {
  padding: 40px 0;
}
.describe_imgs {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.describe_img {
  width: 18rem;
  height: 26rem;
  border-radius: 6px;
}
.d_imgs {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.d_img1 {
    z-index: 99999;
    /*margin-top: 120px;*/
    width: 80%;
    padding: 8px;
}
.d_img2 {
    width: 50%;
    padding: 8px;
}
.describe_img1 {
  background-image: url(../images/book1f.png);
  z-index: 99999;
  margin-top: 120px;
}
.describe_img2 {
  background-image: url(../images/book2f.png);
  margin-left: -100px;
}

/* .describe_imgs_section {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}
.describe_img3 {
    background-image: url(../images/logo_1.png);    
    z-index: 99999;
    margin-top: 120px;
}
.describe_img4 {
    background-image: url(../images/book2b.png);
    margin-left: -100px;
} */
.describe_imgs_section {
  position: relative;
  height: 100%;
  width: 100%;
}

.describe_img3 {
  max-width: 70%;
  margin: auto;
}
.describe_img4 {
  position: absolute;
  top: 0%;
  right: 0;
  width: 60%;
}
.describe_img5 {
  position: absolute;
  bottom: 18%;
  left: 0;
  width: 50%;
}
.describe_img6 {
  position: absolute;
  bottom: 10%;
  right: 0;
  width: 60%;
}
/* .describe_img3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)  !important;
    width: 80px;
}
.describe_img4 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)  !important;
    width: 60%;
}
.describe_img5 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)  !important;
    width: 50%;
}
.describe_img6 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)  !important;
    width: 60%;
} */

.book1 {
  background-image: url(../images/book1f.png);
}
.book2 {
  background-image: url(../images/book2f.png);
}
.book {
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.book_height_width {
  width: 320px;
  height: 460px;
  margin: 20px;
  border-radius: 6px;
}
.book_shadow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  box-shadow: inset 0 0 3px rgb(0 0 0 / 10%);
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(255, 255, 255, 0.2) 3%,
    rgba(0, 0, 0, 0.1) 4.5%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0) 98%,
    rgba(0, 0, 0, 0.2) 100%
  );
  transition: opacity 0.2s ease-in-out;
  border-radius: 6px;
}
.book_shadow:hover {
  opacity: 0.5;
}

.author {
  background-color: #627a95;
  position: relative;
}
.author h2 {
    padding: 5px 0 0px;
    color: #ffffff;
    text-align: center;
    letter-spacing: 1px;
    text-transform: capitalize;
    font-size: 32px;
    margin: 0;
}
.author iframe {
    width: 100%;
    height: 650px;
}
.author p.copy {
    text-align: right;
    margin: 0;
    color: #fff;
    padding: 10px;
    font-size: 18px;
}
.author p.copy a {
    color: #fff;
    text-decoration: underline;
}
.author_details {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #f7f7f0;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 40px 15px;
  transform: translate(-50%, -50%);
}
.author_details img {
  width: 150px;
  margin-bottom: 30px;
}
.author_details h3 {
  font-size: 18px;
  color: #c9ccda;
}
.author_details p {
  color: #f7f7f0;
}
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23415264' fill-opacity='1' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E"),*/
  /*  rgba(24, 54, 98, 0.8);*/
  z-index: 0;
}
.promo {
  background: linear-gradient(135deg, rgb(230, 230, 204), rgb(214, 223, 220));
}
.promo .container .promo_imgs {
  position: relative;
  background: url("../images/bg_promo.png");
  background-size: cover;
}
.promo_imgs {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-gap: 0.5rem;
  gap: 0.5rem;
  position: relative;
  /* max-width: 768px; */
  margin: 0 auto;
  padding: 60px;
}
.col-span-1 {
  grid-column: span 1 / span 1;
}
.col-span-2 {
  grid-column: span 2 / span 2;
}
.col-span-3 {
  grid-column: span 3 / span 3;
}
.col-span-6 {
  grid-column: span 6 / span 6;
}
.row-span-2 {
  grid-row: span 2 / span 2;
}
.col-start-1 {
  grid-column-start: 1;
}
.col-start-3 {
  grid-column-start: 3;
}
.col-start-5 {
  grid-column-start: 5;
}
.col-start-7 {
  grid-column-start: 7;
}
.col-start-10 {
  grid-column-start: 10;
}
.self-end {
  align-self: end;
}

.footer {
  /* background-color: #313D4B; */
  text-align: center;
  /* padding: 40px 15px; */
}
.footer a {
  margin: 60px 15px;
}
.footer_logo {
    max-width: 150px;
    margin: auto;
}
.footer h1 {
  color: #fff;
  padding: 20px 15px;
}
.footer_menu ul li {
  display: inline-block;
}
.footer_menu ul li a {
  text-decoration: none;
  color: #fff;
}
.copyright {
  padding-top: 40px;
}
.copyright p {
  color: #b6b8bb;
  margin: 0;
  padding-top: 15px;
  font-size: 16px;
}
.footer_top_div {
  z-index: -1;
  height: 85vh;
}
.footer_fixed {
  height: 85vh;
  z-index: 0;
  width: 100%;
  left: 0;
  bottom: 0;
  position: fixed;
  padding: 0 15px;
  background: #313d4b;
}
.v_mob {
  display: none;
}
.jhgj {
  background: linear-gradient(
    -45deg,
    #c6cfbc,
    #c6cfbc,
    #c5cfdb,
    #c0d8d7,
    #f6e9e4,
    #e2dfc2,
    #e2dfc2
  );
}
@media (max-width: 799px) {
  .describe_imgs_section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
    .d_img1 {
      margin-top: 0;
    }
  .describe_img3 {
    position: initial;
    width: 100%;
    padding: 8px 0;
  }
  .describe_img4 {
    position: initial;
    width: 100%;
    padding: 8px 0;
  }
  .describe_img5 {
    position: initial;
    width: 100%;
    padding: 8px 0;
  }
  .describe_img6 {
    position: initial;
    width: 100%;
    padding: 8px 0;
  }
}
@media (max-width: 568px) {
  .describe_img,
  .book_height_width {
    width: 50%;
    height: 14rem;
    margin: 10px;
  }
  .describe_img2 {
    margin-left: 0;
  }
  .row_modified {
    flex-direction: column-reverse;
  }
  .footer_menu ul li {
    padding: 10px 0;
  }
  .describe h2 {
    font-size: 2.5rem;
  }
  .v_mob {
    display: block;
  }
  .v_lap {
    display: none;
  }
  .promo_imgs {
    padding: 60px 0;
  }
  .footer a {
    margin: 40px 15px;
  }
  .author iframe {
    width: 100%;
    height: 450px;
   }
}

/* =====================================
              Contact Us
===================================== */
.contact_us {
  color: #fff;
  background-color: #f1f1f1;
}
.contact_us_area {
  padding: 4rem 0;
}
.contact_us_left {
  padding: 50px;
  border: 1px solid rgba(231, 231, 231, 0.3);
  background-color: #000000b3;
  border-radius: 5px;
}
.contact_us_left > p {
  color: #f2f2f2;
  margin-bottom: 37px;
}

.feature_type_contact {
  background-color: #ffffff;
  padding: 15px 20px;
  border-radius: 5px;
  border: 1px solid #e7e7e7;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  margin: 15px 0;
}
.feature_type_contact .feature_type_content p {
  font-size: 1.2em;
  color: var(--primaryColor);
  margin: 0;
}
.contact_us_left h3 {
  font-size: 1.2em;
  font-weight: 800;
  letter-spacing: 1px;
}
.contact_us_left p {
  color: #fff;
}
.contact_us_left > p {
  color: #fff;
}
.contact_us_right {
  text-align: center;
}
.contact_form {
  padding: 42px 35px;
  background-color: #f7f9fa;
  color: #000;
  border-radius: 9px;
}
.contact_form h3 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
}
.contact_form p {
  font-size: 0.9em;
}
.contact_form form input[type="text"],
.contact_form form input[type="email"],
.contact_form form input[type="number"],
.contact_form form textarea {
  margin: 20px 0;
  padding: 9px;
}

/* =====================================
                SideBar
===================================== */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(24, 54, 98, 1);
  height: 100vh;
  color: #fff;
  z-index: 100;
  transition: all 0.5s ease-in-out;
  text-align: center;
  transform: translateY(-110%);
}
.sidebar ul {
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(500px, 90%);
}
.sidebar ul li {
  list-style-type: none;
  padding: 12px;
}
.sidebar ul li:nth-child(2) {
  background-color: var(--primaryColor);
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.sidebar ul li:nth-child(2) p {
  font-weight: 600;
  font-size: 25px;
  margin: 0;
  color: #fff;
  font-family: inherit;
}
.sidebar ul > li:nth-child(1) {
  text-align: right;
}
.sidebar ul li:nth-child(1) a svg {
  height: auto;
  width: 28px;
}
.sidebar ul li a {
  text-decoration: none;
  color: #fff;
}
#drops {
    display: none;
    background-color: #fff;
}
#drops li a {
    color: #000;
}

.bg_descibe {
    background-image: url("../images/waybg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: right;
    padding: 15px 10px;
}