@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');
:root{
--white:white;
--black:black;
--btn-1:#E08D28;
--btn-2:#aa7c26;
--btn-3:#E0CA1B;
--btn-4:#E84F66;
--btn-5:#E0C466;
--btn-hov-1:#da7800;
--btn-hov-2:#967b4a;
--btn-hov-3:#ffe100;
--btn-hov-4:#E84F66;
--btn-hov-5:#695100;
}

*, *:after, *:before { 
  box-sizing: border-box; 
}
input:focus-visible {
  outline: none;
 
}
.row,.row>*{
  padding-left: 0;
  padding-right: 0;
}
*:focus:not(.focus-visible) {
  outline: none;
}
body{
  background-color: var(--white);
  direction: rtl;
  font-family: 'Almarai', sans-serif !important;
  font-size: 16px;
  margin: 0;
  padding: 0px;
  overflow-x: hidden;
  
}
h1,h2,h3,h4,h5,h6{
  color: var(--black);
}
li{
  padding: 5px 0px;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
  }
  body {
    margin: 0;
  }
  main {
    display: block;
  }
  h1 {
    font-size: 2em;
    margin: 0.67em 0;
  }
  hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
  }
  pre {
    font-family: monospace, monospace;
    font-size: 1em;
  }
  a {
    text-decoration: none;
    background-color: transparent;
    word-break: break-all;
  }
  abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
  }
  b,strong {
    font-weight: 900;
  }
  code,kbd,samp {
    font-family: monospace, monospace;
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  img {
    border-style: none;
  }
  button,input,optgroup,select,textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
  }
  button,input {
    overflow: visible;
  }
  button,select {
    text-transform: none;
  }
  button,[type="button"],[type="reset"],[type="submit"] {
    -webkit-appearance: button;
  }
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
  }
  button:-moz-focusring,
  [type="button"]:-moz-focusring,
  [type="reset"]:-moz-focusring,
  [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
  }
  fieldset {
    padding: 0.35em 0.75em 0.625em;
  }
  legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
  }
  progress {
    vertical-align: baseline;
  }
  textarea {
    overflow: auto;
  }
  [type="checkbox"],[type="radio"] {
    box-sizing: border-box;
    padding: 0;
  }
  [type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button {
    height: auto;
  }
  [type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
  }
  [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
  }
  details {
    display: block;
  }
  summary {
    display: list-item;
  }
  template {
    display: none;
  }
  [hidden] {
    display: none;
  }
a:hover{
  transition: all 0.3s;
}

img {
  max-width: 100%;
  display: block;
 
}
p{
  color: var(--black);
  font-size: 13px;
  font-weight: normal;
  line-height: 25px;
}
.container {
position: relative;
  padding-left: 15px;
  padding-right: 15px;
  margin-right: auto;
  margin-left: auto;
    
    
}
.title{
  display: inline-block;
  color:var(--black);
  position: relative;
  padding: 0px 0px 13px 0px;
  margin: 20px 0px;
  font-size: clamp(15px, 4vw, 45px);
}
.title:after {
  position: absolute;
  left: 50%;
  bottom: 0%;
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: var(--btn-1);
  transform: translate(-50%,0%)
}

.title::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 15px; 
    height: 15px; 
     background-color: var(--btn-1);

    border-radius: 50%;
    animation: moveBall 3s linear infinite;
}

@keyframes moveBall {
    0% {
        left: 0;
    }
    50% {
        left: calc(100% - 20px); 
    }
    100% {
        left: 0;
    }
}
.section210{
  padding: 43px 0px;
}
.main-price{
      display: flex;
    width: 150px;
    justify-content: center;
    
    background-color: var(--btn-1);
}
@media (min-width: 1200px) {
  .container{
      max-width: 1200px;
    }
  }
 
.main-images {
    display: flex;
    justify-content: center;
    height: 400px;
}

.main-img{
  width: 100%;
  object-fit: contain;
}
@media (max-width: 576px) {
  .main-images{
      height: 100%;
    }
  }
.header{
  position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 999;
    -webkit-transition: .3s;
    transition: .3s;
    background: transparent;
}

nav{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 999;
    -webkit-transition: .3s;
    transition: .3s;
    background: white;
        opacity: 0.6;
  }
  nav .wrapper{
    position: relative;
    max-width: 1300px;
    padding: 5px 28px;
    
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width:575px) {
  nav .wrapper{
    height: 60px;
 flex-direction: row-reverse;
  }
}
@media (max-width:990px) {
  
}
.logo-here{
  width: 75px;
}
@media (max-width:575px) {
  .logo-here{
    width: 47px;
  }
}
.logo-site{
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}


.newlia{
  transition: all 0.3s;
  color: var(--black) ;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 9px 13px;
  border-radius: 5px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  
}

.newlia:hover {
 color: orange;
}
@media (max-width:1200px) {
  .newlia {
    display: none;
  }
}
@media (min-width:1200px) {
  .logo-site::before{
  content: '';
    position: absolute;
    left: 50%;
    transform-origin: 50% 100%;
    transform: translateX(-50%) scale(1, 0.5);
    bottom: -32px;
      z-index: -1;
    height: 0;
    width: 450px;
    border-top: 310px solid #fff;
    border-left: 90px solid transparent;
    border-right: 90px solid transparent;
    pointer-events: none;
}
}

.number-header210 a{
  line-height: normal;
  color: var(--btn-1);
 display: flex;
    align-items: center;
    gap: 5px;
    fill: var(--btn-1);
    
}
.number-header210 a:hover{
  fill: var(--btn-hov-1);
  color:var(--btn-hov-1);
}
.logo-img{
      width: 47px;
    height: auto;
}
@media (max-width:575px) {
  .logo-site{
 display: none;
}
}
.wrapper .logo-site a{
  color: var(--black);
  font-size: 23px;
  font-weight: 500;
  text-decoration: none;
}
@media (max-width:1199px) {
  .wrapper .logo-site a{
    
    font-size: 19px;
  }
}
@media (max-width:575px) {
  .wrapper .logo-site a{
    
    font-size: 14px;
  }
}
.wrapper .nav-links{
  display: inline-flex;
  transition: all 0.6s ease;
      margin-top: 0px;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  transition: all 0.3s;
  color: var(--black) ;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 9px 13px;
  border-radius: 5px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  
}

.nav-links li a:hover {
 color: orange;
}

.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: #242526;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 13px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover {
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 20px;
  font-weight: 500;
  border-radius: 0px;
}


.wrapper .btn{
  color: var(--black);
  font-size: 38px;
  cursor: pointer;
  display: none;
}
.menu-btn-img{
  width: 28px;
}

.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 13px;
}
.radiobtn-menu {
  display: none!important;
}
@media screen and (max-width: 990px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 300px;
    
    top: 0;
    left: -100%;
    background: var(--white);
    display: block;
    padding: 50px 13px;
    line-height: 47px;
    overflow-y: auto;
    box-shadow: 0px 20px 20px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 20px 13px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 19px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 19px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 16px;
  }
  
}
nav input{
  display: none;
}

.section-hero210{
  position: relative;
  background-image: url(photos/pictures_header_692ed0dfdeb916.71137024.jpg);

    background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
}
.position-rel{
  position: relative;
  z-index: 1;
}
.hero-thumb210{
display: flex;
gap: 20px;
padding: 200px 0px;
align-items: center;
    justify-content: center;
}
@media (max-width:991px) {
  .hero-thumb210{
    flex-direction: column;
  }
}
.hero-box210{

}
.title-hero210{
  color: var(--white);
}
.hero-box-li210{
  display: flex;
  gap: 5px;
      align-items: center;
          margin: 13px 0px;
}
.hero-box-li210 a {
  color:var(--white);
transition: color 0.3s ease;
  font-size: clamp(15px,5vw,22px);
  font-weight: 900;
}
.hero-box-li210 a:hover{
  color: var(--btn-1);
}
.hero-item-svg210{
  width: 28px;
   fill: #f6c33b; ;


}
.hero-item-svg210 svg{
 width: 28px;
      animation: pulse .5s infinite alternate; 

}
.btn-hero210{
  display: flex;
    justify-content: center;
}
@keyframes pulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
.hero-box-form210{
  width: 40%;
}

@media (max-width:991px) {
  .hero-box-form210{
  width: 80%;
}
}
@media (max-width:575px) {
    .hero-box-form210{
  width: 100%;
}
}
@media (max-width:575px) {
  .checkbox-size{
font-size: 12px;
  
}
}
.hero-form-thumb210{
  background-color: var(--white);
      padding: 28px 25px;
}
.input-controlsectionpart{ 
    width: 100%;
    height: auto;
    min-height: 50px;
    padding: 20px 20px;
     border:none;
    -webkit-appearance: none;
    line-height: 20px;
    background: #f5f5f5;
    border-radius: 30px;}
    @media (max-width:575px) {
      .input-controlsectionpart::placeholder{
      font-size: 12px;;
    }
    }
    .input-controlsectionpart:focus{
      border: 2px solid var(--btn-1);
    }
.textarea-controlsectionpart{
     width: 100%;
    height: auto;
    min-height: 50px;
    padding: 20px 20px;
   border:none;
    -webkit-appearance: none;
    line-height: 20px;
    background: #f5f5f5;
    border-radius: 30px;
}
 .textarea-controlsectionpart:focus{
      border: 2px solid var(--btn-1);
    }
.form-box210{
  display: flex;
    flex-direction: column;
    gap: 13px;
}
.btn-form{
      color: #fff;
    background: #f6541c;
    border-color: #f6541c;
}
.hero-check210{
     gap: 5px;
    display: flex;
    align-items: center;
        justify-content: center;
}
.hero-forms-buttons210{
      display: flex;
    justify-content: center;
    margin-top: 20px;
}
.color-politic{
  color: var(--black);
}
.color-politic:hover{
  color: orange;
}
.watsapp{
  padding: 20px 13px !important;
  background-color: green!important;
  border: none!important;
}

.faq-thumb210{
  gap: 20px;
    display: flex;
    flex-direction: column;
}
.book {
      padding: 13px;
  position: relative;
  border-radius: 13px;
width: 100%;
  background-color: whitesmoke;
  -webkit-box-shadow: 2px 2px 13px #000;
  box-shadow: 2px 2px 13px #000;
  -webkit-transform: preserve-3d;
  -ms-transform: preserve-3d;
  transform: preserve-3d;
  -webkit-perspective: 2000px;
  perspective: 2000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #000;
}

.cover {
  top: 0;
  position: absolute;
  background-color: lightgray;
  width: 100%;
  height: 100%;
  border-radius: 13px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform-origin: 0;
  -ms-transform-origin: 0;
  transform-origin: 0;
  -webkit-box-shadow: 2px 2px 13px #000;
  box-shadow: 2px 2px 13px #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 1;
}

.book:hover .cover {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: rotatey(-80deg);
  -ms-transform: rotatey(-80deg);
  transform: rotatey(-80deg);
  opacity: 0;
}
@media (max-width:767px) {
  .book:hover .cover{
    opacity: 0;
  }
}
.txt-book-cover {
  font-size: 19px;
  font-weight: 900;
      padding: 0px 13px;
}

.container-blog {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin-block: 2rem;
  gap: 2rem;
}
.card {
  display: flex;
  flex-direction: column;
    width: 100%;
  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);

}
@media (min-width:768px) {
  .card{
    width:47%;
  }
}


.card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.card__body p{
  color: var(--black);
}

.tag {
  align-self: flex-start;
  padding: .25em .75em;
  border-radius: 1em;
  font-size: .75rem;
}

.tag + .tag {
  margin-left: .5em;
}

.tag-blue {
  background: #56CCF2;
background: linear-gradient(to bottom, #2F80ED, #56CCF2);
  color: #fafafa;
}

.tag-brown {
  background: #D1913C;
background: linear-gradient(to bottom, #FFD194, #D1913C);
  color: #fafafa;
}

.tag-red {
  background: #cb2d3e;
background: linear-gradient(to bottom, #ef473a, #cb2d3e);
  color: #fafafa;
}

.card__body h4 {
  font-size: 1.5rem;
  text-transform: capitalize;
  color: var(--black);
}

.card__footer {
  display: flex;
  padding:  20px;
  margin-top: auto;
}

.user {
  display: flex;
  gap: .5rem;
}

.user__image {
  border-radius: 50%;
  width: 75px;
   object-fit: cover;
}

.user__info > small {
  color: #666;
}
.user__info h5{
  color: var(--black);
}

.section-article{
  background-image: url(assets/images/dark-overlay-1366x7680.png);
   background-size: cover;
    background-repeat: no-repeat
}

.contai210 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 20px 0 80px;
}

.card210 {
 width: 100%;
  margin: 10px;
  background-color: white;
  box-shadow: 0 5px 13px 0 rgba(0, 0, 0, 0.5);
}
@media (max-width:575px) {
  .card210{
    height: 370px;
  }
}
@media (min-width:991px) {
  .card210 {
    width: 47%;
  }
}
.card210:hover .card__caption {
  top: 50%;
  transform: translateY(-50%);
}
.card210:hover .card__image {
  transform: translateY(-13px);
}
.card210:hover .card__thumb::after {
  top: 0;
}
.card210:hover .card__snippet {
  margin: 20px 0;
}
.card__thumb {
  position: relative;
  max-height: 400px;
  overflow: hidden;
}
@media (max-width:575px) {
  .card__thumb{
     margin: 5px;
  }
}
@media (min-width: 1024px) {
  .card__thumb {
    max-height: 500px;
  }
}
.card__thumb::after {
  position: absolute;
  top: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 40%, rgba(255, 255, 255, 0) 100%);
  transition: 0.3s;
}
@media (min-width: 1024px) {
  .card__thumb::after {
    top: calc(100% - 140px);
  }
}
.card__image {
  width: 100%;
  height: 350px;
  transition: 0.5s ease-in-out;
   object-fit: cover;
}
@media (max-width:575px) {
  .card__image{
        height: 340px;
           
  }
}
.card__caption {
  position: absolute;
  top: 50%;
  z-index: 1;
  padding: 0 20px;
  color: white;
  transform: translateY(-50%);
  text-align: center;
  transition: 0.3s;
}
@media (min-width: 1024px) {
  .card__caption {
    top: calc(100% - 110px);
    transform: unset;
  }
}
.card__title {
  color: wheat;
  display: -webkit-box;
  max-height: 85px;
  overflow: hidden;
  font-family: "Playfair Display", serif;
  font-size: 23px;
  line-height: 28px;
  text-shadow: 0px 2px 5px black;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.card__snippet {
  color: wheat;
  display: -webkit-box;
  max-height: 150px;
  margin: 20px 0;
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 20px;
  text-overflow: ellipsis;
  transition: 0.5s ease-in-out;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
@media (min-width: 1024px) {
  .card__snippet {
    margin: 60px 0;
  }
}
.card__button {
  display: inline-block;
  padding: 13px 20px;
  color: white;
  border: 2px solid white;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
}
.card__button:hover {
  color: black;
  background-color: white;
}



.sectionabout {
  position: relative;
   overflow: hidden;
    height: 450px;
}


.sectionabout::before {
    content: "";
    position: absolute;
    top: 0;
  left: -60px;
    width: 100%;
    height: 100%;
       background-image: linear-gradient(to right, #ffffff 60%, transparent 40%);
    transform: skew(-20deg); 
    z-index: 1; 
}

.sectionabout::after {
    content: "";
    position: absolute;
    top: 0;
        left: 30px;
    width: 100%;
    height: 100%;
    background-image: url('photos/thumbnails_header_692ed0dfdebc44.22071289.jpg');
      opacity: 0.7;
    background-size: cover;
    z-index: 0;
     background-position: center center;
}
@media (max-width:575px) {
  .sectionabout::after{
    opacity: 0;
  }
}
.sectionabout > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; 
}
.about-us-thumb210{
  display: flex;
  position: relative;
}
.about-us-thumb210page{
 display: flex;
    align-items: center;
    gap: 25px;
    flex-direction: row;
}
@media (max-width:990px) {
  .about-us-thumb210page{
    flex-direction: column;}
}
.about-us-box210{
flex: 1;
}

.about-us-box2101{
    width: 40%;
    float: left;
        left: 0;
    top: 0;
    position: absolute;
}
@media (max-width:575px) {
  .about-us-box2101{
    width: 100%;
    color: var(--white);
  }
}

.section-subscr{
  position: relative;
padding: 60px 0px;
background-image: url(photos/pictures_header_692ed0dfdebcb6.36825990.jpg);
}
.subs210-thumb{
    text-align: center;
}
.subs210-thumb h2{
  text-align: center;
  color: var(--white);
}
.subs210-thumb h5{
    color: var(--white);
  text-align: center;
}
.subs210-thumb div{
   display: inline-block;
      text-align: left;
}
.forma-subs210{
  display: flex;
    gap: 20px;
}
@media (max-width:575px) {
  .forma-subs210{
        flex-direction: column;
  }
}
.input-subscr210{
          width: 50%;

    height: auto;
    min-height: 50px;
    padding: 20px 20px;
    border-radius: 0;
    -webkit-appearance: none;
    line-height: 20px;
    background: #f5f5f5;
    border: 0;
}
@media (max-width:575px) {
  .input-subscr210{
    width: 100%;
  }
}

.testi210{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.testi210-box{
  display: flex;
    flex-direction: column;
    width: 32%;

    align-items: center;
}
@media (max-width:767px) {
  .testi210-box{width: 100%;}
}
.testi210-img{
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 50%;
}
.testi-jobname210{
  font-weight: 900;
    color: var(--btn-1);
    text-align: center;
}
.testi210-p{
  font-style: italic!important;
  text-align: center;
}

.section-footer210{
  background-image: url( assets/images/dark-overlay-1366x7680.png);
   background-size: cover;
    background-repeat: no-repeat
}
.footer-thumb210{
  display: flex;
  flex-direction: column;
  gap: 20px;
      align-items: center;
}

.footer-box210{
  display: flex;
  gap: 20px;
}
@media (max-width:990px) {
  .footer-box210{
        flex-direction: column;
    align-items: center;
  }
}
.footer-box210 a {
  color: var(--black);
  transition: all 0.3s;
}
.footer-box210 a:hover{
  color: orange;
}

.section-page-aboutus{
  padding:107px0px;
}
.about-us-thumb210{
display: flex;
    align-items: center;
    gap: 25px;
}
.about-us-page210{
    flex: 1;

}

.about-us-video {
  position: relative;
    flex: 1;
width: 100%;
  height: 650px;
  overflow: hidden;
}

.title-cont210{
   font-size: clamp(15px, 4vw, 25px);
}
@media (max-width:767px) {
  .title-cont210{
   display: none;
}
}
.form {
  width: 100%;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0px 0px 0px 5px rgba(52, 52, 53, 0.185);
  display: flex;
  flex-direction: column;
  border-radius: 13px;
}

.title-form {
  text-align: center;
  font-size: 33px;
  margin-bottom: 20px;
  color: #1a202c;
}

.label {
  color: rgb(0, 0, 0);
  margin-bottom: 5px;
}

.input {
  padding: 13px;
  margin-bottom: 20px;
  width: 100%;
  font-size:  16px;
  color: #4a5568;
  outline: none;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}

.input:focus {
  background-color: #fff;
  box-shadow: 0 0 0 2px var(--btn-hov-1);
}

.input:valid {
  border: 2px solid green;
}

.input:invalid {
  border: 2px solid var(--btn-1);
}

.submit {
  background-color: #1a202c;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 13px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.container-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.container-check {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 19px;
  user-select: none;
}


.checkmark {
  position: relative;
  top: 0;
  left: 0;
  height: 1.3em;
  width: 1.3em;
  background-color: #e5e5e5;
  border-radius: 50%;
}

.container-check input:checked ~ .checkmark {
  background-color:var(--btn-1);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container-check input:checked ~ .checkmark:after {
  display: block;
}

.container-check .checkmark:after {
    left: 0.55em;
    top: 0.35em;
  width: 0.25em;
  height: 0.5em;
  border: solid white;
  border-width: 0 0.15em 0.15em 0;
  transform: rotate(45deg);
}

.checkbox-box210{
align-self: center;
}
@media (max-width:575px) {
  .checkbox-box210 label{
  font-size: 12px;
}
}
.confcolor{
  color: var(--btn-1);
}
.butt-box210{
      margin: 20px 0px;
    align-self: center;
}
.cardss210-thumb{
display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cardss210 {
  position: relative;
  width: 300px;
  min-width: 300px;
  height: 200px;
  background:var(--btn-1);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  flex-direction: column;
}
@media (max-width:767px) {
  .cardss210 {
    width: 100%;
  }
}

.cardss210 svg {
  width: 48px;
  fill: #333;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  animation: pulse 1s infinite alternate;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}


@media (max-width:767px) {
  .cardss210 svg {
    display: none;
  }
}

.cardss210:hover {
  box-shadow: 0 13px 20px rgba(0, 0, 0, 0.2);
}

.cardss__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  background-color: var(--btn-hov-1);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  align-items: center;
    justify-content: center;
    display: flex;
}
@media (max-width:767px) {
  .cardss__content{
        transform: translate(-50%, -50%) rotate(-0deg);
        opacity: 1;
  }
}
.cardss__content a {
  font-weight:700;
  color: var(--black);
}
.cardss210:hover .cardss__content {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 1;
}

.cardss__title {
  margin: 0;
  font-size: 23px;
  color: #333;
  font-weight: 900;
}

.cardss__description {
  margin: 13px 0 0;

  color: #777;
  line-height: 1.3;
  font-size: 16px;
}

@media (max-width:575px) {
  .cardss__description { 
     font-size: 13px;}
}
.cardss210:hover svg {
  scale: 0;
  transform: rotate(-45deg);
}
.btn210{
  cursor: pointer;
  padding: 13px;
    font-family: "Lato", Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 900;
    line-height: 2;
    transition: 0.33s all ease-in;
    border-radius: 30px;
    border: 2px solid;
    text-transform: uppercase;
    letter-spacing: .2em;
    white-space: normal;
    max-width: 100%;
     color: #fff;
    background: var(--btn-1);
    border-color: var(--btn-1);
}
.btn210:hover{
      color: #fff;
    background: var(--btn-hov-1);
    border-color: var(--btn-hov-1);
}


.overHidden{
  overflow: hidden;
}

.forma-right iframe{
  border: 0;
}

@media(max-width: 992px){
  nav{
    opacity: 1;
  }
}
.paddPoli{
  padding: 20px 0;
}