:root {
  --color-white-100: hsl(206, 0%, 100%);
  --color-white-200: hsl(206, 0%, 90%);
  --color-white-300: hsl(206, 0%, 80%);
  --color-white-400: hsl(206, 0%, 65%);
  --color-white-500: hsl(206, 0%, 50%);
  --color-black-100: hsl(217, 30%, 18%);
  --color-black-200: hsl(217, 27%, 15%);
  --color-black-300: hsl(217, 27%, 12%);
  --color-black-400: hsl(217, 52%, 9%);
  --color-blue-100: hsl(215, 97%, 87%);
  --color-blue-200: hsl(215, 96%, 78%);
  --color-blue-300: hsl(215, 94%, 68%);
  --color-blue-400: hsl(215, 91%, 60%);
  --color-blue-500: hsl(215, 83%, 53%);
  --color-blue-600: hsl(215, 76%, 48%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
     0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
     0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
     0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
@font-face {
  font-family: 'Oregon6';
  src: url('../fonts/Oregon6.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Oregon3';
  src: url('../fonts/Oregon3.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: Oregon3;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  color: black;
  background-color: var(--color-white-100);
}
body.darkmode {
  color: var(--color-white-100);
  background-color: black;
}


main {
  overflow: hidden;
  min-height: auto !important;
}
@media only screen and (min-width:300px){
  main{
    height: 113vh;
  }
}
@media only screen and (min-width:500px){
  main{
    height: 140vh;

  }
}
@media only screen and (min-width:700px){
  main{
    height: 112vh;
  }
}
@media only screen and (min-width:900px){
  main{
    height: 102vh;
  }
}



p {
  /* text-wrap: balance; */
  font-family: Oregon3;
}

a,
button {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: none;
  outline: none;
  background: none;
  color:black;
}
button a{
  color:white;
}
h2{
  font-family:Oregon3;
  text-align:center;
  position: relative;
}

h2:after{
  content: '';
  background: url(../img/underline.png);
  z-index: 1000;
  width: 200px;
  height: 4.5px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -78%);
  transform: translate(-50%, -78%);
}
.footer h2:after{
  -webkit-transform: translate(-50%, -126%);
  transform: translate(-50%, -126%);
}
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.section {
  margin: 0 auto;
  padding: 5rem 0 2rem;
  height: 100vh;
}

.container {
  max-width: 75rem;
  height: auto;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.paragraph {
  font-size: 15px;
  text-wrap: balance;
  color: inherit;
  font-family: Oregon3;
}

.heading-xl {
  font-family: inherit;
  font-size: clamp(2.648rem, 6vw, 4.241rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}
.heading-lg {
  font-family: Oregon3;
  font-size: clamp(2.179rem, 5vw, 3.176rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}
.heading-md {
  font-family: Oregon6;
  font-size: clamp(1.794rem, 4vw, 2.379rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 1.5px;
}

.btn {
  display: inline-block;
  font-family: Oregon3;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  outline: none;
  border: none;
  border-radius: 30px;
  text-transform: unset;
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  background-color: #E50808;
}

.btn-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.btn-darken {
  padding: 0.4rem 1.5rem;
  color: var(--color-white-100);
  border: 1px solid #B1040E;
  background-color:  #B1040E;
  box-shadow: var(--shadow-medium);
}
.darkmode .btn-darken {
  background-color:  #B1040E;
}
.darkmode .btn-darken:hover{
  background-color: black;;
}
/* TOGGLE NAVBAR START */
 
.men{
  position: absolute;
  left: 0;
  top:10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  margin-left:7%;
  /* box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.5 );
  border: 1px solid rgba( 255, 255, 255, 0.18 ); */
  font-family: Oregon3;
  transform: translateY(calc(-115%));
  transition-timing-function: linear;
  transition: .6s;
  background: transparent;
}

.open{
  transform: translateY(calc(0%));
  transition-timing-function: linear;
  transition: .6s;
}
.men ul{
  display: flex;
}
@media (max-width: 400px) {
  .men ul{
    flex-direction: column;
  }
  .men{
    margin-left: 5px;
  }
}
.men ul li {
width: 81px;
height: 40px;
background-color: transparent;
display: flex;
justify-content: center;
align-items: center;
box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.men ul li:hover{
background-color: #E50808;
}
.men ul li a{
  width: 100%;
    text-align: center;
    line-height: 38px;
}
.men ul li a:hover{
color: white !important;
  
}

.nav-a-darken{
  color: white !important;
  font-size: large;
}
/* TOGGLE NAVBAR END */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1005;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background-color: var(--color-white-100);
  box-shadow: rgba(216, 26, 26, 0.2) 0px 12px 28px 0px, rgba(216, 26, 26, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}
.darkmode .header {
  background-color: black;
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  width: 100%;
  height: 4rem;
  margin: 0 auto;
}

.brand {
  font-family: Oregon6;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.25;
  margin-right: auto;
  letter-spacing: -1px;
  text-transform: uppercase;
  /* color: var(--color-blue-500); */
  letter-spacing: 1.5px;
  color:  #B1040E;
  white-space: nowrap;
}
.darkmode .brand {
  color: white;
}

.menu {
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 10;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: var(--color-black-400);
  background-color: var(--color-white-100);
  box-shadow: var(--shadow-medium);
  transition: all 0.4s ease-in-out;
}
.darkmode .menu {
  color: var(--color-white-100);
  background-color: black;
}
.menu.is-active {
  left: 0;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1.25rem;
  margin-top: 7rem;
}
.menu-item:hover{
  background: #b1040d4b;
  padding:3px 7px;
  border-radius: 5px;
}
.menu-link {
  font-family: Oregon3;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: inherit;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 48rem) {
  .menu {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    padding: 0rem;
    margin-left: auto;
    background: none;
    box-shadow: none;
    transition: none;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    margin: 0 auto;
  }
  .menu-link {
    text-transform: capitalize;
  }
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  order: -1;
  z-index: 12;
  width: 1.6rem;
  height: 1.15rem;
  margin-right: 1.25rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;
}
/* @media only screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
} */
.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 1rem;
  transform: rotate(0deg);
  background-color: var(--color-black-300);
  transition: 0.25s ease-in-out;
}
.darkmode .burger-line {
  background-color: var(--color-white-100);
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

.switch {
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 9;
  margin-left: 5rem;
  margin-right: 0.5rem;
}
.switch-light, .switch-dark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in;
}
.switch-light {
  font-size: 1.45rem;
  visibility: visible;
  color: var(--color-black-300);
}
.darkmode .switch-light {
  font-size: 0rem;
  visibility: hidden;
}
.switch-dark {
  font-size: 0rem;
  visibility: hidden;
  color: var(--color-white-100);
}
.darkmode .switch-dark {
  font-size: 1.45rem;
  visibility: visible;
}
/* 
.banner-column {
  position: relative;
  display: grid;
  align-items: center;
  row-gap: 2rem;
  height: auto;
}
@media only screen and (min-width: 48rem) {
  .banner-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    margin-top: 4rem;
  }
}
@media only screen and (min-width: 64rem) {
  .banner-column {
    grid-template-columns: 1fr -webkit-max-content;
    grid-template-columns: 1fr max-content;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
} */
.banner-image {
  display: block;
  max-width: 25rem;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  justify-self: center;
}
@media only screen and (max-width: 700px) {
  .banner-image {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 48rem) {
  .banner-image {
    max-width: 28rem;
    height: auto;
  }
}
@media only screen and (min-width: 64rem) {
  .banner-image {
    /* max-width: 33rem; */
    height: auto;
  }
}
.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1.1rem;
}
/************************************************************/
.banner-column{
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width:700px){
  .banner-column{
    display: flex;
    flex-direction: column;
    align-items: center;

  }
}

/*    ****************ACHIVEMENT SECTION START*********************     */
.achivement-container{
  width: 96%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 950px){
  .achivement-container{
    width: 98%;
  }
}
.achivement-card{
  flex-basis: calc(33.33% - 60px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  margin: 7px;
  padding-top: 17px;
}
@media only screen and (max-width: 900px){
  .achivement-container{width: 96%;}
  .achivement-card{flex-basis: calc(50% - 100px);}
}
@media only screen and (max-width: 600px){
  .achivement-container{width: 98%;}
  .achivement-card{flex-basis: calc(100% - 100px);}
}
.achivement-card span{
   width: 40px;
}
.achivement-card strong{
  color: #B1040E;
  text-align: center;
}

/*    ****************ACHIVEMENT SECTION END*********************     */
/*    ****************EXPERIENCES SECTION START*********************     */
.experiences{
  padding:15px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 80px;
}

.experiences h2{
  flex-basis: 100%;
}
.experience{
  flex-basis: 33%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0 15px 0;
}
@media only screen and (max-width: 800px){
  .experience{
    flex-basis:50%;
  }
  .experiences{
    margin: 3%;
  }
}
@media only screen and (max-width: 600px){
  .experience{
    flex-basis:100%;
  }
  .experiences{
    margin: 1%;
  }
}
.experience img{
  height: 45px;
 
  margin-bottom: 15px;
}
.svg-darken{
  fill:#B1040E;
}

.experience p{
  text-align: center;
  font-family: Oregon3;
  font-size: 15px;
  margin: 15px 0;
}
/*    ****************EXPERIENCES SECTION END*********************     */

/*    ****************PROJECT SECTION START*********************     */
.projcts{
  height: auto;
  padding: 0 20px;
  display: flex;
  margin: 0 ;
}
.proj-container{
  margin: 0 80px !important;
}
@media only screen and (max-width: 800px){

  .proj-container{
    margin: 5% !important;
  }
}
@media only screen and (max-width: 500px){
  .proj-container{
    margin: 25px !important;
  }
}
/*    ****************PROJECT SECTION END*********************     */

/*    ****************GALLERY SECTION START*********************     */
.gallery{
  font-family: Arial, sans-serif;
  margin: 0 80px;
  display: flex;
  justify-content: center;
  height: 90vh;
  flex-wrap: wrap;
}
@media only screen and (max-width:947px) {
  .work-front{
    flex-basis: 100% !important;
  }
  .gallery{
    margin: 0 30px;
    height: auto;
  }
  .work-front{
    margin: 0 !important;
  }
  .work-images{
    flex-basis: 100% !important;
  }
}
.work-front{
  flex-basis: 35%;
  margin: 85px 0;
}
.work-front p{
  margin-top: 12px;
  margin-right: 15px;
}
.work-images {
  flex-basis: 65%;
  max-width: 1000px;
  position: relative;
  margin: auto;
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-end;
  align-items:center;
}
@media (max-width:950px)
{
    .work-images{
        justify-content: center;
    }
}
.work-image img{
  border-radius: 10px;
}
/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}
@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/*    ****************GALLERY SECTION END*********************     */


/*    ****************INTERVIEW SECTION START*********************     */
.interviews{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin:3px 80px;
}
.interviews h2{
  flex-basis: 100%;
  margin: 40px 0 4px 0;
}
.interviews iframe{
  flex-basis: 49%;
  padding: 0 25px;
  border: 2px solid #B1040E;
  margin:5px;
}
@media only screen and (max-width: 1180px) {
  .interviews iframe{
    flex-basis: 45%;
    padding: 0 25px;
    border: 2px solid #B1040E;
    margin:5px;
  }
  .interviews{
    margin:0;
  }
}
@media only screen and (max-width: 746px) {
  .interviews iframe{
    flex-basis: 30%;
    padding: 0 5px;
    border: 2px solid #B1040E;
    margin:5px;
    height: auto;
  }
  .interviews{
    margin:0;
  }
}
@media only screen and (max-width: 666px) {
  .interviews iframe{
    flex-basis: 20%;
    width: px;/*************/
    padding: 0 5px;
    border: 2px solid #B1040E;
    margin:5px;
    height: auto;
  }
}


/*    ****************INTERVIEW SECTION END*********************     */


/*    ****************BLOG SECTION START*********************     */
.blog-card-img-holder{
  width: 100%;
  height: auto;
  position: relative;
}

.blog-card-img-holder img{
  width: 100%;
  height: auto;
  max-height: 15rem;
  object-fit: fill;
  border-radius: 1.5rem;
}

.blog-title {
  padding: 15px 0 5px 0;
  margin: 0;
  font-size: 1.5rem;
}
.blog-title a, .blog-btn a{
    text-decoration: none;
    color: #B1040E;
}
.blog-description{
  padding: 1rem 0;
  margin: 0;
  color: #22215B80;
  font-size: 1rem;
}

.blog-time{
  font-size: .8rem;
  color: #22215B;
}

.blog-options{
  display: flex;
  justify-content: flex-start;
  font-size: 1rem;
}



.blog-btn{
    font-size: 1rem;
    padding: 1px 5px;
    border-radius: .5rem;
    font-weight: 400;
    background: white;
    /* color: #c5c5db; */
    border: 1px solid #B1040E;
    cursor: pointer;
}

/*    ****************BLOG SECTION END*********************     */

/*    ****************BRANDS SECTION START*********************     */
@media only screen and (min-width: 880px) {
  .customer-logos{
    margin: 0 100px;

  }
}

.slide img{
  /* border-radius: 50%; */
  border-radius: 10px;
  margin: 50px;
}
.brands-section h2{
text-align:center;
padding: 20px 0 0 0;

}
/* Slider */

.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-slider
{
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list
{
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus
{
  outline: none;
}
.slick-list.dragging
{
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
       -o-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track
{
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after
{
  display: table;
  content: '';
}
.slick-track:after
{
  clear: both;
}
.slick-loading .slick-track
{
  visibility: hidden;
}

.slick-slide
{
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide
{
  float: right;
}
.slick-slide img
{
  display: block;
}
.slick-slide.slick-loading img
{
  display: none;
}
.slick-slide.dragging img
{
  pointer-events: none;
}
.slick-initialized .slick-slide
{
  display: block;
}
.slick-loading .slick-slide
{
  visibility: hidden;
}
.slick-vertical .slick-slide
{
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/*    ****************BRANDS SECTION END*********************     */

/*    ****************FOOTER SECTION START*********************     */

@media only screen and (max-width:800px) {
  footer{
    padding: 10px;
  }
}
.footer{
  /* background: rgba( 177, 4, 14, 0.15 ); */
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  backdrop-filter: blur( 10px );
  -webkit-backdrop-filter: blur( 10px );
  border-radius: 10px;
  border: 1px solid rgba( 255, 255, 255, 0.18 );
  display: flex;
  justify-content: center;
  font-family: Oregon3;

  flex-wrap: wrap;
  padding:0 25px 0 25px;
}
.footer h2{
  flex-basis: 100%;
  border-bottom:1px #B1040E solid;
  margin-bottom: 10px;

}
/* .f1, .social{
  flex-basis: 60%;
} */
.social{
  flex-basis: 40%;
  color: #0b1223;
}
.social-darken{
  color:white !important;
  text-decoration: none;
}
.f1,.f2,.f3{
  flex-basis: 33.3%;
  display: flex;
  flex-direction: column;
}
.f1 div i{
  color:#B1040E;
}
.f1, .f2{
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 101px;
}
@media only screen and (max-width:922px){
  .f1, .f2{
    padding-left: 10px;
  }
}
.vertical{
  height: 68%;
  border-right: 2px solid #B1040E;
  margin: 0 8px;
}
.f1 strong, .f1 div, .f1 div a,
.f2 strong, .f2 a,
.f3 strong, .f3 a{
  font-family: Oregon3;
}
.f2 div a i{
  color: #B1040E;
}
.f3{
  display: flex;
  height: 100%;
}
.f3 div{
  display: flex;
  flex-direction: row;
}
.f3 img{
  width: 70px;
  margin-bottom: 5px;
}
@media only screen and (max-width:920px) {
  .f3{
    flex-basis:100%;
    margin-bottom: 10px;
  }
  .f1, .f2{
    flex-basis: 49%;
  }
}
.copyright{
  font-size: medium;
  flex-basis: 100%;
  text-align: center;
  margin-bottom:12px;
}
@media only screen and (max-width:920px) {
  .copyright{
    margin-top: 12px;
  }
}
.copyright a{
  color: #B1040E;
}
.verify{
  display: inline;
  height: 15px;
  transform: translateY(2px);
}

/*    ****************FOOTER SECTION END*********************     */