* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
nav {
  /* position: fixed; */
  z-index: 99;
  width: 100%;
  padding: 0px 0px;
  background: white;
}
nav .wrapper {
  position: relative;
  /* max-width: 1300px; */
  width: 100vw !important;
  padding: 0px 0px;
  /* height: 50px; */
  line-height: 70px;
  /* margin: auto; */
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  box-shadow: 0px 5px 16px 0px #00000033;
}
.wrapper .logo a {
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links {
  display: inline-flex;
}
.nav-links li {
  list-style: none;
  margin-top: 20px;
}
.nav-links li a {
  color: #212529;
  text-decoration: none;
  /* transition: all 0.1s ease; */
  padding: 5px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
}
.nav-links li a:hover,
.nav-links li a.active {
  text-decoration: underline 2.5px solid #212529;
  text-underline-offset: 6px;
}

.para-main-title1 {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
}

.nav-links .mobile-item {
  display: none;
}
.nav-links .drop-menu {
  position: absolute;
  background: black;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.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;
}
.mega-box {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  /* margin: 70px 0px; */
  top: 95px !important;
  opacity: 0;
  visibility: hidden;
  /* border: 2px solid #242526; */
  background-color: #fafafa;
  box-shadow: 0px 6px 16px 0px #00000040;
  z-index: 10000000;
}

.navbar-free-trialbutton:hover {
  text-decoration: none;
  height: fit-content;
  background-color: #212529 !important;
  color: white;
}

.navbar-free-trialbutton {
  height: fit-content;
  border-radius: 10px !important;
  border: 1.5px solid #212529;
  padding: 8px 30px !important;
}

.navbar-links {
  height: 100%;
}

.navbar-links ul {
  /* display: flex; */
  margin: 0;
  padding: 0;
}

.navbar-links li {
  list-style: none;
}

.navbar-links li a {
  display: block;
  text-decoration: none;
  /* color: #150b5b;
    padding: 1rem;
    font-weight: 600;
    font-size: 19px; */
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
  padding: 0rem 1rem;
}

.navbar-links li a:hover {
  color: #137bca;
}
.mega-box .content {
  background: rgb(36, 36, 36);
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(41, 33, 33, 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: bisque;
  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: black;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover {
  color: #f2f2f2;
}
.wrapper .btn {
  /* color: #fff; */
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
}
.close-btn {
  color: white;
}


.mobile-screen-dd-visiblity{
  visibility: hidden;
}

@media (max-width: 1100px) {
  .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: 20px;
  }
  .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: #f2f2f2;
    font-size: 20px;
    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;
  }

  .tabcontent {
    display: none !important;
  }

  .tab button {
    display: block;
    background-color: inherit;
    color: black;
    padding: 7px 30px;
    margin-left: -15px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
  }

  .tab {
    float: left;
    /* border: 1px solid #ccc; */
    /* background-color: #f1f1f1; */
    width: 100% !important;
    height: fit-content;
    padding: 20px 1px !important;
  }

  .mega-box {
    position: static;
    height: fit-content;
    top: 65px;
    opacity: 1;
    visibility: visible;
    /* padding: 10px 10px; */
    /* max-height: 0px; */
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 20px;
  }

  .navbar-free-trialbutton {
    height: fit-content;
    border-radius: 10px !important;
    border: none;
    padding: 5px 15px !important;
  }
}

@media (max-width: 1300px) {
  .nav-links li a {
    color: #212529;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: left;
  }

  nav .wrapper {
    position: relative;
    /* max-width: 1300px; */
    padding: 0px 95px !important;
    /* height: 50px; */
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 5px 16px 0px #00000033;
    color: #000000cc;
  }
}

@media (max-width: 1400px) {
  nav .wrapper {
    position: relative;
    /* max-width: 1300px; */
    padding: 0px 45px;
    /* height: 50px; */
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 5px 16px 0px #00000033;
    color: #000000cc;
  }
}

@media (max-width: 470px) {
  nav .wrapper {
    position: relative;
    /* max-width: 1300px; */
    padding: 0px 20px 0px 20px !important;
    /* height: 50px; */
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 5px 16px 0px #00000033;
  }

  nav-links li a {
    color: #212529;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: left;
  }

  .navbar-free-trialbutton {
    height: fit-content;
    border-radius: 10px !important;
    border: none;
    /* padding: 5px 35px !important; */
  }

  .mobile-srceen-nav-products {
    display: none;
  }

  .mobile-screen-dd-visiblity{
    visibility: visible;
  }
}

/* .mobile-srceen-nav-products {
  display: block;
} */

nav input {
  display: none;
}

.body-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div {
  font-size: 45px;
  font-weight: 600;
}
/* Style the tab */
.tab {
  float: left;
  /* border: 1px solid #ccc; */
  /* background-color: #f1f1f1; */
  width: 30%;
  height: fit-content;
  padding: 35px 19px;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  display: block;
  background-color: inherit;
  color: black;
  /* padding: 0px 30px; */
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
}

/* Change background color of buttons on hover */
/* .tab button:hover {
    background-color: #ddd;
  } */

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #137bca33;
  border-radius: 10px;
}

/* Style the tab content */
.tabcontent {
  float: left;
  padding: 20px 40px;
  /* border: 1px solid #ccc; */
  width: 70%;
  border-left: 0.5px solid #0000004d;
  height: fit-content;
  display: none;
}

.crm-border {
  border-bottom: 0.5px solid #0000004d;
}
.float-end {
  float: inline-end;
  font-size: 30px;
  font-weight: 100;
}
/* 
  .mega-box-left{
    border-right: 1px solid #242526;
  } */

.paara-menu {
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
}

.para-main {
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
}

.para-main-title {
  font-size: 25px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
}

.tab-left-main {
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0em;
  text-align: left;
}

.button-edit-mega-menu {
  width: fit-content;
  height: 34px;
  border-radius: 17px;
  border: 1.2px solid #137bca;
  font-size: 16px;
  font-weight: 600;
  line-height: 1px;
  letter-spacing: 0em;
  text-align: left;
  color: #137bca;
  padding: 10px 25px;
  background-color: transparent;
}

.see-more-mega-menu {
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
  color: #137bca !important;
  cursor: pointer;
  text-decoration: none;
}

.tablinks {
  font-size: 20px;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: 0em;
  text-align: left;
}

.navbar-list-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
}

.navbar-list-name.active {
  border-bottom: 1px solid #242526;
}

.dropdown-btn {
  padding: 0px 0px 0px 20px;
  text-decoration: none;
  /* font-size: 20px; */
  font-weight: 600px;
  color: white;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}

/* On mouse-over */
.sidenav a:hover,
.dropdown-btn:hover {
  color: #f1f1f1;
}

/* Main content */
.main {
  margin-left: 200px; /* Same as the width of the sidenav */
  font-size: 20px; /* Increased text to enable scrolling */
  padding: 0px 10px;
}

/* Add an active class to the active dropdown button */

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
  display: none;
  background-color: #f1f1f1;
  padding: 18px;
  border-radius: 10px;
}

.dd-item {
  padding: 10px !important;
}

/* Optional: Style the caret down icon */
/* .fa-caret-down {
  float: right;
  padding-right: 16px;
  align-items: center;
  margin-left: -20px !important;
} */
