@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");


:root {
  --white: #fff;
  --light_color:#F3F2F7;
  --black: #040506;
  --orange:#FF4400;
  --main_color:#012c74;
  --grey:#ddd;
  --blue: #3498db;
  --green: #2ecc71;
  --purple: #9b59b6;
  --gold: #f1c40f;
  --red: #e74c3c;
  --footer_color:#8790A2;
  --bg_blue:#012C74;
  --button:#356DFF;
  --light_blue:#f7faff;
  --title_color:#152E35;
  --light_grey_text:#707070;
  --light_grey_border:#f2f2f2;
  --section_title_font:50px !important;
  --main_heding_font:40px !important;
  --main_mobile_heding_font:25px !important;
  --sub_heading_font:16px !important;
  --normal_font:14px !important;

   
  --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);
  --shadow1: 0 2px 4px #00000026, 0 3px 6px #0000001f;
  --shadow2: 0 2px 6px #00000044, 0 4px 7px #00000022;
}
html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  /* box-sizing: border-box; */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  box-sizing: inherit;
}

body{
font-family: Rubik !important;
}

header {
  font-family: "Roboto", system-ui, ui-sans-serif, sans-serif;
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.5;
  color: var(--black);
  background-color: var(--white);
}

.section {
  margin-inline: auto;
  margin-block: 5rem 2rem;
}

/* .container {
  max-width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.5rem;
} */

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-tiny {
  font-size: var(--text-tiny);
}
.text-small {
  font-size: var(--text-small);
}
.text-base {
  font-size: var(--text-base);
}
.text-medium {
  font-size: var(--text-medium);
}
.text-large {
  font-size: var(--text-large);
}

.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semi {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}

.text-uppercase {
  text-transform: uppercase;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-capitalize {
  text-transform: capitalize;
}

 .btn {
  display: inline-flex;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  align-items: center;
  justify-content: center;
  vertical-align: baseline;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
  white-space: nowrap;
  padding-block: 0.5rem;
  padding-inline: 1.5rem;
  border-radius: 0.25rem;
  transition: all 0.25s ease;
}
 .btn-default {
  color: var(--black);
  background-color: var(--white);
  box-shadow: var(--shadow-medium);
}
 .btn-darken {
  color: var(--white);
  background-color: var(--black);
  box-shadow: var(--shadow-medium);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: auto;
  background-color: var(--white);
  box-shadow: var(--shadow-medium);
  opacity: 1;
}

.brand {
  padding: 10px;
  display: inline-block;
  box-sizing: border-box;
  width: 150px;
}
.brand img{
  width:100%;
}
.navbar1 {
  width: 100%;
  height: 4.25rem;
  margin-inline: auto;
  /* position:absolute; */
  top: 10px;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  height: 100%;
}
.navbar-block {
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(100vh - 4rem);
  opacity: 0;
  overflow: auto;
  pointer-events: none;
  background-color: var(--white);
  transition: opacity 0.4s ease;
}
.navbar-block.is-active {
  opacity: 1;
  pointer-events: initial;
}

@media screen and (min-width: 62rem) {
    .navbar1 {
    display: flex;
    justify-content: space-between;
    width: 90% !important;
    margin: 0 auto;
    max-width: unset !important;

  }
  .navbar-block {
    position: initial;
    height: initial;
    opacity: 1;
    overflow: auto;
    pointer-events: visible;
    background: none;
    transition: none;
  }
}
.menu {
  padding-block: 1rem;
  padding-inline: auto;
  padding: 0px !important;
}
.menu-link {
  font-size: var(--sub_heading_font);
  font-weight: 300;
  line-height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.5rem;
  padding-inline: 1.5rem;
  color: var(--black);
  transition: color 0.3s ease;
  text-decoration: none !important;
}

@media screen and (min-width: 62rem) {
    .menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    height: 100%;
    padding: unset;
    margin: 0px !important;

  }
  .menu-item {
    display: flex;
    cursor: pointer;
    padding-inline: 0.5rem;
    text-transform: capitalize;
    position: initial !important;
  }
  .menu-link {
    padding: unset;
  }
}
.dropdown-toggle {
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.dropdown-toggle i.bx {
  font-size: 1.5rem;
  line-height: inherit;
  transition: rotate 0.4s ease;
}
.dropdown-content {
  height: 0;
  overflow: hidden;
  background-color: var(--white);
  transition: height 0.5s ease;
}
.dropdown-column, .dropdown-group, .dropdown-items {
  display: grid;
}
.dropdown-group {
  padding-bottom: 1rem;
  padding-inline: 1.5rem;
}
.dropdown-title {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: center;
  padding-inline: 1rem;
}
.dropdown-icon i.bx {
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--orange);
}
.dropdown-items {
  row-gap: 0.5rem;
  padding-inline: 3.5rem;
  padding-top: 0.35rem;
}
.dropdown-link {
  font-size: var(--normal_font);
  font-weight: 400;
  line-height: inherit;
  color: var(--black);
  transition: color 0.3s ease;
  text-decoration: none !important;
}
.dropdown-show > .dropdown-toggle i.bx {
  rotate: 180deg;
}
.dropdown-block {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding-top: 1rem;
  padding-inline: 1rem;
}

@media screen and (min-width: 62rem) {
    .dropdown-toggle {
    -moz-column-gap: 0.35rem;
         column-gap: 0.35rem;
    pointer-events: none;
  }
  .dropdown-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 6rem;
    opacity: 0;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    pointer-events: none;
    background-color: var(--white);
    border-top: 1px solid var(--grey);
    box-shadow: var(--shadow-large);
    transition: top 0.4s, opacity 0.3s ease;
  }
  .dropdown-column {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    max-width:80%;
    margin-inline: auto;
  }
  .dropdown-group {
    align-content: baseline;
    row-gap: 1.25rem;
    padding-block: 2rem;
  }
  .dropdown-group:first-child, .dropdown-group:last-child {
    margin: unset;
  }
  .dropdown-items {
    padding-top: unset;
  }
  .dropdown-block {
    padding-top: unset;
    padding-inline: unset;
  }
  .dropdown:hover > .dropdown-content {
    cursor: initial;
    top: 4.25rem;
    opacity: 1;
    pointer-events: initial;
  }
  .dropdown:hover > .dropdown-toggle i.bx {
    rotate: 180deg;
  }
}
.burger {
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 1.5rem;
  height: 1rem;
  border: none;
  outline: none;
  visibility: visible;
}
.burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2.15px;
  opacity: 1;
  rotate: 0deg;
  border-radius: 0.15rem;
  background-color: var(--black);
  transition: all 0.3s ease;
}
.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;
  rotate: 135deg;
}
.burger.is-active > .burger-line:nth-child(2) {
  opacity: 0;
}
.burger.is-active > .burger-line:nth-child(3) {
  top: 0.5rem;
  rotate: -135deg;
}

@media screen and (min-width: 62rem) {
     .burger {
    display: none;
    visibility: hidden;
  }
}
.dropdown-toggle::after{
    display:none !important;
}
.dropdown-link:hover{
    color:var(--orange);
}


/* End Hearder */
.header_img{
  /* height:70vh; */
  position: relative;
}
.background_opacity{
  position: absolute;
  width: 100%;
  height: 100%;
  background: #00000024;
  top: 0;
}
.header_img img{
  width: 100%;
  height: 100%;
  object-fit:cover;
}
.header_logo{
  position: absolute;
  top: 30%;
  left: 8%;
  width: 40%;
}

/* content row start */
.content_row{
  padding-top: 25px; 
}
.container_heading{
  padding: 10px;
  margin: 30px 0px;
}
.heading_center h2{
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 30px;
}

.tab-btn {
  width: 100%;
  border: none;
  color: var(--black);
  background-color: var(--white);
  border-radius: 5px;
  font-weight: 500;
  font-size:var(--sub_heading_font);
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.tab-btn.active {
  background-color: var(--orange);
  color: var(--white);
}
.tab-btn:hover {
  background-color: var(--grey);
}
.card_align .content {
  display: none;
}
.card_align .content.show {
  display: flex;
  padding: 16px;
}
.content_row{
  display: flex;
  align-items: center;
}
.con_img img{
 border-radius:5px;
}
.con_img img{
  width: 100%;
  height: 100%;
  object-fit:cover;
}
/* .content_col{
  padding-right: 30px !important;
} */
.detail-box h3{
  font-weight: 700;
  color:var(--light_grey_text);
  margin-bottom: 8px;
}
.detail-box p{
  font-weight: 400;
  color:var(--light_grey_text);
  font-size:var(--normal_font);
  text-align: justify;
} 
/* content row End*/


/* Flawless Software Start*/
.container_software{
  background-color: #012C74;
  padding:20px;
  padding-top: 30px;
  padding-bottom:30px;
}

.box_width{
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.software_card_item{
  text-align: left;
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 20px;
  margin-top:20px;
  border: 1px solid #dadfe9;
    -webkit-transition: .3s linear; 
    -moz-transition:.3s linear; 
    -ms-transition:.3s linear; 
    -o-transition:.3s linear;
    transition: .3s linear;
    height: 155px;
}


.software_card_icon{
  display: flex;
  align-items: center;
  height: 60px;  
}
.software_card_icon img{
  color: var(--white);  
}

.software_card_icon h2 {
  font-size:var(--sub_heading_font);
  margin: 15px 0px 15px 10px;
  text-decoration: none;
  color:var(--white);
  font-weight: 800;
  padding-left: 10px;
}
.software_card_item h2 {
    font-size:var(--sub_heading_font);
    margin: 15px 0 15px;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
}
/* .software_card_item h2 a span {
  text-transform:  lowercase;
} */
.software_card_item p {
  padding-bottom: 20px;
  text-transform: initial;
  position: relative;
  color: var(--white);
  font-size: var(--normal_font);
  margin-bottom: 0px !important;
  text-align: justify;
}
.software_card_item:hover, .software_card_icon:hover img {
  color:#4e4ffa;
}

.software_card_item:hover h2,.software_card_item:hover p{
  color:var(--white);
}
.software_card_item:hover  p:before {
  background: var(--white);
}
.software_card_item:hover{
  background: var(--orange);
  border: 1px solid transparent;
}

/* Flawless Software End*/

/* Our Process */

.bg_our_process{
  background:var(--light_color);
  padding:20px;
  padding-top: 30px;
  padding-bottom:30px;
}

ul.infoGraphic {
  font-size: var(--text-tiny);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
ul.infoGraphic li {
  position: relative;
  background: var(--light_color);
  border-radius: 0.5em;
  padding: 0.5em;
  z-index: 1;
  transition: all 0.2s;
  cursor: pointer;
  padding-bottom: 20px;
  padding-top: 20px;
}
ul.infoGraphic li .numberWrap {
  position: absolute;
}
ul.infoGraphic li .number {
  font-family: "maven pro", sans-serif;
  font-size: 10em;
  font-weight: 900;
  width: 0.9em;
  text-align: center;
}
ul.infoGraphic li .number.fontColor1 {
  color: var(--blue);
}
ul.infoGraphic li .number.fontColor2 {
  color: var(--green);
}
ul.infoGraphic li .number.fontColor3 {
  color: var(--purple);
}
ul.infoGraphic li .number.fontColor4 {
  color: var(--gold);
}
ul.infoGraphic li .number.fontColor5 {
  color: var(--red);
}
ul.infoGraphic li .number.fontColor6 {
  color: var(--orange);
}
ul.infoGraphic li .coverWrap {
  transform: rotate(130deg);
  position: absolute;
  width: 18em;
  height: 15em;
  left: -3em;
  top: -1em;
}
ul.infoGraphic li .coverWrap .numberCover {
  position: absolute;
  background: var(--light_color);
  width: 18em;
  height: 6em;
  border-radius: 50% 50% 0 0;
  border-bottom: 3px solid #f5f8f7;
  transition: all 0.4s;
}
ul.infoGraphic li .coverWrap .numberCover::before {
  position: absolute;
  content: "";
  bottom: 5px;
  left: 4em;
  right: 4em;
  top: 5em;
  box-shadow: 0 0 30px 17px #48668577;
  border-radius: 100px/10px;
  z-index: -1;
}
ul.infoGraphic li .coverWrap .numberCover::after {
  position: absolute;
  bottom: 0;
  content: "";
  left: -10%;
  width: 120%;
  height: 150%;
  background: radial-gradient(at bottom, #48668533, transparent, transparent);
  z-index: 1;
}
ul.infoGraphic li .content {
  margin: 5em 3em 1em 7em;
  position: relative;
}
ul.infoGraphic li .content h2 {
  font-size:var(--sub_heading_font);
  font-weight: 500;
  text-align: center;
  text-transform: capitalize;
  padding-bottom: 5px;
  margin: 0px !important;
}
ul.infoGraphic li .content p {
  line-height: 1.5em;
  text-align: center;
  font-size:var(--normal_font);
}

ul.infoGraphic li:hover .coverWrap .numberCover {
  border-radius: 100%;
}

.icon {
  position: absolute;
  font-size: 2rem;
  text-align: center;
  top: -1.3em;
  left: 50%;
  transform: translatex(-50%);
}
.icon:before {
  color: #666;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
}

.iconCodepen:before {
  content: "";
}

.iconSocial:before {
  content: "";
}

.iconAirplane:before {
  content: "";
}

.iconMap:before {
  content: "";
}

.iconBulb:before {
  content: "";
}

.iconPeace:before {
  content: "";
}

.icon_main{
  width:100%;
  text-align:center;
}
.icon_process{
  width: 50px;
  height: 50px;
  display: inline-flex;
}
.icon_process img{
  width:100%;
  height:100%;
  object-fit:scale-down;
}

/* End Our Process */


/* ---title--- */

.heading h2,h6{
  text-align:center;
  color:var(--title_color)
}
.heading h6{
  font-size: var(--sub_heading_font);
}
.heading h2{
  text-align:center;
  font-weight:600;
  margin-bottom: 15px;
  font-size: var(--main_heding_font);
}
.heading h3{
  text-align:center;
  font-weight:600;
  margin-bottom: 15px;
  font-size: 25px;
}
.heading_white{
  color:var(--white) !important;
  font-size: var(--sub_heading_font);
}

/* ---End title--- */


/* tech */
.bg_tech{
  background:var(--white);
  padding:20px;
  padding-top: 30px;
  padding-bottom:30px;
}
.grey_icon{
  width:100%;
  height:100px;
  text-align: center;
}
.grey_icon img{
  width:60%;
  height:100%;
  object-fit: scale-down;
  filter: grayscale(100%);
}

.grey_icon img:hover{
  filter: grayscale(0%);
  transform: scale(1.1);
  transition: all 0.4s;
}

/* footer */
.footer{
  background: var(--bg_blue);
  padding: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.color_ft h4 {
  color:var(--white);
  font-size: 20px;
}
.color_ft li{
  color: var(--footer_color) !important;
  text-decoration:none !important;
  padding-bottom:5px;
  font-size:var(--normal_font);
}
.color_ft li a{
  color: var(--footer_color) !important;
  text-decoration:none !important;
  padding-bottom:5px;
  font-size:var(--normal_font);
}
.color_ft li a:hover{
  color: var(--orange) !important;
 
}
.copy_right{
  background:var(--orange);
  text-align: center;
}
.color_ft p{
  color: var(--white) !important; 
  padding:10px;
  font-size:14px;
}
.contact_us_icon li{
  display:inline-flex;
  align-items:center;
}
.contact_us_icon2 li{
  display:block;
  align-items:center;
}
.contact_us_icon2 li i{
  color:var(--white);
  font-size:var(--normal_font);
  padding-right:10px;
 }

.contact_us_icon li i{
 color:var(--white);
 font-size:var(--normal_font);
 padding-right:10px;
}

.color_ft ul{
  padding:0px !important;
}
.footer_img{
  width:200px;
  padding-bottom:20px;
}
.footer_img img{
  width:100%;
}
.footer_main_logo{
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

/* Contactus */
.bg_contact{
  background:var(--light_color);
  padding: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.Contact_us_card h4{
  text-align:center;
  font-size:25px;
}
.Contact_us_card .contact_sub_text{
  text-align:center;
  font-size:var(--normal_font);
}
.contact_field .input-group{
  margin-bottom:20px;
}
.contact_field .input-group input{
  border-left:none !important;
  padding-left: 5px !important;
  padding: 10px !important;
}
.contact_field .input-group .form-control:focus{
 box-shadow:none !important;
 /* border:none !important; */
 outline:none !important;
 border-color:#dee2e6 !important;
}

.contact_field .input-group .form-control:focus-visible{
  box-shadow:none !important;
  /* border:none !important; */
  outline:none !important;
 }

.input-group-text{
  background:var(--white) !important;
}
.Contact_us_card{
  padding: 30px;
  background: var(--white);
  border-radius: 5px;
  padding-top: 30px;
  padding-bottom: 30px;

}

.btn_mystyle{
  padding-left:30px !important;
  padding-right:30px !important;
}
.Contact_detail .Code_details{
  padding: 0px 4px 0px 0px;
}
.Contact_detail .Num_details{
  padding: 0px 0px 0px 4px;
}

/* Core Focus Start*/

.container_Core{
   background-color: var(--white);
}
.Core_center{
  text-align: center  ;
  color: var(--black);
  padding-top: 50px;
}
.Core_center h2{
  font-weight: 800;
  font-size: 30px;
}

.content_box{
  padding-left: 15px !important;
  padding-right: 15px !important;
  padding-top:25px;
}
.Core_card_item{
  text-align: justify;
  height: auto;
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 25px;
  -webkit-transition: .3s linear; 
  -moz-transition:.3s linear; 
  -ms-transition:.3s linear; 
  -o-transition:.3s linear;
  transition: .3s linear;
  background: var(--light_blue);
  border: 1px solid var(--white);
}
.Core_card_item p{
  padding: 10px;
  padding-top: 0px;
  font-size:var(--normal_font);
  margin-bottom: 10px;
}

.Core_card_item1 {
  min-height: 225px !important;
}
/* @media only screen and (max-width: 900px) {
  .Core_card_item1 {
    min-height: 350px !important;
  } 
} */
/* @media only screen and (min-width: 400px) {
  .Core_card_item1 {
    min-height: 250px !important;
  } 
} */
.Core_card_item:hover{
  color: var(--black);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--button);

}
.Core_card_item:hover h2{
  color: var(--black);
}
.Core_card_icon{
  display: flex;  
  justify-content: center;
  margin-bottom: 20px;
}
.Core_card_icon img{
  width: 60px;
  height: 60px;
  object-fit: scale-down;
}
.Core_card_item h2{
  font-size: var(--sub_heading_font);
  margin: 15px 0 15px;
  text-decoration: none;
  color: var(--black);
  font-weight: 700;
  text-align: center;
} 


/* Core Focus End*/

/* Engage start */
.bg_Engage{
  background: var(--bg_blue);
  padding: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.card_price{
  display: flex;
  justify-content: center;
}

.Engage_center{
  text-align: center  ;
  color: var(--white);
  padding-top: 50px;
}
.Engage_center h2{
  font-weight: 800;
  font-size: 30px;
}

.card_engage {
  /* width: 310px; */
  min-height: 450px;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card_engage:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transform: scale(1.04);
}

.card_engage:nth-of-type(2)::before {
  background-color: var(--color06);
  color: var(--color03);
}

.card_engage:nth-of-type(3)::before {
  background-color: var(--color07);
  color: var(--color12);
} 

/* Info */
.card__info { 
  width: 100%;
  height: 130px;
  background-color: #3560E3;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card__info::before {
  background-color: var(--color02);
  width: 100%;
  height: 100%;
  opacity: 0.8;

  content: '';
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
}

.card:nth-of-type(2) .card__info::before {
  background-color: var(--color03);
}

.card:nth-of-type(3) .card__info::before {
  background-color: var(--color04);
}

.card__info h4 {
  color: var(--white);
  margin: 5px 0px;
  font-size:var(--sub_heading_font);
  font-weight: 300;
  letter-spacing: 1px;
}

.card__info h2 {
  color: var(--white);
  margin-bottom: 5px;
  font-size:var(--main_heding_font);
  font-weight: 700;
  letter-spacing: 1px;
}

.card__info p {
  color: var(--white);
  font-size:var(--normal_font);
  font-weight: 400;
}


.card:nth-of-type(3) .card__priceSpan {
  color: var(--color01);
}

.card__content {
  background-color: var(--white);
  width: 100%;
  min-height: 550px;
  border-top: solid 2px;
  border-bottom: solid 2px;
  border-radius: 0px 0px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card__rows {
  width: 100%;
  padding: 10px;
  padding-bottom: 0px;
  display: inline-flex;
  align-items: center;
}


.card__rows p {
  color: var(--black);
  width: 100%;
  padding: 0px 15px;
  padding-left: 10px;
  text-align: left; 
  margin: 0px;
  font-size:var(--normal_font);
  font-weight: 500;
}

.card__rows p:nth-of-type(odd) {
  background-color: var(--color08);
}

.card__link {
  padding: 12px 15px;
  margin: 20px 0;
  text-decoration: none;
  border-radius: 50px;
  color: white;
  width: 250px;
  text-align: center;
  background-color: #3560E3;
  font-size:var(--sub_heading_font);
  position: absolute;
  bottom:0px;
}

.card__link:hover {
  background-color: #3560E3 !important;
}

.card:nth-of-type(2) .card__link:hover {
  background-color: #3560E3 !important;
}

.card:nth-of-type(3) .card__link:hover {
  background-color: #3560E3 !important;
} 

/* Engage End*/

/* media Query */
@media only screen and (max-width: 600px) {

  ul.infoGraphic li .coverWrap .numberCover::after {
    width: 100% !important;
    height: 120% !important;

}
  .typing {
    width:23ch !important;
    font-size: 1.3em !important;
}
.header_logo {
  top: 50% !important;
  left: 6% !important;
}

.heading h2 {
  font-size: var(--main_mobile_heding_font);
}
.content_row {
  padding-top: 10px !important;
}
.card_align .content.show {
  padding:0px !important;
}
.detail-box p {
  padding-top: 10px !important;
}
ul.infoGraphic li .content {
  margin: 5em 0em 1em 6em !important;

}
.card__rows {
  padding: 8px !important;
}
.Contact_detail .Code_details {
  padding: 0px !important;
}
.Contact_detail .Num_details {
  padding: 0px !important;
}
.calender_Card{
  padding-bottom: 10px;
}
.card__link {

  position: unset !important;
  bottom: 0px;
}
.card__content {
  min-height:unset !important;
}
.Core_card_item1 {
  min-height: auto !important;
} 
.About_icon {
  margin-bottom: 20px;
}

}

/* calender  */

/* #my-cal-inline .h-full{
  display: inline-flex !important;
  flex-wrap: wrap !important;
  column-gap: 14px !important;
  justify-content: flex-start !important;
  width: 100% !important;
  background:red;
}

#my-cal-inline .h-full button{
  background:red;
  width:100px !important;
} */


/* typing animation */

.typing {
  /* width: 23ch; */
  /* animation: typing 7s steps(28), blink 0.5s step-end infinite alternate; */
  white-space: nowrap;
  /* overflow: hidden; */
  /* border-right: 3px solid var(--black); */
  font-size: 3em;
  color:var(--white);
  font-weight:bold;
  margin-top:10px;
  text-transform: uppercase;
}

@keyframes typing {
  from {
    width: 0;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.calender_Card img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:5px;
}
.calender_Card{
  width:100%;
  height:100%;
}
.button_book{
  background: var(--orange);
  padding-left: 20px;
  padding-right: 20px;
  color: #fff;
}

/* PRELOADER CSS */
.page-loader {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: #272727;
  z-index: 1000;
}
.page-loader .txt {
  color: #666;
  text-align: center;
  top: 40%;
  position: relative;
  width: 100%;

}
.page-loader .txt img {
 width:25%;
 margin:0 auto;

}

.calender_padding{
  padding-right:5px;
}
.text_align{
  text-align: justify !important;
}

/* Software product Start*/
.product_heading {
  text-align: center;
}

.product_container{
  margin-bottom: 40px;
  margin-top: 40px;
}

.product_heading .product_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}


.product_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;  
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  margin-top: 25px;
  background-color: var(--light_blue);
  padding: 20px;
  border-radius: 5px;
  border: 1px solid var(--white);
  transition: all .3s ease-in-out;
  min-height:275px;
}
.box_new{
  min-height:200px !important;

}
.box2{
  min-height:230px !important;
}

.product_section .row :hover .box{
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--button);
}

.product_section .box .box_info h5 {
  color: var(--bg_blue);
  font-size: var(--sub_heading_fon);
  font-weight: 600;
  text-align: left;
  margin-bottom: 15px; 
}

.product_section .box .box_info p{
  text-align: justify;
  margin-bottom: 6px; 
}

.align_tag a {
  color: var(--black);
  font-weight: 600;
  text-decoration: none ;
  text-align: left;
}

.align_tag a:hover {
  color: var(--orange);
}

.section_title{
  text-align:center;
  font-size:var(--main_heding_font);
  color:var(--orange);
}

/* Software product End*/

/* Web Development Start*/

.Web_container .web_app{
  margin-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.bg_img {
  /* background-image: url(images/Web/app_dev.jpg); */
  background-repeat: repeat;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  position: relative;
  cursor: pointer;
  padding: 10px;
  min-height: 200px;
  max-width: 420px;
} 
.content_title h3{
  color: white;
  font-size: var(--sub_heading_fon);
  padding: 20px;
  margin-top: 10px;
}
.web_app:hover .content_title h3{
  display: none;
}
.Content_text{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  border-radius: 5px;
  background-color: #012c74ab;
  padding: 16px;
  box-shadow: 0 4px 40px 0 rgba(212,224,237,.58);
  font-size: var(--normal_font);
  color: var(--white);
  text-align: justify;
  z-index: 3;
}
.Content_text:hover{
  opacity: 1;
}
/* Web Development End*/

/* Web Companion Start*/

.Web_container .web_app{
  margin-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
}
 
.content_title h3{
  color: white;
  font-size: var(--sub_heading_fon);
  padding: 20px;
  margin-top: 10px;
}
.Companion_container .Companion_app{
  margin-top: 20px;
}
.Companion_card {
  width: 100%;
  height: 100%;
  padding: 20px 20px;
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.5s;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #fff;
}
.Companion_card::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #012c74;
  position: absolute;
  left: 0%;
  top: -98%;
  z-index: -2;
  transition: all 0.4s cubic-bezier(0.77, -0.04, 0, 0.99);
}
.icon-wrapper {
  background-color: #2c7bfe;
  position: relative;
  margin: auto;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.5s;
  z-index: 3;
}
.Companion_card:hover:after {
  top: 0%;
}
.Companion_Content h3{
  font-size: var(--sub_heading_font);
  color: var(--black);
}
.Companion_Content p{
  font-size: var(--normal_font);
  color: var(--black);
  text-align: justify;
}
.Companion_card .icon-wrapper {
  background-color:var(--white);
  color:#012c74;
}
.Companion_card:hover .icon-wrapper{
  color:var(--orange);
}
.Companion_card:hover h3 {
  color: var(--white);
}
.Companion_card:hover p {
  color: var(--white);
}


/* Web Companion End*/

/* Mob Development End*/
/* .Mob_container{
  margin-bottom: 40px;
  margin-top: 20px;
} */

.Mob_App{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 20px;
}
.Mob_App .card_box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width:100%;
  max-width: 100%;
  height: 270px;
  background: var(--white);
  border-radius: 10px;
  transition: 0.5s;
  box-shadow: var(--shadow-large);
  margin-top: 40px;
}
.Mob_App .card_box:hover {
  height: 380px;
}
.Mob_App .card_box .img-box {
  position: absolute;
    top: 20px;
    width: 90%;
    height: 200px;
    /* background: var(--black); */
    border-radius: 10px;
    overflow: hidden;
    transition: 0.5s;
}
.Mob_App .card_box:hover .img-box {
  top: -50px;
  scale: 0.75;
  box-shadow: var(--shadow-large);
}
.Mob_App .card_box .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.Mob_App .card_box .content_1 {
  position: absolute;
  top: 235px;
  width: 100%;
  height: 30px; 
  padding: 0 30px;
  text-align: center;
  overflow: hidden;
  transition: 0.5s;
}
.Mob_App .card_box:hover .content_1 {
  top: 150px;
    height: 200px;
}
.Mob_App .card_box .content_1 h2 {
  font-size: var(--sub_heading_fon);
  font-weight: 700;
  color: var(--bg_blue);
}
.Mob_App .card_box .content_1 p {
  color: var(--black);
  font-size: var(--normal_font);
  text-align: justify;
}
.Mob_App .card_box .content_1 .hyper_1 a {
  position: relative;
  top: 15px;
  display: inline-block;
  padding: 12px 25px;
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  background-color: var(--button);
  border-radius: 5px;
}

.Mob_App .card_box .content_1 .hyper_1 a:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 600px) {
  .Mob_App .card_box .content_1 .hyper_1 a {
    display: none;
  }
  .Mob_App .card_box:hover {
    height: 295px;
  }
  .nav-links li{
    height:unset !important;
  }
  .nav-links li a {
    color: var(--white) !important;
    text-decoration: none;
    font-size: 16px;
    padding: 9px 15px;
    transition: all 0.3s ease;
    /* border-bottom: 2px solid transparent; */
}
.nav-links .drop-menu li a{
  color:var(--black) !important;
  font-size: 14px;
}
}
/* Mob Development Start*/

/* Testing Service Start*/
.widget_img img{
  width: 60px;
  height: 60px;
  object-fit: scale-down;
}
.widget_img{
  margin-right: 20px;
}
.Testing_container .main_widget{
  margin-top: 20px;
}
.widget_box{
  /* background-color: var(--grey); */
    border: 1px solid var(--grey);
    padding: 20px;
    border-radius: 10px;
    /* margin-top: 20px; */
    height: 100%;
    min-height: 188px;
    width: 100%;
}
.content_widget{
 display: flex;
 text-align: left;
}
.content_1 h2{
  font-size: var(--sub_heading_font);
  color: var(--black);
}
.content_1 p{
  font-size: var(--normal_font);
  color: var(--bg_blue);
  text-align: justify;
}
.Testing_container .widget_box:hover{
  background-color: var(--orange);
}
.Testing_container .widget_box:hover .content_1 h2 {
  color: var(--white);
}
.Testing_container .widget_box:hover .content_1 p {
  color: var(--white);
}
/* Testing Service End*/

/* About Us Start*/
.About_icon{
  display: flex;
}
.About_img img{
  width: 100%;
  height: 100%;
  border-radius:5px;
}
.About_img{
  width:100%;

}

.About_card_item p{
  font-size: var(--normal_font);
  text-align: justify;
  margin: 0px;
  margin-bottom: 15px;
}
.mission_align{
  display: inline-flex;
  align-items: center;
}

/* About Us End*/

.line_style{
  text-align: center;
}

.line{
  border-bottom: 2px solid var(--main_color);
  margin-bottom: 13px;
  width: 30%;
  display: inline-block;
}
.line_white{
  border-bottom: 2px solid var(--white);
  margin-bottom: 13px;
  width: 30%;
  display: inline-block;
}

/* Data Analytics Services We Offer */
.Card_color {
  background:var(--light_color);
  cursor: pointer;
  border-radius: 15px;
  position: relative;
  padding: 25px 30px;
  color: var(--black);
  min-height:225px;
}

.Card_color::after {
  content: "";
  background: var(--bg_blue);
  border-radius: 15px;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  clip-path: circle(10% at 0% 0%);
  transition: all 0.3s ease-in;
}

.Card_color_content {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in;
}

.Card_color:hover::after {
  clip-path: circle(100%);
}

.Card_color:hover .Card_color_content {
  color: var(--white);
}
.show-cont h3{
  font-size:20px !important;
}
.Card_color_content p{
  text-align:justify;
}
/* End Data Analytics Services We Offer */

@media only screen and (max-width: 820px) and (min-width: 750px)  {
.software_card .box_width{
  width:50% !important;
}
.Core_card .content_box{
  width:50% !important;
}
.infoGraphic .col-md-4{
  width:50% !important;
}
.Price_card .col-md-4{
  width:50% !important;
}
.Product_Development .col-md-4{
  width:50% !important;
}
.Web_App_Development .col-md-4{
  width:50% !important;
}
.Development_Companion .Companion_app{
  width:50% !important;
}
.Mob_App .col-md-4{
  width:50% !important;
}
.Testing_App .main_widget{
  width:50% !important;
}
/* .Core_card_item1 {
  min-height: 300px !important;
}  */
}
.bg_img::after{
  background: #00000059;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.bg_img .content_title{
position: absolute;
z-index:2;
}

/* privacy_policy */
.content_text{
  color: var(--title_color);
  font-size: var(--normal_font);
  text-align: justify;
  margin-bottom: 30px;
}
.highlight{
font-weight:bold;
}
.link_jetz{
  text-decoration: none;
  color:var(--orange);
  font-size: var(--normal_font);
}
.heading_policy{
  color: var(--title_color);
}

/* Terms */
.icon_terms{
  padding-right:5px;
}
.icon_terms i{
  color:var(--orange)
}
.mail_label{
  color: var(--orange);
}


/* Web Companion Start*/
.shape-box {
  display: inline-block;
  position: relative;
  z-index: 1;
  /* max-width: 500px; */
  min-height: 300px;
  width: 100%;
  margin: 30px 10px 30px;
  box-shadow: 0 6px 30px 0 rgba(0, 0, 0, .12);
  overflow: hidden;
  border-radius: 5px;
}

.shape-box_half {
  overflow: hidden;
  text-align: left;
}

.shape-box_half:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: skewY(25deg);
  transform-origin: top left;
  transition: \transform .4s;
  background: #fff;
  z-index: 1;
}

.shape-box>img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.bg-black {
  background-color: #000;
}

.shape-box_half .figure {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 30px 30px;
  transition: \transform .4s;
  transform: translateY(100%);
  z-index: 3;
}

.shape-box_half .figure .show-cont {
  position: absolute;
  bottom: calc(100% + 30px);
  left: 30px;
  right: 30px;
  transition: bottom .4s;
}

.card-main-title {
  margin-top: 8px;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: #292b2c;
}

.read-more-btn {
  /* border: 2px solid #db3236; */
  font-size: 14px;
  cursor: pointer;
  padding: 10px 20px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  background: var(--button);
  color: #fff;
  border-radius: 5px;
  margin-top: 25px;
  text-decoration: none;
}

.read-more-btn:hover {
  background: transparent;
  color: #db3236;

}

.shape-box_half>.after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0000008a;
  opacity: 0;
  transition: opacity .4s;
}

/*On hover*/
.shape-box_half:hover:before {
  transform: skewY(10deg);
}

.shape-box_half:hover .figure {
  transform: translateY(0);
}

.shape-box_half:hover .figure .show-cont {
  bottom: 100%;
}

.shape-box_half:hover>.after {
  opacity: 1;
}
.figure p{
  text-align:justify;
}
/* Web Companion Start*/

/* top button */


.back-to-top {
  margin: 0 !important;
  padding: 0 !important;
  background: #fff;
  height: 0px;
  width: 0px;
  overflow: hidden;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  color: transparent;
  clear: both;
  visibility: hidden;
  position: fixed;
  cursor: pointer;
  display: block;
  border: none;
  right: 50px;
  bottom: 75px;
  font-size: 0px;
  outline: 0 !important;
  z-index: 99;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.back-to-top:hover,
.back-to-top:active,
.back-to-top:focus {
  outline: 0 !important;
}
.back-to-top::before,
.back-to-top::after {
  content: "";
  display: block;
  vertical-align: middle;
  border-bottom: solid 10px #ea5d5f;
  border-left: solid 10px transparent;
  line-height: 0;
  border-right: solid 10px transparent;
  height: 0;
  margin: 18px auto 0;
  width: 0;
  border-radius: 20px;
  visibility: hidden;
}
.back-to-top.show::after,
.back-to-top.show::before {
  visibility: visible;
}
.back-to-top::after {
  border-bottom-color: #fff;
  position: relative;
  top: -24px;
}
.back-to-top.show {
  display: block;
  background: #fff;
  color: #00ab6c;
  font-size: 25px;
  right: 25px;
  bottom: 50px;
  height: 50px;
  width: 50px;
  visibility: visible;
  box-shadow: 0px 2px 4px 1px #00000014;
  -webkit-box-shadow: 0px 2px 4px 1px #00000014;
  -moz-box-shadow: 0px 2px 4px 1px #00000014;
}
.back-to-top.show:active {
  box-shadow: 0px 4px 8px 2px #00000014;
  -webkit-box-shadow: 0px 4px 8px 2px #00000014;
  -moz-box-shadow: 0px 4px 8px 2px #00000014;
}
.Core_card_item1 h2{
  text-align:left;
  padding-left:10px;
}



/* ----------------------- */
nav{
  position: fixed;
  z-index: 99;
  width: 100%;
  background:var(--white);
  box-shadow: var(--shadow-medium);
}
nav .wrapper{
  position: relative;
  /* max-width: 1300px; */
  padding: 0px 10px;
  height: 70px;
  /* line-height: 70px; */
  margin: initial;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links{
  display: inline-flex;
  margin: 0px;
  align-items: center;
}
.nav-links li{
  list-style: none;
  padding-right:10px;
  padding-left:10px;
}
.nav-links li a{
  color: var(--black);
  text-decoration: none;
  font-size: 16px;
  padding: 9px 15px;
  transition: all 0.3s ease;
  /* border-bottom: 2px solid transparent; */
}
.nav-links li a:hover{
  /* border-bottom: 2px solid var(--orange); */
  color: var(--orange);
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background:var(--white);
  width:300px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
  padding: 0px;
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}

.button_book{
  color: var(--white) !important;
}

.hover_arrow i.bx {
  /* font-size: 1.5rem; */
  line-height: inherit;
  transition: rotate 0.4s ease;
}

/* .mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(25% - 30px);
  line-height: 45px;
} */
/* .content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
} */

.nav-links li{
  /* display:inline-flex; */
  align-items: center;
  height:100%;
}

.wrapper .btn{
  color:var(--black);
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
} 

@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #242526;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 16px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: var(--white);
    font-size: 16px;
    /* font-weight: 500; */
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  /* .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  } */
}
nav input{
  display: none;
}
