@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&family=Skranji&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&family=Young+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    font-family: 'Lato', sans-serif !important;
    max-width: 100% !important;
}
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #4c4a38;
}

::-webkit-scrollbar-thumb {
  background: #b09a51;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #deb738;
}

::-webkit-scrollbar-corner{
  background: #b09a51;

}

body{
    background: #4c4a38;
}

html{
    scroll-behavior: smooth;
}
.f{
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.center{
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #222;
}
.stop{
  display: none !important;
}
.ring{
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  animation: ring 2s linear infinite;
}
@keyframes ring {
  0%{
    transform: rotate(0deg);
    box-shadow: 1px 5px 2px #b09a51;
  }
  50%{
    transform: rotate(180deg);
    box-shadow: 1px 5px 2px #231f20;
  }
  100%{
    transform: rotate(360deg);
    box-shadow: 1px 5px 2px #b09a51;
  }
}
.ring:before{
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(255,255,255,.3);
}
.span{
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 200px;
  animation: text 3s ease-in-out infinite;
}
@keyframes text {
  50%{
    color: black;
  }
}

header {
    width: 100%;
    height: auto;
    min-height: 100vh;
    background-color: #222
}

@keyframes bg{
    0%{
      background-image: url(../img/22.jpg);
      background-position: bottom 10%;
    }
    100%{
      background-image: url(../img/1.jpg);
    }
}
nav{
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 130px;
  background: #222;
  z-index: 99;
}
nav .navbar{
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 0 50px;
}
.navbar .logo a img{
  width: 200px;
  padding: 22px;

}
nav .navbar .nav-links{
  line-height: 130px;
  height: 100%;
  margin-right: 50px;
}
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: 16px;
  font-weight: 500;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }
nav .navbar .links li .arrow{
  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: #222;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
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: 100px;
  display: flex;
}

.navbar .search-box b{
  position: relative;
  height: 100%;
  line-height: 35px;
  text-align: center;
  font-size: 20px;
  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: #2222223b;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  display: flex;
}
.navbar.showInput .search-box .input-box{
  top: 45px;
  left: -16px;
  position: absolute;
  width: 200px !important;
  opacity: 1;
  pointer-events: auto;
  background: #2222223b;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.navbar.showInput .search-box .input-box a b {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 10px;

}
.navbar.showInput .search-box .input-box a b img{
  width: 35px;
  height: 35px;
}

.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #2222223b;
  top: -1px;
  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;
}

.homescreen{
  width: 100%;
  height: 82vh;
}

.s-top{
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: space-around;
  padding: 10px;

}
.ht{
  height: 100%;
}
.s-bottom{
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: space-around;
  padding: 10px 10px 0px 10px;
}

.s1{
  width: 50%;
  height: 100%;
  background-image: url(../img/magnatic-950-350.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 10px;
  margin-right: 30px !important;

}
.s2{
  width: 50%;
  height: 100%;
  background-image: url(../img/led-770-250.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 10px;

}
.s3{
  width: 50%;
  height: 100%;
  background-image: url(../img/magnatic-650-250.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 30px !important;
}
.s4{
  width: 50%;
  height: 100%;
  background-image: url(../img/led-500-350.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.s1,.s2,.s3,.s4{
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 20px;
  padding-left: 20px;
}

@media(max-width:750px){
  .s-top{
    flex-direction: column;
  }
  .s-bottom{
    flex-direction: column;
  }
  .s1,.s2,.s3,.s4{
    width: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-bottom: 20px;
    padding-left: 20px;
  }
  .s2,.s4{
    margin-top: 20px;
  }
}

.language{
  width: 35px;
  height: 35px;
}


@media (max-width:920px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 25px;
  }
  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding-left: 30px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 15px;
  }
}
.bx-menu{
  display: none;
}
@media (max-width:800px){
  .navbar .bx-menu{
    display: block;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background:  #222;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 25px;
    color: #fff;
  }
    .sidebar-logo  i,
    .navbar .bx-menu{
      font-size: 44px;
      color: #fff;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;
}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    display: flex;
    align-items: center;
  }
  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
}
@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
}

.home-content{
    text-transform: capitalize;
    color: #fff;
    font-weight: 100;
    text-align: center;
    font-size: 10px;
    letter-spacing: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60vh;
    align-items: center;
    padding: 0 25px;
    font-family: 'Lato', sans-serif !important; 
}  

h1{
    display: flex;
    font-weight: 00;
    align-items: center;
    font-size: 35px;
    font-family: 'Lato', sans-serif !important; 
    text-transform: uppercase;
}

h1 span{
    letter-spacing: 4px;
    font-size: 35px;
    padding-right: 5px;
    padding-left: 5px;
}

h2{
    margin-top: 15px;
}

h3{
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 100;
}

.home-location{
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 5%;
}

.gold{
    color: #edc958;
}

.about{
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-text,
.about-img{
    width: 50%;
    height: auto;
}

.about-text{
    text-align: center !important;
    padding: 50px 20px 0px 100px;
}
.about-text h4{
    font-size: 40px;
    display: grid;
    grid-template-columns: repeat(3, 0.5fr);
    align-items: center;
    padding-bottom: 50px;
    color: #edc958;
    text-align : center !important;
}
.about-text h4::before,
.about-text h4::after{
    content: "";
    height: 2px;
    background-color: #edc958;
    display: block;
}

i{
    font-size: 40px;
    display: grid;
    grid-template-columns: repeat(3, 0.5fr);
    align-items: center;
}

.about-text p{
    font-size: 20px;
    font-weight: 100;
    color: rgb(183, 183, 183);
    letter-spacing: 1px;
}

.about-img img{
    width: 100%;
    height: auto;
}
@import url('https://fonts.googleapis.com/css2?family=Young+Serif&display=swap');
.items-links{
  width: 60%;
  margin: 40px auto;
  display: block;
}
.sma{
  width: 100%;
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bg{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center
}
.item-link{
  border: 2px solid #938220;
  padding: 10px 30px;
  margin: 0 11px;
  font-size: 18px;
  font-weight: 500;
  color: #deb738;
  cursor: pointer;
  border-radius: 30px;
  transition: .4s ease;
}
.item-link:hover , .item-link.active{
  background: #938220;
  color: #fff;
}
.gallery{
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0 50px;
}
.gallery pre{
    font-size: 50px;
    font-weight: 100 !important;
    text-align: center;
    color: #edc958;
    text-transform: uppercase;
  }

.gallery pre::before,
.gallery pre::after{
    content: "";
    height: 2px;
    background-color: #edc958;
    display: block;
}

.content-gallery{
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: 0.6s;
}
.content-gallery:hover{
  opacity: 1;
}
.content-gallery h5{
  font-size: 30px;
  color: #eccc60;
  padding-top: 50%;
}
.content-gallery p{
  font-size: 16px;
  color: #eaeaea  ;
}


.centerItem{
    display: flex !important;       
    align-items: center !important;      
    justify-content: center !important; 
  }
  .topBar{
    grid-area: n;
    display: flex;
    align-items: center;
    padding-right: 20px;
    animation: 5s ease-out 0s 1 fadeIn !important;
  }
  span{
    box-sizing: border-box;
    position: relative;
  }
  strong{
    font-weight: 800;
    -webkit-text-stroke: 1px black;
  }
  .leftNavBar{
    grid-area: m;
    align-self: start;
  }
  .leftNavBar ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    transform: rotate(180deg);
  }
  .leftNavBar ul li{
    writing-mode: vertical-rl;
    padding-top: 6vh;
    transform: translateX(25%);
  }
  li a.active{
    display: block;
    padding-left: .5em;
    animation: 3s ease-out 0s 1 slideInFromBottomActive;
  }
  .aside{
    grid-area: a;
    display: grid;
    position: relative;
    top: -2px;
    align-content: end;
  }
  .aside i{
    color: #632C65 !important;
  }
  .aside a{
    display: block;
    font-size: 1em;
    letter-spacing: 0 !important;
    padding-bottom: 2em;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,.1)) 
            drop-shadow(3px 3px 3px rgba(0,0,0,.1));
  }
  .aside a:nth-child(1){
    animation: slideInFromTop 2s ease-out 0s;
  }
  .aside a:nth-child(2){
    animation: slideInFromTop 1s ease-out 0s;
  }
  .aside a:nth-child(3){
    animation: slideInFromTop .5s ease-out 0s;
  }
  .aside a:nth-child(4){
    animation: slideInFromTop .25s ease-out 0s;
  }
  .container1{
    background: none;
    grid-area: c;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-auto-rows: 200px;
    grid-gap: 20px;
    grid-auto-flow: dense;
    overflow: auto;
    max-width: 100% !important;
    padding-right: 20px;  
  }
  .container1 {
      -ms-overflow-style: none;  // IE 10+
      overflow: -moz-scrollbars-none;  // Firefox
  }
  .container1::-webkit-scrollbar { 
      display: none;  // Safari and Chrome
  }
  .container1>div{
    z-index: 1;
    position: relative;
    padding: 0;
    overflow: hidden;
    box-shadow: 5px 5px 10px rgba(0,0,0,.2), 
                5px 5px 25px rgba(0,0,0,.1);
    transition: all .3s ease-in-out;
  }
  .container1 div img{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    transition: all .6s ease-in-out;
  }

  .card{
    padding: 0 !important;
    width: 100%;
    height: 50%;
    bottom: -50%;
    padding: 1em !important;
    box-sizing: border-box;
    background: rgba(255,255,255,.5);
    border-top-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
  }
  .vertical{
    grid-row: span 2;
  }
  .horizontal{
    grid-column: span 2;
  }
  .big{
    grid-row: span 2;
    grid-column: span 2;
  }
  
  
  
  button:hover{
    cursor: pointer;
  }
  .menu-icon {
    width: 16px;
    height: 1px;
    border: none !important;
    background: black;
    position: relative;
    transform: translateY(-700%);
    transition: opacity .2s ease-in-out;
    }
  .menu-icon::after {
      content: '';
      width: 6px;
      height: 1px;
      background: black;
      position: absolute;
      top: 10px;
      left: 0px;
    } 
  .menu-icon::before{
      content: '';
      width: 10px;
      height: 1px;
      background: black;
      position: absolute;
      top: 5px; 
      left: 0;
  }
  



@media (min-aspect-ratio: 16/9){
    .back-video{
        width: 100%;
        height: auto;
    }
}
@media (max-aspect-ratio: 16/9){
    .back-video{
        width: auto;
        height: 100%;
    }
}
.block{
    display: block !important;
    
}
.none{
  display: none !important;
}
@media only screen and (max-width:880px) {
    .nav{
      display: none;
      width: 100vw;
      height: 100vh;
      background: #111315;
    }
    .top-nav{
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100vw;
      height: 25%;
    }
    .top-nav b{
      color: #fff;
      font-size: 33px;
      padding-right: 50px;
      cursor: pointer;
    }
    .nav-mobile{
      width: 100%;
      height: 60%;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 10%;
    }
    .nav-mobile hr{
      width: 50%;
    }
    .nav-mobile li{
      padding: 10px 0;
    }
    .nav-mobile li a{
      color: #fff;
      font-size: 32px;
    }
    .nav .logo{
      padding: 30px;
    }
    .nav .logo img{
      width: 150px;
    }
    .lang-mobile{
      width: 100%;
      height: 10%;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-around;
      bottom: 0;
    }
    .lang-mobile .ar a, .lang-mobile .en a{
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .lang-mobile .ar a b, .lang-mobile .en a b{
      padding-left: 11px;
    }
    .lang-mobile img{
      width: 50px;
    }
    nav{
        display: flex;
        justify-content: space-between;
    }
    nav ul {
        display: none;
    }
    nav .logo img{
        width: 200px;
    }
    .lang{
        display: none;
    }
    h1{
        display: block;
    }
    .home-location{
        flex-direction: column-reverse;
    }
    .menu{
        display: flex;
        justify-content: left;
    }
    .menu img{
        margin-right: 40px;
    }
    .about{
        position: relative;
        display: flex;
        flex-direction: column-reverse !important;
    }
    .about-img,.about-text{
        width: 100%;
    }
    .about-img{
        padding-top: 50px;
        
    }
    .about-text{
        padding: 0 44px 40px;
    }
}


@media only screen and (max-width:333px) {
    nav .logo img{
        width: 130px !important; 
    }
    .about-text h4{
        font-size: 30px;
    }
}





a#scroll-btn {
    position: absolute;
    height: 8em;
    width: 5em;
    border: 0.5em solid #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3em;
    margin-top: 350px;
}
a#scroll-btn:before {
    position: absolute;
    content: "";
    margin: auto;
    left: 0;
    right: 0;
    top: 1.2em;
    height: 1.2em;
    width: 1.2em;
    background-color: #b09a51;
    border-radius: 50%;
    animation: move-down 2s infinite;
}

@keyframes move-down {
    80% {
      opacity: 0.5;
    }
    100% {
      transform: translateY(5.3em);
      opacity: 0;
    }
}

a#scroll-btn:after {
    position: absolute;
    content: "";
    width: 12em;
    display: block;
    width: 12em;
    text-align: center;
    left: -4.2em;
    bottom: -2.5em;
    font-size: 1.6em;
    color: #ffffff;
    letter-spacing: 3px;
    font-weight: 600;
}

#about {
    background-color: #302f28;
    color: #ffffff;
    font-size: 2.7em;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
  }

@media screen and (max-width: 500px) {
    a#scroll-btn {
      font-size: 12px;
    }
}

@media screen and (max-width: 450px) {
  .navbar .logo a img{
    width: 150px;
    margin-left: 30px
  }
  .navbar .search-box{
    justify-content: right;
  }
  .navbar.showInput .search-box .input-box {
    right: 0 !important;
    left: 30px;
  }
  .navbar .search-box b{
    font-size: 0px;
  }
  .navbar.showInput .search-box .input-box a b pre{
    font-size: 0px;
  }
  .search-box .input-box::before{
    width: 0px;
  }
  .navbar.showInput .search-box .input-box a b img{
    width: 30px !important;
    height: auto;
  }
  
}
@media screen and (max-width: 375px) {
  .navbar .logo a img{
    margin-left: 22px;
  }
}
@media screen and (max-width: 333px) {
  .navbar .search-box{
    width: 25%;
  }
  .navbar.showInput .search-box .input-box {
    right: 0;
    left: 13px;
  }
  .navbar .logo a img{
    margin-left: 12px;
  }
}
@media screen and (max-width: 300px) {
  .navbar .logo a img{
    margin-left: 3px;
  }
}
@media screen and (max-width: 285px) {
  .navbar .logo a img {
    padding: 33px 20px;
  }
}
@media only screen and (max-width: 1175px) {
  .contact{
    padding: 100px 0;
    height: auto !important;
  }
  .content{
    padding-left: 0px !important;
    padding-top: 5%;
  }
  .ab,.co,.oh{
    padding: 0px !important;
    width: 80% !important;
    text-align: center;
    padding-bottom: 50px !important;
  }
}

@media screen and (max-width: 575px) {
  .content{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-height: 666px) {
  .home-location{
    padding-top: 2%;
  }
}

.contact{
  width: 100%;
  height: 60vh;
  background: #302f28;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.contact h6{
  color: #fff;
  font-size: 40px;
}

.content{
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  color: #c2c2c2;
  padding-left: 5%;
  height: auto;
}
.ab,.co,.oh{
  width: 30%;
  padding: 0 60px;
  height: auto;
}
.loc{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
}
.loc img{
  width: 15px;
}
.copy{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  background-color: #b09a51;
}

.copy b{
  color: #000;
}

.copy b a{
  color: #4c4a38;
}

.social-media a img{
  width: 33px;
  margin: 20px 5px 0px;
}
.icons{
  list-style: none;
}
.icons li{
  height: 33px;
  width: 33px;
  display: inline-block;
  cursor: pointer;
  position: relative;
}
.icons li:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  border-radius: 10%;
  background: linear-gradient(45deg, #7b00e0, #ae31d9);
  transition: all 0.3s ease-in;
}
.icons li:hover:before{
  transform: rotate(360deg);
  border-radius: 100%;
}
.icons li a span{
  font-size: 27px;
  line-height: 70px;
  color: #fff;
  transition: all 0.3s ease-out;
}
.icons li:hover a span{
  color: #b09a51;
  transform: scale(1.2);
}
.t{
  font-size: 25px;
  color: #fff;
  font-weight: 700;
}

.title h6::before,
.title h6::after{
    content: "";
    height: 2px;
    background-color: #fff;
    display: block;
}








.container{
  margin: 0 auto;
  width: 85%;
  height: auto;
  background: #231f20;
  border-radius: 22px;
  padding: 20px 60px 30px 40px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  
}
.container h2{
  color: #ffffff;
  padding-top: 3%;
  font-size: 35px;
  font-weight: 700;
  text-shadow: 1px 1px #b09a51;
  text-align: center;
}
.container .content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 3%;
}
.container .content .left-side{
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}
.content .left-side::before{
  content: '';
  position: absolute;
  height: 70%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #b6b6af;
}
.content .left-side .details{
  margin: 14px;
  text-align: center;
}
.content .left-side .details i{
  font-size: 30px;
  color: #938920;
  margin-bottom: 10px;
}
.content .left-side .details .topic{
  font-size: 18px;
  font-weight: 500;
}
.text-one a{
  color: #b6b5af;
}
.content .left-side .details .text-one,
.content .left-side .details .text-two{
  font-size: 14px;
  color: #b6b5af;
}
.container .content .right-side{
  width: 75%;
  margin-left: 75px;
}
.content .right-side .topic-text{
  font-size: 23px;
  font-weight: 600;
  color: #deb738;
  text-shadow: #000 0.3px 0.3px;
}
.right-side .input-box{
  height: 50px;
  width: 100%;
  margin: 12px 0;
}
.right-side .input-box input,
.right-side .input-box textarea{
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #4c4a38;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}
::-webkit-input-placeholder{
  color: #bdbdbd;
}
textarea:focus, input:focus {
  color: #fff;
}

input, select, textarea{
  color: #fff;
}
.right-side .message-box{
  min-height: 110px;
}
.right-side .input-box textarea{
  padding-top: 6px;
}
.right-side .button{
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}
.right-side .button .sm {
  display: flex;
}
.right-side .button .sm a{
  margin-right: 22px;
}
.right-side .button .sm a i{
  width: 33px;
  height: 33px;
  background-image: url(../img/icons8-instagram-50.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.right-side .button .sm a:nth-child(2) i{
  background-image: url(../img/icons8-facebook-50.png);
}
.right-side .button .sm a:nth-child(3) i{
  background-image: url(../img/icons8-youtube-50.png);
}
.right-side .button .sm a:nth-child(4) i{
  background-image: url(../img/icons8-tiktok-50.png);
}
.right-side .button .sm a:nth-child(5) i{
  background-image: url(../img/icons8-whatsapp-64.png);
}
.right-side .button input[type="submit"]{
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: #938220;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button input[type="submit"]:hover{
  background: #dde01d;
  color: #222;
}
@media (max-width: 950px) {
  .container{
    width: 90%;
    padding: 30px 40px 40px 35px ;
  }
  .container .content .right-side{
   width: 75%;
   margin-left: 55px;
}
}
@media (max-width: 820px) {
  .container{
    margin: 0 auto;
    height: 100%;
  }
  .container .content{
    flex-direction: column-reverse;
  }
 .container .content .left-side{
   width: 100%;
   flex-direction: row;
   margin-top: 40px;
   justify-content: center;
   flex-wrap: wrap;
 }
 .container .content .left-side::before{
   display: none;
 }
 .container .content .right-side{
   width: 100%;
   margin-left: 0;
 }
}

.copyRight{
  width: 100%;
  height: 10vh;
  background-color: #111315;
  display: flex;
  justify-content: center;
  align-items: center;
}
.copyRight b{
  color: #c2c2c2;
  text-align: center;
}
.copyRight b br{
  display: none;
}

@media (max-width: 500px){
  .copyRight b br{
    display: block;
  }
  .right-side .button{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .right-side .button .sm{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
  }
}
@media (max-width: 600px){
  .copyRight{
    font-size: 12px;
  }
}
@media (max-width: 375px){
  .copyRight{
    font-size: 10px;
  }
  
  
  .right-side .button .sm a{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
  }
}
@media (max-width: 320px){
  .content .left-side .details .text-one, .content .left-side .details .text-two{
    font-size: 10px;
  }
}

.item-link{
  text-align: center;
}
@media (max-width:1024px){
  .items-links{width: 90%;}
}
@media (max-width:920px){
  .items-links{width: 100%;}
}
@media (max-width:688px){
  .items-links{
    justify-content: space-between;
    gap: 0;
  }
  .item-link{
    font-size: 10px;
    padding: 10px 20px;
  }
}
@media (max-width:600px){
  .items-links{
    justify-content: space-between;
    gap: 0;
  }
}
@media (max-width:400px){
  .item-link{
    font-size: 8px;
    padding: 10px 17px;
  }
}
@media (max-width:333px){
  .item-link{
    font-size: 8px;
    padding: 10px 10px;
  }
}
@media (min-width:377px){
  .right-side .button .sm {
      margin-left:10px;
  }
}
@media (max-width:285px){
  .item-link{
    font-size: 8px;
    padding: 10px 7px;
  }
}
.big{
  animation: SclAnimation .4s ease;
}

@keyframes SclAnimation {
  0%{
    transform: scale(0);
  }
  100%{
    transform: scale(1);
  }
}



.hidden-title{
  display: none;
}




html {
	scroll-behavior: smooth;
}

.back-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #222;
	border-radius: 50%;
	padding: 1rem;
	text-decoration: none;
	transition: 0.2s ease-out;
  z-index: 1000;
}

.back-to-top span {
	color: #fff;
	font-size: 3rem;
	transition: 0.2s ease-out;
}

.back-to-top:hover {
	background-color: #222;
}
.back-to-top:hover span {
	transform: translateY(-4px);
}
.whatsapp{
  background-image: url(../img/icons8-whatsapp-64.png);
  padding: 2rem;
}