html {
  scroll-behavior: smooth;
}
body {
  font-size: 1rem;
  font-family: "Instrument Sans", sans-serif;
  color: #242424;
}

a,
a:hover {
  text-decoration: none !important;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

ul {
  padding-left: 0px;
  list-style-type: none;
  margin: 0;
}
img {
  display: block;
  max-width: 100%;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

@media (min-width: 1366px) {
  .cmpad {
    max-width: 1526.4px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (max-width: 1366px) {
  .cmpad {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (max-width: 991px) {
  .cmpad {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .cmpad {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 575px) {
  html {
    font-size: 90%;
  }
}

@media (min-width: 768px) {
  ::-webkit-scrollbar {
    width: 10px;
    height: 6px;
  }
  ::-webkit-scrollbar-track {
    background-color: #eee;
  }
  ::-webkit-scrollbar-thumb {
    background-color: #3a3a3a;
  }
  ::-webkit-scrollbar-thumb:hover {
    background-color: #444;
  }

  .custscroll::-webkit-scrollbar,
  .custscroll::-webkit-scrollbar-thumb {
    border-radius: 13px;
    width: 6px;
    height: 6px;
    background-clip: padding-box;
    background: transparent;
  }
  .custscroll::-webkit-scrollbar-track {
    background: transparent;
  }
  .custscroll:hover::-webkit-scrollbar-thumb {
    background-color: #ccc;
  }
  .custscroll::-webkit-scrollbar-thumb:hover {
    background-color: #999;
  }

  .custscrollA::-webkit-scrollbar {
    border-radius: 13px;
    width: 6px;
    height: 6px;
    background-clip: padding-box;
    background: transparent;
  }
  .custscrollA::-webkit-scrollbar-track {
    background: transparent;
  }
  .custscrollA::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 6px;
  }
  .custscrollA::-webkit-scrollbar-thumb:hover {
    background-color: #999;
  }
}

.obcover{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*---------------------------------------*/
/*::::::::::::::::HEADER:::::::::::::::::*/
/*---------------------------------------*/
header {
  position: fixed;
  width: 100%;
  z-index: 99;
  transition: 0.3s;
  /* background-color: white; */
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}
header:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 50px;
  background: #c90404;
}

header.active {
  background-color: #c90404;
  box-shadow: 0px 0px 20px #00000043;
  transition: 0.3s;
  border-bottom: 1px solid rgb(255 255 255 / 35%);
}

header.active a.mainli {
  color: rgb(255 255 255 / 90%);
}

header .headmain {
  display: flex;
  padding: 15px 0;
  transition: 0.3s;
}

header.active .headmain {
  padding: 5px 0;
  transition: 0.3s;
}
header .headmain .logocol {
  width: 260px;
  transition: 0.3s;
}
header .headmain .logocol img {
  width: 100%;
  transition: 0.3s;
  height: 100%;
  object-fit: contain;
}
header.active .logocol img {
  /* /* width: 70px;
  /* transition: 0.3s;  */
  filter: brightness(0);
} 

header .headmain .menucol {
  flex: 1 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}
header .menucen {
  display: flex;
  align-items: center;
  /* justify-content: flex-end; */
  gap: 1.8rem;
  position: relative;
}
header .menucen .active {
  border-bottom: 2px solid #333;
}

.bttn {
  position: relative;
  z-index: 3;
  transition: 0.4s;
  background: black;
  color: white;
  border-radius: 50px;
  height: 45px;

  display: flex;
  align-items: center;
  padding: 0 25px;
  overflow: hidden;
  transition: 0.4s;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  padding-right: 8px;
}

.bttn::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 100%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  transform-origin: 100% 50%;
  transform: scale3d(1, 2, 1);
  transition: transform 0.4s, opacity 0.4s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1);
}
.bttn span {
  background-color: #fff;  
  height: 35px;
  width: 35px;
  border-radius: 50%;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bttn span img {
  width: 13px;
  transition: 0.3s;
}
.whitebtn span img{
    filter: brightness(0)invert(1);
}
.whitebtn .bttn span{
    background-color: #000;
}
.bttn:hover {
  color: #222222;
}
.bttn:hover img {
  transform: rotate(45deg);
}

.bttn:hover::before {
  transform: scale3d(10, 9, 1);
  transform-origin: 100% 55%;
}

.menuend {
  display: flex;
  gap: 10px;
}
.menuend button {
  background: #f3f7f6;
  border: none;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}
.menuend button:hover {
  background-color: black;
}
.menuend button:hover img {
  filter: brightness(0) invert(1);
}
.menuend button img {
  width: 20px;
  filter: brightness(0);
}
header .megamenu {
  height: 100%;
  cursor: pointer;
}
header a.mainli {
  color: white;
  display: flex;
  height: 100%;
  align-items: center;
  font-weight: 500;
  font-size: 1rem;
  height: 40px;
  position: relative;
  transition: 0.3s;
  letter-spacing: 0.05rem;
}
header a.mainli:after {
  transition: 0.3s;
}
header a.mainli:hover:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #c90404;
  bottom: 0;
  transition: 0.3s;
}
header a.mainli.bttn:after {
  display: none;
}

header a.mainli:hover {
  color: #000;
}

ul.social {
  display: flex;
  margin-bottom: 0;
  gap: 5px;
}

ul.social li {
  display: block;
}

ul.social li:last-child {
  margin-right: 0;
}

ul.social li a {
  display: block;
  text-align: center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  font-size: 0.875rem;
}

ul.social li a i {
  width: 28px;
  height: 28px;
  line-height: 28px;
  display: block;
  text-align: center;
  /* border-radius: 0.3rem; */
  font-size: 0.95rem;
  color: rgb(255 255 255 / 80%);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

ul.social li a:hover i {
  color: #fff;
}

header.active .logocol{
        width: 100px;
}

/*---------------------------------------*/
/*::::::::::::::::SLIDER:::::::::::::::::*/
/*---------------------------------------*/

.slider {
  position: relative;
  width: 100%;
  height: 100vh;
}
.slider-con {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: flex-start;
  flex-flow: column;
  justify-content: center;
  padding-top: 5rem;
  width: 100%;
  left: 0;
  right: 0;
}
.slider .mainslider,
.slider .mainslider .swiper-slide,
.slider .mainslider .slideimg {
  height: 100%;
}
.slider .mainslider .slideimg {
  /* background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  position: relative; */
  /* animation: zoom-a 6s linear infinite alternate; */
}
.slider .mainslider .slideimg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes zoom-a {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.sliderbtn .bttn {
    background: #c90404;
    color: #fff;
    width: max-content;
}
.whitebtn .bttn{
    background: #fff !important;
    color: #000 !important;
}
.whitebtn .bttn:hover{
    color: #fff !important;
}
.whitebtn .bttn::before {
    background: #000 !important;
    color: #fff !important;
}
.sliderbtn .bttn::before {
  background: #000;
  color: #fff;
}
.sliderbtn .bttn:hover {
  color: #fff !important;
}
/* .sliderbtn .bttn:hover img {
  filter: brightness(0) invert(1);
} */

.slider .mainslider .slideimg:after {
  content: "";
  position: absolute;
  /*background: rgb(0 0 0 / 50%);*/
  background: rgba(220, 53, 69, 0.8);
  inset: 0;
  width: 100%;
  height: 100%;
}

.slider .mainslider .slideimg.mob {
  display: none;
}
.slider h3, .slider h1 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 3.3rem;
  font-weight: 700;

  max-width: 700px;
}
.slider h3 span, .slider h1 span {
  color: #22222200;
  font-size: 2.5rem;
  font-weight: 500;
  -webkit-text-stroke-width: 1px;
  stroke-width: 1px;
  -webkit-text-stroke-color: #ffffff;
  line-height: 40px;
  margin-bottom: 0;
  margin-top: 8px;
}

@media (max-width: 767px) and (orientation: portrait) {
  .slider .mainslider .slideimg.mob {
    display: block;
  }
  .slider .mainslider .slideimg.dsk {
    display: none;
  }
}

.slider-bottom {
  background-color: #660836;
}
.slider-bottom h2 {
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
}

.slider-btn {
  position: absolute;
  bottom: 1rem;
  width: 100%;
}

.slider-btn .swiper-button-next,
.slider-btn .swiper-button-prev {
  left: unset;
  right: unset;
  bottom: 1rem;
  top: auto;
  transition: 0.3s !important;
}

.slider-btn .swiper-button-next {
  left: 3rem;
  right: 0 !important;
  position: relative;
  /* bottom: 2rem; */
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 0.85rem;
  color: white;
  transition: 0.3s;
}
.swiper-button-next,
.swiper-button-prev {
  width: 38px;
  height: 38px;
  border: 1px solid white;
  transition: 0.3s;
  /* border-radius: 0.3rem; */
  color: #333;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #c90404;
  color: white;
  border: 3px solid #c90404;
  transition: 0.3s;
}
.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  color: black;
}

.social-sec {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}

.slider ul.social {
  display: grid;
}

/* ul.social:after {
  content: "";
  position: absolute;
  width: 0.1rem;
  height: 100px;
  background-color: rgb(255 255 255 / 30%);
  inset: 0;
  left: 0;
  right: 0;
  margin: auto;
  top: 14rem;
} */

ul.social li a i {
  background-color: #c90404;
  transition: 0.3s;
  color: black;
}

ul.social li a i:hover {
  background-color: rgb(255 255 255 / 90%);
  color: black;
}

.dropdown {
  position: relative;
  display: inline-block;
  transition: 0.3s;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 230px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  /* padding: 8px; */
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
  overflow: hidden;
  border-radius: 0.5rem;
  animation-name: zoomIn;
  animation-duration: 0.4s;
  animation-iteration-count: 1;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    /* -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); */
  }

  50% {
    opacity: 1;
  }
}

.dropdown:hover .dropdown-content {
  display: block;
  transition: 0.3s;
}

.dropdown:hover a.mainli {
  color: #000;
}

.dropdown-content a {
  font-size: 0.85rem;
  color: #343434;
  padding: 10px 15px;
  display: flex;
  transition: 0.3s;
  font-weight: 400;
  border-radius: 0.1rem;
}

.dropdown-content a:hover {
  color: black;
  background-color: #c90404;
}
.dropdown.megamenu {
  position: unset;
}
.dropdown.megamenu .dropdown-content {
  width: 100%;
  min-width: 100%;
  padding: 15px;
}
.dropdown.megamenu .dropdown-content ul {
  display: flex;
  margin: -5px;
  flex-flow: wrap;
}
.dropdown.megamenu .dropdown-content ul li {
  flex: 1 0 25%;
  max-width: 25%;
  padding: 5px;
}
.dropdown.megamenu .dropdown-content a {
  border: 1px solid #00000024;
  padding: 5px 10px;
  border-radius: 5px;
  transition: 0.3s;
}
.dropdown.megamenu .dropdown-content a:hover {
  border: 1px solid #c90404;
}

.counter {
    background-color: #ffffffeb;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 9;
    width: 380px;
    display: flex;
    padding: 15px 25px;
    align-items: center;
    gap: 60px;
    backdrop-filter: blur(3px);
}
.counter .head {
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 700;
  width: 100px;
  display: flex;
  align-items: center;
}
.counter .con {
  flex: 1 0;
  margin-bottom: 0;
  font-size: 1rem;
  color: #333;
}

/*---------------------------------------*/
/*::::::::::::::::::ABOUT::::::::::::::*/
/*---------------------------------------*/

.posindex{
    position: relative;
    z-index: 11;
}

.subhead {
  font-size: 0.735rem;
  border: 1px solid #00000024;
  border-radius: 15px;
  padding: 3px 10px;
  /* background: #c90404; */
  color: #333;
  font-weight: 500;
}
.mainhead {
  font-size: 3rem;
  font-weight: 700;
  margin-top: 10px;
  line-height: 50px;
}
.para {
  /* font-size: .95rem; */
  color: #333;
}
.about .para {
  width: 45%;
}
.flexVcenter {
  display: flex;
  flex-flow: wrap;
  align-content: center;
}
.abtbtm {
  margin-top: -10rem;
      position: relative;
    z-index: -1;
}
.abt-end {
  display: flex;
  align-items: center;
  padding-top: 10rem;
}
.visbox {
  display: flex;
  gap: 50px;
  background: #00000005;
  padding: 25px 20px;
}
.visbox .sec {
  width: 50%;
  position: relative;
  display: flex;
  gap: 30px;
  align-items: center;
}
.visbox .sec:not(:last-child):after {
  content: "";
  position: absolute;
  height: 70px;
  background-color: #00000021;
  width: 0.01rem;
  right: -20px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.visbox p {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.visbox h5, .visbox h4 {
  font-weight: 600;
  margin-bottom: 3px;
  font-size: 1.25rem;
}
.read {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(220, 53, 69, 0.8);
  transition: 0.3s;
  position: relative;
  z-index: 10;
}
.read:hover {
  color: black;
}
.visbox .sec img {
  width: 50px;
}
.visbox .sec .con {
  flex: 1 0;
}
/*---------------------------------------*/
/*:::::::::::::::::SERVICES:::::::::::::*/
/*---------------------------------------*/
.head-flex {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
}
.ser-img {
  position: absolute;
  left: 1rem;
  bottom: 0;
  z-index: -1;
  opacity: 0.1;
}
.ser-img img {
  width: 580px;
}
.ser-card {
  border: 1px solid #0000001f;
  padding: 40px 30px;
  padding-bottom: 30px;
  background-color: #c90404;
  position: relative;
  margin-top: 2rem;
}
.ser-card p {
  font-size: 0.95rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 8px;
  color: #fff;
}
.ser-card .ser-img {
  width: 45px;
  margin-bottom: 15px;
}

.ser-card h5, .ser-card h4 {
  font-weight: 600;
  color: #fff;
  font-size: 1.25rem;
}
.ser-card a{
  color: #000;
}
.ser-card a:hover{
  color: #fff;
}
.ser-card .sersub {
  width: 40px;
    height: 40px;
    background-color: #000000;
    display: flex;
    border: 1px solid #0000001f;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    position: absolute;
    top: -25px;
    transition: 0.3s;
}
.ser-card:hover .sersub {
  background-color: #ffffff;
    color: black;
    border: 1px solid #c90404;
}

.ser-card .ser-sec:before,
.ser-card .ser-sec:after {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  transition: all 0.2s linear;
  background: black;
}
.ser-card .ser-sec:before {
  right: 0;
  top: -1px;
  transition-delay: 0.2s;
}

.ser-card .ser-sec:after {
  left: 0;
  bottom: -1px;
  transition-delay: 0.6s;
}

.ser-card:hover .ser-sec:before {
  transition-delay: 0.4s;
}
.ser-card:hover .ser-sec:after {
  transition-delay: 0s;
}
.ser-card:hover .ser-sec:before,
.ser-card:hover .ser-sec:after {
  width: calc(100% + 1px);
}

.ser-card:hover .ser-sec1:before {
  transition-delay: 0.6s;
}
.ser-card:hover .ser-sec1:before,
.ser-card:hover .ser-sec1:after {
  height: calc(100% + 1px);
}
.ser-card .ser-sec1:before {
  transition-delay: 0s;
  left: -1px;
  top: 0;
}
.ser-card .ser-sec1:before,
.ser-card .ser-sec1:after {
  content: "";
  width: 1px;
  height: 0;
  position: absolute;
  transition: all 0.2s linear;
  background: black;
}
.ser-card .ser-sec1:after {
  transition-delay: 0.4s;
  right: -1px;
  bottom: 0;
}
.ser-card:hover .ser-sec1:after {
  transition-delay: 0.2s;
}

/*---------------------------------------*/
/*::::::::::::::::::PROJECTS::::::::::::::*/
/*---------------------------------------*/
.projects {
  position: relative;
}
.projects::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 300px;
  background-color: #c90404;
  inset: 0;
  z-index: -1;
}
.prosec {
  position: relative;
  transition: 0.3s;
  overflow: hidden;
  cursor: pointer;
}
.prosec p {
  position: absolute;
  bottom: 0;
  color: white;
  z-index: 1;
  margin-bottom: 0;
  padding: 15px 20px;
  font-size: 1.2rem;
  font-weight: 600;
  width: 100%;
}
.prosec span:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 50.73%,
    rgba(0, 0, 0, 0.7) 100%
  );
  bottom: 0;
}
.prosec:hover img {
  transform: scale(1.1);
}
.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.ov-hidden {
  overflow: hidden;
}
.hook {
  position: absolute;
  right: 25%;
  z-index: 9;
  top: -80px;
  width: 90px;
}
/*---------------------------------------*/
/*::::::::::::::::::VALUES:::::::::::::::*/
/*---------------------------------------*/
.values {
  position: relative;
}
.values:before {
  content: "";
  position: absolute;
  width: 60%;
  height: 100%;
  background-color: #00000008;
  right: 0;
  z-index: -1;
}
.value-list {
  display: flex;
  flex-flow: wrap;
}
.value-list li {
  flex: 1 0 50%;
  max-width: 50%;
  color: #333;
  position: relative;
  padding-left: 25px;
  padding-bottom: 10px;
  font-weight: 500;
}
.value-list li::before {
  content: "";
  position: absolute;
  background-image: url(../img/icons/list.svg);
  background-size: contain;
  width: 18px;
  height: 18px;
  left: 0;
  top: 3px;
}

/*---------------------------------------*/
/*::::::::::::::::::CONTACT::::::::::::::*/
/*---------------------------------------*/

.contact .man {
  width: 330px;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.contact .sec {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact .sec1,
.contact .sec2 {
  display: flex;
  gap: 20px;
  align-items: center;
}
.contact .sec img {
  width: 30px;
  filter: brightness(0);
  opacity: 0.7;
}
.contact .sec p {
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
}
.contact .sec span {
  font-size: 1rem;
  color: #666;
}
.contact .box {
  background-color: #00000005;
  background-image: url(../img/images/our-faqs-bg.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  border-radius: 30px;
  padding: 3rem 50px;
  padding-bottom: 0;
  max-width: 90%;
  margin: auto;
  /* margin-bottom: 3rem; */
  position: relative;
  overflow: hidden;
  border: 1px solid #00000012;
}

.arr {
  position: absolute;
  bottom: 70%;
  right: 0;
  width: 100px;
  height: 60px;
  animation: ctaarrowmove 3s infinite linear alternate;
}
@keyframes ctaarrowmove {
  50% {
    right: 15%;
  }
}
.contact input,
.contact select,
.contact textarea {
  width: 100%;
  border: 1px solid #0000001a;
  border-radius: 5px;
  padding: 8px 15px;
  font-size: 0.9rem;
  transition: 0.3s;
  color: #333;
}
.contact .mainhead {
  font-size: 2.5rem;
}
.contact input::placeholder,
.contact select::placeholder,
.contact textarea::placeholder {
  color: rgba(0, 0, 0, 0.356);
}
.contact input:focus,
.contact select:focus,
.contact textarea:focus {
  border: 1px solid #c90404;
  outline: none;
}

/*---------------------------------------*/
/*::::::::::::::::::CLIENTS::::::::::::::*/
/*---------------------------------------*/
.clients .mainhead {
  font-size: 2rem;
  line-height: normal;
}
.client-box {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}
.client-box img {
  height: 100px;
  width: 100%;
  object-fit: contain;
}
.client-box:hover {
  border: 1px solid #c90404;
}

.client-box:hover img {
  transform: scale(1.1);
}

/*---------------------------------------*/
/*::::::::::::::::::FOOTER::::::::::::::*/
/*---------------------------------------*/

footer {
  background-image: url(../img/images/footer-bg.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: rgb(255 255 255 / 75%);
  font-size: 0.9rem;
  padding-top: 4rem;
  padding-bottom: 1rem;
  position: relative;
}
footer:after {
  content: "";
  position: absolute;
  background-color: #1e1e1e61;
  inset: 0;
  width: 100%;
  height: 100%;
}
footer a {
  color: rgb(255 255 255 / 80%);
  transition: 0.3s;
}
footer a:hover {
  color: #c90404;
}

footer .line {
  width: 100%;
  background-color: rgb(255 255 255 / 10%);
  height: 1px;
  margin: 2.5rem 0;
}
.pow {
  text-align: right;
}
.pos {
  position: relative;
  z-index: 1;
}
.loc,
.phone,
.mail {
  position: relative;
  padding-left: 38px;
}

.loc:after,
.phone:after,
.mail:after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  font-size: 0.8rem;
  color: black;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #c90404;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc:after {
  content: "\f3c5";
}
.phone:after {
  content: "\f095";
}
.mail:after {
  content: "\f0e0";
}
.foot-logo {
  width: 230px;
  margin-bottom: 10px;
}
footer .social:after {
  display: none;
}
footer .social {
  display: flex;
}

.end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

footer ul.social li a i {
  font-size: 0.85rem;
}

.add-sec {
  display: flex;
  gap: 15px;
  flex-flow: column;
  flex-wrap: wrap;
}

.foot-cen {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-flow: column;
}
.foot-list {
  /* display: flex;
  gap: 30px;
  padding-bottom: 30px; */
}
.foot-list li:not(:last-child) {
  padding-bottom: 10px;
}

.serlist {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
  /* justify-content: center; */
}
.serlist li a {
  display: flex;
  border: 1px solid #ffffff29;
  padding: 5px 10px;
  font-size: 0.75rem;
  border-radius: 15px;
  transition: 0.3s;
}
.serlist li a:hover {
  border: 1px solid #c90404;
  color: #c90404;
}

.max-400 {
  max-width: 300px;
}

.link-color {
  color: black;
  transition: 0.3s;
  padding-left: 2px;
  font-weight: 500;
}

.link-color:hover {
  color: #e9c600;
}

.foot-add h5 {
  font-size: 1.1rem;
  color: rgb(255 255 255 / 90%);
  position: relative;
}

.foot-add h3 {
  font-size: 1rem;
  color: rgb(255 255 255 / 95%);
  position: relative;
}

.foot-add h3::before{
    position: absolute;
    content: '';
    height: 2px;
    width: 20px;
    background: #c90404;
    bottom: -6px;
}

.foot-add p {
  font-size: 0.85rem;
}

/* ///////// MOBILE SIDE MENU ////////// */

.sidebar {
  width: 450px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  overflow: hidden;
  background-color: rgb(0 0 0 / 95%);
  backdrop-filter: blur(5px);
  box-shadow: -20px 0 20px rgb(255 255 255 / 8%);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transform: translateX(calc(100% + 1rem));
}

/* .sidebar.show {
  width: 450px;
  opacity: 1;
} */

.sidebar.active {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  box-shadow: -15px 5px 20px rgb(0 0 0 / 10%);
}

.sidebar .sidehead .logo {
  width: 200px;
  display: flex;
}

.sidebar .sidehead .closebtn {
  font-size: 1rem;
  padding: 5px;
  border: none;
  background-color: #c90404;
  position: absolute;
  top: 3rem;
  right: 3rem;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  border-radius: 50px;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar .sidehead .closebtn:hover {
  color: #3a3a3a;
}
.sidebar .logo {
  width: 200px;
  display: flex;
  margin-bottom: 15px;
}
.sidebar .para {
  color: #e1e1e1;
}

.sidebar .sidemenu {
  padding: 0 2rem;
  overflow-y: auto;
  height: 100vh;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.sidebar h5 {
  color: #fffffff2;
  font-size: 1rem;
  margin-bottom: 10px;
}

.sidebar .sidemenu ul.menulist {
  display: flex;
  flex-flow: column;
  border-bottom: 1px solid #3b3b3b;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.sidebar .sidemenu ul.menulist li a {
  color: #e1e1e1;
  display: flex;
  align-items: center;
  padding: 5px 0;
  cursor: pointer;
  font-size: 0.9rem;
}

.sidebar .sidemenu ul.menulist li a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  width: 35px;
  height: 35px;
  /* border-radius: 50%; */
  font-size: 0.875rem;
  color: #e3e3e3;
  background-color: #ffffff26;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  border-radius: 50px;
}
.sidebar .sidemenu ul.menulist li a p {
  margin-bottom: 0;
  flex: 1 0;
}
.sidebar .sidemenu ul.menulist li a .icon img {
  width: 15px;
}

.sidebar .dropdown.show .dropdown-toggle {
  color: #3498db;
  background-color: #eaf3ea;
}

.sidebar .dropdown-toggle:after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  font-weight: 600;
  position: absolute;
  right: 10px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  border-top: 0;
}

.sidebar .dropdown.show .dropdown-toggle:after {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
}

.sidebar .dropdown-menu {
  position: relative !important;
  transform: none !important;
  width: 100%;
  padding: 0;
  border: none;
  background-color: transparent;
  border-radius: 0;
  font-size: 0.875rem;
  padding-left: 13px;
}

.sidebar .dropdown-menu a:hover {
  background-color: transparent !important;
}

/* .backtotop{
  position: fixed;
    right: 1rem;
    bottom: 1rem;
    background: #54c3bd;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 0px 20px #00000029;
} */
#backtotop {
  display: inline-block;
  background-color: #c90404;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#backtotop:hover {
  background-color: #2d8b86;
}
#backtotop.show {
  opacity: 1;
  visibility: visible;
}
#backtotop img {
  width: 15px;
}

.news-box {
  display: flex;
  gap: 20px;
  padding: 10px;
  border: 1px solid #00000014;
  border-radius: 10px;
  position: relative;
}
.news-box .img {
  width: 300px;
  border-radius: 8px;
}
.news-box .con {
  width: calc(100% - 300px);
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.news-box .con p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.news-box .con h5 {
  font-size: 1.2rem;
  font-weight: 600;
}
.cen {
  display: flex;
  align-items: center;
}

/* //////// MOBILE RESPONSIVE //////// */
@media (max-width: 1199px) {
  .abtbtm {
    margin-top: 0;
  }
  .abt-end {
    padding-top: 0;
  }
  .about .para {
    width: 100%;
  }
  .values .mainhead {
    font-size: 2.5rem;
    line-height: normal;
  }
}

@media (min-width: 991px) and (max-width: 1200px) {
  header .cmpad {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 991px) {
  header .menucen,
  .menuend .btn1 {
    display: none;
  }
  .visbox .sec {
    display: block;
  }
  .visbox .sec .img {
    margin-bottom: 10px;
  }
  .values:before {
    display: none;
  }
  .values .image-anime {
    width: 500px;
  }
  .hook {
    right: 5%;
    width: 60px;
  }
  .contact .man {
    position: relative;
  }
  .sidebar .sidehead .closebtn {
    top: 1rem;
    right: 1rem;
    height: 30px;
    width: 30px;
  }

  .sidebar .sidemenu {
    justify-content: flex-start;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .sidebar .logo {
    width: 170px;
  }
}

@media (min-width: 992px) {
  .menuend .btn2 {
    display: none;
  }
  .menulist.list {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .dsk {
    display: none;
  }
  .about .image-anime {
    width: 400px;
  }
  .arr {
    bottom: 80%;
    width: 65px;
  }
  .contact .box {
    padding: 30px;
    padding-bottom: 0;
  }
  .contact .sec {
    display: block;
    width: 100%;
  }
  .contact .sec1 {
    margin-bottom: 10px;
  }
  .sidebar {
    width: 350px;
  }
}
@media (min-width: 768px) {
  .mob {
    display: none;
  }
}

@media (max-width: 575px) {
  header .headmain .logocol {
    width: 180px;
  }
  header.active .headmain .logocol {
    width: 160px;
  }
  header .headmain {
    padding: 5px 0;
  }
  .menuend button {
    width: 40px;
    height: 40px;
  }
  .visbox {
    display: block;
  }
  .visbox .sec {
    width: 100%;
    margin-bottom: 15px;
  }
  .visbox .sec:not(:last-child):after {
    display: none;
  }
  .mainhead {
    font-size: 2.5rem;
    line-height: normal;
  }
  .ser-card {
    padding: 25px 13px;
    padding-bottom: 30px;
    margin-top: 2rem;
    padding-bottom: 15px;
  }
  .contact .mainhead {
    font-size: 2rem;
  }
  .values .value-list li {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .about .image-anime {
    width: 100%;
  }
  .arr {
    bottom: 70%;
  }
  .pow {
    text-align: left;
  }
  footer .line {
    margin: 1.5rem 0;
  }

  .counter {
    width: 300px;
  }
}

@media (max-width: 767px) {
  .sidebar {
    width: 300px;
  }
  .float-right {
    width: 100% !important;
  }
}

@media (max-width: 575px) {
  .news-box {
    display: block;
  }
  .news-box .img {
    width: 100%;
    margin-bottom: 10px;
  }
  .news-box .con {
    width: 100%;
  }
}
@media (max-width: 425px) {
  .sidebar {
    width: 300px;
  }
}

.chart-scroll {
  overflow: hidden;
  overflow-x: auto;
}
.chart {
  width: 800px;
  margin: auto;
}

#policy .card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
}

#policy i {
  display: inline-block;
  background: #f8f9fa;
  padding: 10px;
  border-radius: 50%;
}
