@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+Pinstripe&display=swap');

* {
  font-family: 'Alumni Sans Pinstripe', sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  transition: 0.4s linear;
}

body {
  background-color: #fff;
  width: 100%;
}

body:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

body.offcanvas-menu:before {
  opacity: 1;
  z-index: 1002;
  visibility: visible;
}

p {
  color: #b3b3b3;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Alumni Sans Pinstripe', sans-serif;
}

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

a,
a:hover {
  text-decoration: none !important;
}

.hero {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}



/*----------------Navabar------------- */
.top-bar {
  padding: .5rem 0;
  background: #eee;
}

.top-bar a {
  color: #020202;
}

.top-bar a:hover {
  color: #787878;
}

.site-navbar {
  margin-bottom: 0px;
  z-index: 1999;
  position: relative;
  width: 100%;
  padding: 20px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991.98px) {
  .site-navbar {
    padding: 20px;
  }
}

.site-navbar .toggle-button {
  position: absolute;
  right: -10px;
  width: 50px;
  height: 30px;
  font-size: 20px;
  font-weight: 600;
}

.site-navbar .site-logo {
  position: absolute;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 0;
  margin: 0;
  padding: 0;
  z-index: 3;
}

@media (max-width: 991.98px) {
  .site-navbar .site-logo {
    float: left;
    position: relative;
  }
}

.site-navbar .site-navigation.border-bottom {
  border-bottom: 1px solid white !important;
}

.site-navbar .site-navigation .site-menu {
  margin-bottom: 0;
}

.site-navbar .site-navigation .site-menu .active {
  color: red !important;
}

.site-navbar .site-navigation .site-menu a {
  text-decoration: none !important;
  display: inline-block;
}

.site-navbar .site-navigation .site-menu>li {
  display: inline-block;
}

.site-navbar .site-navigation .site-menu>li>a {
  margin-left: 15px;
  margin-right: 15px;
  padding: 20px 0px;
  color: #000 !important;
  display: inline-block;
  text-decoration: none !important;
  transition: 0.3s ease-in;
}

.site-navbar .site-navigation .site-menu>li>a:hover {
  color: red !important;
}

.site-navbar .site-navigation .site-menu .has-children {
  position: relative;
}

.site-navbar .site-navigation .site-menu .has-children>a {
  position: relative;
  padding-right: 20px;
}

.site-navbar .site-navigation .site-menu .has-children>a:before {
  position: absolute;
  content: "\e313";
  font-size: 16px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'icomoon';
}

.site-navbar .site-navigation .site-menu .has-children .dropdown {
  visibility: hidden;
  opacity: 0;
  top: 100%;
  position: absolute;
  text-align: left;
  border-top: 2px solid red;
  -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
  padding: 0px 0;
  margin-top: 20px;
  margin-left: 0px;
  background: #fff;
  -webkit-transition: 0.2s 0s;
  -o-transition: 0.2s 0s;
  transition: 0.2s 0s;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown .arrow-top {
  position: absolute;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
  display: none;
  bottom: 100%;
  left: 20%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #fff;
  border-width: 10px;
  margin-left: -10px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a {
  text-transform: none;
  letter-spacing: normal;
  -webkit-transition: 0s all;
  -o-transition: 0s all;
  transition: 0s all;
  color: #000 !important;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a.active {
  color: red !important;
  background: #f8f9fa;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a {
  padding: 9px 20px;
  display: block;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a:hover {
  background: #f8f9fa;
  color: #ced4da;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>a:before {
  content: "\e315";
  right: 20px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>.dropdown,
.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>ul {
  left: 100%;
  top: 0;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:hover>a,
.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:active>a,
.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:focus>a {
  background: #f8f9fa;
  color: #ced4da;
}

.site-navbar .site-navigation .site-menu .has-children:hover>a,
.site-navbar .site-navigation .site-menu .has-children:focus>a,
.site-navbar .site-navigation .site-menu .has-children:active>a {
  color: red;
}

.site-navbar .site-navigation .site-menu .has-children:hover,
.site-navbar .site-navigation .site-menu .has-children:focus,
.site-navbar .site-navigation .site-menu .has-children:active {
  cursor: pointer;
}

.site-navbar .site-navigation .site-menu .has-children:hover>.dropdown,
.site-navbar .site-navigation .site-menu .has-children:focus>.dropdown,
.site-navbar .site-navigation .site-menu .has-children:active>.dropdown {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
}

.site-mobile-menu {
  width: 300px;
  position: fixed;
  right: 0;
  z-index: 2000;
  padding-top: 20px;
  background: #fff;
  height: calc(100vh);
  -webkit-transform: translateX(110%);
  -ms-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.offcanvas-menu .site-mobile-menu {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.site-mobile-menu .site-mobile-menu-header {
  width: 100%;
  float: left;
  padding-left: 20px;
  padding-right: 20px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
  float: right;
  margin-top: 8px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
  font-size: 20px;
  font-weight: 900;
  display: inline-block;
  padding-left: 10px;
  padding-right: 0px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
  color: #ced4da;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
  float: left;
  margin-top: 10px;
  margin-left: 0px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
  display: inline-block;
  text-transform: uppercase;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
  max-width: 70px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
  text-decoration: none;
}

.site-mobile-menu .site-mobile-menu-body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 0 20px 20px 20px;
  height: calc(100vh - 52px);
  padding-bottom: 150px;
}

.site-mobile-menu .site-nav-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.site-mobile-menu .site-nav-wrap a {
  padding: 10px 20px;
  display: block;
  position: relative;
  color: #212529;
}

.site-mobile-menu .site-nav-wrap a:hover {
  color: red;
}

.site-mobile-menu .site-nav-wrap li {
  position: relative;
  display: block;
}

.site-mobile-menu .site-nav-wrap li .nav-link.active {
  color: red;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse {
  position: absolute;
  right: 0px;
  top: 10px;
  z-index: 20;
  width: 36px;
  height: 36px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
  background: #f8f9fa;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
  font-size: 12px;
  z-index: 20;
  font-family: "icomoon";
  content: "\f078";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  -ms-transform: translate(-50%, -50%) rotate(-180deg);
  transform: translate(-50%, -50%) rotate(-180deg);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.site-mobile-menu .site-nav-wrap>li {
  display: block;
  position: relative;
  float: left;
  width: 100%;
}

.site-mobile-menu .site-nav-wrap>li>a {
  padding-left: 20px;
  font-size: 20px;
  font-weight: 900;
}

.site-mobile-menu .site-nav-wrap>li>ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-mobile-menu .site-nav-wrap>li>ul>li {
  display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>a {
  padding-left: 40px;
  font-size: 18px;
  font-weight: 700;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul {
  padding: 0;
  margin: 0;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li {
  display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li>a {
  font-size: 20px;
  font-weight: 900;
  padding-left: 60px;
}

.site-mobile-menu .site-nav-wrap[data-class="social"] {
  float: left;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 5em;
}

.site-mobile-menu .site-nav-wrap[data-class="social"]>li {
  width: auto;
}

.site-mobile-menu .site-nav-wrap[data-class="social"]>li:first-child a {
  padding-left: 15px !important;
}

.sticky-wrapper {
  position: relative;
  z-index: 100;
  width: 100%;
}

.sticky-wrapper .site-navbar {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.sticky-wrapper .site-navbar {
  background: #fff;
}

.sticky-wrapper .site-navbar .site-logo a {
  color: #fff;
}

.sticky-wrapper .site-navbar ul li a {
  color: rgba(255, 255, 255, 0.7) !important;
}

.sticky-wrapper .site-navbar ul li a.active {
  color: #fff !important;
}

.sticky-wrapper.is-sticky .site-navbar {
  background: #fff;
  -webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
}

.sticky-wrapper.is-sticky .site-navbar .site-logo a {
  color: red;
}

.sticky-wrapper.is-sticky .site-navbar ul li a {
  color: #000 !important;
}

.sticky-wrapper.is-sticky .site-navbar ul li a.active {
  color: red !important;
}

.sticky-wrapper .shrink {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

@media (max-width: 991.98px) {
  .sticky-wrapper .shrink {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}

.font {
  font-size: 20px;
  font-weight: bolder !important;
  letter-spacing: 1.5px;
}

.font-sec {
  font-size: 15px;
  font-weight: bolder !important;
  letter-spacing: 1.5px;
}




/*----------------Carousel Section------------- */
.bg-1 {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.699), rgba(43, 43, 43, 0.8)), url(../images/hero.jpg);
  filter: grayscale(0%);
  background-size: cover;
}

.bg-2 {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.731)50%, rgba(62, 0, 176, 0.607))20%, url(../images/hero1.jpg);
  filter: grayscale(50%);
  background-size: cover;
  background-position: center;
}

.bg-3 {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.614) 50%, rgba(125, 0, 0, 0.623)) 20%, url(../images/hero2.jpg);
  background-size: cover;
  filter: grayscale(50%);
  padding-right: 70px;
}

.bg-1 div {
  padding-left: 70px;
}

.global-btn {
  color: white !important;
  border: none;
  border-radius: 0px;
  padding: 2px 20px;
  font-size: 20px;
  letter-spacing: 1.5px;
  font-weight: 600;
  background-color: rgb(255, 0, 0) !important;
}

.global-btn:hover {
  color: gainsboro;
  border: none;
  background-color: rgb(191, 3, 3) !important;
}

.bg-1 h1, .bg-2 h1, .bg-3 h1 {
  color: white;
  font-size: 65px;
  font-weight: 900;
}

.bg-1 p, .bg-2 p, .bg-3 p {
  font-family: 'Alumni Sans Pinstripe', sans-serif;
  font-size: 25px;
}

.arrow {
  border: none !important;
  width: 10% !important;
}

@media(max-width:769px) {
  .bg-1 div {
    padding-left: 40px;
  }

  .bg-1 h1, .bg-2 h1, .bg-3 h1 {
    color: white;
    font-size: 55px;
    font-weight: 900;
  }

  .bg-1 p, .bg-2 p, .bg-3 p {
    font-family: 'Alumni Sans Pinstripe', sans-serif;
    font-size: 20px;
  }

  .global-btn {
    font-size: 18px;
  }

  .about-us {
    height: 40vh;
  }
}

@media(max-width:426px) {
  .bg-1 {
    background: linear-gradient(rgba(0, 0, 0, 0.699), rgba(43, 43, 43, 0.8)), url(../images/hero-mob.jpg);
    background-size: cover;
    background-position: center;
  }

  .bg-2 {
    background: linear-gradient(rgba(0, 0, 0, 0.731)50%, rgba(62, 0, 176, 0.607))20%, url(../images/hero1-mob.jpg);
    background-size: cover;
    background-position: center;
  }

  .bg-3 {
    background: linear-gradient(rgba(0, 0, 0, 0.614) 50%, rgba(125, 0, 0, 0.623)) 20%, url(../images/hero2-mob.jpg);
    background-size: cover;
    background-position: center;
  }

  .bg-1 div {
    padding-left: 0px;
  }

  .bg-3 div {
    padding: 20px 0px 0px 40px;
  }
}




/*----------------About us------------- */
.about-us {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media(max-width:426px) {
  .about-us {
    height: 115vh;
  }

  .set {
    padding: 40px 0px;
    margin-left: 10px;
  }
}

@media(max-width:321px) {
  .about-us {
    height: 150vh;
  }
}

.global-th {
  font-size: 30px;
  font-weight: bolder;
}

.global-th::after {
  content: "";
  position: absolute;
  top: 35px;
  left: 27px;
  height: 2px;
  width: 60px;
  background-color: red;
}

.global-h {
  font-size: 45px;
  font-weight: bolder;
  text-transform: uppercase;
  color: #565656;
}

.global-p {
  font-size: 18px;
  font-weight: bold;
  color: rgba(36, 36, 36, 0.801);
}

.global-spacer {
  width: 100%;
  height: 10vh;
}

@media(max-width:769px) {
  .global-h {
    font-size: 30px;
  }

  .global-p {
    font-family: 'Alumni Sans Pinstripe', sans-serif;
    font-size: 16px;
  }
}

.set {
  height: auto;
}

.video {
  width: 100%;
  filter: grayscale(100%);
}

.video-box .play-button {
  background-color: rgb(206, 0, 0);
  color: white;
  font-size: 25px;
  width: 50px;
  height: 50px;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  position: absolute;
  margin: auto;
  padding: 7px;
  padding-left: 10px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
}

.video-box .play-button::before, .video-box .play-button::after {
  content: '';
  position: absolute;
  border: 2px solid rgba(206, 0, 0, 0.7);
  border-radius: 50%;
  left: -10px;
  right: -10px;
  top: -10px;
  bottom: -10px;
  animation: play 1.5s infinite;
  opacity: 0;
}

.video-box .play-button::after {
  animation-delay: 0.5s;
}

@keyframes play {
  0% {
    transform: scale(.5);
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}




/*----------------Our Goals------------- */
.our-goals {
  width: 100%;
  height: 80vh;
  padding: 0;
  margin: 0;
}

.padd {
  padding: 0;
  margin: 0;
}

.banner-1 {
  background-image: url(../images/pc.jpg);
  filter: grayscale(100%);
  transition: 0.2s ease-in-out;
}

.banner-2 {
  background-image: url(../images/processors.jpg);
  filter: grayscale(100%);
  transition: 0.2s ease-in-out;
}

.banner-3 {
  background-image: url(../images/headphone.jpg);
  filter: grayscale(100%);
  transition: 0.2s ease-in-out;
}

.banner-4 {
  background-image: url(../images/3D\ Glasses.jpg);
  filter: grayscale(100%);
  transition: 0.2s ease-in-out;
}

.banner-5 {
  background-image: url(../images/keyboard.jpg);
  filter: grayscale(100%);
  transition: 0.2s ease-in-out;
}

.banner-1:hover, .banner-2:hover, .banner-3:hover, .banner-4:hover, .banner-5:hover {
  filter: grayscale(0%);
}

.column {
  width: 20%;
  height: 80vh;
  padding: 0;
  background-size: cover;
  background-position: center center;
}

.column:hover {
  height: 74.5vh;
  margin-top: 15px;
  transform: perspective(600px) rotateY(20deg);
}

.column div {
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 20px;
  transition: 0.2s ease-in;
}

.column div:hover {
  background-image: linear-gradient(60deg, rgba(179, 0, 0, 0.76), transparent 90%);
}

.column div h3 {
  color: white;
  font-size: 40px;
  font-weight: bolder;
  line-height: 40px;
  opacity: 0;
  transition: 0.2s ease-in;
}

.column div p {
  color: white;
  opacity: 0;
  transition: 0.2s ease-in;
}

.column div:hover h3, .column div:hover p {
  opacity: 1;
}

@media(max-width:769px) {
  .column div h3 {
    font-size: 30px;
  }

  .column:hover {
    height: 76.5vh;
    margin-top: 17px;
  }
}

@media(max-width:426px) {
  .column {
    width: 20%;
    height: 60vh;
  }

  .column div h3 {
    font-size: 18px;
    line-height: 30px;
  }

  .column div p {
    font-size: small;
  }

  .column div {
    padding: 8px;
  }

  .column:hover {
    height: 58.5vh;
    margin-top: 7px;
  }
}



/*----------------Our Services------------- */
.our-service {
  width: 100%;
  padding: 50px 0px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 250px);
  grid-gap: 20px;
  justify-content: center;
}

.grid .service {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

@media(max-width:769px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 300px);
  }
}

@media(max-width:426px) {
  .grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 300px);
  }
}

@media(max-width:321px) {
  .grid {
    grid-template-rows: repeat(6, 230px);
  }
}

.grid .service .hover {
  width: 80px;
  height: 80px;
  position: absolute;
  background-color: rgb(223, 0, 0);
  border-bottom-left-radius: 75px;
  transition: 0.3s ease-in;
}

.grid .service:hover .hover {
  width: 300px;
  height: 250px;
  border-radius: 0px;
}

.grid .service:hover i, .grid .service:hover h3, .grid .service:hover p {
  color: white;
  transition: 0.4s ease-in;
}

.grid .service {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
  width: 300px;
  height: 250px;
  padding: 0px;
}

.box {
  width: 100%;
  height: 100%;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

.box i {
  font-size: 40px;
  color: black;
  padding: 10px;
}

.box h3 {
  font-size: 25px;
  font-weight: bolder;
}

.box p {
  font-size: 15px;
}


/* ---------Our Blog--------- */
.our-blog {
  padding: 30px 0px;
}

.grid .blog {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
  width: 300px;
  height: auto;
  padding: 0px;
}

.blog .img-box {
  width: 100%;
  height: 170px;
  position: relative;
  overflow: hidden;
}

.blog .img-box img {
  width: 100%;
  object-fit: cover;
  text-align: center;
}

.blog:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  transition: 0.2s ease-in;
}

.blog .box {
  background-color: white;
  width: 100%;
  height: 180px;
  z-index: 2;
}



/* -------Testimonial------- */
.testim {
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url(../images/backside.jfif);
  background-size: cover;
  top: 50%;
}

.testim .wrap {
  position: relative;
  width: 100%;
  max-width: 1020px;
  padding: 40px 20px;
  margin: auto;
}

.testim .arrow {
  display: block;
  position: absolute;
  color: #eee;
  cursor: pointer;
  font-size: 2em;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s ease-in-out;
  padding: 5px;
  z-index: 22222222;
}

.testim .arrow:before {
  cursor: pointer;
}

.testim .arrow.left {
  left: 10px;
}

.testim .arrow.right {
  right: 10px;
}

.testim .arrow:hover {
  color: red;
}

.testim .dots {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 60px;
  left: 0;
  display: block;
  z-index: 3333;
  height: 12px;
}

.testim .dots .dot {
  list-style-type: none;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #eee;
  margin: 0 10px;
  cursor: pointer;
  transition: all .5s ease-in-out;
  position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
  background: red;
  border-color: red;
}

.testim .dots .dot.active {
  animation: testim-scale .5s ease-in-out forwards;
}

.testim .cont {
  position: relative;
  overflow: hidden;
}

.testim .cont>div {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 0 70px 0;
  opacity: 0;
}

.testim .cont>div.inactive {
  opacity: 1;
}

.testim .cont>div.active {
  position: relative;
  opacity: 1;
}

.testim .cont div .img img {
  display: block;
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 50%;
}

.testim .cont div h2 {
  color: rgb(255, 255, 255);
  font-weight: bolder;
  font-size: 1em;
  margin: 15px 0;
}

.testim .cont div p {
  font-size: 1.15em;
  color: #eee;
  width: 80%;
  margin: auto;
}

.testim .cont div.active .img img {
  animation: testim-show .5s ease-in-out forwards;
}

.testim .cont div.active h2 {
  animation: testim-content-in .4s ease-in-out forwards;
}

.testim .cont div.active p {
  animation: testim-content-in .5s ease-in-out forwards;
}

.testim .cont div.inactive .img img {
  animation: testim-hide .5s ease-in-out forwards;
}

.testim .cont div.inactive h2 {
  animation: testim-content-out .4s ease-in-out forwards;
}

.testim .cont div.inactive p {
  animation: testim-content-out .5s ease-in-out forwards;
}

@keyframes testim-scale {
  0% {
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    box-shadow: 0px 0px 10px 5px red;
  }

  100% {
    box-shadow: 0px 0px 0px 0px red;
  }
}

@keyframes testim-content-in {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes testim-content-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}

@keyframes testim-show {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes testim-hide {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(0);
  }
}

@media all and (max-width: 300px) {
  body {
    font-size: 14px;
  }
}

@media all and (max-width: 500px) {
  .testim .arrow {
    font-size: 1.5rem;
  }

  .testim .cont div p {
    line-height: 25px;
  }
}



/* ------Sales------ */
.sales {
  height: 250px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url(../images/newletter.jpg);
  background-size: cover;

}

.sales h2 {
  color: white;
  font-weight: 900;
  font-size: 50px;
}

.sales h2 span {
  font-size: 60px;
  color: red;
}


/* ------Footer------ */
footer {
  background-color: #000;
  color: white;
}

footer .footer1 {
  height: auto !important;
}

footer h4 {
  color: red;
  font-weight: bolder;
  text-transform: capitalize !important;
}

footer .nav-item {
  padding-left: 10px;
}



/* ------Newsletter------ */
footer .nav-item .nav-link, footer p {
  font-weight: 500;
  letter-spacing: 1.5px;
  color: white !important;
  text-transform: capitalize !important;
}

footer .nav-item .nav-link:hover {
  color: rgb(209, 209, 209) !important;
}

.form-control {
  border-radius: 0px !important;
}

.form-control:focus {
  font-weight: 600;
  border: 1px solid red !important;
  outline: none !important;
}

footer .footer2 {
  height: 10px !important;
  border-top: 1px dotted rgb(180, 180, 180);
}

.footer1 ul {
  padding: 8px;
  margin-left: -15px;
}

.footer1 ul span {
  color: white;
}

.footer1 ul span:hover {
  color: rgb(209, 209, 209) !important;
}

.footer2 ul a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: white;
  text-decoration: none;
}

.footer2 ul a:hover {
  text-decoration: underline !important;
}

.footer2 ul li {
  padding: 10px;
}

@media(max-width:769px) {
  footer h4 {
    font-size: 18px;
  }

  footer .nav-item .nav-link, footer p {
    font-size: 13px;
  }
}

@media(max-width:426px) {
  .sales {
    height: 170px;
  }

  .sales h2 {
    font-size: 25px;
  }

  .sales h2 span {
    font-size: 30px;
  }

  footer {
    height: 640px;
  }

  .footer2 p, .footer2 ul a {
    font-size: 8px;
  }

  .footer2 p {
    font-size: 6px;
  }

  .footer2 ul {
    height: 10px;
  }

  .footer2 ul li {
    padding: 4px;
  }
}

.fixed {
  width: 98vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  padding: 0px;
  margin: 0px;
}

.fixed button {
  position: fixed;
  rotate: 270deg;
  z-index: 1000;
  right: -33px;
}

/* ------------------------------------------About Us----------------------------------------------------- */

.about-us-page {
  height: auto;
  padding: 50px 0px;
}

.about-us-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/about-us.jpg);
}

.banner {
  height: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: center center;

}

.banner h2 {
  color: white;
  font-weight: 900;
  font-size: 50px;
}

.image-responsive {
  width: 100%;
}

.global-blockquote {
  width: 95%;
  height: auto;
  background-color: #cbd6dcd3;
  padding: 10px;
  border-radius: 10px;
}

.global-blockquote>.left {
  width: 2%;
  height: 100%;
  padding-left: 10px;
  padding-right: 5px;
}

.global-blockquote .bar {
  background-color: red;
  width: 2px;
  height: 100%;
}

.global-blockquote .right {
  width: 98%;
  height: 100%;
  font-style: italic;
  padding: 5px;
}

.global-blockquote .right p {
  height: max-content;
  margin: 0;
  font-size: 16px;
}

@media(max-width:769px) {
  .global-blockquote .right p {
    font-size: 13px;
  }
}

@media(max-width:426px) {
  .banner {
    height: 200px;
  }

  .banner h2 {
    font-size: 30px;
  }

  .global-blockquote>.left {
    padding-left: 5px;
  }

  .global-blockquote .right p {
    font-size: 10px;
  }
}

/* ------------------------------------------Services----------------------------------------------------- */
.services-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/services.jpg);
  background-size: cover;
  background-position: center center;
}


.pricingTable {
  text-align: center;
  background: #fff;
  box-shadow: 3px 3px 6px #ababab5f;
  padding-bottom: 40px;
  border-radius: 0px;
  color: #cad0de;
  transition: all .5s ease 0s
}

.middle-red{
  transform: scaleY(1.1);
}

.pricingTable .pricingTable-header {
  padding: 25px 0;
  background: #f5f6f9;
  border-radius: 0px 0px 100% 0px;
  transition: all .5s ease 0s
}

.middle-red .pricingTable-header{
  background: red !important;
}

.pricingTable .pricingTable-header i {
  font-size: 30px;
  font-weight: 900;
  color: rgb(0, 0, 0);
  margin-bottom: 10px;
  transition: all .5s ease 0s
}
 
.middle-red .pricingTable-header i, .middle-red .pricingTable-header .price-value, 
.middle-red .pricingTable-header .month{
  color: rgb(255, 255, 255);
}
.pricingTable .price-value {
  font-size: 45px;
  font-weight: 900;
  color: rgb(0, 0, 0);
  transition: all .5s ease 0s
}

.pricingTable .month {
  display: block;
  -webkit-text-stroke-width: 0px;
  font-size: 14px;
  color: #2d2d2d
}

.pricingTable .heading {
  font-size: 30px;
  font-weight: 900;
  color: red;
  margin-bottom: 20px;
  text-transform: uppercase
}

.pricingTable .pricing-content{
  display: flex;
  justify-content: center;
  align-items: center;
}
.pricingTable .pricing-content ul {
  list-style: none;
  text-align: left;
  margin-bottom: 20px
}

.pricingTable .pricing-content ul li {
  line-height: 40px;
  font-size:15px;
  color: #000;
}
.pricingTable .pricing-content ul li i{
  color: red;
}

.pricingTable.red .heading,
.pricingTable.red .price-value {
  color: #ff4b4b
}
/* -----------------------------------------------Blog---------------------------------------------------- */

.blog-banner{
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/blog2.jpg);
  background-size: cover;
  background-position: center center;
}

/* -----------------------------------------------Contact Us---------------------------------------------------- */

.contact-banner{
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/contact.jpg);
  background-size: cover;
  background-position: center center;
}
.icon-red{
  font-size: 30px;
  color: red;
}

.box-head{
  padding: 40px 100px;

}
.box-body{
  padding: 40px 220px;
}
.form-controls, .textarea{
  width: 100%;
  padding: 5px;
  background-color: transparent;
  color: #000;
  font-weight: 900;
  border: 1px solid;
  border-radius: 0px;
  margin-bottom: 10px;
}
.form-controls{
  height: 50px;
}