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

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

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

/* Track */
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #0094d6;
  border-radius: 5px;
}

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

a, button, div, span, i, b, h1, h2, h3, h4, h5, h6, p, input, ul, li, select, label, textarea {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  font-family: 'Rubik', sans-serif;
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  font-family: 'Rubik', 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 {
  resize: none;
  font-family: 'Rubik', sans-serif;
}

main {
  overflow: hidden;
}

.shimmer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 105;
  background: rgba(0, 0, 0, 0.397);
  display: none;
}

#toast {
  visibility: hidden;
  max-width: 50px;
  height: 50px;
  border-radius: 10px;
  margin: auto;
  background-color: #333;
  color: #fff;
  text-align: center;
  position: fixed;
  z-index: 110;
  left: 0;
  right: 0;
  bottom: 30px;
  font-size: 17px;
  white-space: nowrap;
}

#toast #img {
  width: 50px;
  height: 50px;
  float: left;
  padding-top: 16px;
  padding-bottom: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  background-color: #111;
  color: #fff;
}

#toast #desc {
  color: #fff;
  padding: 14px;
  font-weight: 300;
  overflow: hidden;
  white-space: nowrap;
}

#toast.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, expand 0.5s 0.5s,stay 3s 1s, shrink 0.5s 2s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, expand 0.5s 0.5s,stay 3s 1s, shrink 0.5s 4s, fadeout 0.5s 4.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes expand {
  from {
    min-width: 50px;
  }
  to {
    min-width: 350px;
  }
}

@media (max-width: 480px) {
  @-webkit-keyframes expand {
    from {
      min-width: 50px;
    }
    to {
      min-width: 95%;
    }
  }
}

@keyframes expand {
  from {
    min-width: 50px;
  }
  to {
    min-width: 350px;
  }
}

@media (max-width: 480px) {
  @-webkit-keyframes expand {
    from {
      min-width: 50px;
    }
    to {
      min-width: 95%;
    }
  }
  @keyframes expand {
    from {
      min-width: 50px;
    }
    to {
      min-width: 95%;
    }
  }
}

@-webkit-keyframes stay {
  from {
    min-width: 350px;
  }
  to {
    min-width: 350px;
  }
}

@media (max-width: 480px) {
  @-webkit-keyframes stay {
    from {
      min-width: 95%;
    }
    to {
      min-width: 95%;
    }
  }
}

@keyframes stay {
  from {
    min-width: 350px;
  }
  to {
    min-width: 350px;
  }
}

@media (max-width: 480px) {
  @-webkit-keyframes stay {
    from {
      min-width: 95%;
    }
    to {
      min-width: 95%;
    }
  }
  @keyframes stay {
    from {
      min-width: 95%;
    }
    to {
      min-width: 95%;
    }
  }
}

@-webkit-keyframes shrink {
  from {
    min-width: 350px;
  }
  to {
    min-width: 50px;
  }
}

@media (max-width: 480px) {
  @-webkit-keyframes shrink {
    from {
      min-width: 95%;
    }
    to {
      min-width: 50px;
    }
  }
}

@keyframes shrink {
  from {
    min-width: 350px;
  }
  to {
    min-width: 50px;
  }
}

@media (max-width: 480px) {
  @-webkit-keyframes shrink {
    from {
      min-width: 95%;
    }
    to {
      min-width: 50px;
    }
  }
  @keyframes shrink {
    from {
      min-width: 95%;
    }
    to {
      min-width: 50px;
    }
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 60px;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 60px;
    opacity: 0;
  }
}

.filter {
  position: fixed;
  z-index: 110;
  background: white;
  border-radius: 15px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 40%;
  left: 50%;
  width: 350px;
  max-height: 80vh;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s all ease-Out;
  transition: 0.3s all ease-Out;
}

@media (max-width: 480px) {
  .filter {
    width: 100%;
    bottom: -110%;
    top: inherit;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    -webkit-transform: inherit;
            transform: inherit;
    left: 0;
    max-height: 85vh;
    opacity: 1;
    visibility: visible;
  }
}

.filter .filterHead {
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 15px 20px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.075);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.075);
}

.filter .filterHead p {
  font-size: 18px;
  font-weight: 500;
}

.filter .filterBody {
  width: 100%;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: auto;
  max-height: 70vh;
  padding-bottom: 60px;
}

.filter .filterBody::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

@media (max-width: 480px) {
  .filter .filterBody {
    max-height: 75vh;
  }
}

.filter .filterBody h2 {
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
  padding: 0 20px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.filter .filterBody h2:nth-child(1) {
  border-top: none;
  padding-top: 0px;
}

.filter .filterBody 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;
}

.filter .filterBody ul li {
  list-style: none;
  margin-top: 5px;
  padding: 0px 20px;
}

.filter .filterBody ul li:hover {
  background: rgba(238, 238, 238, 0.233);
}

.filter .filterBody ul li input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.filter .filterBody ul li label {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  padding: 10px 0px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  width: 100%;
  display: flex;
	align-items: flex-start;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #838383;
}

.filter .filterBody ul li label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #E0E4E8;
  padding: 7px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
  border-radius: 5px;
}

.filter .filterBody ul li input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 13px;
  left: 6px;
  width: 4px;
  height: 7px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.filter .filterBody ul li input:checked + label:before {
  background: #0094d6;
  border: 2px solid #0094d6;
}

.filter .filterFooter {
  width: 100%;
  height: 55px;
  padding: 0px 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;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.075);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.075);
  position: absolute;
  left: 0;
  bottom: 0;
  background: white;
}

.filter .filterFooter .filterCloseBtn {
  width: 40%;
  padding: 12px;
  background: #eee;
  border-radius: 12px;
  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;
  cursor: pointer;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.filter .filterFooter .filterCloseBtn:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 1;
}

.filter .filterFooter .filterCloseBtn::after {
  position: absolute;
  width: 30px;
  height: 50px;
  content: '';
  background: rgba(0, 0, 0, 0.089);
  z-index: -1;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 0;
}

.filter .filterFooter .filterSbtBtn {
  width: 57%;
  padding: 12px;
  background: #0094d6;
  color: white;
  border-radius: 12px;
  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;
  cursor: pointer;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.filter .filterFooter .filterSbtBtn:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 1;
}

.filter .filterFooter .filterSbtBtn::after {
  position: absolute;
  width: 30px;
  height: 50px;
  content: '';
  background: rgba(0, 0, 0, 0.199);
  z-index: -1;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 0;
}

.filterActive {
  top: 50%;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.3s all ease-in;
  transition: 0.3s all ease-in;
}

@media (max-width: 480px) {
  .filterActive {
    bottom: 0;
    top: inherit;
  }
}

.applyFormPopup {
  position: fixed;
  z-index: 110;
  background: white;
  border-radius: 15px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 40%;
  left: 50%;
  width: 350px;
  max-height: 80vh;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s all ease-Out;
  transition: 0.3s all ease-Out;
}

@media (max-width: 480px) {
  .applyFormPopup {
    width: 100%;
    bottom: -110%;
    top: inherit;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    -webkit-transform: inherit;
            transform: inherit;
    left: 0;
    max-height: 85vh;
    opacity: 1;
    visibility: visible;
  }
}

.applyFormPopup .applyFormPopupHead {
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 15px 20px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.075);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.075);
}

.applyFormPopup .applyFormPopupHead p {
  font-size: 18px;
  font-weight: 500;
}

.applyFormPopup .applyFormPopupBody {
  width: 100%;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: auto;
  max-height: 70vh;
  padding-bottom: 80px;
}

.applyFormPopup .applyFormPopupBody::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

@media (max-width: 480px) {
  .applyFormPopup .applyFormPopupBody {
    max-height: 75vh;
  }
}

.applyFormPopup .applyFormPopupBody 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;
  padding: 20px 20px 0px 20px;
}

.applyFormPopup .applyFormPopupBody 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: 15px;
}

.applyFormPopup .applyFormPopupBody form .formGroup:nth-child(1) {
  margin-top: 0;
}

.applyFormPopup .applyFormPopupBody form .formGroup label {
  font-size: 12px;
  color: #2d3862;
}

.applyFormPopup .applyFormPopupBody form .formGroup input {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  outline: none;
  border: 1px solid #c5c5c5;
  margin-top: 5px;
  padding: 15px;
  font-weight: 600;
  color: black;
  font-size: 16px;
}

.applyFormPopup .applyFormPopupBody form .formGroup input:focus {
  border: 1px solid #0094d6;
}

.applyFormPopup .applyFormPopupBody form .formGroup .file-upload .image-box {
  margin-top: 5px;
  width: 100%;
  height: 100px;
  cursor: pointer;
  border: 1.5px dashed #c5c5c5;
  border-radius: 10px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.applyFormPopup .applyFormPopupBody form .formGroup .file-upload .image-box img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 0;
  position: relative;
}

.applyFormPopup .applyFormPopupBody form .formGroup .file-upload .image-box img::after {
  position: absolute;
  content: 'CV Uploaded';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: white;
  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;
  font-size: 16px;
  color: #0ca107;
  z-index: 2;
}

.applyFormPopup .applyFormPopupBody form .formGroup .file-upload .image-box .editPen {
  position: absolute;
  z-index: 1;
  width: 30px;
  height: 30px;
  background: #0094d6;
  color: white;
  bottom: -10px;
  right: -10px;
  border-radius: 50px;
  font-size: 14px;
  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;
}

.applyFormPopup .applyFormPopupBody form .termsCheckBox {
  width: 100%;
  margin-top: 20px;
}

.applyFormPopup .applyFormPopupBody form .termsCheckBox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.applyFormPopup .applyFormPopupBody form .termsCheckBox label {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  width: 100%;
  display: block;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #303030;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.applyFormPopup .applyFormPopupBody form .termsCheckBox label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #E0E4E8;
  padding: 7px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
  border-radius: 5px;
}

.applyFormPopup .applyFormPopupBody form .termsCheckBox input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 6px;
  width: 4px;
  height: 7px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.applyFormPopup .applyFormPopupBody form .termsCheckBox input:checked + label:before {
  background: #0094d6;
  border: 2px solid #0094d6;
}

.applyFormPopup .applyFormPopupFooter {
  width: 100%;
  height: 55px;
  padding: 0px 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;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.075);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.075);
  position: absolute;
  left: 0;
  bottom: 0;
  background: white;
}

.applyFormPopup .applyFormPopupFooter .applyFormPopupCloseBtn {
  width: 48%;
  padding: 12px;
  background: #eee;
  border-radius: 12px;
  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;
  cursor: pointer;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.applyFormPopup .applyFormPopupFooter .applyFormPopupCloseBtn:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 1;
}

.applyFormPopup .applyFormPopupFooter .applyFormPopupCloseBtn::after {
  position: absolute;
  width: 30px;
  height: 50px;
  content: '';
  background: rgba(0, 0, 0, 0.089);
  z-index: -1;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 0;
}

.applyFormPopup .applyFormPopupFooter .applyFormPopupSbtBtn {
  width: 48%;
  padding: 12px;
  background: #0094d6;
  color: white;
  border: none;
  outline: none;
  border-radius: 12px;
  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;
  cursor: pointer;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.applyFormPopup .applyFormPopupFooter .applyFormPopupSbtBtn:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 1;
}

.applyFormPopup .applyFormPopupFooter .applyFormPopupSbtBtn::after {
  position: absolute;
  width: 30px;
  height: 50px;
  content: '';
  background: rgba(0, 0, 0, 0.199);
  z-index: -1;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 0;
}

.applyFormPopupActive {
  top: 50%;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.3s all ease-in;
  transition: 0.3s all ease-in;
}

@media (max-width: 480px) {
  .applyFormPopupActive {
    bottom: 0;
    top: inherit;
  }
}

.sidemenu {
  position: fixed;
  z-index: 110;
  right: -110%;
  width: 450px;
  height: 100vh;
  background: white;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media(max-width: 500px){
	.sidemenu{
		width: 90%;
	}
}

.sidemenu .sidemenuHead {
  width: 100%;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.sidemenu .sidemenuHead .sidemenuClose {
  font-size: 20px;
  cursor: pointer;
}

.sidemenu .sidemenuBody {
  width: 100%;
  padding: 10px 0px;
}

.sidemenu .sidemenuBody ul {
  width: 100%;
}

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

.sidemenu .sidemenuBody ul li a {
  text-decoration: none;
  color: black;
  opacity: 0.7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
  font-size: 16px;
  padding: 10px 20px;
}

.sidemenu .sidemenuBody ul li .sidemenuLinkActive {
  background: rgba(238, 238, 238, 0.753);
  color: #0094d6;
  font-weight: 500;
}

.sidemenu .sidemenuBody ul li .findJob {
  background: #0094d6;
  color: white;
  font-weight: 300;
}

.sidemenu .sidemenuBody ul li .findJob:hover {
  background: #0094d6;
}

.sidemenuAcive {
  right: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: white;
  z-index: 50;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.096);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.096);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
nav .navMain{
    width: 100%;
    height: 60px;
    display: flex;
    align-items: contain;
    justify-content: space-between;
}
nav .navMain .navCol1{
    display: flex;
    align-items: center;
    gap: 15px;
}
nav .navMain .navCol1 .navLogo {
  height: 60px;
  text-decoration: none;
}
nav .navMain .navCol1 .navLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
nav .navMain .navCol2{
    display: flex;
    align-items: center;
    gap: 50px;
} 
nav .navMain .navCol2 .navLink {
  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: 1100px) {
    nav .navMain .navCol2 .navLink {
        display: none;
    }
}
nav .navMain .navCol2 .navLink ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          gap: 20px;
}
nav .navMain .navCol2 .navLink li {
  list-style: none;
}
nav .navMain .navCol2 .navLink li a {
  text-decoration: none;
  font-size: 14px;
  color: black;
  padding: 8px 20px;
  border-radius: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
nav .navMain .navCol2 .navLink li a:hover {
  background: rgba(238, 238, 238, 0.664);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
nav .navMain .navCol2 .navLink li .navActive {
  background: rgba(238, 238, 238, 0.664);
}
nav .navMain .navCol2 .navLink li .navActive:hover {
  background: rgba(238, 238, 238, 0.664);
}
nav .navMain .navCol2 .navAcions{
    display: flex;
    align-items: center;
    gap: 20px;
}
nav .navMain .navCol2 .navAcions .navProfile{
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
	padding :5px 0px;
}
nav .navMain .navCol2 .navAcions .navProfile:hover .navProfilePopup{
    visibility: visible;
    opacity: 1;
    transform: translateY(0px) translateX(-50%);
    transition: .3s;
}
@media(max-width:600px){
    nav .navMain .navCol2 .navAcions .navProfile:hover .navProfilePopup{
        transform: translateY(0px) translateX(0%);
    }
}
nav .navMain .navCol2 .navAcions .navProfile .navProfileBtn{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 12px;
    border: 1px solid #000;
    border-radius: 12px;
    transition: .3s;
}
@media(max-width:500px){
    #banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfileBtn {
        padding: 8px 14px;
    }
}
nav .navMain .navCol2 .navAcions .navProfile .navProfileBtn:hover {
    border-color: #0094d6;
    transition: .3s;
}
nav .navMain .navCol2 .navAcions .navProfile .navProfileBtn:hover .icon {
    color: #0094d6;
    transition: .3s;
}
nav .navMain .navCol2 .navAcions .navProfile .navProfileBtn:hover p {
    color: #0094d6;
    transition: .3s;
}
nav .navMain .navCol2 .navAcions .navProfile .navProfileBtn .icon{
    font-size: 16px;
    transition: .3s;
}
nav .navMain .navCol2 .navAcions .navProfile .navProfileBtn p{
    font-size: 16px;
    transition: .3s;
	white-space: nowrap;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media(max-width:600px){
	nav .navMain .navCol2 .navAcions .navProfile .navProfileBtn p{
	 	max-width: 120px;
	}
}
@media(max-width:500px){
	nav .navMain .navCol2 .navAcions .navProfile .navProfileBtn p{
	 	max-width: 90px;
	}
}
nav .navMain .navCol2 .navAcions .navProfile .navProfilePopup{
    position: absolute;
    top: 100%;
    left: 50%;
    background: white;
    width: 270px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 10px #0000002b;
    border-radius: 12px;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-50px) translateX(-50%);
    transition: .3s;
    z-index: 10;
}
@media(max-width:600px){
    nav .navMain .navCol2 .navAcions .navProfile .navProfilePopup{
        left: inherit;
        right: 0;
        transform: translateY(-50px) translateX(0%);
    }
}
nav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfileLogin{
    width: 100%;
    padding: 5px 5px;
    display: flex;
}
nav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfileLogin a{
    text-decoration: none;
    height: 45px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0094d6;
    color: white;
    font-size: 16px;
    gap: 10px;
    border-radius: 12px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
nav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfileLogin a:hover {
  background: #0094d6;
}
nav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfileLogin a:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 1;
}
nav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfileLogin a::after {
  position: absolute;
  width: 30px;
  height: 50px;
  content: '';
  background: rgba(0, 0, 0, 0.082);
  z-index: -1;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 0;
}
nav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfilePopupMenu{
    width: 100%;
    display: flex;
    flex-direction: column;
}
nav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfilePopupMenu ul{
    width: 100%;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #eee;
    padding: 10px 0px;
}
nav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfilePopupMenu ul:nth-child(1){
    border-top: 0;
    padding: 0px 0px 10px 0px;
}
nav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfilePopupMenu ul:nth-last-child(1){
    padding-bottom: 0px;
}
nav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfilePopupMenu ul li{
    list-style: none;
    width: 100%;
}
nav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfilePopupMenu ul li a{
    width: 100%;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 6px 10px;
    border-radius: 6px;
    transition: .3s;
}
nav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfilePopupMenu ul li a:hover{
    background: #f1f4f7;  
    transition: .3s; 
}
nav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfilePopupMenu ul li a .icon{
    font-size: 18px;
    color: #aaa;
}
nav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfilePopupMenu ul li a p{
    font-size: 16px;
    color: #000;
    font-weight: 300;
}
nav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfilePopupMenu ul li .profileMenuActive{
    background: #f1f4f7; 
}
nav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfilePopupMenu ul li .profileMenuActive .icon{
    color: #0094d6; 
}
nav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfilePopupMenu ul li .profileMenuActive p{
    color: #0094d6; 
}
nav .navMain .navCol2 .navAcions .findJob {
    background: #0094d6;
    color: white;
    font-weight: 300;
    overflow: hidden;
    position: relative;
    z-index: 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;
    padding: 8px 20px;
    border-radius: 12px;
    text-decoration: none;
    white-space: nowrap;
}
@media(max-width:600px){
    nav .navMain .navCol2 .navAcions .findJob {
       position: fixed;
       z-index: 10;
       bottom: 10px;
       width: calc(100% - 20px);
       left: 10px;
       height: 50px;
       box-shadow: 0 0 10px #0000001c;
    }
}
nav .navMain .navCol2 .navAcions .findJob:hover {
  background: #0094d6;
}
nav .navMain .navCol2 .navAcions .findJob:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 1;
}
nav .navMain .navCol2 .navAcions .findJob::after {
  position: absolute;
  width: 30px;
  height: 50px;
  content: '';
  background: rgba(0, 0, 0, 0.082);
  z-index: -1;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 0;
}

nav .navBar {
  display: none;
  height: 60px;
  float: right;
  -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: 1024px) {
  nav .navBar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

nav .navBar .navBarBox {
  width: 25px;
  cursor: pointer;
  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;
}

nav .navBar .navBarBox span {
  width: 100%;
  height: 2px;
  margin-top: 3px;
  background: black;
  border-radius: 19%;
}

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

.navActive {
  top: 0 !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#banner {
  width: 100%;
  height: 100vh;
  background: black;
  position: relative;
  z-index: 0;
}

@media(max-width:480px){
	#banner {
		height: 75vh;
	}
}

#banner .bannerThumbnail {
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
}

#banner .bannerThumbnail .bannerThumbnailBox {
  width: 100%;
  height: 100vh;
}
@media(max-width:480px){
	#banner .bannerThumbnail .bannerThumbnailBox {
		height: 75vh;
	}
}

#banner .bannerThumbnail .bannerThumbnailBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#banner .bannerThumbnail .owl-nav, #banner .bannerThumbnail .owl-dot {
  display: none;
}

#banner .bannerDetails {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.411);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#banner .bannerDetails .bannerNav {
  width: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#banner .bannerDetails .bannerNav .navMain{
    width: 100%;
    height: 100px;
    display: flex;
    align-items: contain;
    justify-content: space-between;
}
@media (max-width: 480px) {
    #banner .bannerDetails .bannerNav .navMain {
        height: 60px;
    }
}
#banner .bannerDetails .bannerNav .navMain .navCol1{
    display: flex;
    align-items: center;
    gap: 15px;
}
#banner .bannerDetails .bannerNav .navMain .navCol2{
    display: flex;
    align-items: center;
    gap: 50px;
}
#banner .bannerDetails .bannerNav .navMain .bannerNavLogo {
  height: 100px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 480px) {
    #banner .bannerDetails .bannerNav .navMain .bannerNavLogo {
        height: 60px;
    }
}
#banner .bannerDetails .bannerNav .navMain .bannerNavLogo img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
#banner .bannerDetails .bannerNav .navMain .bannerNavLink {
  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: 1100px) {
    #banner .bannerDetails .bannerNav .navMain .bannerNavLink {
        display: none;
    }
}
#banner .bannerDetails .bannerNav .navMain .bannerNavLink ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          gap :20px;
}
#banner .bannerDetails .bannerNav .navMain .bannerNavLink li {
  list-style: none;
}
#banner .bannerDetails .bannerNav .navMain .bannerNavLink li a {
  text-decoration: none;
  font-size: 14px;
  color: white;
  padding: 8px 20px;
  font-weight: 100;
  border-radius: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#banner .bannerDetails .bannerNav .navMain .bannerNavLink li a:hover {
  background: rgba(238, 238, 238, 0.664);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#banner .bannerDetails .bannerNav .navMain .bannerNavLink li .navActive {
  border: 1px solid white;
}
#banner .bannerDetails .bannerNav .navMain .bannerNavLink li .navActive:hover {
  background: rgba(238, 238, 238, 0.664);
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions{
    display: flex;
    align-items: center;
    gap: 20px;
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile{
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile:hover .navProfilePopup{
    visibility: visible;
    opacity: 1;
    transform: translateY(0px) translateX(-50%);
    transition: .3s;
}
@media(max-width:600px){
    #banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile:hover .navProfilePopup{
        transform: translateY(0px) translateX(0%);
    }
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfileBtn{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px 15px 20px;
    border: 1px solid #fff;
    border-radius: 12px;
    transition: .3s;
}
@media(max-width:600px){
    #banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfileBtn {
        padding: 10px 20px;
    }
}
@media(max-width:500px){
    #banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfileBtn {
        padding: 8px 14px;
    }
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfileBtn:hover {
    border-color: #0094d6;
    transition: .3s;
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfileBtn:hover .icon {
    color: #0094d6;
    transition: .3s;
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfileBtn:hover p {
    color: #0094d6;
    transition: .3s;
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfileBtn .icon{
    font-size: 18px;
    transition: .3s;
    color: white;
}
@media(max-width:500px){
    #banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfileBtn .icon {
        font-size: 16px;
    }
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfileBtn p{
    font-size: 16px;
    transition: .3s;
    color: white;
    font-weight: 300;
}
@media(max-width:500px){
    #banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfileBtn p {
        font-size: 14px;
    }
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfilePopup{
    position: absolute;
    top: 100%;
    left: 50%;
    background: white;
    width: 270px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 10px #0000002b;
    border-radius: 12px;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-50px) translateX(-50%);
    transition: .3s;
    z-index: 10;
}
@media(max-width:600px){
    #banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfilePopup{
        left: inherit;
        right: 0;
        transform: translateY(-50px) translateX(0%);
    }
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfileLogin{
    width: 100%;
    padding: 5px 5px;
    display: flex;
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfileLogin a{
    text-decoration: none;
    height: 45px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0094d6;
    color: white;
    font-size: 16px;
    gap: 10px;
    border-radius: 12px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfileLogin a:hover {
  background: #0094d6;
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfileLogin a:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 1;
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfileLogin a::after {
  position: absolute;
  width: 30px;
  height: 50px;
  content: '';
  background: rgba(0, 0, 0, 0.082);
  z-index: -1;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 0;
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfilePopupMenu{
    width: 100%;
    display: flex;
    flex-direction: column;
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfilePopupMenu ul{
    width: 100%;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #eee;
    padding: 10px 0px;
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfilePopupMenu ul:nth-child(1){
    border-top: 0;
    padding: 0px 0px 10px 0px;
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfilePopupMenu ul:nth-last-child(1){
    padding-bottom: 0px;
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfilePopupMenu ul li{
    list-style: none;
    width: 100%;
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfilePopupMenu ul li a{
    width: 100%;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 6px 10px;
    border-radius: 6px;
    transition: .3s;
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfilePopupMenu ul li a:hover{
    background: #f1f4f7;  
    transition: .3s; 
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfilePopupMenu ul li a .icon{
    font-size: 18px;
    color: #aaa;
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .navProfile .navProfilePopup .navProfilePopupMenu ul li a p{
    font-size: 16px;
    color: #000;
    font-weight: 300;
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .findJob {
    background: #0094d6;
    color: white;
    font-weight: 300;
    overflow: hidden;
    position: relative;
    z-index: 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;
    font-size: 16px;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    white-space: nowrap;
}
@media(max-width:600px){
    #banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .findJob {
        display: none;
    }
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .findJob:hover {
  background: #0094d6;
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .findJob:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 1;
}
#banner .bannerDetails .bannerNav .navMain .navCol2 .navAcions .findJob::after {
  position: absolute;
  width: 30px;
  height: 50px;
  content: '';
  background: rgba(0, 0, 0, 0.082);
  z-index: -1;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 0;
}

#banner .bannerDetails .bannerNav .bannerNavBar {
  display: none;
  height: 100px;
  float: right;
  -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: 1024px) {
  #banner .bannerDetails .bannerNav .bannerNavBar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 480px) {
  #banner .bannerDetails .bannerNav .bannerNavBar {
    height: 60px;
  }
}

#banner .bannerDetails .bannerNav .bannerNavBar .bannerNavBarBox {
  width: 25px;
  cursor: pointer;
  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;
}

#banner .bannerDetails .bannerNav .bannerNavBar .bannerNavBarBox span {
  width: 100%;
  height: 2px;
  margin-top: 3px;
  background: white;
  border-radius: 19%;
}

#banner .bannerDetails .bannerNav .bannerNavBar .bannerNavBarBox span:nth-child(1) {
  margin-top: 0;
}

#banner .bannerDetails .bannerContent {
  width: 100%;
  height: 100%;
}

#banner .bannerDetails .bannerContent .bannerContentMain {
  width: 65%;
  height: calc(100vh - 100px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 50px 0px 100px 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1800px) {
  #banner .bannerDetails .bannerContent .bannerContentMain {
    width: 70%;
  }
}

@media (max-width: 1024px) {
  #banner .bannerDetails .bannerContent .bannerContentMain {
    width: 100%;
  }
}

@media (max-width: 480px) {
  #banner .bannerDetails .bannerContent .bannerContentMain {
    height: calc(75vh - 60px);
    padding: 50px 0px;
  }
}

#banner .bannerDetails .bannerContent .bannerContentMain h2 {
  font-size: 18px;
  font-weight: 300;
  color: #d8d8d8;
}

#banner .bannerDetails .bannerContent .bannerContentMain h1 {
  font-size: 3.5em;
  color: white;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 20px;
}

@media (max-width: 1800px) {
  #banner .bannerDetails .bannerContent .bannerContentMain h1 {
    font-size: 3em;
  }
}

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

@media (max-width: 480px) {
  #banner .bannerDetails .bannerContent .bannerContentMain h1 {
    font-size: 30px;
  }
}

#banner .bannerDetails .bannerContent .bannerContentMain a {
  text-decoration: none;
  width: 200px;
  padding: 25px;
  background: #0094d6;
  color: white;
  font-size: 18px;
  font-weight: 300;
  border-radius: 10px;
  margin-top: 50px;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 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;
}

@media (max-width: 480px) {
  #banner .bannerDetails .bannerContent .bannerContentMain a {
    padding: 20px;
  }
}

#banner .bannerDetails .bannerContent .bannerContentMain a:hover {
  background: #0094d6;
}

#banner .bannerDetails .bannerContent .bannerContentMain a:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 1;
}

#banner .bannerDetails .bannerContent .bannerContentMain a::after {
  position: absolute;
  width: 30px;
  height: 100%;
  content: '';
  background: rgba(0, 0, 0, 0.082);
  z-index: -1;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 0;
}

#whyUs {
  width: 100%;
  padding: 100px 0px;
  background: black;
}

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

#whyUs .whyUsMain {
  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;
}

#whyUs .whyUsMain .whyUsBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 23%;
          flex: 0 0 23%;
  padding: 20px;
  border-radius: 15px;
  background: #171719;
}

@media (max-width: 1024px) {
  #whyUs .whyUsMain .whyUsBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
  #whyUs .whyUsMain .whyUsBox:nth-child(3) {
    margin-top: 15px;
  }
  #whyUs .whyUsMain .whyUsBox:nth-child(4) {
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  #whyUs .whyUsMain .whyUsBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
  #whyUs .whyUsMain .whyUsBox:nth-child(2) {
    margin-top: 20px;
  }
  #whyUs .whyUsMain .whyUsBox:nth-child(3) {
    margin-top: 20px;
  }
  #whyUs .whyUsMain .whyUsBox:nth-child(4) {
    margin-top: 20px;
  }
}

#whyUs .whyUsMain .whyUsBox .whyUsBoxHead {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#whyUs .whyUsMain .whyUsBox .whyUsBoxHead .whyUsBoxHeadIcon {
  width: 45px;
  height: 45px;
  background: #0094d6;
  color: white;
  font-size: 25px;
  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: 50%;
}

#whyUs .whyUsMain .whyUsBox .whyUsBoxHead h2 {
  width: calc(100% - 60px);
  font-size: 20px;
  font-weight: 500;
  color: #0094d6;
}

#whyUs .whyUsMain .whyUsBox .whyUsBoxBody {
  width: 100%;
  margin-top: 20px;
  border-top: 1px solid rgba(238, 238, 238, 0.082);
  padding-top: 20px;
}

#whyUs .whyUsMain .whyUsBox .whyUsBoxBody p {
  font-size: 14px;
  line-height: 1.5;
  color: white;
  font-weight: 300;
}

#about {
  width: 100%;
  padding: 100px 0px;
  background: black;
}

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

#about .aboutMain {
  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;
}

#about .aboutMain h1 {
  font-size: 3.5em;
  color: white;
  font-weight: 400;
  text-align: center;
}

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

@media (max-width: 480px) {
  #about .aboutMain h1 {
    font-size: 2.5em;
    text-align: left;
  }
}

#about .aboutMain p {
  font-size: 20px;
  font-weight: 300;
  color: white;
  text-align: center;
  margin-top: 30px;
  width: 70%;
  line-height: 1.5;
  opacity: 0.7;
}

@media (max-width: 768px) {
  #about .aboutMain p {
    width: 100%;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  #about .aboutMain p {
    text-align: left;
  }
}

#about .aboutMain .aboutImage {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 80px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 480px) {
  #about .aboutMain .aboutImage {
    margin-top: 50px;
  }
}

#about .aboutMain .aboutImage .aboutImageBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33%;
          flex: 0 0 33%;
  height: 300px;
  background: #171719;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 480px) {
  #about .aboutMain .aboutImage .aboutImageBox {
    height: 200px;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-top: 10px;
  }
}

#about .aboutMain .aboutImage .aboutImageBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#about .aboutMain a {
  text-decoration: none;
  color: white;
  font-weight: 300;
  margin-top: 50px;
  background: #171719;
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  width: 150px;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 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;
}

#about .aboutMain a:hover {
  background: #171719;
}

#about .aboutMain a:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 1;
}

#about .aboutMain a::after {
  position: absolute;
  width: 30px;
  height: 100%;
  content: '';
  background: rgba(0, 0, 0, 0.336);
  z-index: -1;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 0;
}

#service {
  width: 100%;
  padding: 100px 0px;
}

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

#service .serviceMain {
  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;
}

#service .serviceMain h1 {
  font-size: 3.5em;
  font-weight: 500;
  text-align: center;
}

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

@media (max-width: 480px) {
  #service .serviceMain h1 {
    font-size: 2.5em;
    text-align: left;
  }
}

#service .serviceMain p {
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  margin-top: 30px;
  width: 70%;
  line-height: 1.5;
  opacity: 0.7;
}

@media (max-width: 768px) {
  #service .serviceMain p {
    width: 100%;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  #service .serviceMain p {
    text-align: left;
  }
}

#service .serviceMain .serviceBoxMain {
  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;
  position: relative;
}

#service .serviceMain .serviceBoxMain::after {
  content: '';
  height: 0;
  width: 31%;
}

#service .serviceMain .serviceBoxMain .serviceBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18%;
          flex: 0 0 18%;
  margin-top: 100px;
  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: 1440px) {
  #service .serviceMain .serviceBoxMain .serviceBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 31%;
            flex: 0 0 31%;
  }
}

@media (max-width: 768px) {
  #service .serviceMain .serviceBoxMain .serviceBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
}

@media (max-width: 480px) {
  #service .serviceMain .serviceBoxMain .serviceBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#service .serviceMain .serviceBoxMain .serviceBox .serviceBoxThumbnail {
  width: 100%;
  height: 200px;
  background: #171719;
  border-radius: 15px;
  overflow: hidden;
}

@media (max-width: 1440px) {
  #service .serviceMain .serviceBoxMain .serviceBox .serviceBoxThumbnail {
    height: 250px;
  }
}

@media (max-width: 1024px) {
  #service .serviceMain .serviceBoxMain .serviceBox .serviceBoxThumbnail {
    height: 200px;
  }
}

@media (max-width: 768px) {
  #service .serviceMain .serviceBoxMain .serviceBox .serviceBoxThumbnail {
    height: 200px;
  }
}

@media (max-width: 480px) {
  #service .serviceMain .serviceBoxMain .serviceBox .serviceBoxThumbnail {
    height: 250px;
  }
}

#service .serviceMain .serviceBoxMain .serviceBox .serviceBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#service .serviceMain .serviceBoxMain .serviceBox .serviceBoxContent {
  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;
}

@media (max-width: 480px) {
  #service .serviceMain .serviceBoxMain .serviceBox .serviceBoxContent {
    margin-top: 20px;
  }
}

#service .serviceMain .serviceBoxMain .serviceBox .serviceBoxContent h2 {
  font-size: 25px;
  font-weight: 500;
  color: black;
}

@media (max-width: 480px) {
  #service .serviceMain .serviceBoxMain .serviceBox .serviceBoxContent h2 {
    font-size: 25px;
  }
}

#service .serviceMain .serviceBoxMain .serviceBox .serviceBoxContent p {
  font-size: 14px;
  line-height: 1.5;
  color: black;
  text-align: left;
  margin-top: 10px;
  width: 100%;
  height: 105px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

@media (max-width: 480px) {
  #service .serviceMain .serviceBoxMain .serviceBox .serviceBoxContent p {
    font-size: 16px;
    height: auto;
    overflow: auto;
    text-overflow: inherit;
    display: block;
  }
}

#service .serviceMain .serviceBoxMain .serviceBox .serviceBoxContent a {
  text-decoration: none;
  color: black;
  font-weight: 400;
  margin-top: 30px;
  background: #eee;
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  width: 150px;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 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;
}

#service .serviceMain .serviceBoxMain .serviceBox .serviceBoxContent a:hover {
  background: #eee;
}

#service .serviceMain .serviceBoxMain .serviceBox .serviceBoxContent a:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 1;
}

#service .serviceMain .serviceBoxMain .serviceBox .serviceBoxContent a::after {
  position: absolute;
  width: 30px;
  height: 100%;
  content: '';
  background: rgba(0, 0, 0, 0.096);
  z-index: -1;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 0;
}

#process {
  width: 100%;
  padding: 100px 0px;
  background: url(../images/process.webp);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 0;
}

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

#process::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.432);
  z-index: -1;
}

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

#process h1 {
  font-size: 3.5em;
  color: white;
  font-weight: 400;
}

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

@media (max-width: 480px) {
  #process h1 {
    font-size: 2.5em;
  }
}

#process p {
  font-size: 20px;
  font-weight: 300;
  color: white;
  margin-top: 30px;
  width: 35%;
  line-height: 1.5;
  opacity: 0.8;
}

@media (max-width: 768px) {
  #process p {
    width: 100%;
    font-size: 18px;
  }
}

#process .processMain {
  padding-left: 5%;
  margin-top: 80px;
}

@media (max-width: 480px) {
  #process .processMain {
    padding-right: 5%;
  }
}

#process .processMain .processBoxMain {
  width: 100%;
  background: white;
  border-radius: 15px 0px 0px 15px;
  padding: 50px;
  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) {
  #process .processMain .processBoxMain {
    border-radius: 15px;
    padding: 30px;
  }
}

#process .processMain .processBoxMain .processBox {
  -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;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 15px;
  position: relative;
}

@media (max-width: 768px) {
  #process .processMain .processBoxMain .processBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
  #process .processMain .processBoxMain .processBox:nth-child(3) {
    margin-top: 40px;
  }
  #process .processMain .processBoxMain .processBox:nth-child(4) {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  #process .processMain .processBoxMain .processBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
  #process .processMain .processBoxMain .processBox:nth-child(2) {
    margin-top: 40px;
  }
}

#process .processMain .processBoxMain .processBox .count {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  background: #0094d6;
  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: 20px;
  color: white;
  top: -12.5px;
  left: -12.5px;
}

#process .processMain .processBoxMain .processBox h2 {
  font-size: 25px;
  font-weight: 500;
  color: black;
}

#process .processMain .processBoxMain .processBox p {
  color: black;
  font-size: 16px;
  width: 100%;
  margin-top: 20px;
}

.galleryListMain{
	width: 100%;
    -webkit-column-count: 3;
    -webkit-column-gap: 30px;
    -moz-column-count: 3;
    -moz-column-gap: 30px;
    column-count: 3;
    column-gap: 30px;
}

@media screen and (max-width: 768px){
	.galleryListMain{
		column-count:2;
		-moz-column-count: 2;
		-webkit-column-count: 2;
	}
}

@media screen and (max-width: 415px){
	.galleryListMain{
		column-count:1;
		-moz-column-count: 1;
		-webkit-column-count: 1;
	}
}

@media screen and (max-width: 415px){
	.galleryListMain{
		-webkit-column-gap: 10px;
		-moz-column-gap: 10px;
		column-gap: 10px;
	}
}

.galleryListMain>a {
    display: inline-block;
    width: 100%;
    margin-top: 30px;
	text-decoration:none;
	font-family: 'Rubik', sans-serif;
	color:#000;
	border:1px solid #d1d1d1;
	border-radius: 15px;
    overflow: hidden;
}

@media screen and (max-width: 415px){
	.galleryListMain>a{
		margin-top: 30px;
	}
}

.galleryListMain > a:hover{
	color:#71777a;
}

.galleryListMain>a>div{
	height:250px;
}

.galleryListMain>a>div>img{
	width:100%;
	height:100%;
	object-fit:cover;
}

.galleryListMain>a>p{
	font-size: 20px;
    line-height: 1.5;
    margin-top: 5px;
	padding:5px;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

#gallery {
  width: 100%;
  padding: 100px 0px;
  background: black;
}

#gallery .container {
  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) {
  #gallery .container {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

#gallery h1 {
  font-size: 3.5em;
  color: white;
  font-weight: 400;
  text-align: center;
}

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

@media (max-width: 480px) {
  #gallery h1 {
    font-size: 2.5em;
    text-align: left;
  }
}

#gallery p {
  font-size: 20px;
  font-weight: 300;
  color: white;
  text-align: center;
  margin-top: 30px;
  width: 70%;
  line-height: 1.5;
  opacity: 0.7;
}

@media (max-width: 768px) {
  #gallery p {
    width: 100%;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  #gallery p {
    text-align: left;
  }
}

#gallery .galleryMain {
  width: 100%;
  margin-top: 80px;
}

#gallery .galleryMain .galleryBox {
  height: 350px;
  background: #171719;
  border-radius: 10px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 480px) {
  #gallery .galleryMain .galleryBox {
    height: 200px;
  }
}

p.gallery-description{
	background-color:rgba(0,0,0,0.6);
	width:100%!important;
	padding:5px 10px;
	/*text-align:center!important;*/
	margin:0;
	position:absolute;
	bottom:0;
	opacity:1;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

@media (max-width: 768px) {
  p.gallery-description {
    font-size:14px;
  }
}

#gallery .galleryMain .galleryBox:hover img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

#gallery .galleryMain .galleryBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#gallery .galleryMain .owl-nav, #gallery .galleryMain .owl-dot {
  display: none;
}

#contact {
  width: 100%;
  padding: 100px 0px;
  background: black;
}

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

#contact .contactMian {
  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;
}

@media (max-width: 480px) {
  #contact .contactMian {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

#contact .contactMian h1 {
  font-size: 3.5em;
  color: white;
  font-weight: 400;
  width: 70%;
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 768px) {
  #contact .contactMian h1 {
    font-size: 3em;
    width: 100%;
  }
}

@media (max-width: 480px) {
  #contact .contactMian h1 {
    font-size: 2em;
    text-align: left;
  }
}

#contact .contactMian a {
  text-decoration: none;
  width: 200px;
  padding: 20px;
  background: #0094d6;
  color: white;
  font-size: 18px;
  font-weight: 300;
  border-radius: 10px;
  margin-top: 50px;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 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;
}

@media (max-width: 480px) {
  #contact .contactMian a {
    padding: 20px;
  }
}

#contact .contactMian a:hover {
  background: #0094d6;
}

#contact .contactMian a:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 1;
}

#contact .contactMian a::after {
  position: absolute;
  width: 30px;
  height: 100%;
  content: '';
  background: rgba(0, 0, 0, 0.082);
  z-index: -1;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 0;
}

footer {
  width: 100%;
  padding: 50px 0px;
  background: #171719;
}
@media(max-width:600px){
    footer {
        padding-bottom: 80px;
    }
}

footer .footermain {
  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;
}

footer .footermain .footerStripRights {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  footer .footermain .footerStripRights {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
}

@media (max-width: 480px) {
  footer .footermain .footerStripRights {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

footer .footermain .footerStripRights p {
  font-size: 12px;
  color: #999898;
  margin-top: 0;
}

@media (max-width: 480px) {
  footer .footermain .footerStripRights p {
    text-align: center;
  }
}

footer .footermain .footerStripCreat {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  footer .footermain .footerStripCreat {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media (max-width: 480px) {
  footer .footermain .footerStripCreat {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-top: 30px;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

footer .footermain .footerStripCreat p {
  font-size: 12px;
  color: #999898;
  margin-top: 0;
}

@media (max-width: 480px) {
  footer .footermain .footerStripCreat p {
    text-align: center;
  }
}

footer .footermain .footerStripCreat p i {
  margin: 0px 5px;
  color: red;
}

footer .footermain .footerStripCreat p a {
  text-decoration: none;
  font-size: 12px;
  color: #fff;
  letter-spacing: 1px;
}

#aboutBanner {
  width: 100%;
  padding: 100px 0px;
  margin-top: 60px;
  position: relative;
  z-index: 0;
}

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

#aboutBanner::before {
  position: absolute;
  width: 100%;
  height: 50vh;
  bottom: 0;
  left: 0;
  content: '';
  z-index: -1;
  background: black;
}

@media (max-width: 480px) {
  #aboutBanner::before {
    height: 250px;
  }
}

#aboutBanner .aboutBannerMain {
  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;
}

#aboutBanner .aboutBannerMain h1 {
  font-size: 4.5em;
  font-weight: 600;
  line-height: 1.3;
}

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

@media (max-width: 480px) {
  #aboutBanner .aboutBannerMain h1 {
    font-size: 2.5em;
  }
  #aboutBanner .aboutBannerMain h1 br {
    display: none;
  }
}

#aboutBanner .aboutBannerMain p {
  font-size: 18px;
  font-weight: 300;
  margin-top: 50px;
  width: 70%;
  line-height: 1.7;
  opacity: 0.7;
}

@media (max-width: 768px) {
  #aboutBanner .aboutBannerMain p {
    width: 100%;
    font-size: 18px;
  }
}

#aboutBanner .aboutBannerMain .aboutSocialLinks {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#aboutBanner .aboutBannerMain .aboutSocialLinks a {
  text-decoration: none;
  font-size: 20px;
  margin-right: 30px;
  color: #0094d6;
}

#aboutBanner .aboutBannerThumbnail {
  width: 100%;
  margin-top: 100px;
  padding-left: 5%;
}

@media (max-width: 480px) {
  #aboutBanner .aboutBannerThumbnail {
    padding-right: 5%;
    margin-top: 50px;
  }
}

#aboutBanner .aboutBannerThumbnail .aboutBannerThumbnailBox {
  width: 100%;
  height: 70vh;
  overflow: hidden;
  border-radius: 10px 0px 0px 10px;
}

@media (max-width: 480px) {
  #aboutBanner .aboutBannerThumbnail .aboutBannerThumbnailBox {
    border-radius: 10px;
    height: 350px;
  }
}

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

#missionVision {
  width: 100%;
  background: black;
  padding: 50px 0px 100px 0px;
}

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

#missionVision .missionVisionMian {
  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;
}

#missionVision .missionVisionMian .missionVisionBox {
  -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;
}

@media (max-width: 480px) {
  #missionVision .missionVisionMian .missionVisionBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
  #missionVision .missionVisionMian .missionVisionBox:nth-child(2) {
    margin-top: 50px;
  }
}

#missionVision .missionVisionMian .missionVisionBox h1 {
  font-size: 2em;
  color: white;
  font-weight: 400;
}

#missionVision .missionVisionMian .missionVisionBox p {
  font-size: 16px;
  font-weight: 300;
  color: white;
  margin-top: 30px;
  line-height: 1.5;
  opacity: 0.7;
}

#contactBanner {
  width: 100%;
  padding: 100px 0px;
  margin-top: 60px;
  background: -webkit-gradient(linear, left top, right top, from(#414141), to(black));
  background: linear-gradient(90deg, #414141, black);
  position: relative;
  z-index: 0;
}

#contactBanner::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/low-poly-grid-haikei.svg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -2;
  opacity: 0.2;
}

.galleryBanner#contactBanner::after{
	background: url(../images/myGallery.jpg);
}

#contactBanner .contactBannerMain {
  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;
}

#contactBanner .contactBannerMain h1 {
  font-size: 3.5em;
  color: white;
  margin-top: 50px;
  font-weight: 400;
  text-align: center;
}

@media (max-width: 768px) {
  #contactBanner .contactBannerMain h1 {
    font-size: 3em;
    margin-top: 0px;
  }
}

@media (max-width: 480px) {
  #contactBanner .contactBannerMain h1 {
    font-size: 2.5em;
  }
}

#contactBanner .contactBannerMain p {
  font-size: 18px;
  font-weight: 300;
  color: white;
  text-align: center;
  margin-top: 30px;
  width: 70%;
  line-height: 1.5;
  opacity: 0.7;
}

@media (max-width: 768px) {
  #contactBanner .contactBannerMain p {
    width: 100%;
    font-size: 18px;
  }
}

#innerContact {
  width: 100%;
  padding: 100px 0px;
	min-height: 60vh;
}

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

#innerContact .innerContactMain {
  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;
  padding: 0px 10%;
}

@media (max-width: 768px) {
  #innerContact .innerContactMain {
    padding: 0;
  }
}

#innerContact .innerContactMain .innerContactDetails {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  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) {
  #innerContact .innerContactMain .innerContactDetails {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#innerContact .innerContactMain .innerContactDetails h2 {
  font-size: 30px;
  font-weight: 500;
}

#innerContact .innerContactMain .innerContactDetails span {
  font-size: 14px;
  font-weight: 500;
  margin-top: 40px;
}

#innerContact .innerContactMain .innerContactDetails p {
  font-size: 14px;
  color: black;
  opacity: 0.6;
  margin-top: 10px;
  line-height: 1.5;
}

#innerContact .innerContactMain .innerContactDetails .phone {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
}

@media (max-width: 768px) {
  #innerContact .innerContactMain .innerContactDetails .phone {
    width: 100%;
  }
}

#innerContact .innerContactMain .innerContactDetails .phone a {
  margin-right: 30px;
}

#innerContact .innerContactMain .innerContactDetails a {
  font-size: 14px;
  text-decoration: none;
  color: #0094d6;
  opacity: 0.6;
  margin-top: 5px;
  line-height: 1.5;
}

.map-container{
	margin-top:20px;
	width: 550px;
  	max-width: 100%;
    height: 100%;
}

@media screen and (max-width: 1340px){
	.map-container{
		width: 510px;
  		max-width: 100%;
	}
}

@media screen and (max-width: 1220px){
	.map-container{
		width: 470px;
  		max-width: 100%;
	}
}

@media screen and (max-width: 1175px){
	.map-container{
		width: 100%;
		max-width: 100%;
	}
}

#innerContact .innerContactMain .innerContactForm {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  -webkit-box-shadow: 0 0 20px #eee;
          box-shadow: 0 0 20px #eee;
  border-radius: 25px;
  padding: 50px;
  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) {
  #innerContact .innerContactMain .innerContactForm {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-top: 50px;
    padding: 30px;
  }
}

#innerContact .innerContactMain .innerContactForm 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;
}

#innerContact .innerContactMain .innerContactForm 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;
}

#innerContact .innerContactMain .innerContactForm form .formGroup:nth-child(1) {
  margin-top: 0;
}

#innerContact .innerContactMain .innerContactForm form .formGroup label {
  font-size: 14px;
  color: black;
  opacity: 0.7;
}

#innerContact .innerContactMain .innerContactForm form .formGroup input {
  width: 100%;
  height: 45px;
  border-radius: 10px;
  border: 1px solid #bdbdbd;
  margin-top: 10px;
  outline: none;
  padding: 10px;
  color: black;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#innerContact .innerContactMain .innerContactForm form .formGroup input:focus {
  border: 1px solid #0094d6;
  box-shadow: 0px 19px 14px 3px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0px 19px 14px 3px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 19px 14px 3px rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#innerContact .innerContactMain .innerContactForm form .formGroup textarea {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  border: 1px solid #bdbdbd;
  margin-top: 10px;
  outline: none;
  padding: 10px;
  color: black;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#innerContact .innerContactMain .innerContactForm form .formGroup textarea:focus {
  border: 1px solid #0094d6;
  box-shadow: 0px 19px 14px 3px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0px 19px 14px 3px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 19px 14px 3px rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#innerContact .innerContactMain .innerContactForm form button {
  width: 150px;
  margin-top: 20px;
  padding: 12px;
  background: #0094d6;
  color: white;
  font-size: 16px;
  text-align: center;
  font-weight: 300;
  border: none;
  outline: none;
  border-radius: 15px;
  cursor: pointer;
  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;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

#innerContact .innerContactMain .innerContactForm form button:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 1;
}

#innerContact .innerContactMain .innerContactForm form button::after {
  position: absolute;
  width: 30px;
  height: 100%;
  content: '';
  background: rgba(0, 0, 0, 0.158);
  z-index: -1;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 0;
}

#innerService {
  width: 100%;
  padding: 100px 0px;
  margin-top: 60px;
  background: black;
}

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

#innerService h2 {
  font-size: 25px;
  font-weight: 400;
  color: #a7a7a7;
  letter-spacing: 5px;
  text-align: center;
}

@media (max-width: 480px) {
  #innerService h2 {
    text-align: left;
  }
}

#innerService h1 {
  font-size: 4.5em;
  color: white;
  text-align: center;
  margin-top: 50px;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 1440px) {
  #innerService h1 {
    font-size: 4em;
  }
}

@media (max-width: 1024px) {
  #innerService h1 {
    font-size: 3em;
  }
}

@media (max-width: 768px) {
  #innerService h1 {
    font-size: 2.5em;
  }
}

@media (max-width: 480px) {
  #innerService h1 {
    font-size: 2em;
    text-align: left;
  }
}

#innerService .innerServiceGallery {
  width: 100%;
  margin-top: 100px;
}

@media (max-width: 480px) {
  #innerService .innerServiceGallery {
    margin-top: 50px;
  }
}

#innerService .innerServiceGallery .innerServiceGalleryBox {
  width: 100%;
  height: 350px;
  background: #171719;
  border-radius: 10px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1440px) {
  #innerService .innerServiceGallery .innerServiceGalleryBox {
    height: 300px;
  }
}

@media (max-width: 1024px) {
  #innerService .innerServiceGallery .innerServiceGalleryBox {
    height: 250px;
  }
}

@media (max-width: 480px) {
  #innerService .innerServiceGallery .innerServiceGalleryBox {
    height: 200px;
  }
}

#innerService .innerServiceGallery .innerServiceGalleryBox:hover img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

#innerService .innerServiceGallery .innerServiceGalleryBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#innerService .innerServiceGallery .owl-nav, #innerService .innerServiceGallery .owl-dot {
  display: none;
}

#innerService p {
  color: white;
  font-size: 25px;
  line-height: 1.5;
  font-weight: 300;
  margin-top: 100px;
}

@media (max-width: 1024px) {
  #innerService p {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  #innerService p {
    font-size: 22px;
  }
  #innerService p:nth-child(1) {
    margin-top: 100px;
  }
}

@media (max-width: 480px) {
  #innerService p {
    font-size: 18px;
  }
  #innerService p:nth-child(1) {
    margin-top: 50px;
  }
}

#jobListBanner {
  width: 100%;
  padding: 100px 0px;
  margin-top: 60px;
  background: linear-gradient(45deg, #0052D4, #4364F7, #6FB1FC);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  #jobListBanner {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 50px 0px;
  }
}

#jobListBanner::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/polygon-scatter-haikei.svg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  opacity: 0.2;
}

#jobListBanner .jobListBannerMain {
  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;
}

#jobListBanner .jobListBannerMain h1 {
  font-size: 3em;
  font-weight: 400;
  color: white;
  text-align: center;
}

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

@media (max-width: 480px) {
  #jobListBanner .jobListBannerMain h1 {
    font-size: 25px;
  }
}

#jobListBanner .jobListBannerMain form {
  width: 60%;
  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;
  margin-top: 30px;
	position: relative;
}

@media (max-width: 1024px) {
  #jobListBanner .jobListBannerMain form {
    width: 90%;
  }
}

@media (max-width: 768px) {
  #jobListBanner .jobListBannerMain form {
    width: 100%;
  }
}

#jobListBanner .jobListBannerMain form input {
  width: 80%;
  height: 60px;
  border: none;
  outline: none;
  padding: 20px;
  border-radius: 15px;
  font-size: 25px;
  background: white;
}

#jobListBanner .jobListBannerMain form input::-webkit-input-placeholder {
  color: #b9b9b9;
  font-weight: 300;
}

#jobListBanner .jobListBannerMain form input:-ms-input-placeholder {
  color: #b9b9b9;
  font-weight: 300;
}

#jobListBanner .jobListBannerMain form input::-ms-input-placeholder {
  color: #b9b9b9;
  font-weight: 300;
}

#jobListBanner .jobListBannerMain form input::placeholder {
  color: #b9b9b9;
  font-weight: 300;
}

@media (max-width: 768px) {
  #jobListBanner .jobListBannerMain form input {
    height: 50px;
    font-size: 22px;
  }
}
#jobListBanner .jobListBannerMain form .banner-form-dropDown {
  position: absolute;
  width: 80%;
  background: white;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 61px;
  left: 0;
  -webkit-box-shadow: 0 0 5px #969696;
          box-shadow: 0 0 5px #969696;
  border-radius: 10px;
  display: none;
}
@media (max-width: 768px) {
	#jobListBanner .jobListBannerMain form .banner-form-dropDown {
	  top: 51px;
	}
}

#jobListBanner .jobListBannerMain form .banner-form-dropDown ul li {
  list-style: none;
  position: relative;
}

#jobListBanner .jobListBannerMain form .banner-form-dropDown ul li i {
  position: absolute;
  top: 15px;
  right: 20px;
	font-size: 14px;
  -o-object-fit: contain;
     object-fit: contain;
}

#jobListBanner .jobListBannerMain form .banner-form-dropDown ul li a {
  text-decoration: none;
  color: #05182f;
  font-size: 14px;
  padding: 12px 20px 12px 20px;
  display: block;
}

#jobListBanner .jobListBannerMain form .banner-form-dropDown ul li a:hover {
  background: #f7f5f5;
}

#jobListBanner .jobListBannerMain form button {
  width: 18%;
  height: 60px;
  border-radius: 15px;
  border: none;
  outline: none;
  background: #2d3862;
  color: white;
  cursor: pointer;
  font-size: 25px;
  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;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@media (max-width: 768px) {
  #jobListBanner .jobListBannerMain form button {
    height: 50px;
    font-size: 22px;
  }
  #jobListBanner .jobListBannerMain form button span {
    display: none;
  }
}

#jobListBanner .jobListBannerMain form button:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 1;
}

#jobListBanner .jobListBannerMain form button i {
  margin-right: 10px;
}

@media (max-width: 768px) {
  #jobListBanner .jobListBannerMain form button i {
    margin-right: 0;
  }
}

#jobListBanner .jobListBannerMain form button::after {
  position: absolute;
  width: 30px;
  height: 50px;
  content: '';
  background: rgba(0, 0, 0, 0.26);
  z-index: -1;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 0;
}

#jobListWraper {
  width: 100%;
	min-height: 60vh;
  padding: 50px 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: 1024px) {
  #jobListWraper {
    padding: 50px 10%;
  }
}

@media (max-width: 768px) {
  #jobListWraper {
    padding: 20px 5%;
  }
}

#jobListWraper .jobListHead {
  width: 100%;
  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;
}

#jobListWraper .jobListHead h2 {
  font-size: 16px;
  font-weight: 600;
}

#jobListWraper .jobListHead .flterBtn {
  width: 30px;
  height: 30px;
  background: #d3e7ff;
  border-radius: 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;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#jobListWraper .jobListHead .flterBtn:hover {
  background: #0094d6;
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#jobListWraper .jobListBody {
  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;
}

#jobListWraper .jobListBody .jobBox {
  width: 100%;
  background: white;
  border-radius: 15px;
  padding: 20px;
  margin-top: 20px;
  text-decoration: none;
  border: 2px solid white;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  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;
	
}

#jobListWraper .jobListBody .jobBox:nth-child(odd) .jobBoxThumbnail {
  background: #c1dbfe;
}

#jobListWraper .jobListBody .jobBox:nth-child(even) .jobBoxThumbnail {
  background: #d1fddc;
}

#jobListWraper .jobListBody .jobBox:hover {
  border: 2px solid #0092d68c;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#jobListWraper .jobListBody .jobBox .jobBoxThumbnail {
  height: 100px;
  width: 100px;
  background: #eee;
  border-radius: 15px;
  overflow: hidden;
  background-image: url(../images/imagePlaceholder.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 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;
}

@media (max-width: 480px) {
  #jobListWraper .jobListBody .jobBox .jobBoxThumbnail {
    width: 50px;
    height: 50px;
  }
}

#jobListWraper .jobListBody .jobBox .jobBoxThumbnail img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}

#jobListWraper .jobListBody .jobBox .jobBoxDetails {
  width: calc(100% - 120px);
  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) {
  #jobListWraper .jobListBody .jobBox .jobBoxDetails {
    width: 100%;
    margin-top: 15px;
  }
}

#jobListWraper .jobListBody .jobBox .jobBoxDetails h1 {
  width: 100%;
  height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-weight: 500;
  font-size: 22px;
  color: #2d3862;
}

#jobListWraper .jobListBody .jobBox .jobBoxDetails .jobBoxDetailsMian {
  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: 0px;
}

#jobListWraper .jobListBody .jobBox .jobBoxDetails .jobBoxDetailsMian .jobBoxDetailsColumn1 {
  -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;
}

@media (max-width: 480px) {
  #jobListWraper .jobListBody .jobBox .jobBoxDetails .jobBoxDetailsMian .jobBoxDetailsColumn1 {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#jobListWraper .jobListBody .jobBox .jobBoxDetails .jobBoxDetailsMian .jobBoxDetailsColumn1 .jobTitle {
  font-size: 16px;
  color: #0094d6;
  font-weight: 400;
  margin-top: 2px;
}

#jobListWraper .jobListBody .jobBox .jobBoxDetails .jobBoxDetailsMian .jobBoxDetailsColumn1 .jobLocationViews {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
}

@media (max-width: 480px) {
  #jobListWraper .jobListBody .jobBox .jobBoxDetails .jobBoxDetailsMian .jobBoxDetailsColumn1 .jobLocationViews {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
  }
}

#jobListWraper .jobListBody .jobBox .jobBoxDetails .jobBoxDetailsMian .jobBoxDetailsColumn1 .jobLocationViews .jobLocation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: black;
  font-size: 12px;
  opacity: 0.7;
}

#jobListWraper .jobListBody .jobBox .jobBoxDetails .jobBoxDetailsMian .jobBoxDetailsColumn1 .jobLocationViews .jobLocation i {
  margin-right: 5px;
}

#jobListWraper .jobListBody .jobBox .jobBoxDetails .jobBoxDetailsMian .jobBoxDetailsColumn1 .jobLocationViews .jobViews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: black;
  font-size: 12px;
  margin-left: 50px;
  opacity: 0.7;
}

#jobListWraper .jobListBody .jobBox .jobBoxDetails .jobBoxDetailsMian .jobBoxDetailsColumn1 .jobLocationViews .jobViews i {
  margin-right: 5px;
}

#jobListWraper .jobListBody .jobBox .jobBoxDetails .jobBoxDetailsMian .jobBoxDetailsColumn1 .jobSimpleDetails {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#jobListWraper .jobListBody .jobBox .jobBoxDetails .jobBoxDetailsMian .jobBoxDetailsColumn1 .jobSimpleDetails p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: black;
  font-size: 12px;
  opacity: 0.7;
}

#jobListWraper .jobListBody .jobBox .jobBoxDetails .jobBoxDetailsMian .jobBoxDetailsColumn1 .jobSimpleDetails span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0094d6;
  margin: 0px 15px;
}

#jobListWraper .jobListBody .jobBox .jobBoxDetails .jobBoxDetailsMian .jobBoxDetailsColumn2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  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) {
  #jobListWraper .jobListBody .jobBox .jobBoxDetails .jobBoxDetailsMian .jobBoxDetailsColumn2 {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-top: 20px;
  }
}

#jobListWraper .jobListBody .jobBox .jobBoxDetails .jobBoxDetailsMian .jobBoxDetailsColumn2 span {
  font-size: 10px;
  color: black;
  opacity: 0.5;
  margin-top: 10px;
}

#jobListWraper .jobListBody .jobBox .jobBoxDetails .jobBoxDetailsMian .jobBoxDetailsColumn2 span:nth-child(1) {
  margin-top: 0;
}

#jobListWraper .jobListBody .jobBox .jobBoxDetails .jobBoxDetailsMian .jobBoxDetailsColumn2 p {
  font-size: 14px;
  color: black;
  margin-top: 5px;
}

#jobListWraper .jobListBody .jobBox .jobBoxDetails .jobBoxDetailsMian .jobBoxDetailsColumn2 p b {
  color: #0094d6;
  font-size: 16px;
}

#jobListWraper  .loadMore{
	width: 100%;
	margin-top: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

#jobListWraper .loadMore .loadMoreBtn{
	width: 180px;
	padding: 12px;
	border-radius: 10px;
	background: white;
	font-size: 16px;
	font-weight: 400;
	cursor: pointer;
	border: 2px solid #0092d68c;
	text-align: center;
	justify-content: center;
	transition: .3s;
}

#jobListWraper .loadMore .loadMoreBtn:hover{
	background: #85d2ff1c;
	transition: .3s;
}

#innerJobBanner {
  width: 100%;
  margin-top: 60px;
  background: linear-gradient(45deg, #4e54c8, #8f94fb);
  padding: 50px 23%;
  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;
  z-index: 0;
}

@media (max-width: 1024px) {
  #innerJobBanner {
    padding: 50px 5%;
  }
}

@media (max-width: 480px) {
  #innerJobBanner {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

#innerJobBanner::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/symbol-scatter-haikei.svg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  opacity: 0.2;
}

#innerJobBanner .backToJobs {
  position: absolute;
  top: 30px;
}

@media (max-width: 480px) {
  #innerJobBanner .backToJobs {
    width: 100%;
    padding-left: 5%;
  }
}

#innerJobBanner .backToJobs a {
  text-decoration: none;
  color: white;
  font-weight: 300;
}

#innerJobBanner .innerJobBannerlogo {
  width: 150px;
  height: 150px;
  background: #d1fddc;
  border-radius: 30px;
  overflow: hidden;
  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-top: 40px;
}

@media (max-width: 480px) {
  #innerJobBanner .innerJobBannerlogo {
    width: 100px;
    height: 100px;
  }
}

#innerJobBanner .innerJobBannerlogo img {
  width: 85%;
  height: 85%;
  -o-object-fit: contain;
     object-fit: contain;
}

#innerJobBanner .innerJobBannerDetails {
  width: calc(100% - 180px);
  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;
}

@media (max-width: 480px) {
  #innerJobBanner .innerJobBannerDetails {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
  }
}

#innerJobBanner .innerJobBannerDetails h1 {
  font-weight: 500;
  font-size: 25px;
  color: white;
}

@media (max-width: 480px) {
  #innerJobBanner .innerJobBannerDetails h1 {
    text-align: center;
  }
}

#innerJobBanner .innerJobBannerDetails .jobTitle {
  font-size: 20px;
  color: white;
  font-weight: 300;
  margin-top: 10px;
}

@media (max-width: 480px) {
  #innerJobBanner .innerJobBannerDetails .jobTitle {
    text-align: center;
    margin-top: 20px;
  }
}

#innerJobBanner .innerJobBannerDetails .jobLocationViews {
  width: 100%;
  margin-top: 5px;
}

@media (max-width: 480px) {
  #innerJobBanner .innerJobBannerDetails .jobLocationViews {
    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;
  }
}

#innerJobBanner .innerJobBannerDetails .jobLocationViews .jobLocation {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  font-weight: 300;
  font-size: 12px;
}

@media (max-width: 480px) {
  #innerJobBanner .innerJobBannerDetails .jobLocationViews .jobLocation {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

#innerJobBanner .innerJobBannerDetails .jobLocationViews .jobLocation i {
  margin-right: 10px;
}

#innerJobBanner .innerJobBannerDetails .applyJobBtn {
  margin-top: 20px;
  padding: 12px 25px;
  background: #2d3862;
  width: 180px;
  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: 15px;
  color: white;
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

@media (max-width: 480px) {
  #innerJobBanner .innerJobBannerDetails .applyJobBtn {
    position: fixed;
    width: 90%;
    bottom: 10px;
    background: #0094d6;
    z-index: 100;
    font-weight: 400;
    padding: 15px;
  }
}

#innerJobBanner .innerJobBannerDetails .applyJobBtn:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 1;
}

#innerJobBanner .innerJobBannerDetails .applyJobBtn::after {
  position: absolute;
  width: 30px;
  height: 50px;
  content: '';
  background: rgba(0, 0, 0, 0.199);
  z-index: -1;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 0;
}

#innerJobDetails {
  width: 100%;
  padding: 50px 23% 50px 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: 1024px) {
  #innerJobDetails {
    padding: 50px 5%;
  }
}

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

#innerJobDetails .innerJobDetailsBox {
  width: 100%;
  background: white;
  border-radius: 20px;
  padding: 20px;
  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;
          /*z-index: -1;*/
}

#innerJobDetails .innerJobDetailsBox:nth-child(1) {
  margin-top: 0;
}

#innerJobDetails .innerJobDetailsBox h1 {
  font-size: 20px;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

@media (max-width: 480px) {
  #innerJobDetails .innerJobDetailsBox h1 {
    font-size: 18px;
    padding-bottom: 15px;
  }
}

#innerJobDetails .innerJobDetailsBox p {
  font-size: 14px;
  color: #484747;
  line-height: 1.5;
  margin-top: 20px;
}
#innerJobDetails .innerJobDetailsBox p img {
    width: 100% !important;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 480px) {
  #innerJobDetails .innerJobDetailsBox p {
    margin-top: 15px;
  }
}

#innerJobDetails .innerJobDetailsBox .jobTypeDate {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

#innerJobDetails .innerJobDetailsBox .jobTypeDate .jobTypeDateBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 50px;
}

#innerJobDetails .innerJobDetailsBox .jobTypeDate .jobTypeDateBox:nth-child(1) {
  margin-left: 0;
}

#innerJobDetails .innerJobDetailsBox .jobTypeDate .jobTypeDateBox span {
  font-size: 12px;
  opacity: 0.6;
}

#innerJobDetails .innerJobDetailsBox .jobTypeDate .jobTypeDateBox p {
  color: #0094d6;
  opacity: 1;
  margin-top: 5px;
}

#innerJobDetails .innerJobDetailsBox ul {
  width: 100%;
  padding-left: 20px;
  margin-top: 10px;
}

@media (max-width: 480px) {
  #innerJobDetails .innerJobDetailsBox ul {
    padding-left: 10px;
    margin-top: 5px;
  }
}

#innerJobDetails .innerJobDetailsBox ul li {
  font-size: 14px;
  color: black;
  line-height: 1.5;
  opacity: 0.6;
  margin-top: 10px;
}

#innerJobDetails .innerJobDetailsBox h3 {
  font-size: 16px;
  color: #0094d6;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 20px;
}

@media (max-width: 480px) {
  #innerJobDetails .innerJobDetailsBox h3 {
    margin-top: 15px;
  }
}
#innerJobDetails .innerJobDetailsBox .shareSocialLinks{
    width: 100%;
    display: flex;
    align-items: center;
}
#innerJobDetails .innerJobDetailsBox .shareSocialLinks a{
    text-decoration: none;
    width: 45px;
    height: 45px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: white;
    margin-right: 20px;
    transition: .2s;
    margin-top: 20px;
}
#innerJobDetails .innerJobDetailsBox .shareSocialLinks a:hover{
    transition: .2s;
    margin-top: 10px;
}
#innerJobDetails .innerJobDetailsBox .shareSocialLinks .facebook{
    background: #0046c5;
}
#innerJobDetails .innerJobDetailsBox .shareSocialLinks .linkedin{
    background: #2490ff;
}
#innerJobDetails .innerJobDetailsBox .shareSocialLinks .twitter{
    background: #00d0ff;
}
#innerJobDetails .innerJobDetailsBox .shareSocialLinks .pinterest{
    background: #c50000;
}

#relatedJobsSection{
    width: 100%;
    padding: 50px 23% 100px 23%;
    display: flex;
    flex-direction: column;
    border: 1px solid #fff;
}
@media(max-width:1024px){
    #relatedJobsSection{
        padding: 50px 5%;
    }
}
#relatedJobsSection h1{
    font-size: 2.5em;
    font-weight: 400;
}
@media(max-width:768px){
    #relatedJobsSection h1{
    font-size: 2em;
    }
}
@media(max-width:480px){
    #relatedJobsSection h1{
    font-size: 25px;
    }
}
#relatedJobsSection .relatedJobsSectionMain{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    margin-top: 30px;
}
#relatedJobsSection .relatedJobsSectionMain::after{
    content: '';
    height: 0;
    width: 32%;
}
#relatedJobsSection .relatedJobsSectionMain .relatedJobsBox{
    flex: 0 0 32%;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 20px;
    margin-top: 20px;
    padding: 10px;
    text-decoration: none;
    border:2px solid #fff;
    transition: .3s;
}
#relatedJobsSection .relatedJobsSectionMain .relatedJobsBox:hover{
    border:2px solid #0094d6;
    transition: .3s;
}
@media(max-width:1024px){
    #relatedJobsSection .relatedJobsSectionMain .relatedJobsBox{
        flex: 0 0 48%;
    }
}
@media(max-width:480px){
    #relatedJobsSection .relatedJobsSectionMain .relatedJobsBox{
        flex: 100%;
    }
}
#relatedJobsSection .relatedJobsSectionMain .relatedJobsBox .relatedJobsBoxThumbnail{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #d1fddc;
    border-radius: 20px;
    padding: 10px;
    overflow: hidden;
}
#relatedJobsSection .relatedJobsSectionMain .relatedJobsBox .relatedJobsBoxThumbnail img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#relatedJobsSection .relatedJobsSectionMain .relatedJobsBox .relatedJobsBoxDetails{
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}
#relatedJobsSection .relatedJobsSectionMain .relatedJobsBox .relatedJobsBoxDetails h2{
    font-size: 14px;
    color: black;
    font-weight: 500;
}
#relatedJobsSection .relatedJobsSectionMain .relatedJobsBox .relatedJobsBoxDetails p{
    font-size: 12px;
    margin-top: 5px;
    color: #939393;
}
#relatedJobsSection .relatedJobsSectionMain .relatedJobsBox .relatedJobsBoxDetails span{
    color: #0094d6;
    font-size: 12px;
    margin-top: 15px;
    font-weight: 500;
}
#relatedJobsSection .relatedJobsSectionMain .relatedJobsBox .relatedJobsBoxDetails h3{
    font-size: 22px;
    color: black;
    margin-top: 15px;
    font-weight: 500;
}

.loaderSection{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 110;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}
.loaderSectionBox{
    width: 200px;
    height: 200px;
}
.loaderSectionBox img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}



/*homeEvents*/
#homeEvents{
    width: 100%;
    padding: 30px 0px;
}
#homeEvents .homeEventsMain{
    width: 100%;
    display: flex;
    padding: 20px 0;
    gap: calc(var(--gap) / 2);
}
#homeEvents .homeEventsMain .homeEventsBox{
    position: relative;
    flex-shrink: 0;
    display: flex;
    gap: 15px;
    left: 0;
    margin-left: 40px;
    text-decoration: none;
    background: #f8f8f8;
    border-radius: 7px;
}
#homeEvents .homeEventsMain .homeEventsBox:hover .homeEventsBoxThumbnail img{
    transform: scale(1.1);
    transition: 0.3s;
}
#homeEvents .homeEventsMain .homeEventsBox .homeEventsBoxThumbnail{
    width: 120px;
    height: 100px;
    background :#eee;
    overflow: hidden;
    border-radius :6px;
}
#homeEvents .homeEventsMain .homeEventsBox .homeEventsBoxThumbnail img{
    width :100%;
    height :100%;
    object-fit: cover;
    transition: 0.3s;
}
#homeEvents .homeEventsMain .homeEventsBox .homeEventsBoxDetails{
    width :200px;
    display :flex;
    flex-direction :column;
    padding: 10px 10px 10px 0px;
}
#homeEvents .homeEventsMain .homeEventsBox .homeEventsBoxDetails h2{
    font-size: 18px;
    font-weight: 500;
    color: black;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
#homeEvents .homeEventsMain .homeEventsBox .homeEventsBoxDetails p{
    font-size: 14px;
    color: black;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    opacity: .7;
    margin-top: 5px;
}
#homeEvents .homeEventsMain .homeEventsBox .homeEventsBoxDetails h4{
    font-size: 10px;
    color: #0094d6;
    font-weight: 400;
    margin-top: 7px;
}

/*innerEvent*/
#innerEvent{
    width: 100%;
    padding: 100px 20%;
	min-height: 100vh;
}
@media(max-width:1440px){
    #innerEvent{
        padding: 100px 15%;
    }
}
@media(max-width:1200px){
    #innerEvent{
        padding: 100px 10%;
    }
}
@media(max-width:1024px){
    #innerEvent{
        padding: 100px 5%;
    }
}
@media(max-width:768px){
    #innerEvent{
        padding: 100px 0%;
    }
}
#innerEvent .innerEventMain{
    width: 100%;
    display: flex;
    flex-direction: column;
}
#innerEvent .innerEventMain .innerEventMainHead{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
}
#innerEvent .innerEventMain .innerEventMainHead .backBtn{
    text-decoration: none;
    font-size: 35px;
    color: black;
    transition: .3s;
}
#innerEvent .innerEventMain .innerEventMainHead .backBtn:hover{
    color: #0094d6;
    transition: .3s;
}
#innerEvent .innerEventMain .innerEventMainHead h5{
    font-size: 12px;
    font-weight: 400;
    color: #0094d6;
}
#innerEvent .innerEventMain h1{
    font-size: 3.5em;
    font-weight: 400;
    margin-top: 30px;
}

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

@media (max-width: 480px) {
    #innerEvent .innerEventMain h1 {
        font-size: 2.5em;
    }
}
#innerEvent .innerEventMain img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-top: 20px;
}
#innerEvent .innerEventMain p {
    font-size: 20px;
    font-weight: 300;
    margin-top: 30px;
    line-height: 1.5;
    opacity: 0.7;
}

@media (max-width: 768px) {
    #innerEvent .innerEventMain p {
        width: 100%;
        font-size: 18px;
    }
}

/*homeJobList*/
#homeJobList{
    width: 100%;
    padding: 100px 0px;
}

@media (max-width: 480px) {
    #homeJobList {
        padding: 50px 0px;
    }
}
#homeJobList .homeJobListHead{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#homeJobList .homeJobListHead h2{
  font-size: 3.5em;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 768px) {
    #homeJobList .homeJobListHead h2 {
        font-size: 3em;
    }
}

@media (max-width: 480px) {
    #homeJobList .homeJobListHead h2 {
        font-size: 2.5em;
    }
}
#homeJobList .homeJobListMain{
    width: 100%;
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
@media(max-width:768px){
    #homeJobList .homeJobListMain {
        gap: 20px;
        margin-top: 40px;
    }
}
#homeJobList .homeJobListMain .homeJobBox{
    width :calc(100% / 4 - 23px);
    background: #f0f6fd;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 15px;
    border-radius: 20px;
    border: 1px solid #e4eef9;
    transition: .3s;
}
@media(max-width:1440px){
    #homeJobList .homeJobListMain .homeJobBox{
        width :calc(100% / 3 - 20px);
    }
}
@media(max-width:1150px){
    #homeJobList .homeJobListMain .homeJobBox{
        width :calc(100% / 2 - 15px);
    }
}
@media(max-width:768px){
    #homeJobList .homeJobListMain .homeJobBox{
        width :calc(100% / 2 - 10px);
    }
}
@media(max-width:700px){
    #homeJobList .homeJobListMain .homeJobBox{
        width :100%;
    }
}
#homeJobList .homeJobListMain .homeJobBox:hover{
    transition: .3s;
    border-color: #0094d6;
}
/*#homeJobList .homeJobListMain .homeJobBox:nth-child(odd) .homeJobBoxHead .homeJobBoxHeadThumbnail{*/
/*    background: #c1dbfe;*/
/*}*/
/*#homeJobList .homeJobListMain .homeJobBox:nth-child(even) .homeJobBoxHead .homeJobBoxHeadThumbnail{*/
/*    background: #d1fddc;*/
/*}*/
#homeJobList .homeJobListMain .homeJobBox .homeJobBoxHead{
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
#homeJobList .homeJobListMain .homeJobBox .homeJobBoxHead .homeJobBoxHeadThumbnail{
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
}
#homeJobList .homeJobListMain .homeJobBox .homeJobBoxHead .homeJobBoxHeadThumbnail img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#homeJobList .homeJobListMain .homeJobBox .homeJobBoxHead .homeJobBoxHeadDetails{
    width: calc(100% - 70px - 15px);
    display: flex;
    flex-direction: column;
}
#homeJobList .homeJobListMain .homeJobBox .homeJobBoxHead .homeJobBoxHeadDetails h2{
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
    font-size: 18px;
    color: #2d3862;
}
#homeJobList .homeJobListMain .homeJobBox .homeJobBoxHead .homeJobBoxHeadDetails h3{
    font-size: 14px;
    color: #0094d6;
    font-weight: 400;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#homeJobList .homeJobListMain .homeJobBox .homeJobBoxHead .homeJobBoxHeadDetails .homeJobLocation{
    display: flex;
    align-items: center;
    gap: 4px;
    color: black;
    font-size: 12px;
    margin-top: 4px;
}
#homeJobList .homeJobListMain .homeJobBox .homeJobBoxHead .homeJobBoxHeadDetails .homeJobLocation i{
    font-size: 16px;
}
#homeJobList .homeJobListMain .homeJobBox .homeJobBoxBody{
    width: 100%;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
}
#homeJobList .homeJobListMain .homeJobBox .homeJobBoxBody ul{
    width: 100%;
    display: flex;
    flex-direction :column;
    gap: 10px;
    flex-wrap: wrap;
}
#homeJobList .homeJobListMain .homeJobBox .homeJobBoxBody ul li{
    list-style: none;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
    color: #5b5b5b;
}
#homeJobList .homeJobListMain .homeJobBox .homeJobBoxBody ul li b{
    color: black;
    font-weight: 400;
}
#homeJobList .homeJobListMain .homeJobBox .homeJobBoxBody ul li:after{
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    background: #0094d6;
    border-radius: 10px;
    left: 0;
    top: 5px;
}
#homeJobList .homeJobListMain .homeJobBox .homeJobBoxBody .homeJobDetailsBoxList{
    width :100%;
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
#homeJobList .homeJobListMain .homeJobBox .homeJobBoxBody .homeJobDetailsBoxList .homeJobDetailsBox{
    width: calc(100% / 2 - 5px);
    display: flex;
    flex-direction: column;
}
#homeJobList .homeJobListMain .homeJobBox .homeJobBoxBody .homeJobDetailsBoxList .homeJobDetailsBox span{
    font-size: 12px;
    color: black;
    opacity: 0.5;
}
#homeJobList .homeJobListMain .homeJobBox .homeJobBoxBody .homeJobDetailsBoxList .homeJobDetailsBox p{
    font-size: 14px;
    color: black;
    margin-top: 5px;
}
#homeJobList .homeJobFooter{
    width: 100%;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#homeJobList .homeJobFooter .viewMoreBtn{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 24px;
    border: 1px solid #d6d6d6;
    border-radius: 10px;
    color: #0094d6;
    transition: .3s;
}
#homeJobList .homeJobFooter .viewMoreBtn:hover{
    transition: .3s;
    background: #0094d6;
    color: white;
    border-color: #0094d6;
}

/*loginSection*/
#loginSection{
    width: 100%;
    margin-top: 60px;
}
#loginSection .loginSectionMain{
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
	padding: 100px 0px;
}
@media(max-width:768px){
	#loginSection .loginSectionMain{
		padding: 50px 0px;
	}
}
#loginSection .loginSectionMain .logingWrapperBox{
    width: 400px;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media(max-width:480px){
    #loginSection .loginSectionMain .logingWrapperBox{
        width: 100%;
    }
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails h2{
    font-size: 34px;
    font-weight: 400;
    text-align: center;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form{
    width: 100%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formGroup{
    width: 100%;
    display: flex;
    flex-direction: column;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formGroup label{
    font-size: 16px;
    font-weight: 400;
    color: #444444;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formGroup input,
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formGroup select{
    padding: 0 15px;
    border: 1px solid #aaa8a8;
    background: white;
    height: 50px;
    border-radius: 10px;
    margin-top: 5px;
    font-size: 16px;
    width: 100%;
    outline: none;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formGroup input:focus{
    border-color: black;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formGroup input:placeholder{
    color: #b4b4b4;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formGroup select:focus{
    border-color: black;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formGroup textarea{
    padding: 10px 15px;
    border: 1px solid #aaa8a8;
    background: white;
    height: 100px;
    border-radius: 10px;
    margin-top: 5px;
    font-size: 16px;
    width: 100%;
    outline: none;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formGroup textarea:focus{
    border-color: black;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formGroup textarea:placeholder{
    color: #b4b4b4;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formGroup .fileUploadUI {
    display: flex;
    align-items: center;
    gap: 12px;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formGroup .btnFilePick {
    border: none;
    width: 100%;
    outline: none;
    margin-top: 5px;
    padding: 14px 14px;
    border-radius: 10px;
    background: #222;
    color: #fff;
    cursor: pointer;
    transition: .3s;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formGroup .btnFilePick:hover{
    background: #545454;
    transition: .3s;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formGroup .fileName { 
    font-size: 0.95rem; 
    color: #666; 
    display: none;
}

#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formGroup .logoPreview {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formGroup .logoPreview .previewImgBox{
    width: 100px;
    height: 100px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    overflow: hidden;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formGroup .logoPreview .previewImgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formGroup .logoPreview .previewImgBox .removePreview {
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #eee;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 5px;
    outline: none;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formGroup .logoPreview .removePreview:hover { 
    background: #e2e2e2; 
}

#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formGroup .forgotPswd{
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formGroup .forgotPswd a{
    font-size: 16px;
    text-decoration: none;
    color: #607d8b;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formGroup .forgotPswd a:hover{
    text-decoration: underline;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formGroup .passwordArea{
    position: relative;
    width: 100%;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formGroup .passwordArea .passwordToggleBtn{
    position: absolute;
    right: 10px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    top: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formBtnArea{
    width: 100%;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formBtnArea button{
    padding: 18px 20px;
    width: 100%;
    background: #0094d6;
    color: white;
    font-size: 20px;
    border: none;
    cursor: pointer;
    outline: none;
    border-radius: 20px;
    transition: .3s;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .formBtnArea button:hover{
    transition: .3s;
    background: #15a4e4;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .register{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 50px;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .register p{
    font-size: 16px;
    font-weight: 300;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .register a{
    font-size: 16px;
    font-weight: 400;
    color: #0094d6;
}
#loginSection .loginSectionMain .logingWrapperBox .logingWrapperBoxDetails form .register a:hover{
    text-decoration: none;
}


/*memberProfile*/
#memberProfile{
    width: 100%;
    margin-top: 60px;
    padding: 20px 0px 50px 0px;
    background: #fbfbfb;
}
#memberProfile .memberProfileMain{
    width: 100%;
    min-height: calc(100vh - 70px - 60px);
    display: flex;
    flex-direction: column;
}
#memberProfile .memberProfileMain .memberProfileBreadcrumbs{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
#memberProfile .memberProfileMain .memberProfileBreadcrumbs p{
    font-size: 16px;
    color: #494949;
}
#memberProfile .memberProfileMain .memberProfileBreadcrumbs a{
    font-size: 16px;
    color: #0094d6;
    text-decoration: none;
}
#memberProfile .memberProfileMain .memberProfileBreadcrumbs span{
    font-size: 18px;
    color: #494949;
}
#memberProfile .memberProfileMain .memberProfileBody{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 30px;
}
@media(max-width:550px){
    #memberProfile .memberProfileMain .memberProfileBody{
        margin-top: 20px;
    }
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol1{
    width: 400px;
    display: flex;
    flex-direction: column;
}
@media(max-width:1200px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol1{
        display: none;
    }
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol1 .memberProfileMenu{
    width: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 20px;
    padding: 10px;
    margin-top: 15px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol1 .memberProfileMenu:nth-of-type(1){
    margin-top: 0;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol1 .memberProfileMenu ul{
    width: 100%;
    display: flex;
    flex-direction: column;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol1 .memberProfileMenu ul li{
    list-style: none;
    width: 100%;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol1 .memberProfileMenu ul li a{
    text-decoration: none;
    width: 100%;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 14px;
    transition: .3s;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol1 .memberProfileMenu ul li a:hover{
    transition: .3s;
    background: #f8fdff;    
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol1 .memberProfileMenu ul li a .icon{
    font-size: 20px;
    color: #aaa;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol1 .memberProfileMenu ul li a p{
    font-size: 18px;
    color: #000;
    font-weight: 300;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol1 .memberProfileMenu ul li .memberProfilerofileMenuActive{
    border-bottom: 1px solid #cff0ff;
    background: #f8fdff;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol1 .memberProfileMenu ul li .memberProfilerofileMenuActive .icon{
    color: #0094d6;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol1 .memberProfileMenu ul li .memberProfilerofileMenuActive p{
    color: #0094d6;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2{
    width: calc(100% - 400px - 50px);
    display: flex;
    flex-direction: column;
}
@media(max-width:1200px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2{
        width: 100%;
    }
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas{
    width: 100%;
    background: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileDetails{
    width: 100%;
    display: flex;
    flex-direction: column;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileDetails .memberProfileDetailsBanner{
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0px 40px;
    position: relative;
    z-index: 0;
}
@media(max-width:600px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileDetails .memberProfileDetailsBanner{
        padding: 0px 20px;
    }
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileDetails .memberProfileDetailsBanner::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 150px;
    background-image: url('../images/profileBannerBg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 20px;
    background-color: #eee;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileDetails .memberProfileDetailsBanner .memberProfileLogo{
    width: 100px;
    height: 100px;
    border-radius: 20px;
    overflow: hidden;
    background: #eee;
    box-shadow: 0 10px 10px #00000014;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileDetails .memberProfileDetailsBanner .memberProfileLogo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileDetails .memberProfileDetailsBanner .memberProfileEdit{
    display: flex;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileDetails .memberProfileDetailsBanner .memberProfileEdit a{
    display: flex;
    text-decoration: none;
    align-items: center;
    gap: 10px;
    color: #02a100;
    font-size: 16px;
    background: #009d0e0d;
    padding: 8px 14px;
    border-radius: 10px;
    transition: .3s;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileDetails .memberProfileDetailsBanner .memberProfileEdit a:hover{
    text-decoration: underline;
    background: #009d0e2b;
    transition: .3s;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileDetails .memberProfileDetailsList{
    width: 100%;
    margin-top: 20px;
    padding: 0px 40px 20px 40px;
    display: flex;
    flex-direction: column;
}
@media(max-width:600px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileDetails .memberProfileDetailsList{
        padding: 0px 20px 20px 20px;
    }
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileDetails .memberProfileDetailsList h2{
    font-size: 24px;
    font-weight: 500;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileDetails .memberProfileDetailsList .memberProfileDetailsListMain{
    width: 100%;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileDetails .memberProfileDetailsList .memberProfileDetailsListMain .memberProfileDetailsListCol1{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
@media(max-width:550px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileDetails .memberProfileDetailsList .memberProfileDetailsListMain .memberProfileDetailsListCol1{
        width: 100%;
    }
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileDetails .memberProfileDetailsList .memberProfileDetailsListMain .memberProfileDetailsListCol1 p{
    font-size: 14px;
    color: black;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileDetails .memberProfileDetailsList .memberProfileDetailsListMain .memberProfileDetailsListCol1 a{
    font-size: 14px;
    color: #0094d6;
    text-decoration: none;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileDetails .memberProfileDetailsList .memberProfileDetailsListMain .memberProfileDetailsListCol1 a:hover{
    text-decoration: underline;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileDetails .memberProfileDetailsList .memberProfileDetailsListMain .memberProfileDetailsListCol2{
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}
@media(max-width:550px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileDetails .memberProfileDetailsList .memberProfileDetailsListMain .memberProfileDetailsListCol2{
        width: 100%;
        align-items: flex-start;
    }
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileDetails .memberProfileDetailsList .memberProfileDetailsListMain .memberProfileDetailsListCol2 a{
    font-size: 14px;
    color: #0094d6;
    text-decoration: none;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileDetails .memberProfileDetailsList .memberProfileDetailsListMain .memberProfileDetailsListCol2 a:hover{
    text-decoration: underline;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileDetails .memberProfileDetailsList .memberProfileDetailsListMain .memberProfileDetailsListCol2 p{
    font-size: 14px;
    color: black;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileDetails .memberProfileDetailsList .aboutCompany{
    width: 100%;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileDetails .memberProfileDetailsList .aboutCompany p{
    font-size: 16px;
    color: #2c2c2c;
    line-height: 1.5;
    font-weight: 300;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm{
    width :100%;
    padding: 40px;
}
@media(max-width:600px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm{
        padding: 20px;
    }
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .memberProfileFormWraper{
    width: 100%;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #eee;
    padding-top: 20px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .memberProfileFormWraper:nth-of-type(1){
    border-top: none;
    padding-top: 0px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .memberProfileFormWraper .memberProfileFormWraperHead{
    width: 100%;
    display: flex;
    flex-direction: column;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .memberProfileFormWraper .memberProfileFormWraperHead h3{
    font-size: 20px;
    font-weight: 500;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .memberProfileFormWraper .memberProfileFormWraperBody{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .memberProfileFormWraper .memberProfileFormWraperBody .formGroup{
    width :calc(100% / 2 - 15px) !important;
}
@media(max-width:1400px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .memberProfileFormWraper .memberProfileFormWraperBody .formGroup{
        width: 100% !important;
    }
}
@media(max-width:1200px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .memberProfileFormWraper .memberProfileFormWraperBody .formGroup{
        width: calc(100% / 2 - 15px) !important;
    }
}
@media(max-width:800px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .memberProfileFormWraper .memberProfileFormWraperBody .formGroup{
        width: 100% !important;
    }
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup{
    width: calc(100% / 2 - 15px);
    display: flex;
    flex-direction: column;
}
@media(max-width:1400px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup{
        width: 100%;
    }
}
@media(max-width:1200px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup{
        width: calc(100% / 2 - 15px);
    }
}
@media(max-width:800px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup{
        width: 100%;
    }
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup label{
    font-size: 16px;
    font-weight: 400;
    color: #444444;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup input,
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup select{
    padding: 0 15px;
    border: 1px solid #aaa8a8;
    background: white;
    height: 50px;
    border-radius: 10px;
    margin-top: 5px;
    font-size: 16px;
    width: 100%;
    outline: none;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup input:focus{
    border-color: black;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup input:placeholder{
    color: #b4b4b4;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup select:focus{
    border-color: black;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup textarea{
    padding: 10px 15px;
    border: 1px solid #aaa8a8;
    background: white;
    height: 100px;
    border-radius: 10px;
    margin-top: 5px;
    font-size: 16px;
    width: 100%;
    outline: none;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup textarea:focus{
    border-color: black;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup textarea:placeholder{
    color: #b4b4b4;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formTeaxtArea{
    width: 100%;
    display: flex;
    flex-direction: column;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formTeaxtArea textarea{
    padding: 10px 15px;
    border: 1px solid #aaa8a8;
    background: white;
    height: 100px;
    border-radius: 10px;
    margin-top: 5px;
    font-size: 16px;
    width: 100%;
    outline: none;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formTeaxtArea textarea:focus{
    border-color: black;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formTeaxtArea textarea:placeholder{
    color: #b4b4b4;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formTeaxtArea .previewInputValue{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0px 10px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formTeaxtArea .previewInputValue .previewItem{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 10px;
    background: #ebf0f2;
    font-size: 14px;
    border-radius: 5px;
    margin-top: 10px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formTeaxtArea .previewInputValue .previewItem .removeBtn{
    font-size: 16px;
    cursor: pointer;
    color: #a0a0a0;
    transition: .3s;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formTeaxtArea .previewInputValue .previewItem .removeBtn:hover{
    transition: .3s;
    color: red;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formTeaxtArea .dynamicInput{
    width :100%;
    margin-top: 10px;
    display :flex;
    align-items: center;
    gap: 15px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formTeaxtArea .dynamicInput input{
    padding: 0 15px;
    border: 1px solid #aaa8a8;
    background: white;
    height: 50px;
    border-radius: 10px;
    margin-top: 5px;
    font-size: 16px;
    width: calc(100% / 2 - 15px);
    outline: none;
}
@media(max-width:1400px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formTeaxtArea .dynamicInput input{
        width: 100%;
    }
}
@media(max-width:1200px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formTeaxtArea .dynamicInput input{
        width: calc(100% / 2 - 15px);
    }
}
@media(max-width:800px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formTeaxtArea .dynamicInput input{
        width: 100%;
    }
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formTeaxtArea .dynamicInput input:focus{
    border-color: black;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formTeaxtArea .dynamicInput input:placeholder{
    color: #b4b4b4;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formTeaxtArea .dynamicInput button{
    height: 50px;
    padding: 0px 24px;
    background: darkseagreen;
    cursor: pointer;
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 16px;
    border-radius: 10px;
    transition: .3s;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formTeaxtArea .dynamicInput button:hover{
    transition: .3s;
    background: #9ed29e;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup .fileUploadUI {
    display: flex;
    align-items: center;
    gap: 12px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup .btnFilePick {
    border: none;
    width: 100%;
    outline: none;
    margin-top: 5px;
    padding: 14px 14px;
    border-radius: 10px;
    background: #222;
    color: #fff;
    cursor: pointer;
    transition: .3s;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup .btnFilePick:hover{
    background: #545454;
    transition: .3s;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup .fileName { 
    font-size: 0.95rem; 
    color: #666; 
    display: none;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup .logoPreview {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup .logoPreview .previewImgBox{
    width: 100px;
    height: 100px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    overflow: hidden;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup .logoPreview .previewImgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup .logoPreview .previewImgBox .removePreview {
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #eee;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 5px;
    outline: none;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup .logoPreview .removePreview:hover { 
    background: #e2e2e2; 
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup .forgotPswd{
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup .forgotPswd a{
    font-size: 16px;
    text-decoration: none;
    color: #607d8b;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup .forgotPswd a:hover{
    text-decoration: underline;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup .passwordArea{
    position: relative;
    width: 100%;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formGroup .passwordArea .passwordToggleBtn{
    position: absolute;
    right: 10px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    top: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formBtnArea{
    width: 100%;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formBtnArea button{
    padding: 18px 20px;
    width: 100%;
    background: #0094d6;
    color: white;
    font-size: 20px;
    border: none;
    cursor: pointer;
    outline: none;
    border-radius: 20px;
    transition: .3s;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .formBtnArea button:hover{
    transition: .3s;
    background: #15a4e4;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .register{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 50px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .register p{
    font-size: 16px;
    font-weight: 300;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .register a{
    font-size: 16px;
    font-weight: 400;
    color: #0094d6;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileForm form .register a:hover{
    text-decoration: none;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList h2{
    font-size: 20px;
    font-weight: 400;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobBox{
    width: 100%;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable{
    width:100%;
    display: flex;
    flex-direction: column;
}
@media(max-width:800px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable{
        display: none;
    }
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table {
  width: 100%;
  border-spacing: 0;
  border-radius: 1em;
  overflow: hidden;
  border: 1px solid #eee;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table td p {
  height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  max-width: 300px;
}

@media (max-width: 768px) {
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table td p {
    width: 55%;
    float: right;
    text-align: left;
    height: 18px;
  }
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table thead {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table th {
  background-color: #6f8799;
  color: white;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table td:nth-child(1) {
  background-color: #6f8799;
  border-radius: 1em 1em 0 0;
  color: white;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table th,
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table td {
  padding: 1em;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table tr,
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table td {
  display: block;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table td {
  position: relative;
  border-top: 1px solid #eee;
  font-size: 14px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table td::before {
  content: attr(data-label);
  position: absolute;
  left: 0;
  padding-left: 1em;
  font-weight: 500;
  font-size: .9em;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table tr {
  margin-bottom: 1.5em;
  border-radius: 1em;
  text-align: right;
  border: 1px solid #eee;
  background: white;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table tr:last-of-type {
  margin-bottom: 0;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table .tableActionArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 768px) {
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table .tableActionArea {
    width: 55%;
    float: right;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table .tableActionArea a {
  text-decoration: none;
  padding: 5px 7px;
  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: white;
  border-radius: 5px;
  margin-right: 0px;
  margin-left: 10px;
  font-size: 14px;
  font-weight: 300;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table .tableActionArea a:nth-child(1) {
  margin-left: 0;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table .tableActionArea .tableViewBtn {
  background: green;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table .tableActionArea .tableEditBtn {
  background: blue;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table .tableActionArea .tableDeleteBtn {
  background: red;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table .tableHyperLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 768px) {
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table .tableHyperLink {
    width: 55%;
    float: right;
  }
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table a {
  text-decoration: none;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table .viewCandidates {
  padding: 10px;
  border-radius: 10px;
  font-size: 16px;
  background: #eee;
  color: #0094d6;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table .viewCandidates:hover {
  background: #0094d6;
  color: white;
}

@media (min-width: 768px) {
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table {
    max-width: 100%;
    margin: 0 auto;
  }
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table thead {
    visibility: visible;
    position: relative;
  }
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table th {
    text-align: left;
    font-size: .9em;
    font-weight: 400;
  }
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table tr {
    display: table-row;
    border: none;
    border-radius: 0;
    text-align: left;
  }
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table td {
    display: table-cell;
  }
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table td::before {
    content: none;
  }
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table td:nth-child(1) {
    background: transparent;
    color: #444;
    border-radius: 0;
  }
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table td:nth-child(n+2):nth-child(odd) {
    background-color: transparent;
  }
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table .tableActionArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table .tableActionArea a {
    margin-left: 0px;
    margin-right: 10px;
    cursor: pointer;
  }
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table td .jobPending{
    color: orange;
    height: inherit;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table td .jobApproved{
    color: green;
    height: inherit;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table td .tableRejectedReson{
    display: flex;
    align-items :center;
    gap: 10px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table td .tableRejectedReson p{
    font-size: 14px;
    color: red;
    height: inherit;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table td .tableRejectedReson .tableRejectedResonDetails{
    position: relative;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table td .tableRejectedReson .tableRejectedResonDetails:hover .tableRejectedResonPopup{
    opacity: 1;
    visibility: visible;
    transition: .3s;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table td .tableRejectedReson .tableRejectedResonDetails .tableRejectedResonIcon{
    color: red;
    font-size: 16px;
    cursor: pointer;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table td .tableRejectedReson .tableRejectedResonDetails .tableRejectedResonPopup{
    position: absolute;
    width: 300px;
    background: #fffafa;
    padding: 15px;
    border-radius: 12px;
    bottom: 100%;
    right: 0;
    border: 1px solid #f9eded;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-shadow: 0 0 10px #00000012;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobTable table td .tableRejectedReson .tableRejectedResonDetails .tableRejectedResonPopup p{
    font-size: 14px;
    color: black;
    height: inherit;
    overflow: inherit;
    display: flex;
    line-height: 1.3;
    font-weight: 300;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper{
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 15px;
}
@media(max-width:800px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper{
        display: flex;
    }
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox{
    width: 100%;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox h2{
    font-size: 24px;
    font-weight: 500;
}
@media(max-width:480px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox h2{
        font-size: 20px;
    }
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox h3{
    font-size: 16px;
    font-weight: 400;
    margin-top: 5px;
}
@media(max-width:480px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox h3{
        font-size: 14px;
    }
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox ul{
    width: 100%;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox ul li{
    list-style: none;
    width: 100%;
    align-items: flex-start;
    gap: 10px;
    display: flex;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox ul li .col1{
    width: 150px;
    font-size: 14px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox ul li .col2{
    width: calc(100% - 150px - 10px);
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox ul li .col2 p{
    font-size: 14px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox ul li .col2 .appliedCand{
    font-size: 14px;
    text-decoration: none;
    color: blue;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox ul li .col2 .jobPending{
    color: orange;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox ul li .col2 .jobApproved{
    color: green;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox ul li .col2 .tableRejectedReson{
    display: flex;
    align-items :center;
    gap: 10px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox ul li .col2 .tableRejectedReson p{
    font-size: 14px;
    color: red;
    height: inherit;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox ul li .col2 .tableRejectedReson .tableRejectedResonDetails{
    position: relative;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox ul li .col2 .tableRejectedReson .tableRejectedResonDetails:hover .tableRejectedResonPopup{
    opacity: 1;
    visibility: visible;
    transition: .3s;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox ul li .col2 .tableRejectedReson .tableRejectedResonDetails .tableRejectedResonIcon{
    color: red;
    font-size: 16px;
    cursor: pointer;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox ul li .col2 .tableRejectedReson .tableRejectedResonDetails .tableRejectedResonPopup{
    position: absolute;
    width: 300px;
    background: #fffafa;
    padding: 15px;
    border-radius: 12px;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #f9eded;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-shadow: 0 0 10px #00000012;
}
@media(max-width:450px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox ul li .col2 .tableRejectedReson .tableRejectedResonDetails .tableRejectedResonPopup{
            left: -200px;
            transform: inherit;
    }
}
@media(max-width:400px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox ul li .col2 .tableRejectedReson .tableRejectedResonDetails .tableRejectedResonPopup{
            left: -230px;
    }
}
@media(max-width:370px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox ul li .col2 .tableRejectedReson .tableRejectedResonDetails .tableRejectedResonPopup{
            left: -250px;
    }
}
@media(max-width:345px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox ul li .col2 .tableRejectedReson .tableRejectedResonDetails .tableRejectedResonPopup{
            left: -260px;
    }
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox ul li .col2 .tableRejectedReson .tableRejectedResonDetails .tableRejectedResonPopup p{
    font-size: 14px;
    color: black;
    height: inherit;
    overflow: inherit;
    display: flex;
    line-height: 1.3;
    font-weight: 300;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox .memberProfileJobWraperBoxAction{
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox .memberProfileJobWraperBoxAction a{
    text-decoration: none;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    border-radius: 6px;
    color: white;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox .memberProfileJobWraperBoxAction .tableViewBtn {
  background: green;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox .memberProfileJobWraperBoxAction .tableEditBtn {
  background: blue;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileJobWraper .memberProfileJobWraperBox .memberProfileJobWraperBoxAction .tableDeleteBtn {
  background: red;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileCandidatesList{
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 15px;
}
@media(max-width:800px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileCandidatesList{
        display: flex;
    }
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileCandidatesList .memberProfileCandidatesListBox{
    width: 100%;
    border: 1px solid #eee;
    border-radius: 12px;
    padding :15px;
    display: flex;
    flex-direction: column;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileCandidatesList .memberProfileCandidatesListBox h2{
    font-size: 24px;
    font-weight: 500;
}
@media(max-width:600px){
    #memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileCandidatesList .memberProfileCandidatesListBox h2{
        font-size: 20px;
    }
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileCandidatesList .memberProfileCandidatesListBox ul{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 6px;
    margin-top: 10px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileCandidatesList .memberProfileCandidatesListBox ul li{
    display: flex;
    flex-direction: column;
    width: 100%;
    list-style: none;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileCandidatesList .memberProfileCandidatesListBox ul li p{
    font-size: 14px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .memberProfileJobList .memberProfileCandidatesList .memberProfileCandidatesListBox .downloadCv{
    width: 100%;
    background: #eee;
    color: #0094d6;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    margin-top: 15px;
    border-radius: 12px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection{
    width: 100%;
    display: flex;
    flex-direction: column;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner{
    width: 100%;
    background: #141235;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerStatus{
    width: 100%;
    display: flex;
    flex-direction: column;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerStatus .jobDetailsSectionBannerStatusApproved{
    width: 100%;
    padding: 15px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    background: #ceffce;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerStatus .jobDetailsSectionBannerStatusApproved span{
    font-size: 12px;
    color: black;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerStatus .jobDetailsSectionBannerStatusApproved h4{
    font-size: 16px;
    color: green;
    font-weight: 500;
    margin-top: 5px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerStatus .jobDetailsSectionBannerStatusPending{
    width: 100%;
    padding: 15px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    background: #ffe6b8;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerStatus .jobDetailsSectionBannerStatusPending span{
    font-size: 12px;
    color: black;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerStatus .jobDetailsSectionBannerStatusPending h4{
    font-size: 16px;
    color: orange;
    font-weight: 500;
    margin-top: 5px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerStatus .jobDetailsSectionBannerStatusRejected{
    width: 100%;
    padding: 15px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    background: #ffcfcf;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerStatus .jobDetailsSectionBannerStatusRejected span{
    font-size: 12px;
    color: black;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerStatus .jobDetailsSectionBannerStatusRejected h4{
    font-size: 16px;
    color: red;
    font-weight: 500;
    margin-top: 5px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerStatus .jobDetailsSectionBannerStatusRejected p{
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.5;
    font-weight: 300;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerCol1{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: flex-end;
    margin-top :15px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerCol1 h2{
    font-size: 30px;
    font-weight: 400;
    color: white;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerCol1 h3{
    font-size: 16px;
    font-weight: 400;
    color: white;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerCol2{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    gap: 20px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerCol2 .jobDetailsSectionBannerCol2Box{
    width: 100%;
    display: flex;
    flex-direction: column;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerCol2 .jobDetailsSectionBannerCol2Box span{
    font-size: 12px;
    color: #b3b3b3;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerCol2 .jobDetailsSectionBannerCol2Box .jobDetailsSectionBannerCol2BoxDetails{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top :8px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerCol2 .jobDetailsSectionBannerCol2Box .jobDetailsSectionBannerCol2BoxDetails p{
    font-size: 16px;
    font-weight: 300;
    color: white;
    line-height: 1.5;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerCol2 .jobDetailsSectionBannerCol2Footer{
    width :100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    background: #fefefe1f;
    padding: 10px 20px;
    border-radius: 14px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerCol2 .jobDetailsSectionBannerCol2Footer .PostDate{
    display: flex;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerCol2 .jobDetailsSectionBannerCol2Footer .PostDate p{
    font-size: 14px;
    color: #d6d6d6;
    font-weight: 300;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerCol2 .jobDetailsSectionBannerCol2Footer .jobDetailsSectionBannerBtnArea{
    display: flex;
    align-items: center;
    gap: 15px;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerCol2 .jobDetailsSectionBannerCol2Footer .jobDetailsSectionBannerBtnArea .editJobBtn{
    padding: 10px 16px;
    font-size: 14px;
    color: white;
    cursor: pointer;
    border-radius: 10px;
    background: #108710;
    text-decoration: none;
    transition: .3s;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerCol2 .jobDetailsSectionBannerCol2Footer .jobDetailsSectionBannerBtnArea .editJobBtn:hover{
    transition: .3s;
    background: #5fa35f;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerCol2 .jobDetailsSectionBannerCol2Footer .jobDetailsSectionBannerBtnArea .deleteJobBtn{
    padding: 10px 16px;
    font-size: 14px;
    color: white;
    cursor: pointer;
    border-radius: 10px;
    background: #ff0000;
    transition: .3s;
}
#memberProfile .memberProfileMain .memberProfileBody .memberProfileCol2 .memberProfileCanvas .jobDetailsSection .jobDetailsSectionBanner .jobDetailsSectionBannerCol2 .jobDetailsSectionBannerCol2Footer .jobDetailsSectionBannerBtnArea .deleteJobBtn:hover{
    transition: .3s;
    background: #ff5353;
}
.emptyData{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: white;
    padding: 20px;
}
.emptyData .emptyDataIcon{
    font-size: 40px;
    background: #f1f7fa;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #54a3ff;
}
.emptyData .emptyDataDetails{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 10px;
}
.emptyData .emptyDataDetails h3{
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}
.emptyData .emptyDataDetails p{
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
    font-weight: 300;
}
.emptyData .emptyDataDetails a{
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    margin-top: 25px;
    padding: 10px 20px;
    background: #0094d6;
    border-radius: 12px;
    color: white;
    transition: .3s;
}
.emptyData .emptyDataDetails a:hover{
    transition: .3s;
    background: #1faae7;
}

/*deletePopup*/
.deletePopup{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #00000036;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 105;
}
.deletePopup .deletePopupBox{
    width: 400px;
    background: white;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px;
}
@media(max-width:450px){
    .deletePopup .deletePopupBox{
        width: 90%;
        padding: 20px;
    }
}
.deletePopup .deletePopupBox .deletePopupBoxIcon{
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff0f0;
    border-radius: 50%;
    font-size: 40px;
    color: #ff6767;
}
.deletePopup .deletePopupBox .deletePopupBoxDetsils{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
}
.deletePopup .deletePopupBox .deletePopupBoxDetsils h3{
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}
.deletePopup .deletePopupBox .deletePopupBoxDetsils p{
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
    font-weight: 300;
}
.deletePopup .deletePopupBox .deletePopupBoxDetsils .deletePopupBoxDetsilsBtnArea{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}
.deletePopup .deletePopupBox .deletePopupBoxDetsils .closeDeletePopup{
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    padding: 14px 20px;
    background: #d0f1ff;
    border-radius: 12px;
    color: #000000;
    transition: .3s;
    cursor: pointer;
}
.deletePopup .deletePopupBox .deletePopupBoxDetsils .closeDeletePopup:hover{
    transition: .3s;
    background: #e6f8ff;
}
.deletePopup .deletePopupBox .deletePopupBoxDetsils .confirmDelete{
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    padding: 14px 20px;
    background: red;
    border-radius: 12px;
    color: white;
    transition: .3s;
    cursor: pointer;
}
.deletePopup .deletePopupBox .deletePopupBoxDetsils .confirmDelete:hover{
    transition: .3s;
    background: #ff6868;
}

@media(max-width:600px){
    .mobHide{
        display: none !important;
    }
}

/*# sourceMappingURL=style.css.map */

.toasterPopup {
  position: fixed;
  z-index: 100;
  padding: 15px 20px;
  background: white;
  border-radius: 10px;
  bottom: -110%;
  opacity: 0;
  visibility: hidden;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid #0065a6;
  transition: 0.3s ease all;
}
@media (max-width: 480px) {
  .toasterPopup {
    max-width: 90%;
  }
}
.toasterPopup p {
  font-size: 14px;
  font-weight: 500;
  white-space: pre;
}

.toasterPopupActivity {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease all;
}

.successPopup{
  	position: fixed;
    z-index: 100;
    padding: 15px 20px;
    background: #ddffdc;
    border-radius: 10px;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #89d992;
    transition: 0.3s ease all;
	opacity: 0;
	visibility: hidden;
}
@media(max-width:1024px){
	.successPopup{
		width: 70%;
	}
}
@media(max-width:768px){
	.successPopup{
		width: 80%;
	}
}
@media(max-width:500px){
	.successPopup{
		width: 90%;
	}
}
@media(max-width:420px){
	.successPopup{
		width: 95%;
	}
}
.successPopupActive{
	top: 80px;
    transition: 0.3s ease all;
	opacity: 1;
	visibility: visible;
}
.successPopup .successPopupBox{
	width: 100%;
	display: flex;
	flex-direction :column;
}
.successPopup .successPopupBox h2{
	font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}
.successPopup .successPopupBox p{
	font-size: 14px;
    line-height: 1.4;
    color: #3e3e3e;
}