@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
}

/* width */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(124, 124, 124, 0.8);
}

.container {
  width: 75%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container {
    width: 90%;
  }
}

a {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  font-family: 'Inter', sans-serif;
}

button {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  font-family: 'Inter', sans-serif;
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

input {
  -webkit-tap-highlight-color: transparent;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

::-webkit-datetime-edit-year-field:not([aria-valuenow]),
::-webkit-datetime-edit-month-field:not([aria-valuenow]),
::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
  color: transparent;
}

textarea {
  font-family: 'Inter', sans-serif;
}

main {
  overflow: hidden;
}





.loginSuccessAlert {
  position: fixed;
  top: 80px;
  right: -110%;
  z-index: 10;
  background: #dfffdf;
  padding: 20px 0px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-left: 5px solid #11C26D;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 300px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.loginSuccessAlert .loginSuccessAlertBox1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.loginSuccessAlert .loginSuccessAlertBox1 .tikBox {
  width: 45px;
  height: 45px;
  border-radius: 50px;
  background: #11C26D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  color: white;
}

.loginSuccessAlert .loginSuccessAlertBox2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70%;
          flex: 0 0 70%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 20px;
}

.loginSuccessAlert .loginSuccessAlertBox2 h1 {
  font-size: 18px;
  font-weight: 700;
  color: black;
}

.loginSuccessAlert .loginSuccessAlertBox2 span {
  font-size: 13px;
  color: black;
  opacity: 0.6;
  font-weight: 500;
  margin-top: 5px;
}

.loginSuccessAlertActive {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  right: 10px;
}




.shimmer {
  position: fixed;
  left: 0;
  z-index: 100;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(19, 18, 18, 0.308);
  -webkit-box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(225, 225, 225, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: none;
}

.popup {
  position: fixed;
  z-index: 101;
  background: white;
  padding: 30px;
  border-radius: 5px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 30%;
  display: none;
}

@media (max-width: 768px) {
  .popup {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .popup {
    width: 90%;
  }
}

.popup .popuClose {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
  font-size: 20px;
  color: rgba(124, 124, 124, 0.8);
}

.popup h3 {
  font-size: 20px;
  font-weight: 600;
  color: #132743;
  margin-top: 30px;
}

.popup form {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
}

.popup form .formGroup {
  width: 100%;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.popup form .formGroup label {
  font-size: 14px;
  font-weight: 500;
  color: #132743;
}

.popup form .formGroup input {
  width: 100%;
  height: 40px;
  padding: 10px;
  background: #f5f5f5;
  border-radius: 5px;
  border: none;
  outline: none;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 600;
  color: #132743;
}

.popup form .btngroup {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.popup form .btngroup button {
  width: 100%;
  padding: 15px;
  border-radius: 5px;
  border: none;
  outline: none;
  background: #4c2fec;
  color: white;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 400;
  margin-top: 30px;
}

.popup form .btngroup button:hover {
  background: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}





.Reviewpopup {
  position: fixed;
  z-index: 101;
  background: white;
  padding: 30px;
  border-radius: 5px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 30%;
  display: none;
}

@media (max-width: 768px) {
  .Reviewpopup {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .Reviewpopup {
    width: 90%;
  }
}

.Reviewpopup .ReviewpopuClose {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
  font-size: 20px;
  color: rgba(124, 124, 124, 0.8);
}

.Reviewpopup h3 {
  font-size: 20px;
  font-weight: 600;
  color: #132743;
  margin-top: 30px;
}

.Reviewpopup form {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
}

.Reviewpopup form .formGroup {
  width: 100%;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.Reviewpopup form .formGroup label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35%;
          flex: 0 0 35%;
  font-size: 14px;
  font-weight: 500;
  color: #132743;
}

.Reviewpopup form .formGroup input {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  height: 50px;
  background: none;
  border-radius: 5px;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  color: #132743;
}

.Reviewpopup form .formGroup .quantityBtnSection {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}

.Reviewpopup form .formGroup .quantityBtnSection .quantityBtn {
  width: 35px;
  height: 35px;
}

.Reviewpopup form .formGroup .quantityBtnSection .quantityBtn button {
  width: 100%;
  height: 100%;
  background: white;
  border: 1px solid #f5f5f5;
  color: #132743;
  font-size: 18px;
  outline: none;
  cursor: pointer;
}

.Reviewpopup form .formGroup .quantityBtnSection .quantityBtn button:hover {
  background: #f5f5f5;
}

.Reviewpopup form .formGroup .quantityBtnSection Input {
  -webkit-box-flex: initial;
      -ms-flex: initial;
          flex: initial;
  width: 45px;
  height: 35px;
  margin: 0px 10px;
  background: white;
  border: 1px solid #f5f5f5;
  color: #132743;
  font-size: 16px;
  outline: none;
  padding: 10px;
  text-align: center;
}

.Reviewpopup form .btngroup {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.Reviewpopup form .btngroup button {
  width: 100%;
  padding: 15px;
  border-radius: 5px;
  border: none;
  outline: none;
  background: #4c2fec;
  color: white;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 400;
  margin-top: 30px;
}

.Reviewpopup form .btngroup button:hover {
  background: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}


.sidemenu {
  width: 40%;
  position: fixed;
  height: 100vh;
  background: white;
  top: 0;
  z-index: 10000000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  right: -110%;
  -webkit-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
  overflow: hidden;
}

@media (max-width: 480px) {
  .sidemenu {
    width: 90%;
  }
}

.sidemenu .sidemenuProfile {
  width: 100%;
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: none !important;
}

.sidemenu .sidemenuProfile .sidemenuLogin {
  text-decoration: none;
  background: #4c2fec;
  border-radius: 5px;
  text-align: center;
  color: white;
  font-size: 14px;
  padding: 12px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidemenu .sidemenuProfile .profilesidemenuProfile {
  width: 100%;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: left;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidemenu .sidemenuProfile .profilesidemenuProfile .profilesidemenuProfileThumbnail {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  background: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #4c2fec;
}

.sidemenu .sidemenuProfile .profilesidemenuProfile .profilesidemenuProfileContent {
  width: calc(100% - 60px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.sidemenu .sidemenuProfile .profilesidemenuProfile .profilesidemenuProfileContent p {
  font-size: 16px;
  font-weight: 500;
  color: #132743;
  height: 20px;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.sidemenu .sidemenuProfile .profilesidemenuProfile .profilesidemenuProfileContent span {
  font-size: 12px;
  color: rgba(124, 124, 124, 0.8);
  margin-top: 0px;
  height: 17px;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.sidemenu .sidemenuProfile .profilesidemenuProfile .profilesidemenuProfileContent .downIcon {
  position: absolute;
  right: 0;
  top: 30%;
  color: black;
  opacity: 0.3;
  font-size: 16px;
}

.sidemenu .sidemenuBody {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: auto;
}

.sidemenu .sidemenuBody ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 0px;
}

.sidemenu .sidemenuBody ul li {
  list-style: none;
}

.sidemenu .sidemenuBody ul li a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  padding: 15px 20px;
  color: #132743;
}

.sidemenu .sidemenuBody ul li a:hover {
  background-color: #f5f5f5;
}

.sidemenu .sidemenuBody ul li a i {
  margin-right: 20px;
  opacity: 0.5;
}

.sidemenu .sidemenuBody ul li .sidemenuActive {
  background: #f5f5f5;
}

.sidemenu .sidemenuBody ul li .logout {
  border-top: 1px solid #eee;
  margin-top: 5px;
}

.sidemenu .sidemenuBody .sidemenuLogedLink {
  border-bottom: 1px solid #eee;
}

.sidemenu-active {
  right: 0;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}

nav, header {
  width: 100%;
  float: left;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  height: 80px;
}

@media (max-width: 768px) {
  nav, header {
    height: 60px;
  }
}

nav .navLogo, header .navLogo {
  text-decoration: none;
  height: 80px;
  width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  float: left;
}

@media (max-width: 768px) {
  nav .navLogo, header .navLogo {
    height: 60px;
  }
}

nav .navLogo h1, header .navLogo h1 {
  font-size: 20px;
  font-weight: 600;
  color: white;
}

nav .navLogo img, header .navLogo img {
  width: 110%;
  height: 110%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

nav .navLogo .blackLogo, header .navLogo .blackLogo {
  display: none;
  height: 80%;
}

nav .navLink, header .navLink {
  float: right;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  nav .navLink, header .navLink {
    display: none;
  }
}

nav .navLink ul li, header .navLink ul li {
  list-style: none;
  float: left;
}

nav .navLink ul li a, header .navLink ul li a {
  text-decoration: none;
  color: white;
  font-size: 12px;
  margin-left: 10px;
  font-weight: 300;
  padding: 10px 25px;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 5px;
  overflow: hidden;
}

nav .navLink ul li a:hover, header .navLink ul li a:hover {
  color: #4c2fec !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

nav .navLink ul li .navLinkActive, header .navLink ul li .navLinkActive {
  color: #4c2fec !important;
  font-weight: 700;
  font-size: 14px;
}

nav .navLink ul li .CotantLink, header .navLink ul li .CotantLink {
  color: black;
}

nav .navBar, header .navBar {
  float: right;
  height: 80px;
  display: none;
  margin-left: 70px;
}

@media (max-width: 768px) {
  nav .navBar, header .navBar {
    display: block;
    height: 60;
  }
}

nav .navBar .navBarBox, header .navBar .navBarBox {
  width: 25px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  margin-top: 25px;
}

nav .navBar .navBarBox span, header .navBar .navBarBox span {
  width: 100%;
  height: 2px;
  margin-top: 3px;
  background: white;
}

nav .navBar .navBarBox span:nth-child(1), header .navBar .navBarBox span:nth-child(1) {
  margin-top: 0;
}

nav .navProfile, header .navProfile {
  float: right;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 50px;
  display: none;
}

@media (max-width: 768px) {
  nav .navProfile, header .navProfile {
    display: none;
  }
}

nav .navProfile .navProfileBox, header .navProfile .navProfileBox {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #4c2fec;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #4c2fec;
  text-decoration: none;
  font-size: 14px;
}

nav .navProfile .navProfileBack, header .navProfile .navProfileBack {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: black;
}

nav .navProfile .navProfileBack i, header .navProfile .navProfileBack i {
  font-size: 16px;
}

.profilePopup {
  position: fixed;
  right: 5%;
  top: 120px;
  width: 280px;
  background: white;
  border-radius: 5px;
  z-index: 110;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
  -webkit-box-shadow: 0 0 20px rgba(29, 29, 29, 0.096);
          box-shadow: 0 0 20px rgba(29, 29, 29, 0.096);
}

.profilePopup .profilePopupProfile {
  width: 100%;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: left;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.profilePopup .profilePopupProfile .profilePopupProfileThumbnail {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  background: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #4c2fec;
}

.profilePopup .profilePopupProfile .profilePopupProfileContent {
  width: calc(100% - 60px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.profilePopup .profilePopupProfile .profilePopupProfileContent p {
  font-size: 16px;
  font-weight: 500;
  color: #132743;
  height: 20px;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.profilePopup .profilePopupProfile .profilePopupProfileContent span {
  font-size: 12px;
  color: rgba(124, 124, 124, 0.8);
  margin-top: 0px;
  height: 17px;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.profilePopup .profilePopupProfile .profilePopupProfileContent .downIcon {
  position: absolute;
  right: 0;
  top: 30%;
  color: black;
  opacity: 0.3;
  font-size: 16px;
}

.profilePopup .profilePopupLinks {
  width: 100%;
  float: left;
  padding: 5px 0px;
}

.profilePopup .profilePopupLinks ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.profilePopup .profilePopupLinks ul li {
  list-style: none;
}

.profilePopup .profilePopupLinks ul li a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  padding: 15px 20px;
  color: #132743;
}

.profilePopup .profilePopupLinks ul li a:hover {
  background-color: #f5f5f5;
}

.profilePopup .profilePopupLinks ul li a i {
  margin-right: 20px;
  opacity: 0.5;
}

.profilePopup .profilePopupLinks ul li .logout {
  border-top: 1px solid #eee;
  margin-top: 5px;
}

.profilePopupActive {
  top: 80px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: visible;
  opacity: 1;
}

@media (max-width: 768px) {
  .profilePopupActive {
    top: 60px;
  }
}

#login {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 100vh;
}
@media(max-width:480px){
    #login{
        height:100%;
    }
}

#login .loginForm {
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  padding: 0px 7.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media(max-width:480px){
    #login .loginForm{
        flex:100%;
        padding:0px 5%;
    }
}

#login .loginForm .loginBox {
  width: 100%;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  padding: 50px 50px;
}
@media(max-width:480px){
    #login .loginForm .loginBox{
        padding:50px 0px;
    }
}

#login .loginForm .loginBox form {
  width: 100%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#login .loginForm .loginBox form h1 {
  font-size: 2em;
  font-weight: 800;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}

#login .loginForm .loginBox form h1::after {
  position: absolute;
  content: '';
  height: 6px;
  width: 40%;
  bottom: -10px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  left: 50%;
  border-radius: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#e000ff), to(#8100ff));
  background: linear-gradient(90deg, #e000ff, #8100ff);
}

#login .loginForm .loginBox form .loginFormGroup {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
  position: relative;
}

#login .loginForm .loginBox form .loginFormGroup label {
  font-size: 14px;
  font-weight: 700;
}

#login .loginForm .loginBox form .loginFormGroup input {
  width: 100%;
  height: 45px;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px;
  outline: none;
}

#login .loginForm .loginBox form .loginFormGroup input::-webkit-input-placeholder {
  color: #cfcdcd;
}

#login .loginForm .loginBox form .loginFormGroup input:-ms-input-placeholder {
  color: #cfcdcd;
}

#login .loginForm .loginBox form .loginFormGroup input::-ms-input-placeholder {
  color: #cfcdcd;
}

#login .loginForm .loginBox form .loginFormGroup input::placeholder {
  color: #cfcdcd;
}

#login .loginForm .loginBox form .loginFormGroup .password-eye {
  position: absolute;
  background: none;
  border: none;
  outline: none;
  right: 10px;
  width: 20px !important;
  height: 20px !important;
  top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10 !important;
  color: black;
}

#login .loginForm .loginBox form .loginFormGroup #btnToggle {
  cursor: pointer;
}

#login .loginForm .loginBox form .frgpswd {
  width: 100%;
  margin-top: 15px;
}

#login .loginForm .loginBox form .frgpswd a {
  text-align: right;
  font-size: 12px;
  color: black;
  display: block;
  font-weight: 600;
}

#login .loginForm .loginBox form button {
  background: -webkit-gradient(linear, left top, right top, from(#e000ff), to(#8100ff));
  background: linear-gradient(90deg, #e000ff, #8100ff);
  width: 100%;
  margin-top: 30px;
  border-radius: 50px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  border: none;
  outline: none;
  cursor: pointer;
  color: white;
  padding: 15px;
  -webkit-box-shadow: 0 0 30px #eee;
          box-shadow: 0 0 30px #eee;
}

#login .loginForm .loginBox form .signUpBtn {
  background: -webkit-gradient(linear, left top, right top, from(#e000ff), to(#8100ff));
  background: linear-gradient(90deg, #e000ff, #8100ff);
  width: 100%;
  margin-top: 30px;
  border-radius: 50px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  border: none;
  outline: none;
  cursor: pointer;
  color: black;
  padding: 15px;
  -webkit-box-shadow: 0 0 30px #eee;
          box-shadow: 0 0 30px #eee;
  text-decoration: none;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

#login .loginForm .loginBox form .signUpBtn::before {
  position: absolute;
  width: 99%;
  height: 92%;
  content: '';
  top: 4%;
  left: 0.5%;
  background: white;
  z-index: -1;
  border-radius: 50px;
}

#login .loginThumnail {
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  background-color: #000;
  position: relative;
  z-index: 0;
  padding: 50px 7.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media(max-width:480px){
    #login .loginThumnail{
        display:none;
    }
}

#login .loginThumnail img {
  width: 100%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}

#login .loginThumnail p {
  font-size: 1.5em;
  color: white;
  margin-top: 20px;
  text-align: center;
  font-weight: 700;
}

#banner {
  width: 100%;
  float: left;
  position: relative;
  z-index: 0;
}

#banner::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000));
  background: linear-gradient(#000, #000);
}

#banner .bannerMain {
  height: 100vh;
  padding: 50px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 768px) {
  #banner .bannerMain {
    height: auto;
  }
}

#banner .bannerMain .bannerContent {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 480px) {
  #banner .bannerMain .bannerContent {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 50px;
  }
}

#banner .bannerMain .bannerContent h1 {
  font-size: 4em;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-top: 150px;
}

@media (max-width: 768px) {
  #banner .bannerMain .bannerContent h1 {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  #banner .bannerMain .bannerContent h1 {
    margin-top: 50px;
  }
}

#banner .bannerMain .bannerContent p {
  font-size: 14px;
  margin-top: 30px;
  color: rgba(185, 185, 185, 0.8);
  font-weight: 300;
  line-height: 2;
}

#banner .bannerMain .bannerContent a {
  text-decoration: none;
  background: #4c2fec;
  color: white;
  text-align: center;
  width: 180px;
  padding: 15px;
  font-size: 16px;
  font-weight: 300;
  margin-top: 50px;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 768px) {
  #banner .bannerMain .bannerContent a {
    margin-top: 30px;
  }
}

#banner .bannerMain .bannerContent a:hover {
  background: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#banner .bannerMain .bannerThumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  position: relative;
}

@media (max-width: 480px) {
  #banner .bannerMain .bannerThumbnail {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    height: 40vh;
  }
}

#banner .bannerMain .bannerThumbnail img {
  width: 150%;
  height: 150%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  right: -45%;
}

@media (max-width: 480px) {
  #banner .bannerMain .bannerThumbnail img {
    right: -20%;
    width: 130%;
    height: 130%;
  }
}

#banner .bannerMain .bannerThumbnail img:nth-child(1) {
  z-index: 2;
}

#banner .bannerMain .bannerThumbnail img:nth-child(2) {
  z-index: 1;
}

#banner .bannerMain .bannerThumbnail img:nth-child(3) {
  z-index: 0;
}

#banner .desing-x-right-box {
  width: 300px;
  height: 300px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0.5;
}

#banner .desing-x-right-box .design-x-big-round {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #161617bd;
  border-radius: 100%;
}

#banner .desing-x-right-box .design-x-big-round .design-x-y-small-round {
  width: 150px;
  height: 150px;
  background: #353535cf;
  border-radius: 100%;
  position: absolute;
  right: -50px;
  -webkit-box-shadow: 0 0 30px #252525;
          box-shadow: 0 0 30px #252525;
  top: -50px;
}

#features {
  width: 100%;
  float: left;
  padding: 100px 0px 0px 0px;
}

#features .featuresHeader {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#features .featuresHeader h1 {
  font-size: 22px;
  font-weight: 600;
  color: #132743;
  text-align: center;
}

#features .featuresHeader span {
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
  width: 50%;
  line-height: 1.7;
  color: rgba(124, 124, 124, 0.8);
  text-align: center;
}

@media (max-width: 768px) {
  #features .featuresHeader span {
    width: 100%;
  }
}

#features .featuresMain {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}

#features .featuresMain .featuresBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  padding: 30px 20px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 30px #f5f5f5;
          box-shadow: 0 0 30px #f5f5f5;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  #features .featuresMain .featuresBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
}

@media (max-width: 480px) {
  #features .featuresMain .featuresBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#features .featuresMain .featuresBox .featuresBoxIcone {
  width: 120px;
  height: 120px;
  -webkit-clip-path: polygon(40% 0%, 37% 1%, 34% 4%, 31% 6%, 29% 11%, 27% 21%, 27% 21%, 21% 29%, 18% 30%, 14% 33%, 8% 35%, 5% 39%, 3% 45%, 0% 50%, 0% 55%, 0% 59%, 3% 66%, 3% 74%, 4% 81%, 15% 88%, 16% 88%, 20% 92%, 28% 98%, 32% 98%, 38% 99%, 44% 100%, 49% 99%, 56% 98%, 60% 90%, 61% 84%, 63% 78%, 69% 74%, 77% 70%, 82% 69%, 90% 61%, 96% 56%, 96% 56%, 100% 50%, 100% 42%, 100% 32%, 96% 23%, 92% 17%, 84% 8%, 76% 1%, 68% 2%, 62% 1%, 57% 3%, 53% 4%, 48% 3%, 47% 1%, 43% 0%);
          clip-path: polygon(40% 0%, 37% 1%, 34% 4%, 31% 6%, 29% 11%, 27% 21%, 27% 21%, 21% 29%, 18% 30%, 14% 33%, 8% 35%, 5% 39%, 3% 45%, 0% 50%, 0% 55%, 0% 59%, 3% 66%, 3% 74%, 4% 81%, 15% 88%, 16% 88%, 20% 92%, 28% 98%, 32% 98%, 38% 99%, 44% 100%, 49% 99%, 56% 98%, 60% 90%, 61% 84%, 63% 78%, 69% 74%, 77% 70%, 82% 69%, 90% 61%, 96% 56%, 96% 56%, 100% 50%, 100% 42%, 100% 32%, 96% 23%, 92% 17%, 84% 8%, 76% 1%, 68% 2%, 62% 1%, 57% 3%, 53% 4%, 48% 3%, 47% 1%, 43% 0%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f5f5f5;
}

#features .featuresMain .featuresBox .featuresBoxIcone i {
  font-size: 2.5em;
  background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000));
  background: linear-gradient(#000, #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#features .featuresMain .featuresBox h2 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: #132743;
  margin-top: 20px;
}

#features .featuresMain .featuresBox p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 20px;
  text-align: center;
  color: rgba(124, 124, 124, 0.8);
}

#about {
  width: 100%;
  float: left;
  padding: 100px 0px;
}

#about .aboutMain {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#about .aboutMain .aboutThumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

@media (max-width: 480px) {
  #about .aboutMain .aboutThumbnail {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#about .aboutMain .aboutThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#about .aboutMain .aboutContent {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 12.5%;
}

@media (max-width: 768px) {
  #about .aboutMain .aboutContent {
    padding-right: 5%;
  }
}

@media (max-width: 480px) {
  #about .aboutMain .aboutContent {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    padding: 0px 5%;
  }
}

#about .aboutMain .aboutContent h1 {
  font-size: 22px;
  font-weight: 600;
  color: #132743;
  line-height: 1.5;
}

#about .aboutMain .aboutContent p {
  font-size: 16px;
  color: rgba(124, 124, 124, 0.8);
  line-height: 1.7;
  margin-top: 20px;
}

#about .aboutMain .aboutContent a {
  text-decoration: none;
  background: #4c2fec;
  color: white;
  text-align: center;
  width: 150px;
  padding: 10px;
  font-size: 14px;
  font-weight: 300;
  margin-top: 30px;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#about .aboutMain .aboutContent a:hover {
  background: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#categories {
  width: 100%;
  float: left;
  padding: 50px 0px;
}

#categories .categoriesHeader {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#categories .categoriesHeader h1 {
  font-size: 22px;
  font-weight: 600;
  color: #132743;
}

#categories .categoriesHeader span {
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
  width: 50%;
  line-height: 1.7;
  color: rgba(124, 124, 124, 0.8);
}

@media (max-width: 768px) {
  #categories .categoriesHeader span {
    width: 70%;
  }
}

@media (max-width: 480px) {
  #categories .categoriesHeader span {
    width: 100%;
  }
}

#categories .categoriesMain {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
}

#categories .categoriesMain .categoriesBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24%;
          flex: 0 0 24%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  margin-top: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 768px) {
  #categories .categoriesMain .categoriesBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 47%;
            flex: 0 0 47%;
  }
}

#categories .categoriesMain .categoriesBox:hover {
  margin-top: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#categories .categoriesMain .categoriesBox .categoriesBoxThumbnail {
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  height: 150px;
  background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000));
  background: linear-gradient(#000, #000);
}

@media (max-width: 480px) {
  #categories .categoriesMain .categoriesBox .categoriesBoxThumbnail {
    height: 100px;
  }
}

#categories .categoriesMain .categoriesBox .categoriesBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#categories .categoriesMain .categoriesBox .categoriesBoxContent {
  width: 100%;
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#categories .categoriesMain .categoriesBox .categoriesBoxContent h2 {
  font-size: 16px;
  font-weight: 600;
  color: #132743;
}

#categories .categoriesMain .categoriesBox .categoriesBoxContent p {
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.5;
  color: rgba(124, 124, 124, 0.8);
  font-weight: 300;
  height: 45px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#Pillars {
  width: 100%;
  float: left;
  padding: 50px 0px;
}

@media (max-width: 768px) {
  #Pillars {
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  #Pillars {
    padding: 50px 0px;
  }
}

#Pillars .PillarsMain {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#Pillars .PillarsMain .PillarsContent {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 12.5%;
}

@media (max-width: 768px) {
  #Pillars .PillarsMain .PillarsContent {
    padding: 0 5%;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

#Pillars .PillarsMain .PillarsContent h1 {
  font-size: 22px;
  font-weight: 600;
  color: #132743;
}

#Pillars .PillarsMain .PillarsContent p {
  font-size: 16px;
  color: rgba(124, 124, 124, 0.8);
  line-height: 1.7;
  margin-top: 20px;
}

#Pillars .PillarsMain .PillarsContent .PillarsContentMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
}

#Pillars .PillarsMain .PillarsContent .PillarsContentMain .PillarsContentBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  padding: 20px;
  -webkit-box-shadow: 0 0 20px #f5f5f5;
          box-shadow: 0 0 20px #f5f5f5;
  border-radius: 5px;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 480px) {
  #Pillars .PillarsMain .PillarsContent .PillarsContentMain .PillarsContentBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#Pillars .PillarsMain .PillarsContent .PillarsContentMain .PillarsContentBox .PillarsContentBoxIcone {
  width: 80px;
  height: 80px;
  -webkit-clip-path: polygon(40% 0%, 37% 1%, 34% 4%, 31% 6%, 29% 11%, 27% 21%, 27% 21%, 21% 29%, 18% 30%, 14% 33%, 8% 35%, 5% 39%, 3% 45%, 0% 50%, 0% 55%, 0% 59%, 3% 66%, 3% 74%, 4% 81%, 15% 88%, 16% 88%, 20% 92%, 28% 98%, 32% 98%, 38% 99%, 44% 100%, 49% 99%, 56% 98%, 60% 90%, 61% 84%, 63% 78%, 69% 74%, 77% 70%, 82% 69%, 90% 61%, 96% 56%, 96% 56%, 100% 50%, 100% 42%, 100% 32%, 96% 23%, 92% 17%, 84% 8%, 76% 1%, 68% 2%, 62% 1%, 57% 3%, 53% 4%, 48% 3%, 47% 1%, 43% 0%);
          clip-path: polygon(40% 0%, 37% 1%, 34% 4%, 31% 6%, 29% 11%, 27% 21%, 27% 21%, 21% 29%, 18% 30%, 14% 33%, 8% 35%, 5% 39%, 3% 45%, 0% 50%, 0% 55%, 0% 59%, 3% 66%, 3% 74%, 4% 81%, 15% 88%, 16% 88%, 20% 92%, 28% 98%, 32% 98%, 38% 99%, 44% 100%, 49% 99%, 56% 98%, 60% 90%, 61% 84%, 63% 78%, 69% 74%, 77% 70%, 82% 69%, 90% 61%, 96% 56%, 96% 56%, 100% 50%, 100% 42%, 100% 32%, 96% 23%, 92% 17%, 84% 8%, 76% 1%, 68% 2%, 62% 1%, 57% 3%, 53% 4%, 48% 3%, 47% 1%, 43% 0%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f5f5f5;
}

#Pillars .PillarsMain .PillarsContent .PillarsContentMain .PillarsContentBox .PillarsContentBoxIcone i {
  font-size: 2em;
  background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000));
  background: linear-gradient(#000, #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#Pillars .PillarsMain .PillarsContent .PillarsContentMain .PillarsContentBox h2 {
  font-size: 16px;
  font-weight: 600;
  color: #132743;
  margin-top: 20px;
  text-align: center;
}

#Pillars .PillarsMain .PillarsThumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  #Pillars .PillarsMain .PillarsThumbnail {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

#Pillars .PillarsMain .PillarsThumbnail img {
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}

#indContact {
  width: 100%;
  float: left;
  padding: 100px 0px;
  position: relative;
  z-index: 0;
}

@media (max-width: 768px) {
  #indContact {
    padding: 0px 0px 100px 0px;
  }
}

#indContact::before {
  position: absolute;
  z-index: -1;
  content: '';
  width: 200px;
  height: 500px;
  background: url(../images/Pattern-left.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
}

#indContact .indContactMain {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#indContact .indContactMain .indContactThumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  #indContact .indContactMain .indContactThumbnail {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#indContact .indContactMain .indContactThumbnail img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}

#indContact .indContactMain .indContactForm {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  background: #f5f5f5;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px 50px;
}

@media (max-width: 768px) {
  #indContact .indContactMain .indContactForm {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

@media (max-width: 480px) {
  #indContact .indContactMain .indContactForm {
    padding: 30px;
  }
}

#indContact .indContactMain .indContactForm h5 {
  font-size: 12px;
  text-align: center;
  font-weight: 600;
  color: #132743;
}

#indContact .indContactMain .indContactForm h4 {
  font-size: 18px;
  margin-top: 10px;
  text-align: center;
  color: #132743;
  font-weight: 600;
}

#indContact .indContactMain .indContactForm form {
  width: 100%;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#indContact .indContactMain .indContactForm form .formGroup {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
}

#indContact .indContactMain .indContactForm form .formGroup label {
  font-size: 12px;
}

#indContact .indContactMain .indContactForm form .formGroup input {
  width: 100%;
  height: 40px;
  padding: 10px;
  border-radius: 5px;
  border: none;
  outline: none;
  background: white;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #132743;
}

#indContact .indContactMain .indContactForm form .formGroup textarea {
  width: 100%;
  height: 100px;
  resize: none;
  padding: 10px;
  border-radius: 5px;
  border: none;
  outline: none;
  background: white;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #132743;
}

#indContact .indContactMain .indContactForm form button {
  width: 100%;
  margin-top: 30px;
  padding: 15px;
  background: #4c2fec;
  color: white;
  font-size: 14px;
  text-align: center;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#indContact .indContactMain .indContactForm form button:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #000;
}

footer {
  -webkit-clip-path: ellipse(67% 66% at 52% 66%);
          clip-path: ellipse(67% 66% at 52% 66%);
  background: #f5f5f5;
  width: 100%;
  float: left;
  padding: 100px 0px 50px 0px;
}

@media (max-width: 768px) {
  footer {
    -webkit-clip-path: ellipse(100% 100% at 51% 100%);
            clip-path: ellipse(100% 100% at 51% 100%);
  }
}

@media (max-width: 480px) {
  footer {
    -webkit-clip-path: ellipse(180% 100% at 52% 100%);
            clip-path: ellipse(180% 100% at 52% 100%);
    padding: 80px 0px 50px 0px;
  }
}

footer .footerMain {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .footerMain .footerBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 23%;
          flex: 0 0 23%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  footer .footerMain .footerBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 47%;
            flex: 0 0 47%;
    margin-top: 50px;
  }
  footer .footerMain .footerBox:nth-child(1) {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  footer .footerMain .footerBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

footer .footerMain .footerBox h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

footer .footerMain .footerBox p {
  font-size: 12px;
  color: black;
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 10px;
}

footer .footerMain .footerBox ul li {
  list-style: none;
}

footer .footerMain .footerBox ul li a {
  font-size: 12px;
  margin-bottom: 10px;
  text-decoration: none;
  color: black;
  opacity: 0.8;
  line-height: 1.7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .footerMain .footerBox ul li a:hover {
  opacity: 1;
}

footer .footerMain .footerBox2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15%;
          flex: 0 0 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  footer .footerMain .footerBox2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 47%;
            flex: 0 0 47%;
  }
}

@media (max-width: 480px) {
  footer .footerMain .footerBox2 {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-top: 50px;
  }
}

footer .footerMain .footerBox2 h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

footer .footerMain .footerBox2 ul li {
  list-style: none;
}

footer .footerMain .footerBox2 ul li a {
  font-size: 12px;
  margin-bottom: 10px;
  text-decoration: none;
  color: black;
  opacity: 0.8;
  line-height: 1.7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .footerMain .footerBox2 ul li a:hover {
  opacity: 1;
}

footer .footerStrip {
  border-top: 1px solid #c4c2c2;
  margin-top: 30px;
  float: left;
  width: 100%;
  padding-top: 30px;
}

footer .footerStrip h4 {
  font-size: 12px;
  text-align: center;
  font-weight: 300;
}

footer .footerStrip h4 i {
  color: red;
  margin: 0px 5px;
  position: relative;
  top: -1px;
  -webkit-animation: bounce 0.5s;
          animation: bounce 0.5s;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
  from {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  to {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes bounce {
  from {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  to {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

footer .footerStrip h4 a {
  text-decoration: none;
  color: black;
}

@media (max-width: 480px) {
  footer .footerStrip h4 a {
    width: 100%;
    text-align: center;
    margin-top: 5px;
    float: left;
  }
}

#aboutBanner {
  width: 100%;
  float: left;
  position: relative;
  z-index: 0;
}

#aboutBanner::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000));
  background: linear-gradient(#000, #000);
  -webkit-clip-path: ellipse(98% 93% at 97% 7%);
          clip-path: ellipse(98% 93% at 97% 7%);
}

@media (max-width: 480px) {
  #aboutBanner::before {
    -webkit-clip-path: none;
            clip-path: none;
    border-bottom-right-radius: 30%;
  }
}

#aboutBanner .aboutBannerMain {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 100vh;
  padding: 50px 0px;
}

@media (max-width: 480px) {
  #aboutBanner .aboutBannerMain {
    height: auto;
  }
}

#aboutBanner .aboutBannerMain .aboutBannerThumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
}

@media (max-width: 480px) {
  #aboutBanner .aboutBannerMain .aboutBannerThumbnail {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#aboutBanner .aboutBannerMain .aboutBannerThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#aboutBanner .aboutBannerMain .aboutBannerContent {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 480px) {
  #aboutBanner .aboutBannerMain .aboutBannerContent {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#aboutBanner .aboutBannerMain .aboutBannerContent h1 {
  font-size: 2em;
  font-weight: 600;
  color: white;
  line-height: 1.5;
}

@media (max-width: 768px) {
  #aboutBanner .aboutBannerMain .aboutBannerContent h1 {
    font-size: 1.7em;
  }
}

#aboutBanner .aboutBannerMain .aboutBannerContent p {
  font-size: 16px;
  margin-top: 20px;
  color: white;
  font-weight: 300;
  line-height: 1.7;
}

#aboutBanner .desing-x-right-box {
  width: 300px;
  height: 300px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  opacity: 0.5;
}

@media (max-width: 768px) {
  #aboutBanner .desing-x-right-box {
    bottom: 10px;
  }
}

#aboutBanner .desing-x-right-box .design-x-big-round {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #161617bd;
  border-radius: 100%;
}

#aboutBanner .desing-x-right-box .design-x-big-round .design-x-y-small-round {
  width: 150px;
  height: 150px;
  background: #353535cf;
  border-radius: 100%;
  position: absolute;
  left: -50px;
  top: -50px;
  -webkit-box-shadow: 0 0 30px #252525;
          box-shadow: 0 0 30px #252525;
}

#vission {
  width: 100%;
  float: left;
  padding: 100px 0px;
}

@media (max-width: 480px) {
  #vission {
    padding: 50px 0px;
  }
}

#vission .vissionHeader {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#vission .vissionHeader h1 {
  font-size: 22px;
  font-weight: 600;
  color: #132743;
  text-align: center;
}

#vission .vissionHeader span {
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
  width: 50%;
  line-height: 1.7;
  color: rgba(124, 124, 124, 0.8);
  text-align: center;
}

@media (max-width: 480px) {
  #vission .vissionHeader span {
    width: 100%;
  }
}

#vission .vissionMain {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}

#vission .vissionMain .vissionBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 47%;
          flex: 0 0 47%;
  padding: 30px 30px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 30px #f5f5f5;
          box-shadow: 0 0 30px #f5f5f5;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 480px) {
  #vission .vissionMain .vissionBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#vission .vissionMain .vissionBox .vissionIcone {
  width: 120px;
  height: 120px;
  -webkit-clip-path: polygon(40% 0%, 37% 1%, 34% 4%, 31% 6%, 29% 11%, 27% 21%, 27% 21%, 21% 29%, 18% 30%, 14% 33%, 8% 35%, 5% 39%, 3% 45%, 0% 50%, 0% 55%, 0% 59%, 3% 66%, 3% 74%, 4% 81%, 15% 88%, 16% 88%, 20% 92%, 28% 98%, 32% 98%, 38% 99%, 44% 100%, 49% 99%, 56% 98%, 60% 90%, 61% 84%, 63% 78%, 69% 74%, 77% 70%, 82% 69%, 90% 61%, 96% 56%, 96% 56%, 100% 50%, 100% 42%, 100% 32%, 96% 23%, 92% 17%, 84% 8%, 76% 1%, 68% 2%, 62% 1%, 57% 3%, 53% 4%, 48% 3%, 47% 1%, 43% 0%);
          clip-path: polygon(40% 0%, 37% 1%, 34% 4%, 31% 6%, 29% 11%, 27% 21%, 27% 21%, 21% 29%, 18% 30%, 14% 33%, 8% 35%, 5% 39%, 3% 45%, 0% 50%, 0% 55%, 0% 59%, 3% 66%, 3% 74%, 4% 81%, 15% 88%, 16% 88%, 20% 92%, 28% 98%, 32% 98%, 38% 99%, 44% 100%, 49% 99%, 56% 98%, 60% 90%, 61% 84%, 63% 78%, 69% 74%, 77% 70%, 82% 69%, 90% 61%, 96% 56%, 96% 56%, 100% 50%, 100% 42%, 100% 32%, 96% 23%, 92% 17%, 84% 8%, 76% 1%, 68% 2%, 62% 1%, 57% 3%, 53% 4%, 48% 3%, 47% 1%, 43% 0%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f5f5f5;
}

#vission .vissionMain .vissionBox .vissionIcone i {
  font-size: 2.5em;
  background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000));
  background: linear-gradient(#000, #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#vission .vissionMain .vissionBox h2 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: #132743;
  margin-top: 20px;
}

#vission .vissionMain .vissionBox p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 20px;
  text-align: center;
  color: rgba(124, 124, 124, 0.8);
}

#broucherDownload {
  width: 100%;
  float: left;
  padding: 50px 0px;
}

#broucherDownload .broucherDownloadMain {
  padding: 50px;
  background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000));
  background: linear-gradient(#000, #000);
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 480px) {
  #broucherDownload .broucherDownloadMain {
    padding: 30px;
  }
}

#broucherDownload .broucherDownloadMain h1 {
  font-size: 2em;
  font-weight: 600;
  color: white;
  text-align: center;
}

@media (max-width: 768px) {
  #broucherDownload .broucherDownloadMain h1 {
    font-size: 1.7em;
  }
}

#broucherDownload .broucherDownloadMain p {
  font-size: 16px;
  font-weight: 300;
  margin-top: 15px;
  text-align: center;
  color: white;
}

#broucherDownload .broucherDownloadMain a {
  text-decoration: none;
  text-align: center;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
  color: white;
}

#broucherDownload .broucherDownloadMain .downloadBroucher {
  text-decoration: none;
  text-align: center;
  margin-top: 50px;
  font-size: 16px;
  font-weight: 300;
  color: white;
  width: 210px;
  padding: 15px;
  border-radius: 5px;
  background: #4c2fec;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#broucherDownload .broucherDownloadMain .downloadBroucher:hover {
  background: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#productBanner {
  width: 100%;
  float: left;
  padding: 150px 0px;
  background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000));
  background: linear-gradient(#000, #000);
  position: relative;
  -webkit-clip-path: ellipse(70% 78% at 52% 22%);
          clip-path: ellipse(70% 78% at 52% 22%);
}

@media (max-width: 768px) {
  #productBanner {
    padding: 100px 0px 150px 0px;
  }
}

@media (max-width: 480px) {
  #productBanner {
    -webkit-clip-path: ellipse(180% 100% at 52% 0%);
            clip-path: ellipse(180% 100% at 52% 0%);
    padding-bottom: 50px;
  }
}

#productBanner .productBannerMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#productBanner .productBannerMain .productBannerContent {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 480px) {
  #productBanner .productBannerMain .productBannerContent {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 30px;
  }
}

#productBanner .productBannerMain .productBannerContent h1 {
  font-size: 2.5em;
  font-weight: 700;
  color: white;
  line-height: 1.5;
}

@media (max-width: 768px) {
  #productBanner .productBannerMain .productBannerContent h1 {
    font-size: 2em;
  }
}

#productBanner .productBannerMain .productBannerContent p {
  font-size: 14px;
  margin-top: 20px;
  color: white;
  font-weight: 300;
  line-height: 1.7;
}

#productBanner .productBannerMain .productBannerThumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
}

@media (max-width: 480px) {
  #productBanner .productBannerMain .productBannerThumbnail {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

#productBanner .productBannerMain .productBannerThumbnail img {
  width: 100%;
  height: 45vh;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 480px) {
  #productBanner .productBannerMain .productBannerThumbnail img {
    height: 200px;
  }
}

#productBanner .desing-x-right-box {
  width: 300px;
  height: 300px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.5;
}

#productBanner .desing-x-right-box .design-x-big-round {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #161617bd;
  border-radius: 100%;
}

#productBanner .desing-x-right-box .design-x-big-round .design-x-y-small-round {
  width: 150px;
  height: 150px;
  background: #353535cf;
  border-radius: 100%;
  -webkit-box-shadow: 0 0 30px #252525;
          box-shadow: 0 0 30px #252525;
  position: absolute;
  right: -50px;
  bottom: -50px;
}

#productList {
  width: 100%;
  float: left;
  padding: 100px 0px;
}

#productList .productListMain {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 200px;
}

#productList .productListMain:nth-child(1) {
  margin-top: 0;
}

@media (max-width: 480px) {
  #productList .productListMain {
    margin-top: 100px;
  }
}

#productList .productListMain .productListThumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
}

@media (max-width: 480px) {
  #productList .productListMain .productListThumbnail {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

#productList .productListMain .productListThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#productList .productListMain .productListContent {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  #productList .productListMain .productListContent {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  #productList .productListMain .productListContent {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 30px;
  }
}

#productList .productListMain .productListContent h1 {
  font-size: 2em;
  font-weight: 600;
  color: #132743;
}

@media (max-width: 768px) {
  #productList .productListMain .productListContent h1 {
    font-size: 1.7em;
  }
}

#productList .productListMain .productListContent h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  line-height: 1.5;
  font-weight: 400;
  background: #f5f5f5;
}

#productList .productListMain .productListContent h2 span {
  color: #4c2fec;
  font-weight: 700;
}

#productList .productListMain .productListContent h2 img {
  width: 55px;
  margin: 0px 5px;
  -o-object-fit: contain;
     object-fit: contain;
}

#productList .productListMain .productListContent p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
  line-height: 1.7;
  color: rgba(124, 124, 124, 0.8);
}

@media (max-width: 768px) {
  #productList .productListMain .productListContent p {
    font-size: 14px;
  }
}

#productList .productListMain .productListContent a {
  text-decoration: none;
  background: #4c2fec;
  color: white;
  text-align: center;
  width: 180px;
  padding: 15px;
  font-size: 16px;
  font-weight: 300;
  margin-top: 20px;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 768px) {
  #productList .productListMain .productListContent a {
    padding: 12px;
  }
}

#productList .productListMain .productListContent a:hover {
  background: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#productList .productListMain .productListContent .purchaseBtnMain {
  width: 100%;
  float: left;
  display: block;
}

#productList .productListMain .productListContent .purchaseBtnMain .purchaseBtnBox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 768px) {
  #productList .productListMain .productListContent .purchaseBtnMain .purchaseBtnBox {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

#productList .productListMain .productListContent .purchaseBtnMain a {
  text-decoration: none;
  text-align: center;
  width: 180px;
  padding: 15px;
  font-size: 16px;
  font-weight: 300;
  margin-top: 20px;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: left;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  #productList .productListMain .productListContent .purchaseBtnMain a {
    padding: 12px;
    width: 48%;
    font-size: 14px;
  }
}

#productList .productListMain .productListContent .purchaseBtnMain a:hover {
  background: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#productList .productListMain .productListContent .purchaseBtnMain .enqBtn {
  border: 1px solid #4c2fec;
  color: #4c2fec;
  background: white;
}

#productList .productListMain .productListContent .purchaseBtnMain .enqBtn:hover {
  border: 1px solid #000;
  background: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #132743;
}

#productList .productListMain .productListContent .purchaseBtnMain .purchaseBtn {
  background: #4c2fec;
  color: white;
  margin-left: 20px;
}

@media (max-width: 768px) {
  #productList .productListMain .productListContent .purchaseBtnMain .purchaseBtn {
    margin-left: 0;
  }
}

#testimonialBanner {
  width: 100%;
  float: left;
  padding: 150px 0px 250px 0px;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 83% 93%, 50% 75%, 0% 75%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 83% 93%, 50% 75%, 0% 75%);
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000));
  background: linear-gradient(#000, #000);
}

@media (max-width: 768px) {
  #testimonialBanner {
    padding: 80px 0px 200px 0px;
  }
}

@media (max-width: 480px) {
  #testimonialBanner {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 89%, 74% 89%, 75% 100%, 55% 89%, 0 88%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 89%, 74% 89%, 75% 100%, 55% 89%, 0 88%);
    padding: 80px 0px 120px 0px;
  }
}

#testimonialBanner .testimonialBannerMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  float: left;
}

#testimonialBanner .testimonialBannerMain .testimonialBannerContent {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 480px) {
  #testimonialBanner .testimonialBannerMain .testimonialBannerContent {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 30px;
  }
}

#testimonialBanner .testimonialBannerMain .testimonialBannerContent h1 {
  font-size: 2.5em;
  font-weight: 700;
  color: white;
  line-height: 1.5;
}

@media (max-width: 768px) {
  #testimonialBanner .testimonialBannerMain .testimonialBannerContent h1 {
    font-size: 2em;
  }
}

#testimonialBanner .testimonialBannerMain .testimonialBannerContent p {
  font-size: 14px;
  margin-top: 20px;
  color: white;
  font-weight: 300;
  line-height: 1.7;
}

#testimonialBanner .testimonialBannerMain .testimonialBannerThumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 480px) {
  #testimonialBanner .testimonialBannerMain .testimonialBannerThumbnail {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

#testimonialBanner .testimonialBannerMain .testimonialBannerThumbnail .testimonialBannerThumbnailBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  height: 150px;
  overflow: hidden;
  margin-top: 20px;
}

@media (max-width: 768px) {
  #testimonialBanner .testimonialBannerMain .testimonialBannerThumbnail .testimonialBannerThumbnailBox {
    height: 100px;
    margin-top: 0px;
  }
}

@media (max-width: 480px) {
  #testimonialBanner .testimonialBannerMain .testimonialBannerThumbnail .testimonialBannerThumbnailBox {
    margin-top: 15px;
  }
}

#testimonialBanner .testimonialBannerMain .testimonialBannerThumbnail .testimonialBannerThumbnailBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#testimonialBanner .desing-x-right-box {
  width: 300px;
  height: 300px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  opacity: 0.5;
}

#testimonialBanner .desing-x-right-box .design-x-big-round {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #161617bd;
  border-radius: 100%;
}

#testimonialBanner .desing-x-right-box .design-x-big-round .design-x-y-small-round {
  width: 150px;
  height: 150px;
  background: #353535cf;
  -webkit-box-shadow: 0 0 30px #252525;
          box-shadow: 0 0 30px #252525;
  border-radius: 100%;
  position: absolute;
  left: -50px;
  bottom: -50px;
}

#testimonialList {
  width: 100%;
  float: left;
  padding: 100px 0px;
}

@media (max-width: 768px) {
  #testimonialList {
    padding-top: 50px;
  }
}

#testimonialList .testimonialListMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#testimonialList .testimonialListMain .testimonialListBox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 1px solid #eee;
  padding-top: 50px;
  margin-top: 50px;
}

#testimonialList .testimonialListMain .testimonialListBox:nth-child(1) {
  border-top: 0;
  padding-top: 0px;
  margin-top: 0px;
}

#testimonialList .testimonialListMain .testimonialListBox h2 {
  font-size: 20px;
  font-weight: 600;
  color: #132743;
  text-align: center;
}

#testimonialList .testimonialListMain .testimonialListBox span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(124, 124, 124, 0.8);
  text-align: center;
  margin-top: 10px;
}

#testimonialList .testimonialListMain .testimonialListBox p {
  font-size: 16px;
  color: #132743;
  text-align: center;
  margin-top: 30px;
  line-height: 1.8;
  width: 70%;
}

@media (max-width: 768px) {
  #testimonialList .testimonialListMain .testimonialListBox p {
    width: 100%;
  }
}

#testimonialList .testimonialListMain .testimonialListBox p i {
  margin: 0 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000));
  background: linear-gradient(#000, #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#contact {
  width: 100%;
  height: 100vh;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 768px) {
  #contact {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#contact .contact-info {
  position: relative;
  width: 48%;
  height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000));
  background: linear-gradient(#000, #000);
  color: white;
  border-bottom-right-radius: 400px;
}

@media (max-width: 768px) {
  #contact .contact-info {
    width: 100%;
    padding: 0px 5%;
    border-bottom-right-radius: 200px;
  }
}

@media (max-width: 480px) {
  #contact .contact-info {
    border-bottom-right-radius: 30%;
  }
}

#contact .contact-info .contact-title {
  height: 100%;
  width: 27%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  #contact .contact-info .contact-title {
    width: 100%;
    padding: 80px 0px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

#contact .contact-info .contact-title h1 {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  font-size: 2.5rem;
  margin: 0;
  font-weight: 600;
  padding: 0;
  color: #fff;
  display: block;
  width: 100%;
  text-align: center;
  position: absolute;
}

@media (max-width: 768px) {
  #contact .contact-info .contact-title h1 {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    text-align: left;
  }
}

#contact .contact-info .contactAddress {
  width: 73%;
  height: 100%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  #contact .contact-info .contactAddress {
    width: 100%;
  }
}

#contact .contact-info .contactAddress a {
  text-decoration: none;
  color: white;
}

#contact .contact-info .contactAddress .description {
  width: 100%;
  margin-bottom: 50px;
}

#contact .contact-info .contactAddress .description h1 {
  font-size: 1.9rem;
  margin: 15px 0px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

#contact .contact-info .contactAddress .description p {
  font-size: 14px;
  line-height: 25px;
  width: 70%;
  font-weight: 600;
}

@media (max-width: 480px) {
  #contact .contact-info .contactAddress .description p {
    width: 100%;
  }
}

#contact .contact-info .contactAddress .info {
  position: relative;
  z-index: 5;
}

#contact .contact-info .contactAddress .info ul {
  margin: 0;
  padding: 0;
}

#contact .contact-info .contactAddress .info ul li {
  list-style: none;
  margin-top: 25px;
}

#contact .contact-info .contactAddress .info ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 14px;
}

#contact .contact-info .contactAddress .info ul li a i {
  width: 30px;
  height: 30px;
  background: #4c2fec;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  margin-right: 10px;
  font-size: 14px;
}

@media (max-width: 480px) {
  #contact .contact-info .contactAddress .info ul li a i {
    font-size: 12px;
  }
}

#contact .contact-info .contactAddress .info ul li a p {
  width: calc(100% - 50px);
  padding-right: 60px;
  line-height: 1.7;
  font-weight: 300;
}

@media (max-width: 480px) {
  #contact .contact-info .contactAddress .info ul li a p {
    width: 100%;
    padding-right: 0;
  }
}

#contact .contact-info .contactAddress .social-info {
  margin-top: 50px;
}

#contact .contact-info .contactAddress .social-info ul {
  margin: 0;
  padding: 0;
}

#contact .contact-info .contactAddress .social-info ul li {
  list-style: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: inline-block;
}

#contact .contact-info .contactAddress .social-info ul li a {
  margin-right: 30px;
}

#contact .contact-info .contactAddress .social-info ul li a i {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 150px;
  margin-right: 10px;
  font-size: 14px;
}

#contact .contact-info .contactAddress .social-info ul li a:hover i {
  background: #4c2fec;
}

#contact .contact-info .desing-x-right-box {
  width: 300px;
  height: 300px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  opacity: 0.5;
}

#contact .contact-info .desing-x-right-box .design-x-big-round {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #161617bd;
  border-radius: 100%;
}

#contact .contact-info .desing-x-right-box .design-x-big-round .design-x-y-small-round {
  width: 150px;
  height: 150px;
  background: #353535cf;
  border-radius: 100%;
  -webkit-box-shadow: 0 0 30px #252525;
          box-shadow: 0 0 30px #252525;
  position: absolute;
  left: -50px;
  top: -50px;
}

#contact .contact-page-form {
  width: calc(100% - 48%);
  height: 100%;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom-left-radius: 50px;
  padding: 50px 12.5% 50px 60px;
}

@media (max-width: 768px) {
  #contact .contact-page-form {
    width: 100%;
    padding: 50px 5%;
  }
}

#contact .contact-page-form h1 {
  letter-spacing: -0.8px;
  color: #363636bd;
}

#contact .contact-page-form h1 i {
  position: relative;
  top: -20px;
  font-size: 14px;
  margin-right: 15px;
}

#contact .contact-page-form p {
  font-size: 14px;
  margin: 10px 0px;
  font-weight: 600;
  padding-left: 30px;
}

#contact .contact-page-form form {
  width: 100%;
}

#contact .contact-page-form form .split-holder {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}

#contact .contact-page-form form .split-holder input {
  width: 45%;
  height: 50px;
  border: none;
  background: none;
  border-bottom: 1px solid black;
  outline: none;
  font-size: 1.2rem;
  font-weight: 600;
}

#contact .contact-page-form form .single-holder {
  width: 100%;
  margin-top: 30px;
}

#contact .contact-page-form form .single-holder textarea {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid black;
  outline: none;
  font-size: 1.2rem;
  font-weight: 600;
  resize: none;
  height: 100px;
}

#contact .contact-page-form form .single-holder button {
  border: none;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  font-weight: 500;
  background: #4c2fec;
  color: white;
  cursor: pointer;
}

#contact .contact-page-form form .single-holder button:hover {
  background: #000;
}

#contact .contact-page-form form ::-webkit-input-placeholder {
  font-weight: normal;
  font-size: 14px;
}

#contact .contact-page-form form :-ms-input-placeholder {
  font-weight: normal;
  font-size: 14px;
}

#contact .contact-page-form form ::-ms-input-placeholder {
  font-weight: normal;
  font-size: 14px;
}

#contact .contact-page-form form ::placeholder {
  font-weight: normal;
  font-size: 14px;
}

#serviceBanner {
  width: 100%;
  float: left;
  padding: 150px 0px 100px 0px;
  background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000));
  background: linear-gradient(#000, #000);
  -webkit-clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
          clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
  position: relative;
}

@media (max-width: 480px) {
  #serviceBanner {
    padding: 100px 0px;
    -webkit-clip-path: polygon(100% 0, 100% 95%, 50% 100%, 0 95%, 0 0);
            clip-path: polygon(100% 0, 100% 95%, 50% 100%, 0 95%, 0 0);
  }
}

#serviceBanner .serviceBannerMain {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#serviceBanner .serviceBannerMain h1 {
  font-size: 4em;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 768px) {
  #serviceBanner .serviceBannerMain h1 {
    font-size: 3em;
  }
}

@media (max-width: 480px) {
  #serviceBanner .serviceBannerMain h1 {
    font-size: 2em;
    line-height: 1.3;
  }
}

#serviceBanner .desing-x-right-box {
  width: 300px;
  height: 300px;
  position: absolute;
  top: 0;
  right: 50%;
  z-index: -1;
  opacity: 0.5;
}

#serviceBanner .desing-x-right-box .design-x-big-round {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #161617bd;
  border-radius: 100%;
}

#serviceBanner .desing-x-right-box .design-x-big-round .design-x-y-small-round {
  width: 150px;
  height: 150px;
  background: #353535cf;
  -webkit-box-shadow: 0 0 30px #252525;
          box-shadow: 0 0 30px #252525;
  border-radius: 100%;
  position: absolute;
  left: -50px;
  bottom: -50px;
}

#serviceList {
  width: 100%;
  float: left;
  padding: 100px 0px;
}

#serviceList .serviceheader {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#serviceList .serviceheader h1 {
  font-size: 22px;
  font-weight: 600;
  color: #132743;
}

#serviceList .serviceheader p {
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
  width: 50%;
  line-height: 1.7;
  color: rgba(124, 124, 124, 0.8);
}

@media (max-width: 768px) {
  #serviceList .serviceheader p {
    width: 70%;
  }
}

@media (max-width: 480px) {
  #serviceList .serviceheader p {
    width: 100%;
  }
}

#serviceList .serviceListMain {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 100px;
}

#serviceList .serviceListMain:nth-child(2) {
  margin-top: 50px;
}

#serviceList .serviceListMain .serviceListThumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

@media (max-width: 480px) {
  #serviceList .serviceListMain .serviceListThumbnail {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

#serviceList .serviceListMain .serviceListThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#serviceList .serviceListMain .serviceListContent {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 480px) {
  #serviceList .serviceListMain .serviceListContent {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 30px;
  }
}

#serviceList .serviceListMain .serviceListContent h2 {
  font-size: 2em;
  font-weight: 600;
  color: #132743;
}

@media (max-width: 768px) {
  #serviceList .serviceListMain .serviceListContent h2 {
    font-size: 1.7em;
  }
}

#serviceList .serviceListMain .serviceListContent p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
  line-height: 1.7;
  color: rgba(124, 124, 124, 0.8);
}

@media (max-width: 768px) {
  #serviceList .serviceListMain .serviceListContent p {
    font-size: 14px;
  }
}

#serviceList .serviceListMain .serviceListContent a {
  color: #132743;
  font-size: 16px;
  font-weight: 300;
  margin-top: 25px;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#otherService {
  width: 100%;
  float: left;
}

@media (max-width: 480px) {
  #otherService {
    padding-bottom: 50px;
  }
}

#otherService .otherServiceMain {
  width: 100%;
  background: #f5f5f5;
  border-radius: 5px;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 480px) {
  #otherService .otherServiceMain {
    padding: 20px;
  }
}

#otherService .otherServiceMain .otherServiceContent {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 480px) {
  #otherService .otherServiceMain .otherServiceContent {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 30px;
  }
}

#otherService .otherServiceMain .otherServiceContent h2 {
  font-size: 25px;
  line-height: 1.5;
  font-weight: 600;
  color: #132743;
}

@media (max-width: 480px) {
  #otherService .otherServiceMain .otherServiceContent h2 {
    font-size: 22px;
    line-height: 1.7;
  }
}

#otherService .otherServiceMain .otherServiceContent ul {
  margin-top: 20px;
  padding-left: 20px;
}

#otherService .otherServiceMain .otherServiceContent ul li {
  font-size: 16px;
  margin-top: 10px;
  line-height: 1.7;
}

#otherService .otherServiceMain .otherServiceThumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 480px) {
  #otherService .otherServiceMain .otherServiceThumbnail {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

#otherService .otherServiceMain .otherServiceThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#applicationForm {
  width: 100%;
  float: left;
  margin-top: 80px;
  padding: 50px 20%;
}

@media (max-width: 768px) {
  #applicationForm {
    margin-top: 60px;
    padding: 50px 5%;
  }
}

#applicationForm .applicationFormBox {
  width: 100%;
  float: left;
  padding: 50px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 30px rgba(36, 36, 36, 0.041);
          box-shadow: 0 0 30px rgba(36, 36, 36, 0.041);
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 480px) {
  #applicationForm .applicationFormBox {
    padding: 30px 20px;
  }
}

#applicationForm .applicationFormBox h2 {
  font-size: 20px;
  font-weight: 600;
  color: #132743;
}

#applicationForm .applicationFormBox a {
  font-size: 20px;
  font-weight: 600;
  color: #132743;
  text-decoration: none;
}

#applicationForm .applicationFormBox a i {
  margin-right: 10px;
}

#applicationForm .applicationFormBox p {
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.7;
  color: rgba(124, 124, 124, 0.8);
  font-weight: 300;
}

#applicationForm .applicationFormBox form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}

#applicationForm .applicationFormBox form .formGroup {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 30px;
  position: relative;
}

@media (max-width: 480px) {
  #applicationForm .applicationFormBox form .formGroup {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#applicationForm .applicationFormBox form .formGroup label {
  font-size: 14px;
  font-weight: 600;
}

#applicationForm .applicationFormBox form .formGroup input {
  width: 100%;
  height: 45px;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px;
  outline: none;
}

#applicationForm .applicationFormBox form .formGroup input:focus {
  border: 1px solid #4c2fec;
}

#applicationForm .applicationFormBox form .formGroup input::-webkit-input-placeholder {
  color: #cfcdcd;
}

#applicationForm .applicationFormBox form .formGroup input:-ms-input-placeholder {
  color: #cfcdcd;
}

#applicationForm .applicationFormBox form .formGroup input::-ms-input-placeholder {
  color: #cfcdcd;
}

#applicationForm .applicationFormBox form .formGroup input::placeholder {
  color: #cfcdcd;
}

#applicationForm .applicationFormBox form .formGroup .password-eye {
  position: absolute;
  background: none;
  border: none;
  outline: none;
  right: 10px;
  width: 20px !important;
  height: 20px !important;
  top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10 !important;
  color: black;
}

#applicationForm .applicationFormBox form .formGroup #btnToggle {
  cursor: pointer;
}

#applicationForm .applicationFormBox form .formGroup select {
  width: 100%;
  height: 45px;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px;
}

#applicationForm .applicationFormBox form .formGroup select:focus {
  border: 1px solid #4c2fec;
}

#applicationForm .applicationFormBox form .formGroup select:disabled {
  background: #f7fff7;
}

#applicationForm .applicationFormBox form .formGroup .custom-select-wrapper select {
  display: none;
  overflow: hidden;
  width: 100%;
}

#applicationForm .applicationFormBox form .formGroup .custom-select {
  position: relative;
  display: block;
}

#applicationForm .applicationFormBox form .formGroup .custom-select-trigger {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  cursor: pointer;
  width: 100%;
  height: 45px;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px;
  line-height: 1.5;
}

#applicationForm .applicationFormBox form .formGroup .custom-select-trigger:after {
  position: absolute;
  display: block;
  content: '';
  width: 7px;
  height: 7px;
  top: 50%;
  right: 20px;
  margin-top: -0.13636363em;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
}

#applicationForm .applicationFormBox form .formGroup .custom-select.opened .custom-select-trigger:after {
  margin-top: 0.13636363em;
  -webkit-transform: rotate(-135deg) translateY(-50%);
  transform: rotate(-135deg) translateY(-50%);
}

#applicationForm .applicationFormBox form .formGroup .custom-select-trigger-text {
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 57px;
  color: #132743;
}

#applicationForm .applicationFormBox form .formGroup .custom-options {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  margin: 0;
  display: none;
  min-width: 100%;
  border: 1px solid #ececec;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 0 20px #f5f5f5;
          box-shadow: 0 0 20px #f5f5f5;
  background-color: #fff;
  -webkit-transition: all .2s ease-in-out;
  opacity: 0;
  z-index: 10;
  transition: all .2s ease-in-out;
  overflow: hidden;
}

#applicationForm .applicationFormBox form .formGroup .option-hover:before {
  background: #f9f9f9;
}

#applicationForm .applicationFormBox form .formGroup .custom-option {
  position: relative;
  display: block;
  padding: 15px 10px;
  border-bottom: 1px solid #ececec;
  font-size: 12px;
  color: #132743;
  cursor: pointer;
}

#applicationForm .applicationFormBox form .formGroup .custom-option:last-of-type {
  border-bottom: 0;
}

#applicationForm .applicationFormBox form .formGroup .custom-option.selection:hover,
#applicationForm .applicationFormBox form .formGroup .custom-option:hover {
  background: #f5f5f5;
  color: black;
}

#applicationForm .applicationFormBox form .formGroup .downloadBtn {
  width: 100%;
  height: 40px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  margin-top: 10px;
  text-decoration: none;
  font-size: 14px;
  background: #eee;
  color: black;
}

#applicationForm .applicationFormBox form .formGroup .__lk-fileInput {
  cursor: pointer;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#applicationForm .applicationFormBox form .formGroup .__lk-fileInput input {
  display: none;
}

#applicationForm .applicationFormBox form .formGroup .__lk-fileInput span {
  width: 100%;
  height: 45px;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px;
}

#applicationForm .applicationFormBox form .formTextareaGroup {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 30px;
}

#applicationForm .applicationFormBox form .formTextareaGroup label {
  font-size: 14px;
  font-weight: 600;
}

#applicationForm .applicationFormBox form .formTextareaGroup textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 400;
  resize: none;
  margin-top: 5px;
  outline: none;
}

#applicationForm .applicationFormBox form .formTextareaGroup textarea:focus {
  border: 1px solid #4c2fec;
}

#applicationForm .applicationFormBox form .formTextareaGroup textarea::-webkit-input-placeholder {
  color: #cfcdcd;
}

#applicationForm .applicationFormBox form .formTextareaGroup textarea:-ms-input-placeholder {
  color: #cfcdcd;
}

#applicationForm .applicationFormBox form .formTextareaGroup textarea::-ms-input-placeholder {
  color: #cfcdcd;
}

#applicationForm .applicationFormBox form .formTextareaGroup textarea::placeholder {
  color: #cfcdcd;
}

#applicationForm .applicationFormBox form .btnArea {
  width: 100%;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#applicationForm .applicationFormBox form .btnArea button {
  width: 200px;
  padding: 20px;
  border-radius: 10px;
  background: #4c2fec;
  color: white;
  font-size: 18px;
  font-weight: 300;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: center;
}

@media (max-width: 480px) {
  #applicationForm .applicationFormBox form .btnArea button {
    width: 100%;
    padding: 15px;
  }
}

#myCard {
  width: 100%;
  float: left;
  margin-top: 80px;
  padding: 50px 0px;
  min-height: calc(100vh - 80px);
}

@media (max-width: 768px) {
  #myCard {
    margin-top: 60px;
  }
}

#myCard h2 {
  font-size: 20px;
  font-weight: 500;
}

#myCard .myCardMain {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

#myCard .myCardMain::after {
  content: '';
  height: 0;
  width: 30%;
}

#myCard .myCardMain .myCardBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  border-radius: 10px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  -webkit-box-shadow: 0 0 20px #f5f5f5;
          box-shadow: 0 0 20px #f5f5f5;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 768px) {
  #myCard .myCardMain .myCardBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 47%;
            flex: 0 0 47%;
  }
}

@media (max-width: 480px) {
  #myCard .myCardMain .myCardBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#myCard .myCardMain .myCardBox:hover {
  margin-top: 35px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#myCard .myCardMain .myCardBox .myCardBoxThumbnail {
  width: 100%;
  height: 180px;
  background: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
}

#myCard .myCardMain .myCardBox .myCardBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#myCard .myCardMain .myCardBox .myCardBoxContent {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 15px;
}

#myCard .myCardMain .myCardBox .myCardBoxContent p {
  font-size: 18px;
  font-weight: 500;
  color: #132743;
}

#myCard .emptyPage {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#myCard .emptyPage .emptyPageThumnail {
  width: 30%;
  margin-top: 50px;
}

@media (max-width: 480px) {
  #myCard .emptyPage .emptyPageThumnail {
    width: 100%;
  }
}

#myCard .emptyPage .emptyPageThumnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#myCard .emptyPage p {
  font-size: 18px;
  text-align: center;
}

#myCard .emptyPage a {
  text-decoration: none;
  width: 180px;
  padding: 15px;
  background: #4c2fec;
  color: white;
  font-size: 14px;
  text-align: center;
  border-radius: 5px;
  margin-top: 30px;
}

#innerCard {
  width: 100%;
  float: left;
  margin-top: 80px;
  padding: 50px 0px;
}

@media (max-width: 768px) {
  #innerCard {
    margin-top: 60px;
  }
}

#innerCard .innerCardMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#innerCard .innerCardMain .innerCardHead {
  width: 100%;
  padding: 30px;
  border-radius: 5px;
  background: black;
  -webkit-box-shadow: 0 0 10px #f5f5f5;
          box-shadow: 0 0 10px #f5f5f5;
}

@media (max-width: 480px) {
  #innerCard .innerCardMain .innerCardHead {
    padding: 20px;
  }
}

#innerCard .innerCardMain .innerCardHead h1 {
  font-size: 2.5em;
  font-weight: 700;
  color: white;
  text-align: center;
}

@media (max-width: 480px) {
  #innerCard .innerCardMain .innerCardHead h1 {
    font-size: 2em;
  }
}

#innerCard .innerCardMain .innerCardHead p {
  font-size: 18px;
  font-weight: 500;
  color: #33a7e4;
  margin-top: 20px;
  text-align: center;
}

#innerCard .innerCardMain .innerCardTable {
  width: 100%;
  margin-top: 50px;
}

#innerCard .innerCardMain .innerCardTable table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #eee;
  border-radius: 5px;
}

@media (max-width: 480px) {
  #innerCard .innerCardMain .innerCardTable table {
    display: none;
  }
}

#innerCard .innerCardMain .innerCardTable table thead {
  width: 100%;
}

#innerCard .innerCardMain .innerCardTable table thead tr {
  width: 100%;
  display: table-row;
  outline: 0;
  vertical-align: middle;
}

#innerCard .innerCardMain .innerCardTable table thead tr th {
  font-size: 14px;
  padding: 13px 20px;
  text-align: left;
  color: #132743;
  line-height: 1.5;
  white-space: pre;
  font-weight: 600;
}

#innerCard .innerCardMain .innerCardTable table tbody {
  width: 100%;
}

#innerCard .innerCardMain .innerCardTable table tbody tr {
  width: 100%;
  display: table-row;
  outline: 0;
  vertical-align: middle;
  border-top: 1px solid #eee !important;
}

#innerCard .innerCardMain .innerCardTable table tbody tr td {
  color: #132743;
  padding: 13px 20px;
  font-size: 12px;
  font-weight: 500;
}

#innerCard .innerCardMain .innerCardTable table tbody tr td .productImage {
  width: 100px;
}

#innerCard .innerCardMain .innerCardTable table tbody tr td .productImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#innerCard .innerCardMain .innerCardTable table tbody tr td .tableDiscription {
  width: 200px;
  line-height: 1.7;
}

#innerCard .innerCardMain .innerCardTable table tbody tr td .credited {
  padding: 5px 10px;
  border-radius: 5px;
  background: rgba(75, 255, 75, 0.295);
  color: green;
  width: 120px;
  text-align: center;
}

#innerCard .innerCardMain .innerCardTable table tbody tr td .nonCredited {
  padding: 5px 10px;
  border-radius: 5px;
}

#innerCard .innerCardMain .innerCardTable .mobileViewTable {
  display: none;
  width: 100%;
  float: left;
}

@media (max-width: 480px) {
  #innerCard .innerCardMain .innerCardTable .mobileViewTable {
    display: block;
  }
}

#innerCard .innerCardMain .innerCardTable .mobileViewTable .mobileViewTableMain {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#innerCard .innerCardMain .innerCardTable .mobileViewTable .mobileViewTableMain .mobileViewTableBox {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 5px;
  margin-top: 30px;
}

#innerCard .innerCardMain .innerCardTable .mobileViewTable .mobileViewTableMain .mobileViewTableBox:nth-child(1) {
  margin-top: 20px;
}

#innerCard .innerCardMain .innerCardTable .mobileViewTable .mobileViewTableMain .mobileViewTableBox ul {
  width: 100%;
}

#innerCard .innerCardMain .innerCardTable .mobileViewTable .mobileViewTableMain .mobileViewTableBox ul li {
  list-style: none;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#innerCard .innerCardMain .innerCardTable .mobileViewTable .mobileViewTableMain .mobileViewTableBox ul li span {
  font-size: 16px;
  font-weight: 500;
  color: rgba(124, 124, 124, 0.8);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
}

#innerCard .innerCardMain .innerCardTable .mobileViewTable .mobileViewTableMain .mobileViewTableBox ul li p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 65%;
          flex: 0 0 65%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 15px;
  background: #fbffff;
  margin-top: 10px;
}

#innerCard .innerCardMain .innerCardTable .mobileViewTable .mobileViewTableMain .mobileViewTableBox ul li .credited {
  padding: 5px 10px;
  border-radius: 5px;
  background: rgba(75, 255, 75, 0.295);
  color: green;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 65%;
          flex: 0 0 65%;
}

#innerCard .innerCardMain .innerCardTable .mobileViewTable .mobileViewTableMain .mobileViewTableBox ul li .nonCredited {
  padding: 5px 10px;
  border-radius: 5px;
}

#offer {
  width: 100%;
  float: left;
  margin-top: 80px;
  padding: 50px 0px;
  min-height: calc(100vh - 80px);
}

@media (max-width: 768px) {
  #offer {
    margin-top: 60px;
  }
}

#offer h2 {
  font-size: 20px;
  font-weight: 500;
}

#offer .offerMain {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#offer .offerMain .offerBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 47%;
          flex: 0 0 47%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 40px;
  -webkit-box-shadow: 0 0 20px #f5f5f5;
          box-shadow: 0 0 20px #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 480px) {
  #offer .offerMain .offerBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#offer .offerMain .offerBox .offerThumbnail {
  width: 100%;
  height: 220px;
  background: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
}

#offer .offerMain .offerBox .offerThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#offer .offerMain .offerBox .offerContent {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
}

#offer .offerMain .offerBox .offerContent h3 {
  font-size: 20px;
  font-weight: 700;
  color: #132743;
}

#offer .offerMain .offerBox .offerContent span {
  font-size: 14px;
  margin-top: 20px;
  color: black;
}

#offer .offerMain .offerBox .offerContent span b {
  color: #4c2fec;
  margin-left: 10px;
  font-weight: 500;
}

#offer .offerMain .offerBox .offerContent p {
  font-size: 14px;
  margin-top: 20px;
  line-height: 1.8;
  opacity: 0.6;
  font-weight: 300;
}

#offer .emptyPage {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#offer .emptyPage .emptyPageThumnail {
  width: 30%;
  margin-top: 50px;
}

@media (max-width: 480px) {
  #offer .emptyPage .emptyPageThumnail {
    width: 100%;
  }
}

#offer .emptyPage .emptyPageThumnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#offer .emptyPage p {
  font-size: 18px;
  text-align: center;
}

#offer .emptyPage a {
  text-decoration: none;
  width: 180px;
  padding: 15px;
  background: #4c2fec;
  color: white;
  font-size: 14px;
  text-align: center;
  border-radius: 5px;
  margin-top: 30px;
}

#notification {
  width: 100%;
  float: left;
  margin-top: 80px;
  padding: 50px 0px;
  min-height: calc(100vh - 80px);
}

@media (max-width: 768px) {
  #notification {
    margin-top: 60px;
  }
}

#notification h2 {
  font-size: 20px;
  font-weight: 500;
}

#notification .emptyPage {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#notification .emptyPage .emptyPageThumnail {
  width: 30%;
  margin-top: 50px;
}

@media (max-width: 480px) {
  #notification .emptyPage .emptyPageThumnail {
    width: 100%;
  }
}

#notification .emptyPage .emptyPageThumnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#notification .emptyPage p {
  font-size: 18px;
  text-align: center;
}

#notification .emptyPage a {
  text-decoration: none;
  width: 180px;
  padding: 15px;
  background: #4c2fec;
  color: white;
  font-size: 14px;
  text-align: center;
  border-radius: 5px;
  margin-top: 30px;
}

#refferEarn {
  width: 100%;
  float: left;
  padding: 50px 0px;
  margin-top: 80px;
}

@media (max-width: 768px) {
  #refferEarn {
    margin-top: 60px;
  }
}

#refferEarn .refferEarnMain {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#refferEarn .refferEarnMain .refferEarnContent {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  #refferEarn .refferEarnMain .refferEarnContent {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 30px;
  }
}

#refferEarn .refferEarnMain .refferEarnContent h1 {
  font-size: 3em;
  font-weight: 700;
  color: #132743;
}

@media (max-width: 768px) {
  #refferEarn .refferEarnMain .refferEarnContent h1 {
    font-size: 2.5em;
  }
}

#refferEarn .refferEarnMain .refferEarnContent p {
  margin-top: 20px;
  line-height: 1.8;
  font-size: 16px;
  color: #000;
  opacity: 0.6;
  font-weight: 300;
}

#refferEarn .refferEarnMain .refferEarnContent .refferalCode {
  width: 100%;
  background: #f5f5f5;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 0;
  position: relative;
}

#refferEarn .refferEarnMain .refferEarnContent .refferalCode::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 70%;
  top: 0;
  left: 0;
  z-index: 1;
}

#refferEarn .refferEarnMain .refferEarnContent .refferalCode .codeNumber {
  width: 70%;
  height: 50px;
  padding: 10px 20px;
  color: black;
  font-size: 22px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: none;
  outline: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f5f5f5;
}

@media (max-width: 480px) {
  #refferEarn .refferEarnMain .refferEarnContent .refferalCode .codeNumber {
    width: 65%;
  }
}

#refferEarn .refferEarnMain .refferEarnContent .refferalCode button {
  width: 30%;
  background: #4c2fec;
  color: white;
  font-size: 14px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  outline: none;
  z-index: 2;
  height: 50px;
  cursor: pointer;
  border-radius: 5px;
}

@media (max-width: 480px) {
  #refferEarn .refferEarnMain .refferEarnContent .refferalCode button {
    width: 35%;
  }
}

#refferEarn .refferEarnMain .refferEarnThumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

@media (max-width: 768px) {
  #refferEarn .refferEarnMain .refferEarnThumbnail {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    height: 50vh;
  }
}

#refferEarn .refferEarnMain .refferEarnThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#profile {
  width: 100%;
  float: left;
  padding: 50px 20%;
  margin-top: 80px;
}

@media (max-width: 768px) {
  #profile {
    margin-top: 60px;
    padding: 50px 5%;
  }
}

#profile h2 {
  font-size: 22px;
  font-weight: 600;
}

#profile .profileMain {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 10px;
}

#profile .profileMain .profileBox {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
}

#profile .profileMain .profileBox h3 {
  width: 100%;
  padding: 30px 20px;
  font-size: 20px;
  font-weight: 500;
}

#profile .profileMain .profileBox ul {
  width: 100%;
}

#profile .profileMain .profileBox ul li {
  list-style: none;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  border-top: 1px solid #eee;
}

#profile .profileMain .profileBox ul li:nth-child(1) {
  border-top: 0;
}

#profile .profileMain .profileBox ul li .profileInfoMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#profile .profileMain .profileBox ul li .profileInfoMain .profileInfoHead {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 480px) {
  #profile .profileMain .profileBox ul li .profileInfoMain .profileInfoHead {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#profile .profileMain .profileBox ul li .profileInfoMain .profileInfoHead h4 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(124, 124, 124, 0.8);
}

#profile .profileMain .profileBox ul li .profileInfoMain .profileInfoValue {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 65%;
          flex: 0 0 65%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 480px) {
  #profile .profileMain .profileBox ul li .profileInfoMain .profileInfoValue {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-top: 5px;
  }
}

#profile .profileMain .profileBox ul li .profileInfoMain .profileInfoValue p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

#profile .profileMain .profileBox ul li .editBtn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#profile .profileMain .profileBox ul li .editBtn a {
  text-decoration: none;
  width: 120px;
  padding: 12px;
  background: #4c2fec;
  color: white;
  font-size: 14px;
  text-align: center;
  border-radius: 5px;
}
/*# sourceMappingURL=style.css.map */