

                                    /*HEADER*/


:root {
  --header-height: 3.5rem;


  --black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);


  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;


  --font-regular: 400;
  --font-semi-bold: 600;


  --z-tooltip: 10;
  --z-fixed: 9999;
}


* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
}

ul {
  list-style: none;

}

a {
  text-decoration: none;
}


.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color:#0009;
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
}

.nav {
  height: var(--header-height);
}

.nav__logo, 
.nav__burger, 
.nav__close {
  color: var(--white-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: var(--font-semi-bold);

}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}
.nav__logo img {
  width: 70px;
}
.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger, 
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}


/*


    JOIN BUTTON


*/
.animated-button {
  background:transparent;
  padding: 20px 40px;
  margin:0;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  overflow: hidden;
  color: #d4e0f7;
  font-size: 14px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #8592ad;
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out;
}




.animated-button span {
  position: absolute;
}

.animated-button span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(8, 20, 43, 0)), to(#f82936));
  background: linear-gradient(to left, rgba(8, 20, 43, 0), #f82936);
  -webkit-animation: 2s animateTop linear infinite;
          animation: 2s animateTop linear infinite;
}

@-webkit-keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.animated-button span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 20, 43, 0)), to(#f82936));
  background: linear-gradient(to top, rgba(8, 20, 43, 0), #f82936);
  -webkit-animation: 2s animateRight linear -1s infinite;
          animation: 2s animateRight linear -1s infinite;
}

@-webkit-keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.animated-button span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(8, 20, 43, 0)), to(#f82936));
  background: linear-gradient(to right, rgba(8, 20, 43, 0), #f82936);
  -webkit-animation: 2s animateBottom linear infinite;
          animation: 2s animateBottom linear infinite;
}

@-webkit-keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.animated-button span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 20, 43, 0)), to(#f82936));
  background: linear-gradient(to bottom, rgba(8, 20, 43, 0), #f82936);
  -webkit-animation: 2s animateLeft linear -1s infinite;
          animation: 2s animateLeft linear -1s infinite;
}

@-webkit-keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}




                                      /*MAIN*/
.main {
  height: 100vh;
  width: 100%;
}
.main .wrapper,
.main .slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.main .slide {
  overflow: hidden;
}
.main .slide::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}
.main .slide .image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.main .slide .image-data {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 100;
}
.main .image-data span.text {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.main .image-data h2 {
  font-size: 45px;
  font-weight: 600;
  color: #fff;
}
/*



                                                                LEARN MORE BUTTON




*/


.learn_more  {
  margin-top:30px;
  position:relative;
  display:inline-block;
  width: 14rem;
  height: auto;
  border:0;
  cursor:pointer;   
  vertical-align:middle;
  background:transparent;
  outline:none;
}
.learn_more .text {
  font-weight:bold;
  position: absolute;
  inset:0;
  padding:0.9rem 0;
  margin-left:1.85rem;
  color:#fff;
  line-height: 1.5;
  text-align:center;
  transition: all .4 ease-in-out;
}
.learn_more .circle {
  position: relative; 
  display:block;
  margin:0;
  width:3rem;
  height: 3rem;
  background:#f82936;
  border-radius:1.625rem;
  transition: all .4s ease-in-out;
}
.learn_more .icon {
  position: absolute; 
  top:0;
  left:0;
  margin:auto;
  background:#fff;
}
.learn_more .arrow {
  top:24px;
  left:0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background:none;
  transition: all .4s ease-in-out;
}
.learn_more .arrow::before{
    content: "";
    position: absolute;
    top: -0.3rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top:0.125em solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}
.learn_more:hover .circle {
  width: 100%;
}
.learn_more:hover .arrow {
  background:#fff;
  transform:translateX(1rem);
}
.learn_more:hover .text {
  color:#fff;
}










/* swiper button css */
.nav-btn {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}
.nav-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}
.swiper-button-next {
  right: 50px;
}
.swiper-button-prev {
  left: 50px;
}
.nav-btn::before,
.nav-btn::after {
  font-size: 25px;
  color: #fff;
}
.swiper-pagination-bullet {
  opacity: 1;
  height: 12px;
  width: 12px;
  background-color: #fff;
  visibility: hidden;
}
.swiper-pagination-bullet-active {
  border: 2px solid #fff;
  background-color: #c87e4f;
}


/*


  SECTION B


*/

.section_b h1 {
   text-align: center;
   font-weight: 300;
   margin:30px 0;
   color: #777
}

.section_b  h1 span {
   font-weight: 600;
}
.section_b .container {
   width: 80%;
   padding: 50px 0;
   margin: 50px auto;
   position: relative;
   overflow: hidden;
}

.section_b .container:before {
   content: '';
   position: absolute;
   top: 0;
   left: 50%;
   margin-left: -1px;
   width: 2px;
   height: 100%;
   background: #CCD1D9;
   z-index: 1
}

.timeline-block {
   width: -webkit-calc(50% + 8px);
   width: -moz-calc(50% + 8px);
   width: calc(50% + 8px);
   display: -webkit-box;
   display: -webkit-flex;
   display: -moz-box;
   display: flex;
   -webkit-box-pack: justify;
   -webkit-justify-content: space-between;
   -moz-box-pack: justify;
   justify-content: space-between;
   clear: both;
}

.timeline-block-right {
   float: right;
}

.timeline-block-left {
   float: left;
   direction: rtl
}

.section_b .marker {
   width: 16px;
   height: 16px;
   border-radius: 50%;
   border: 2px solid #f82936;
   background: #f82936;
   margin-top: 10px;
   z-index: 1000
}

.timeline-content {
   width: 95%;
   padding: 0 15px;
   color: #666
}

.timeline-content h3 {
   margin-top: 5px;
   margin-bottom: 5px;
   font-size: 25px;
   font-weight: 500
}

.timeline-content span {
   font-size: 15px;
   color: #a4a4a4;
}

.timeline-content p {
   font-size: 14px;
   line-height: 1.5em;
   word-spacing: 1px;
   color: #888;
}
.section_b .learn_more {
  margin:auto;
  display: block;
}
.section_b .learn_more .text {
  color:#333;
}

/*


            BLOCKQUOT


*/
.otro-blockquote{
  font-size: 1.4em;
  width:100%;
  margin:50px auto;
  font-family:Open Sans;
  font-style:italic;
  color: #555555;
  padding:1.2em 30px 1.2em 75px;
  border-left:8px solid #f82936 ;
  line-height:1.6;
  text-align: center;
  position: relative;
  background:#EDEDED;
}

.otro-blockquote::before{
  font-family:Arial;
  content: "\201C";
  color:#f82936;
  font-size:4em;
  position: absolute;
  left: 10px;
  top:-10px;
}

.otro-blockquote::after{
  content: '';
}

.otro-blockquote span{
  display:block;
  color:#333333;
  font-style: normal;
  font-weight: bold;
  margin-top:1em;
}


/*





SECTION C



*/

.section_c {
  position: relative;
}
.section_c h1 {
   text-align: center;
   font-weight: 300;
   margin:30px 0;
   color: #777;
   font-weight: 600;
}
.section_c p {
   text-align: center;
   font-weight: 300;
   margin:30px 0;
   color: #777;
   font-size:18px;
}
.section_c .otro-blockquote {
  background-color: var(--body-color);
  font-size: 18px;
}









/*BOOKS







*/
.section_d {
  position: relative;

}
.section_d .container {
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.section_d .swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.section_d .swiper-slide {
  width: 300px;
  height: 400px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  filter: blur(1px);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: self-start;
}

.section_d .swiper-slide-active {
  filter: blur(0px);
}

.section_d .swiper-pagination-bullet,
.section_d .swiper-pagination-bullet-active {
  background: #000;
  visibility: visible;
}

.section_d .swiper-slide .title {
  text-transform: uppercase;
  color: #fff;
  background: #1b7402;
  padding: 7px 18px 7px 25px;
  display: inline-block;
  border-radius: 0 20px 20px 0px;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-family: "Open Sans", sans-serif;
}

.section_d .swiper-slide--one .title {
  background: #62667f;
}

.section_d .swiper-slide--two .tltle {
  background: #087ac4;
}

.section_d .swiper-slide--three .tltle {
  background: #b45205;
}

.section_d .swiper-slide--four .title {
  background: #087ac4;
}

.section_d .swiper-slide h2 {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 15px;
  padding: 25px 45px 0 25px;
}

.section_d .swiper-slide p {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  display: flex;
  align-items: center;
  padding: 0 25px 35px 25px;
}

.section_d .swiper-slide svg {
  color: #fff;
  width: 22px;
  height: 22px;
  margin-right: 7px;
}

.section_d .swiper-slide--one {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("../images/nzhdeh.jpg")
      no-repeat 50% 50% / cover;
}

.section_d .swiper-slide--two {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("../images/remember_the_war.jpg")
      no-repeat 50% 50% / cover;
}

.section_d .swiper-slide--three {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("../images/havatamq.jpg")
      no-repeat 50% 50% / cover;
}

.section_d .swiper-slide--four {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("../images/erker1.jpg")
      no-repeat 50% 50% / cover;
}

.section_d .swiper-slide--five {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("../images/erker.jpg")
      no-repeat 50% 50% / cover;
}

.section_d .swiper-3d .swiper-slide-shadow-left,
.section_d .swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}
.section_d h1 {
   text-align: center;
   font-weight: 300;
   margin:30px 0;
   color: #777
}

.section_d  h1 span {
   font-weight: 600;
}






/*
Section E

*/

.section_e .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin-block: 2rem;
  gap: 2rem;

}

.section_e img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.section_e .card {
  display: flex;
  flex-direction: column;
  width: clamp(20rem, calc(20rem + 2vw), 22rem);
  overflow: hidden;
  box-shadow: 0 .1rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 1em;
  background: #ECE9E6;
background: linear-gradient(to right, #FFFFFF, #ECE9E6);

}



.section_e .card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}


.section_e .tag {
  align-self: flex-start;
  padding: .25em .75em;
  border-radius: 1em;
  font-size: .75rem;
}

.section_e .tag + .tag {
  margin-left: .5em;
}

.section_e .tag-blue {
  background: #56CCF2;
background: linear-gradient(to bottom, #2F80ED, #56CCF2);
  color: #fafafa;
}

.section_e .tag-brown {
  background: #D1913C;
background: linear-gradient(to bottom, #FFD194, #D1913C);
  color: #fafafa;
}

.section_e .tag-red {
  background: #cb2d3e;
  background: linear-gradient(to bottom, #ef473a, #cb2d3e);
  color: #fafafa;
}

.section_e .card__body h4 {
  font-size: 1.5rem;
  text-transform: capitalize;
}

.section_e .card__footer {
  display: flex;
  padding: 1rem;
  margin-top: auto;
}

.section_e .user {
  display: flex;
  gap: .5rem;
}

.section_e .user__image {
  border-radius: 50%;
}

.section_e .user__info > small {
  display: block;
  color: #666;
}
.section_e h1 {
   text-align: center;
   font-weight: 300;
   margin:30px 0;
   color: #777
}

.section_e  h1 span {
   font-weight: 600;
}

.section_e .learn_more .circle{
  width: 100%
}

/*


ABOUT US 


*/
.section_f {
  position: relative;
}
.section_f .container {
  margin-top: 100px;
  margin-bottom: 100px;
  display: grid;
  place-items:center;
  grid-template-columns: 1fr 1fr;
  text-align: center;

}
.section_f h1 {
   text-align: center;
   font-weight: 300;
   margin:30px 0;
   color: #777
}

.section_f  h1 span {
   font-weight: 600;
}
.section_f img {
  max-width: 400px; 
}
.section_f .learn_more .circle{
  width: 100%
}
.section_f  h2 {
  margin:10px 0;
}


/*




SUBSCRIBE








*/

.section_g .container {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin:0;
  margin-bottom: 20px;
}

.section_g .content {
  max-width: 350px;
  height: 40px;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, .2);
  border-radius: 60px;
  overflow: hidden;
}

.subscription {
  position: relative;
  width: 100%;
  height: 100%;
}

.subscription .add-email{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 0 20px;
}

.subscription .submit-email {
  position: absolute;
  top: 0;
  right: 0;
  height: calc(100% - 2px);
  width: 100px;
  border: none;
  border-radius: 60px;
  outline: none;
  margin: 1px;
  padding: 0 20px;
  cursor: pointer;
  background: #4ABEBB;
  color: #FFFFFF;
  transition: width .35s ease-in-out,
    background .35s ease-in-out;
}

.subscription.done .submit-email {
  width: calc(100% - 2px);
  background: #4ABEBB;
}

.subscription .submit-email .before-submit,
.subscription .submit-email .after-submit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 38px;
  transition: visibility .35s ease-in-out,
    opacity .35s ease-in-out;
}

.subscription.done .submit-email .before-submit,
.subscription:not(.done) .submit-email .after-submit {
  visibility: hidden;
  opacity: 0;
}

.subscription .submit-email .after-submit {
  transition-delay: .35s;
}

.subscription:not(.done) .submit-email .before-submit,
.subscription.done .submit-email .after-submit {
  visibility: visible;
  opacity: 1;
}

footer {
  background-color: #121315;
  color: #a7a7a7;
  font-size: 16px;
}
footer * {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  border: none;
  outline: none;
}
.row {
  padding: 1em 1em;
}
.row.primary {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  align-items: stretch;
}
.column {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 2em;
  min-height: 15em;
}
footer h3 {
  width: 100%;
  text-align: left;
  color: white;
  font-size: 1.4em;
  white-space: nowrap;
  margin-bottom: 10px;

}
footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
footer li:not(:first-child) {
  margin-top: 0.8em;
}
footer ul li a {
  color: #a7a7a7;
  text-decoration: none;
}
footer ul li a:hover {
  color: #2a8ded;
}
footer .about p {
  text-align: justify;
  line-height: 2;
  margin: 0;
}
footer input,
footer button {
  font-size: 1em;
  padding: 1em;
  width: 100%;
  border-radius: 5px;
  margin-bottom: 5px;
}
footer button {
  background-color: #c7940a;
  color: #ffffff;
}
footer div.social {
  display: flex;
  justify-content: space-around;
  font-size: 2.4em;
  flex-direction: row;
  margin-top: 0.5em;
}
footer .social i {
  color: #bac6d9;
}

.copyright {
  padding: 0.3em 1em;
  background-color: #25262e;
}
.footer-menu{
  text-align: center;
  margin-top: 10px;
}

.footer-menu a{
  color: #cfd2d6;
  padding: 6px;

  text-decoration: none;
}
.footer-menu a:hover{
  color: #27bcda;
}
.copyright p {
  font-size: 0.9em;
  text-align: center;
}

/*














NZHDEH PAGE

























*/

.nzhdeh_section_a {
  position: relative;
  width: 100%;
  margin:20px 0;
}
.nzhdeh_section_a h1 {
   text-align: center;
   font-weight: 300;
   margin:30px 0;
   color: #777
}
.nzhdeh_section_a .container {
  color:#333;
}
.nzhdeh_section_a  h1 span {
   font-weight: 600;
}


/*

Tseghakron OAGE




*/
.timeline {
  margin: 20px auto;
  padding: 20px;
}


.timeline .card {
  position: relative;
  max-width: 100%;
}

.timeline .card:nth-child(odd) {
  padding: 30px 0 30px 30px;
}
.timeline .card:nth-child(even) {
  padding: 30px 30px 30px 0;
}

.timeline .card::before {
  content: "";
  position: absolute;
  width: 50%;
  border: solid #333;
}

.timeline .card:nth-child(odd)::before {
  left: 0px;
  top: -4.5px;
  bottom: -4.5px;
  border-width: 5px 0 5px 5px;
  border-radius: 50px 0 0 50px;
}


@media only screen and (max-width: 400px) {
  .timeline .card:nth-child(odd)::before {
    top: -5px;
    bottom: -5px;
  }
}


.timeline .card:nth-child(even)::before {
  right: 0;
  top: 0;
  bottom: 0;
  border-width: 5px 5px 5px 0;
  border-radius: 0 50px 50px 0;
}


.timeline .card:first-child::before {
  border-top: 0;
  border-top-left-radius: 0;
}


.timeline .card:last-child:nth-child(odd)::before {
  border-bottom: 0;
  border-bottom-left-radius: 0;
}


.timeline .card:last-child:nth-child(even)::before {
  border-bottom: 0;
  border-bottom-right-radius: 0;
}


.timeline .info {
  display: flex;
  flex-direction: column;
  color: gray;
  border-radius: 10px;
  padding: 10px;
}

.timeline .title {
  color: #333;
  position: relative;
}


.timeline .title::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 999px;
  border: 3px solid #333;
}


.timeline .card:nth-child(even) > .info > .title {
  text-align: right;
}


.timeline .card:nth-child(odd) > .info > .title::before {
  left: -45px;
}


.timeline .card:nth-child(even) > .info > .title::before {
  right: -45px;
}

.tseghakron_blockquote {
  display: block;
  border-width: 2px 0;
  font-size: 17px;
  border-style: solid;
  border-color: #eee;
  padding: 1.5em 0 0.5em;
  margin: 1.5em 0;
  position: relative;
  text-align: center;
  color:#777;
  font-family:Open Sans;
  font-style: italic;
}

.tseghakron_blockquote:after {
  content: "\2013 \2003" attr(cite);
  display: block;
  text-align: right;
  font-size: 0.875em;
  color: #f82936;
}




.h1_title h1 {
  position: relative;
  padding: 0;
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  color: #777;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  text-align: center;
  text-transform: capitalize;
  padding-bottom: 10px;
}

.h1_title h1:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 2px;
  content: "";
  background-color: #c50000;
  left:50%; 
  margin-left:-50px;
}


/*




BOOKS PAGE





*/
.book_page {
  position: relative;
}
.book_page .container{
  max-width: 1500px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.book_page main {
  display: flex;
  justify-content: center;
  background-color: #d9d9d9;
}

.book {
  --book-height: 500px;
  --book-ratio: 1.4;
}

.book > div {
  height: var(--book-height);
  width: calc(var(--book-height) / var(--book-ratio));
  overflow: auto;
  background-color: #0a0a0a;
  transform: scale(0.9);
  border-radius: 6px;
  transform-origin: left;
}

.book-cover {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 9;
  text-align: center;
  background: linear-gradient(135deg, black 25%, transparent 25%) -50px 0,
    linear-gradient(225deg, black 25%, transparent 25%) -50px 0,
    linear-gradient(315deg, black 25%, transparent 25%),
    linear-gradient(45deg, black 25%, transparent 25%);
  background-size: 2em 2em;
  background-color: #232323;
  color: white;
  transition: transform 2s;
}
.book-cover img {
  width:100%;
  height: 100%  ;
}

.book_page h1 {
  font-family: "Petemoss", cursive;
  font-size: 98px;
  font-weight: 300;
  color: #dbd75d;
}

.book_page h2 {
  font-size: 16px;
}

.book_page .separator {
  --separator-size: 8px;
  width: var(--separator-size);
  height: var(--separator-size);
  background-color: #dbd75d;
  margin: 50px auto 60px auto;
  border-radius: 50%;
  position: relative;
}

.book_page .separator::after,
.book_page .separator::before {
  content: "";
  position: absolute;
  width: 12px;
  background-color: white;
  height: 2px;
  top: calc(50% - 1px);
}

.separator::after {
  left: 15px;
}

.separator::before {
  right: 15px;
}

.book-content {
  transform: scale(0.9) translateY(30px);
  background-color: white !important;
  transition: all 0.3s 1s;
}

.book-content h3,
.book-content p {
  opacity: 0;
  transition: all 0.3s 0.3s;
}

.book_page h3 {
  padding: 30px;
}

.book_page p {
  padding: 0px 30px 10px 30px;
  text-align: justify;
  font-size: 14px;
}

.book-cover > div {
  transition: opacity 0s 0.6s;
}

.book:hover > .book-cover {
  transform: rotateY(180deg) scale(0.9);
}

.book:hover > .book-cover > div {
  opacity: 0;
}

.book:hover > .book-content {
  transform: scale(0.9) translateY(0px);
}

.book:hover > .book-content h3,
.book:hover > .book-content p {
  opacity: 1;
}

.book_page .btn {
  margin-left: 80px;
  background-color: #3AA4FF;
  border: none;
  color: white;
  padding: 12px 30px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 5px;
}

.book_page  .btn:hover {
  background-color: #3190e0;
}

/*






Admin login page









*/
.admin_login 
{
  background:url("../images/2.jpg") center no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  overflow: hidden;
}

.admin_login .signin
{
  position: absolute;
  width: 400px;
  background: #222;  
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(0,0,0,9);
}
.admin_login .signin .content 
{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}
.admin_login .signin .content h2 
{
  font-size: 2em;
  color: #0f0;
  text-transform: uppercase;
}
.admin_login .signin .content .form 
{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.admin_login .signin .content .form .inputBox
{
  position: relative;
  width: 100%;
}
.admin_login .signin .content .form .inputBox input 
{
  position: relative;
  width: 100%;
  background: #333;
  border: none;
  outline: none;
  padding: 25px 10px 7.5px;
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  font-size: 1em;
}
.admin_login .signin .content .form .inputBox i 
{
  position: absolute;
  left: 0;
  padding: 15px 10px;
  font-style: normal;
  color: #aaa;
  transition: 0.5s;
  pointer-events: none;
}
.signin .content .form .inputBox input:focus ~ i,
.signin .content .form .inputBox input:valid ~ i
{
  transform: translateY(-7.5px);
  font-size: 0.8em;
  color: #fff;
}
.signin .content .form .inputBox input[type="submit"]
{
  padding: 10px;
  background: #0f0;
  color: #000;
  font-weight: 600;
  font-size: 1.35em;
  letter-spacing: 0.05em;
  cursor: pointer;
}
input[type="submit"]:active
{
  opacity: 0.6;
}





















/*

MEDIA

*/
@media (max-width: 450px) {
  body { font-size: 1rem; }
}



@media screen and (max-width: 768px) {
  .nav-btn {
    visibility: hidden;
  }
  .swiper-pagination-bullet {
    visibility: visible;
  }
  .section_b .container:before {
      left: 8px;
      width: 2px;
   }
   .section_b .timeline-block {
      width: 100%;
      margin-bottom: 30px;
   }
   .section_b .timeline-block-right {
      float: none;
   }

   .timeline-block-left {
      float: none;
      direction: ltr;
   }
   .main .image-data h2 {
  font-size: 25px;
  font-weight: 600;
  color: #fff;
}
   .main .swiper-navBtn {
    display: none;
  }
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }
  .book_page .container{
  grid-template-columns: 1fr ;
  }
  .row.primary {
    grid-template-columns: 1fr;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: #0009;
    padding-top: 1rem;
  }
  .nav__logo img {
    width: 50px;
  }
  .dropdown__sublink {
    background: transparent;
  }
  .section_f .container {
    grid-template-columns: 1fr;
  }
  .section_f img {
    max-width:200px;
  }
}

.nav__link {
  color: var(--white-color);
  background-color:transparent;
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
}


.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}


.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link, 
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color:#0009;
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
}

.dropdown__link i, 
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover, 
.dropdown__sublink:hover {
  background-color:#0009;
}

.dropdown__menu, 
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}


.dropdown__item:hover .dropdown__menu, 
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}
/
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}


.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color:rgba(0, 0, 0, 0.8);
}


/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }
  :root {
    --normal-font-size: 1rem;
  }
  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }
  .animated-button {
    height: 60px;
    margin-top:15px;
    padding:20px 40px;
  }

  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item, 
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu, 
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdown__link, 
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
}










