@media (max-width: 1024px) {
  .col-md-6 {
    width: 100%;
  }
}

@media (min-width: 1700px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1400px;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: 0;
}

html,
body {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
}

::-webkit-input-placeholder {
  color: #101010;
}

:-ms-input-placeholder {
  color: #101010;
}

::-ms-input-placeholder {
  color: #101010;
}

::placeholder {
  color: #101010;
}

::-moz-selection {
  background: #dc030c;
  color: #fff;
}

::selection {
  background: #dc030c;
  color: #fff;
}

::-webkit-scrollbar {
  width: 6px;
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  background-color: #dc030c;
  border-radius: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: 60px;
}

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size: 30px;
  font-weight: 700;
  color: #101010;
}

@media screen and (max-width: 1024px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 26px;
}

@media screen and (max-width: 1024px) {
  h3 {
    font-size: 25px;
  }
}

h4 {
  font-size: 22px;
}

@media screen and (max-width: 1024px) {
  h4 {
    font-size: 18px;
  }
}

h5 {
  font-size: 18px;
}

@media screen and (max-width: 1024px) {
  h5 {
    font-size: 16px;
  }
}

h6 {
  font-size: 18px;
}

@media screen and (max-width: 1024px) {
  h6 {
    font-size: 15px;
  }
}

a {
  text-decoration: none;
  color: #101010;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

a:hover {
  text-decoration: none;
}

p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
}

@media screen and (max-width: 1024px) {
  p {
    font-size: 13px;
  }
}

p .text-green {
  color: #4380db;
}

strong {
  font-weight: 700;
}

ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style: none;
}

img {
  width: 100%;
}

img[data-src] {
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
  will-change: opacity;
}

/* appear animation */
img[data-src][src] {
  opacity: 1;
}

.btn {
  position: relative;
  padding: 15px 35px;
  border: 0;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  outline: 0;
  letter-spacing: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  overflow: hidden;
  z-index: 1;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #dc030c;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: -1;
}

.btn i {
  position: relative;
  z-index: 5;
  margin-left: 4px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.btn:hover i {
  color: #fff !important;
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
}

.btn:hover:before {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .btn {
    padding: 12px 20px;
    font-size: 13px;
  }
}

.btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
}

.btn.btn-primary {
  background: #4380db;
  color: #fff;
}

.btn.btn-secondary {
  background: #dc030c;
  color: #fff;
}

.btn.btn-outline-primary {
  border: 1px solid #4380db;
  color: #4380db;
}

.btn.btn-outline-primary:hover {
  color: #fff;
}

.btn.btn-outline-secondary {
  border: 1px solid #dc030c;
  color: #dc030c;
}

.btn.btn-outline-secondary:hover {
  color: #fff;
  -webkit-box-shadow: 150px 0 0 inset #dc030c;
          box-shadow: 150px 0 0 inset #dc030c;
}

.btn i {
  font-size: 15px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 10000;
  opacity: 1;
  visibility: hidden;
  -webkit-transform: translateY(45px);
          transform: translateY(45px);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

@media screen and (max-width: 600px) {
  .scroll-top img {
    width: 70px;
  }
}

.scroll-top svg {
  color: #4380db;
  border-radius: 50%;
  background: #fff;
}

.scroll-top svg path {
  fill: none;
}

.scroll-top .progress-circle path {
  stroke: #dc030c;
  stroke-width: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.scroll-top:after {
  content: "\f062";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  position: absolute;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: #dc030c;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  border: 1px dashed #dc030c;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 50%;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (max-width: 600px) {
  .scroll-top.show {
    bottom: -50px;
  }
}

.form-group {
  margin-bottom: 15px;
}

input,
.form-control,
select {
  width: 100%;
  height: 55px;
  padding: 0 15px;
  border-radius: 5px;
  border: 1px solid #cdcdcd;
  outline: 0;
  background: transparent;
  font-size: 14px;
  line-height: 1;
  color: #101010;
  -webkit-box-shadow: none;
          box-shadow: none;
}

input:focus,
.form-control:focus,
select:focus {
  color: #101010;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-label {
  font-size: 15px;
  color: #101010;
  line-height: 1;
  margin-bottom: 10px;
}

.form-check-input {
  padding: 0;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  margin-top: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
}

.form-check-input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-check-label {
  line-height: 20px;
}

textarea {
  height: 120px !important;
  padding: 15px !important;
}

.custom-raio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
          column-gap: 15px;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #101010;
}

[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #cdcdcd;
  border-radius: 100%;
  background: #fff;
}

[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
  content: '';
  width: 12px;
  height: 12px;
  background: #4380db;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.custom-checkbox input {
  display: none;
  left: -100vw;
  opacity: 0;
}

.custom-checkbox .form-group label {
  position: relative;
  cursor: pointer;
}

.custom-checkbox .form-group label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #4380db;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.custom-checkbox .form-group input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 8px;
  width: 9px;
  height: 15px;
  border: solid #4380db;
  border-width: 0px 3px 3px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.for-phone {
  display: none !important;
}

@media screen and (max-width: 600px) {
  .for-phone {
    display: block !important;
  }
}

@media screen and (max-width: 600px) {
  .for-desktop {
    display: none !important;
  }
}

header#header {
  position: relative;
  background: #101010;
  width: 100%;
  z-index: 200;
}

header#header .sticky-wrapper {
  height: 100px;
}

@media screen and (max-width: 1024px) {
  header#header .sticky-wrapper {
    height: 80px;
  }
}

header#header .sticky-wrapper .navbar {
  padding: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

@media screen and (max-width: 1024px) {
  header#header .sticky-wrapper .navbar {
    padding: 0;
  }
}

header#header .sticky-wrapper .navbar .navbar-brand {
  margin: 0;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transform: translateY(35px);
          transform: translateY(35px);
  z-index: 100;
}

@media screen and (max-width: 1024px) {
  header#header .sticky-wrapper .navbar .navbar-brand {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    z-index: 150;
  }
}

header#header .sticky-wrapper .navbar .navbar-brand img {
  width: auto;
  height: 135px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 1024px) {
  header#header .sticky-wrapper .navbar .navbar-brand img {
    height: 90px;
  }
}

header#header .sticky-wrapper .navbar .navbar-right {
  height: 98px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 15px;
}

@media screen and (max-width: 1024px) {
  header#header .sticky-wrapper .navbar .navbar-right {
    height: 80px;
  }
}

header#header .sticky-wrapper .navbar .navbar-right .navbar-toggler {
  background: #dc030c;
  border-radius: 10px;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  header#header .sticky-wrapper .navbar .navbar-right .navbar-toggler {
    margin-left: 10px;
  }
}

header#header .sticky-wrapper .navbar .navbar-right .navbar-toggler i {
  color: #fff;
  font-size: 25px;
}

header#header .sticky-wrapper .navbar .navbar-right .account-mob {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  border: 1px solid #fff;
  margin-right: 10px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  header#header .sticky-wrapper .navbar .navbar-right .account-mob {
    display: block;
  }
}

header#header .sticky-wrapper .navbar .navbar-right .account-mob i {
  font-size: 20px;
  color: #fff;
  line-height: 50px;
}

header#header .sticky-wrapper .navbar .navbar-right .account .btn {
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  border: 1px solid #fff;
  text-align: center;
  padding: 0;
  background: transparent;
}

header#header .sticky-wrapper .navbar .navbar-right .account .btn:after {
  display: none;
}

header#header .sticky-wrapper .navbar .navbar-right .account .btn:hover i {
  -webkit-transform: none;
          transform: none;
}

header#header .sticky-wrapper .navbar .navbar-right .account .btn i {
  margin: 0;
}

header#header .sticky-wrapper .navbar .navbar-right .account .btn .user-initials {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
}

header#header .sticky-wrapper .navbar .navbar-right .account .dropdown-menu {
  left: auto;
  right: 0;
  padding: 12px;
}

header#header .sticky-wrapper .navbar .navbar-right .account .dropdown-menu li {
  margin: 4px 0;
}

header#header .sticky-wrapper .navbar .navbar-right .account .dropdown-menu li a {
  color: #101010;
}

header#header .sticky-wrapper .navbar .navbar-right .account .dropdown-menu li a:hover {
  color: #dc030c;
}

header#header .sticky-wrapper .navbar .navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (max-width: 1024px) {
  header#header .sticky-wrapper .navbar .navbar-nav {
    margin: 0;
    padding: 0;
    height: 80px;
  }
}

@media (max-width: 992px) {
  header#header .sticky-wrapper .navbar .navbar-nav {
    height: auto;
    -webkit-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
            box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 10px 10px;
    padding-bottom: 12px;
  }
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item {
  margin: 0 5px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  header#header .sticky-wrapper .navbar .navbar-nav .nav-item {
    margin: 0;
    width: auto;
  }
}

@media (max-width: 992px) {
  header#header .sticky-wrapper .navbar .navbar-nav .nav-item {
    width: 100%;
  }
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item .nav-link {
  font-size: 14.5px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 98px;
  padding: 0 5px;
  text-align: center;
  letter-spacing: 0.5px;
  color: #fff;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

@media (max-width: 1024px) {
  header#header .sticky-wrapper .navbar .navbar-nav .nav-item .nav-link {
    font-size: 12px;
    padding: 12px 5px;
    line-height: 26px;
    text-align: right;
    color: #fff;
  }
}

@media (max-width: 992px) {
  header#header .sticky-wrapper .navbar .navbar-nav .nav-item .nav-link {
    font-size: 15px;
    padding: 12px 15px;
    color: #101010;
  }
}

@media screen and (max-width: 1024px) {
  header#header .sticky-wrapper .navbar .navbar-nav .nav-item .nav-link {
    line-height: 18px !important;
  }
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item .nav-link i {
  font-size: 14px;
  margin-left: 3px;
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle:after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0 6px;
  padding: 0;
  border: 0;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  vertical-align: 0;
}

@media (max-width: 992px) {
  header#header .sticky-wrapper .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle:after {
    color: #101010;
  }
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item .nav-link:hover {
  color: #dc030c;
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item .nav-link:hover.dropdown-toggle:after {
  color: #dc030c;
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item .dropdown-menu {
  border-radius: 5px;
  border: 1px solid rgba(16, 16, 16, 0.05);
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-link {
  display: block;
  padding: 5px 15px;
  font-size: 15px;
  color: #101010;
  white-space: nowrap;
}

@media screen and (max-width: 1024px) {
  header#header .sticky-wrapper .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-link {
    text-align: right;
  }
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-link:hover {
  color: #dc030c;
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item .dropdown-menu a {
  display: block;
  padding: 7px 18px 7px 7px;
  line-height: 1;
  font-size: 15px;
  color: #101010;
  text-align: left;
  white-space: nowrap;
}

@media screen and (max-width: 1024px) {
  header#header .sticky-wrapper .navbar .navbar-nav .nav-item .dropdown-menu a {
    text-align: right;
    padding-right: 40px;
  }
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item .dropdown-menu a:hover {
  color: #dc030c;
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item.contact-btn {
  margin-left: 10px;
  margin-right: 0;
}

@media screen and (max-width: 1024px) {
  header#header .sticky-wrapper .navbar .navbar-nav .nav-item.contact-btn {
    margin-left: 0;
    text-align: right;
  }
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item.contact-btn .nav-link {
  border-radius: 30px;
  border: 1px solid #fff;
  height: 35px;
  line-height: 35px;
  padding: 0 20px;
}

@media screen and (max-width: 1024px) {
  header#header .sticky-wrapper .navbar .navbar-nav .nav-item.contact-btn .nav-link {
    height: auto;
    display: inline-block;
    border: 0 !important;
    line-height: 30px !important;
  }
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item.contact-btn .nav-link:hover {
  background: #dc030c;
  border-color: #dc030c;
  color: #fff;
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item.account {
  margin-left: 10px;
}

@media screen and (max-width: 1024px) {
  header#header .sticky-wrapper .navbar .navbar-nav .nav-item.account {
    margin-left: 0;
    display: none;
  }
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item.account .nav-link {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #fff;
  line-height: 35px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1024px) {
  header#header .sticky-wrapper .navbar .navbar-nav .nav-item.account .nav-link {
    padding: 18px;
    margin: 0 15px 15px;
  }
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item.account .nav-link i {
  margin: 0;
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item.account .nav-link:hover {
  background: #dc030c;
  border-color: #dc030c;
  color: #fff;
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item.account .nav-link span {
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item.account .dropdown-menu {
  right: 0;
  left: auto;
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item.account .dropdown-menu .nav-link {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  border: 0;
  line-height: 1;
  padding: 6px;
  text-align: left;
  font-size: 14px;
  text-transform: none;
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item.account .dropdown-menu .nav-link:hover {
  color: #dc030c;
  background: transparent;
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item.account .dropdown-toggle:after {
  display: none;
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  display: block;
  -webkit-animation: dropdown 0.4s ease-in-out;
          animation: dropdown 0.4s ease-in-out;
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}

header#header .sticky-wrapper .navbar .navbar-nav .nav-item.active .nav-link {
  color: #dc030c;
}

@media (max-width: 992px) {
  header#header .sticky-wrapper .navbar .navbar-collapse {
    position: absolute;
    background: #fff;
    margin: 0;
    width: 100%;
    z-index: 100;
    top: 80px;
    border-radius: 0 0 10px 10px;
  }
}

footer#footer {
  position: relative;
  background: #101010;
  padding: 70px 0 30px;
  z-index: 10;
}

@media screen and (max-width: 1024px) {
  footer#footer {
    padding: 50px 0 30px;
  }
}

footer#footer h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  line-height: 35px;
  color: #dc030c;
  text-transform: uppercase;
  margin-bottom: 25px;
}

@media screen and (max-width: 600px) {
  footer#footer h4 {
    margin: 0 0 10px;
    font-size: 19px;
    text-align: center;
  }
}

footer#footer p {
  font-size: 15px;
  color: #fff;
  line-height: 22px;
  margin-bottom: 0;
}

@media screen and (max-width: 600px) {
  footer#footer p {
    text-align: center;
    max-width: 100% !important;
    margin: 0;
  }
}

@media screen and (max-width: 1024px) {
  footer#footer .footer-navigation {
    margin-bottom: 25px;
  }
}

footer#footer .footer-navigation .footer-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

footer#footer .footer-navigation .footer-link li {
  width: 50%;
  margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
  footer#footer .footer-navigation .footer-link li {
    width: 100%;
    text-align: center;
  }
}

footer#footer .footer-navigation .footer-link li a {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

footer#footer .footer-navigation .footer-link li a:hover {
  color: #dc030c;
}

footer#footer .footer-navigation .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
          column-gap: 10px;
  margin-top: 30px;
}

@media screen and (max-width: 1024px) {
  footer#footer .footer-navigation .social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

footer#footer .footer-navigation .social h5 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-right: 10px;
  margin-bottom: 0;
}

footer#footer .footer-navigation .social a {
  width: 35px;
  height: 35px;
  background: #e1e1e1;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer#footer .footer-navigation .social a i {
  font-size: 20px;
  color: #dc030c;
}

footer#footer .footer-navigation .social a:hover {
  background: #dc030c;
}

footer#footer .footer-navigation .social a:hover i {
  color: #fff;
}

footer#footer .footer-contact {
  text-align: right;
}

@media (max-width: 1024px) {
  footer#footer .footer-contact {
    text-align: left;
  }
}

footer#footer .footer-contact p {
  margin-bottom: 15px;
}

@media screen and (max-width: 600px) {
  footer#footer .footer-contact p {
    text-align: center;
  }
}

footer#footer .footer-contact p a {
  color: #fff;
}

footer#footer .footer-contact p a:hover {
  color: #ffdf00;
}

footer#footer .bottom {
  margin-top: 50px;
}

@media screen and (max-width: 600px) {
  footer#footer .bottom {
    margin: 40px 10px 0;
  }
}

footer#footer .bottom p {
  text-transform: uppercase;
}

@media screen and (max-width: 600px) {
  footer#footer .bottom p {
    text-align: center;
  }
}

footer#footer .bottom .mid {
  text-align: center;
}

@media screen and (max-width: 600px) {
  footer#footer .bottom .right {
    margin-top: 15px;
  }
}

footer#footer .bottom .right p {
  text-align: right;
}

@media screen and (max-width: 600px) {
  footer#footer .bottom .right p {
    text-align: center;
  }
}

footer#footer .bottom .right p a {
  color: #ffdf00;
}

footer#footer .bottom .right p a:hover {
  color: #dc030c;
}

@-webkit-keyframes dropdown {
  0% {
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1);
            transform: translate3d(0, -15px, 0) scaleY(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
            transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
  }
}

@keyframes dropdown {
  0% {
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1);
            transform: translate3d(0, -15px, 0) scaleY(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
            transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
  }
}

header#header .sticky-wrapper {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

header#header .sticky-wrapper.sticky {
  position: fixed;
  height: 80px;
  top: 0;
  right: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.96);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -webkit-animation: stickyAni 0.4s ease-in-out;
          animation: stickyAni 0.4s ease-in-out;
  z-index: 100;
}

header#header .sticky-wrapper.sticky .navbar {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0;
}

header#header .sticky-wrapper.sticky .navbar .navbar-brand {
  background: transparent;
  -webkit-transform: none;
          transform: none;
  padding: 0;
}

header#header .sticky-wrapper.sticky .navbar .navbar-brand img {
  height: 65px;
}

header#header .sticky-wrapper.sticky .navbar .navbar-nav {
  margin-top: 0;
}

header#header .sticky-wrapper.sticky .navbar .navbar-nav .nav-item .nav-link {
  mix-blend-mode: normal;
  color: #101010;
  line-height: 80px;
}

header#header .sticky-wrapper.sticky .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle:after {
  color: #101010;
}

header#header .sticky-wrapper.sticky .navbar .navbar-nav .nav-item .nav-link:hover.dropdown-toggle:after {
  color: #4380db;
}

header#header .sticky-wrapper.sticky .navbar .navbar-nav .nav-item.contact-btn .nav-link {
  border: 0;
  line-height: 35px;
  border: 1px solid #101010;
}

header#header .sticky-wrapper.sticky .navbar .navbar-nav .nav-item.contact-btn .nav-link:hover {
  color: #fff !important;
  border: 1px solid #dc030c;
}

header#header .sticky-wrapper.sticky .navbar .navbar-nav .nav-item.account a {
  border-color: #101010;
}

header#header .sticky-wrapper.sticky .navbar .navbar-nav .nav-item.account a:hover i {
  color: #fff;
}

header#header .sticky-wrapper.sticky .navbar .navbar-nav .nav-item.account a:hover span {
  color: #fff;
}

header#header .sticky-wrapper.sticky .navbar .navbar-nav .nav-item.account a span {
  color: #101010;
}

header#header .sticky-wrapper.sticky .navbar .navbar-nav .nav-item.account .dropdown-toggle:hover {
  color: #fff !important;
}

header#header .sticky-wrapper.sticky .navbar .navbar-nav .nav-item a.nav-link {
  color: #101010;
}

header#header .sticky-wrapper.sticky .navbar .navbar-nav .nav-item a.nav-link:hover {
  color: #dc030c !important;
}

header#header .sticky-wrapper.sticky .navbar .navbar-nav .nav-item .dropdown-menu a.nav-link {
  line-height: 1;
}

header#header .sticky-wrapper.sticky .navbar .contact-btn a.nav-link {
  color: #101010;
}

header#header .sticky-wrapper.sticky .navbar .contact-btn a.nav-link:hover {
  border-color: #dc030c !important;
  color: #fff !important;
}

header#header .sticky-wrapper.sticky .navbar .navbar-right {
  height: 80px;
}

header#header .sticky-wrapper.sticky .navbar .navbar-right .account .btn {
  border: 1px solid #dc030c;
  color: #fff;
}

header#header .sticky-wrapper.sticky .navbar .account-mob {
  border: 1px solid #101010;
}

header#header .sticky-wrapper.sticky .navbar .account-mob i {
  color: #101010;
}

@-webkit-keyframes stickyAni {
  0% {
    -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
            transform: translate3d(0, -40px, 0) scaleY(0.8);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
            transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
  }
}

@keyframes stickyAni {
  0% {
    -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
            transform: translate3d(0, -40px, 0) scaleY(0.8);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
            transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
  }
}

.title-animation {
  -webkit-clip-path: none;
          clip-path: none;
  opacity: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-name: titleAnimation;
          animation-name: titleAnimation;
}

@-webkit-keyframes titleAnimation {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
    -webkit-clip-path: polygon(100% 0, 100% 0%, 0 90%, 0 0%);
            clip-path: polygon(100% 0, 100% 0%, 0 90%, 0 0%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0%);
            clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0%);
  }
}

@keyframes titleAnimation {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
    -webkit-clip-path: polygon(100% 0, 100% 0%, 0 90%, 0 0%);
            clip-path: polygon(100% 0, 100% 0%, 0 90%, 0 0%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0%);
            clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0%);
  }
}

main .inside-page {
  padding: 100px 0;
  min-height: calc(100vh - 300px);
}

@media screen and (max-width: 1024px) {
  main .inside-page {
    padding: 50px 0;
  }
}

main .inside-page#about .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main #banner {
  position: relative;
  z-index: 50;
}

@media screen and (max-width: 1024px) {
  main #banner {
    overflow: hidden;
  }
}

main #banner .home-slider .item {
  position: relative;
  width: 100%;
}

main #banner .home-slider .item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 16, 16, 0.25);
}

main #banner .home-slider .item .thumb img {
  width: 100%;
  height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1024px) {
  main #banner .home-slider .item .thumb img {
    height: 50vh;
  }
}

main #banner .home-slider .item .content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding-bottom: 10%;
}

main #banner .home-slider .item .content h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 45px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  main #banner .home-slider .item .content h1 {
    font-size: 22px;
    line-height: 25px;
  }
}

main #banner .home-slider .item .content a.btn {
  padding: 20px 35px;
  font-size: 22px;
  font-weight: 600 !important;
}

main #banner .owl-nav {
  position: absolute;
  width: 98%;
  margin: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  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;
}

main #banner .owl-nav button {
  position: relative;
  background: transparent;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #fff;
  margin: 0 3px;
  font-size: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  mix-blend-mode: exclusion;
}

main #banner .owl-nav button.owl-next span {
  display: none;
}

main #banner .owl-nav button.owl-next:before {
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  line-height: 30px;
  font-weight: 800;
  color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

main #banner .owl-nav button.owl-prev span {
  display: none;
}

main #banner .owl-nav button.owl-prev:before {
  position: absolute;
  content: "\f104";
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  line-height: 30px;
  font-weight: 800;
  color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

main #banner .owl-nav button:hover {
  background: rgba(67, 128, 219, 0.7);
}

main #banner .owl-dots {
  position: relative;
  margin: -50px 0 0;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  main #banner .owl-dots {
    margin: 0;
    -webkit-transform: translateY(-35px);
            transform: translateY(-35px);
  }
}

main #banner .owl-dots button {
  width: 50px;
  height: 5px;
  border: 0;
  background: #fff;
  border-radius: 0;
  opacity: 0.4;
  margin: 0 3px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

main #banner .owl-dots button span {
  display: none;
}

main #banner .owl-dots button.active {
  background: #fff;
  opacity: 1;
}

main #inner-banner {
  position: relative;
}

main #inner-banner .thumb {
  width: 100%;
  height: 250px;
}

main #inner-banner .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

main #inner-banner .content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 50;
}

@media screen and (max-width: 1024px) {
  main #inner-banner .content {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}

main #inner-banner .content .container {
  text-align: right;
}

main #inner-banner .content h1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 45px;
  color: #fff;
  text-align: right;
  margin: 0;
  padding: 12px 25px;
  background: #dc030c;
}

@media screen and (max-width: 1024px) {
  main #inner-banner .content h1 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 30px;
  }
}

main #whats-new {
  background: #dc030c;
  padding: 10px 0;
}

main #whats-new .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
}

main #whats-new .inner .title {
  position: relative;
  background: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 15px;
  color: #dc030c;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 50;
}

main #whats-new .inner .title:before {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 12px solid #fff;
}

main #whats-new .inner .ticker-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  white-space: nowrap;
  -webkit-animation: marquee 40s linear infinite;
          animation: marquee 40s linear infinite;
  z-index: 10;
}

@media screen and (max-width: 1024px) {
  main #whats-new .inner .ticker-list {
    -webkit-animation: marquee 20s linear infinite;
            animation: marquee 20s linear infinite;
  }
}

main #whats-new .inner .ticker-list a {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-right: 15px;
  border-right: 3px solid #fff;
  padding-right: 15px;
}

main #whats-new .inner .ticker-list a:hover {
  text-decoration: underline;
}

main #whats-new .inner .ticker-list a:last-child {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}

@-webkit-keyframes marquee {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

@keyframes marquee {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

main #about-sec {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom left;
}

@media screen and (max-width: 1024px) {
  main #about-sec {
    background-position: 2% 100%;
  }
}

main #about-sec .home-about {
  text-align: center;
  padding: 60px 0 80px;
}

@media screen and (max-width: 1024px) {
  main #about-sec .home-about {
    margin-bottom: 40px;
  }
}

main #about-sec .home-about h2 {
  font-size: 50px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  main #about-sec .home-about h2 {
    font-size: 40px;
  }
}

main #about-sec .home-about p {
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  margin: 0;
  height: 105px;
  overflow: hidden;
}

main #about-sec .home-about .btn {
  margin-top: 20px;
}

main #about-sec .announce-link {
  position: relative;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 35px;
          column-gap: 35px;
  z-index: 100;
  width: 85%;
  margin: -50px auto 0;
}

@media screen and (max-width: 1024px) {
  main #about-sec .announce-link {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 auto;
    padding: 15px 0;
  }
}

main #about-sec .announce-link > div {
  position: relative;
  width: 50%;
  height: 200px;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
}

@media screen and (max-width: 1024px) {
  main #about-sec .announce-link > div {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
  }
}

main #about-sec .announce-link > div h3 {
  font-size: 23px;
  color: #4380db;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
  text-transform: uppercase;
}

main #about-sec .announce-link > div h5 {
  font-size: 14px;
  margin: 30px 0 0;
}

main #about-sec .eventslist .nav-tabs {
  border: 0;
}

main #about-sec .eventslist .nav-tabs .nav-item {
  margin-right: 10px;
}

@media screen and (max-width: 1024px) {
  main #about-sec .eventslist .nav-tabs .nav-item {
    margin-right: 5px;
  }
}

main #about-sec .eventslist .nav-tabs .nav-item .nav-link {
  font-size: 15px;
  font-weight: 600;
  border-radius: 5px;
  padding: 8px 14px;
  background: transparent;
  color: #4380db;
  border: 1px solid #4380db;
}

@media screen and (max-width: 1024px) {
  main #about-sec .eventslist .nav-tabs .nav-item .nav-link {
    font-size: 13px;
    padding: 8px;
  }
}

main #about-sec .eventslist .nav-tabs .nav-item .nav-link.active {
  background: #4380db;
  color: #fff;
}

main #about-sec .eventslist .tab-content {
  background: transparent;
  border: 0;
  border-top: 0;
}

main #about-sec .eventslist .tab-content .upcoming-list {
  overflow-y: auto;
  margin: 0;
  padding: 0;
}

main #about-sec .eventslist .tab-content .upcoming-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 25px 0 0;
}

main #about-sec .eventslist .tab-content .upcoming-list li .icon {
  width: 40px;
}

main #about-sec .eventslist .tab-content .upcoming-list li .icon i {
  font-size: 40px;
  color: rgba(16, 16, 16, 0.5);
}

main #about-sec .eventslist .tab-content .upcoming-list li .text {
  width: calc(100% - 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding-left: 10px;
  padding-right: 0;
}

main #about-sec .eventslist .tab-content .upcoming-list li .text .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}

@media screen and (max-width: 1024px) {
  main #about-sec .eventslist .tab-content .upcoming-list li .text .head {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

main #about-sec .eventslist .tab-content .upcoming-list li .text .head .date {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #4380db;
  padding: 5px 10px;
  border: 1px solid rgba(67, 128, 219, 0.5);
  border-radius: 4px;
  margin-right: 8px;
}

main #about-sec .eventslist .tab-content .upcoming-list li .text .head #clockdiv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-radius: 3px;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  main #about-sec .eventslist .tab-content .upcoming-list li .text .head #clockdiv {
    margin-top: 12px;
  }
}

main #about-sec .eventslist .tab-content .upcoming-list li .text .head #clockdiv > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-right: 1px;
  background: #dc030c;
  padding: 3px 5px;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
  main #about-sec .eventslist .tab-content .upcoming-list li .text .head #clockdiv > div {
    font-size: 15px;
  }
}

main #about-sec .eventslist .tab-content .upcoming-list li .text .head #clockdiv > div:last-child {
  margin-right: 0;
}

main #about-sec .eventslist .tab-content .upcoming-list li .text .head #clockdiv > div span {
  font-weight: 600;
  margin-right: 4px;
  text-transform: uppercase;
}

main #about-sec .eventslist .tab-content .upcoming-list li .text .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: #101010;
  height: 48px;
  overflow: hidden;
}

main #about-sec .eventslist .tab-content .upcoming-list li:hover {
  background: transparent;
}

main #about-sec .eventslist .tab-content .upcoming-list li:hover .text .title {
  color: #dc030c;
}

main #about-sec .eventslist .tab-content .text-end {
  display: block;
  margin-top: 8px;
}

main #about-sec .eventslist .tab-content .text-end .link {
  font-weight: 600;
  text-transform: uppercase;
  color: #dc030c;
}

main #about-sec .eventslist .tab-content .tab-pane h5 {
  font-size: 14px;
  margin: 30px 0 0;
}

main #about-sec .text-end {
  position: absolute;
  bottom: 12px;
  right: 20px;
  display: block;
  margin-top: 0;
}

@media screen and (max-width: 1024px) {
  main #about-sec .text-end {
    position: relative;
    bottom: auto;
    right: 0;
    margin-top: 20px !important;
  }
}

main #about-sec .text-end .link {
  font-weight: 600;
  text-transform: uppercase;
  color: #dc030c;
}

main #about-sec .text-end .link:hover {
  color: #101010 !important;
}

main #about-sec .a-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 16px 0;
}

@media screen and (max-width: 1024px) {
  main #about-sec .a-list {
    padding-bottom: 0;
  }
}

main #about-sec .a-list .icon {
  width: 35px;
}

main #about-sec .a-list .icon i {
  font-size: 38px;
  color: rgba(16, 16, 16, 0.5);
}

main #about-sec .a-list .text {
  width: calc(100% - 35px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding-left: 10px;
}

main #about-sec .a-list .text .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}

@media screen and (max-width: 1024px) {
  main #about-sec .a-list .text .head {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

main #about-sec .a-list .text .head .date {
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: #4380db;
  padding: 5px 10px;
  border: 1px solid rgba(67, 128, 219, 0.5);
  border-radius: 4px;
  margin-right: 8px;
  white-space: nowrap;
}

main #about-sec .a-list .text .head #clockdiv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-radius: 3px;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  main #about-sec .a-list .text .head #clockdiv {
    margin-top: 12px;
  }
}

main #about-sec .a-list .text .head #clockdiv > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-right: 1px;
  background: #dc030c;
  padding: 3px 5px;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
  main #about-sec .a-list .text .head #clockdiv > div {
    font-size: 15px;
  }
}

main #about-sec .a-list .text .head #clockdiv > div:last-child {
  margin-right: 0;
}

main #about-sec .a-list .text .head #clockdiv > div span {
  font-weight: 600;
  margin-right: 4px;
  text-transform: uppercase;
}

main #about-sec .a-list .text .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: #101010;
  height: 48px;
  overflow: hidden;
}

main #about-sec .a-list:hover {
  background: transparent;
}

main #about-sec .a-list:hover .text .title {
  color: #dc030c;
}

main #message-sec {
  margin: 80px 0;
}

@media screen and (max-width: 1024px) {
  main #message-sec {
    margin: 50px 0 0;
  }
}

main #message-sec .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

main #message-sec .inner > div {
  width: 50%;
  padding: 40px;
}

@media screen and (max-width: 1024px) {
  main #message-sec .inner > div {
    width: 100%;
  }
}

main #message-sec .inner > div.president-message {
  background: rgba(67, 128, 219, 0.1);
  border-radius: 15px 0 0 15px;
}

main #message-sec .inner > div.secretary-message {
  background: rgba(220, 3, 12, 0.1);
  border-radius: 0 15px 15px 0;
}

main #message-sec .inner > div h2 {
  margin-bottom: 25px;
}

main #message-sec .inner > div .home-msg p {
  font-weight: 500;
  display: none;
}

main #message-sec .inner > div .home-msg p:first-child {
  display: block;
}

main #message-sec .inner > div .home-msg p:nth-child(2) {
  display: block;
}

main #message-sec .inner > div img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

main #membership-awards {
  position: relative;
  padding: 0;
}

main #membership-awards:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgba(220, 3, 12, 0.1);
}

@media screen and (max-width: 1024px) {
  main #membership-awards:before {
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
    display: none;
  }
}

main #membership-awards:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgba(67, 128, 219, 0.1);
}

@media screen and (max-width: 1024px) {
  main #membership-awards:after {
    width: 100%;
    height: 50%;
    display: none;
  }
}

main #membership-awards .container {
  position: relative;
  z-index: 10;
}

main #membership-awards .container:before {
  content: "";
  width: 100vw;
  height: 10px;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #4380db), color-stop(0%, #dc030c));
  background: linear-gradient(to right, #4380db 50%, #dc030c 0%);
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

main #membership-awards .membership {
  padding: 40px 0 100px;
  position: relative;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  main #membership-awards .membership {
    position: relative;
    padding: 20px 20px 75px;
    width: 100vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background: rgba(67, 128, 219, 0.1);
  }
}

main #membership-awards .membership .bg {
  position: absolute;
  bottom: 0;
  right: 0;
}

main #membership-awards .membership .bg img {
  width: auto;
  height: 290px;
}

@media screen and (max-width: 1024px) {
  main #membership-awards .membership .bg img {
    height: 180px;
  }
}

main #membership-awards .membership h2 img {
  margin-right: 8px;
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

main #membership-awards .membership .icon-list {
  margin-top: 60px;
}

main #membership-awards .membership .icon-list li {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main #membership-awards .membership .icon-list li img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 8px;
}

main #membership-awards .membership .icon-list li a {
  font-size: 20px;
  font-weight: 600;
  color: #4380db;
}

main #membership-awards .membership .icon-list li a:hover {
  color: #dc030c;
}

main #membership-awards .meeting {
  padding: 40px 0 0 10px;
}

@media screen and (max-width: 1024px) {
  main #membership-awards .meeting {
    position: relative;
    padding: 20px;
    width: 100vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background: rgba(220, 3, 12, 0.1);
  }
}

main #membership-awards .meeting .heading {
  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-bottom: 15px;
}

@media screen and (max-width: 1024px) {
  main #membership-awards .meeting .heading {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

main #membership-awards .meeting .heading h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1024px) {
  main #membership-awards .meeting .heading h2 {
    margin-bottom: 15px;
    width: 100%;
  }
}

main #membership-awards .meeting .heading h2 img {
  margin-right: 15px;
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

main #membership-awards .meeting .meeting-list {
  width: 100%;
  height: 265px;
  padding: 30px 35% 20px 20px;
  background-repeat: no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 1024px) {
  main #membership-awards .meeting .meeting-list {
    background-image: none !important;
    padding: 15px 0 0;
    height: auto;
  }
}

main #membership-awards .meeting .meeting-list .date {
  font-size: 13px;
  color: #717171;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}

main #membership-awards .meeting .meeting-list .date i {
  margin-right: 5px;
}

main #membership-awards .meeting .meeting-list .title {
  font-size: 16px;
  color: #101010;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 10px;
  height: 40px;
  overflow: hidden;
}

main #membership-awards .meeting .meeting-list .para {
  font-size: 13px;
  color: #555;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 10px;
  height: 55px;
  overflow: hidden;
}

main #membership-awards .meeting .meeting-list .btn {
  border-color: #dc030c;
  color: #dc030c;
  padding: 8px 15px;
  line-height: 1;
  font-size: 15px;
}

main #membership-awards .meeting .meeting-list .btn:hover {
  -webkit-box-shadow: 150px 0 0 inset #dc030c;
          box-shadow: 150px 0 0 inset #dc030c;
  color: #fff;
}

main #monthly-meeting {
  margin: 60px 30px 50px;
}

@media screen and (max-width: 1024px) {
  main #monthly-meeting {
    padding-top: 50px;
  }
}

main #monthly-meeting .heading {
  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;
  margin-bottom: 25px;
  padding: 0 10px;
}

main #monthly-meeting .heading h2 {
  text-align: left;
  margin: 0;
}

main #monthly-meeting .heading .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main #monthly-meeting .heading .right .navigation {
  margin: 0 0 0 15px;
  top: 0;
  right: 0;
  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;
}

main #monthly-meeting .heading .right .navigation a {
  position: relative;
  background: transparent;
  width: 42px;
  height: 42px;
  border: 1px solid #4380db;
  margin: 0 3px;
  font-size: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border-radius: 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;
}

main #monthly-meeting .heading .right .navigation a i {
  font-size: 18px;
  color: #4380db;
}

main #monthly-meeting .heading .right .navigation a:hover {
  background: #4380db;
  border-color: #4380db;
}

main #monthly-meeting .heading .right .navigation a:hover i {
  color: #fff;
}

main #monthly-meeting .meeting-list .item {
  background: #fff;
  -webkit-box-shadow: 0 0 12px rgba(16, 16, 16, 0.2);
          box-shadow: 0 0 12px rgba(16, 16, 16, 0.2);
  margin: 10px;
  padding: 25px 20px;
}

main #monthly-meeting .meeting-list .item .date {
  font-size: 14px;
  color: #999;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
}

main #monthly-meeting .meeting-list .item .date i {
  margin-right: 5px;
}

main #monthly-meeting .meeting-list .item .title {
  font-size: 17px;
  color: #101010;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 10px;
  height: 40px;
  overflow: hidden;
}

main #monthly-meeting .meeting-list .item .para {
  font-size: 13px;
  color: #555;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 15px;
  height: 55px;
  overflow: hidden;
}

main #executive-committee {
  padding: 150px 0 50px;
}

@media screen and (max-width: 1024px) {
  main #executive-committee {
    padding: 50px 0;
  }
}

main #executive-committee h2 {
  margin-bottom: 25px;
  text-align: center;
}

main #executive-committee .team-lists {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  margin-bottom: 30px;
}

@media screen and (max-width: 1024px) {
  main #executive-committee .team-lists {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 60px;
  }
}

main #executive-committee .team-lists .item {
  position: relative;
  background: #f4f4f4;
  height: auto;
  aspect-ratio: 4/2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-align: center;
  border-radius: 20px 20px 0 0;
  margin-bottom: 50px;
  padding: 0 15px;
}

@media screen and (max-width: 1024px) {
  main #executive-committee .team-lists .item {
    margin-bottom: 15px;
    aspect-ratio: auto;
    padding: 30px 0;
  }
}

main #executive-committee .team-lists .item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  background: rgba(67, 128, 219, 0.1);
  width: 100%;
  height: 0;
  border-radius: 20px 20px 0 0;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

main #executive-committee .team-lists .item:hover:before {
  height: 100%;
}

main #executive-committee .team-lists .item .thumb {
  margin-bottom: 15px;
  margin-top: -100px;
  position: relative;
  border-radius: 50%;
  border: 10px solid #fff;
  overflow: hidden;
  background-image: url("../img/team-bg.png");
  background-size: 95%;
  background-position: -1px 25%;
  background-repeat: no-repeat;
  z-index: 10;
}

main #executive-committee .team-lists .item .thumb img {
  position: relative;
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 10px solid transparent;
  border-radius: 50%;
  z-index: 5;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

@media screen and (max-width: 1024px) {
  main #executive-committee .team-lists .item .thumb img {
    width: 90px;
    height: 90px;
  }
}

main #executive-committee .team-lists .item .name {
  font-size: 18px;
  color: #101010;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  z-index: 10;
}

@media screen and (max-width: 1024px) {
  main #executive-committee .team-lists .item .name {
    font-size: 15px;
  }
}

main #executive-committee .team-lists .item .deg {
  font-size: 16px;
  color: #6d6e76;
  line-height: 1;
  font-weight: 400;
  z-index: 10;
}

main #executive-committee .team-lists .item .other {
  font-size: 13px;
  color: #6d6e76;
  line-height: 1.4;
  font-weight: 400;
  margin-top: 10px;
  overflow: hidden;
  z-index: 10;
}

main #quick-link {
  margin: 80px 0;
}

@media screen and (max-width: 1024px) {
  main #quick-link {
    margin: 50px 0;
  }
}

main #quick-link .inner {
  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-column-gap: 40px;
          column-gap: 40px;
}

@media screen and (max-width: 1024px) {
  main #quick-link .inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

main #quick-link .inner > div {
  overflow: hidden;
  background: #f4f4f4;
  width: 280px;
  aspect-ratio: 1/1;
  padding: 0 25px 30px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(16, 16, 16, 0.1);
}

@media screen and (max-width: 1024px) {
  main #quick-link .inner > div:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1024px) {
  main #quick-link .inner > div {
    width: 85%;
    margin-bottom: 20px;
    aspect-ratio: auto;
  }
}

main #quick-link .inner > div img {
  height: 125px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

main #quick-link .inner > div h2 {
  font-size: 25px;
  line-height: 1;
  font-weight: 600;
  color: #101010;
  margin-bottom: 8px;
  text-transform: uppercase;
  text-align: center;
}

main #quick-link .inner > div p {
  font-size: 14px;
  line-height: 18px;
  color: #101010;
  font-weight: 400;
  margin-bottom: 15px;
  text-align: center;
}

main #quick-link .inner > div a.link {
  font-size: 14px;
  text-transform: uppercase;
  color: #dc030c;
  line-height: 1;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main #quick-link .inner > div a.link i {
  margin-left: 6px;
  color: #dc030c;
}

main #quick-link .inner > div a.link:hover {
  color: #101010;
}

main #quick-link .inner > div a.link:hover i {
  color: #101010;
}

main #quick-link .inner > div.donors {
  text-align: right;
}

main #quick-link .inner > div.donors img {
  height: 73px;
  position: relative;
  right: -25px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
  margin-top: 40px;
  margin-bottom: 32px;
}

main #quick-link .inner > div:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

main #gallery h2 {
  margin-bottom: 30px;
}

main #gallery .tag {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  background: #dc030c;
  padding: 7px 20px;
  margin-bottom: 10px;
}

main #gallery .btn {
  background: #101010;
}

@media screen and (max-width: 1024px) {
  main #gallery .btn {
    margin-bottom: 40px;
  }
}

main #gallery .owl-nav {
  position: absolute;
  width: auto;
  margin: 0;
  bottom: 20px;
  right: 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;
}

main #gallery .owl-nav button {
  position: relative;
  background: transparent;
  width: 45px;
  height: 45px;
  border: 1px solid #fff;
  margin: 0 3px;
  font-size: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border-radius: 0;
}

main #gallery .owl-nav button.owl-next span {
  display: none;
}

main #gallery .owl-nav button.owl-next:before {
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  line-height: 30px;
  font-weight: 800;
  color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

main #gallery .owl-nav button.owl-prev span {
  display: none;
}

main #gallery .owl-nav button.owl-prev:before {
  position: absolute;
  content: "\f104";
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  line-height: 30px;
  font-weight: 800;
  color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

main #gallery .owl-nav button:hover {
  background: rgba(67, 128, 219, 0.7);
  border-color: #4380db;
}

main #dashboard {
  padding: 80px 0;
  min-height: calc(100vh - 300px);
}

@media screen and (max-width: 1024px) {
  main #dashboard {
    padding: 50px 0;
  }
}

main #dashboard h2 {
  margin-bottom: 20px;
}

main #dashboard .side-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  main #dashboard .side-menu {
    margin-bottom: 30px;
  }
}

main #dashboard .side-menu li {
  margin-bottom: 1px;
}

main #dashboard .side-menu li a {
  display: block;
  padding: 15px;
  line-height: 1;
  text-transform: uppercase;
  background: #f1f1f1;
  font-weight: 500;
}

main #dashboard .side-menu li.logout a {
  font-weight: 600;
  color: #dc030c;
}

main #dashboard .side-menu li.active a {
  background: rgba(67, 128, 219, 0.7);
  color: #fff;
}

main #dashboard .btn {
  margin-top: 15px;
}

main #dashboard .amount {
  width: 300px;
  display: inline-block;
  padding: 0;
  border: 1px solid rgba(220, 3, 12, 0.2);
  background: rgba(220, 3, 12, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

main #dashboard .amount h3 {
  font-size: 28px;
  text-align: left;
  font-weight: 600;
  line-height: 1;
  margin: 0;
  padding: 20px 20px 0;
}

main #dashboard .amount h3 span {
  display: block;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 6px;
}

main #dashboard .amount .btn {
  display: block;
  width: 100%;
  background: #dc030c;
  margin-top: 20px;
  border-radius: 0;
}

main #dashboard .amount .btn:hover {
  -webkit-box-shadow: 300px 0 0 #4380db inset;
          box-shadow: 300px 0 0 #4380db inset;
}

main #dashboard .after-member {
  margin-bottom: 25px;
}

main #dashboard .after-member .amount {
  width: 300px;
  display: inline-block;
  padding: 0;
  border: 1px solid rgba(220, 3, 12, 0.2);
  background: rgba(220, 3, 12, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

main #dashboard .after-member .amount h3 {
  font-size: 20px;
  text-align: left;
  font-weight: 600;
  line-height: 1;
  margin: 0;
  padding: 20px 20px 0;
}

main #dashboard .after-member .amount h3 span {
  display: block;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 6px;
}

main #dashboard .after-member .amount .btn {
  display: block;
  width: 100%;
  background: #dc030c;
  margin-top: 20px;
  border-radius: 0;
}

main #dashboard .after-member .amount .btn:hover {
  -webkit-box-shadow: 300px 0 0 #4380db inset;
          box-shadow: 300px 0 0 #4380db inset;
}

main #dashboard .billing-history {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 15px;
}

main #dashboard .billing-history thead {
  background: #ddd;
}

main #dashboard .billing-history thead th {
  padding: 10px 8px;
}

main #dashboard .billing-history tbody td {
  padding: 8px 10px;
}

main #dashboard .events_calendar_list .event-calendar-action a {
  padding: 10px 15px;
  background: #dc030c;
  color: #fff;
}

main #dashboard .events_calendar_list .event-calendar-action a:hover i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

main #dashboard .product.add_to_cart_inline {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: auto;
  border: 1px solid #dc030c;
  margin: 0 0 0 15px;
  border-radius: 10px;
  padding: 20px;
}

main #dashboard .product.add_to_cart_inline:before, main #dashboard .product.add_to_cart_inline:after {
  display: none;
}

main #dashboard .product.add_to_cart_inline .woocommerce-Price-amount {
  font-size: 22px;
  font-weight: 700;
}

main #dashboard .product.add_to_cart_inline .add_to_cart_button {
  border-radius: 5px;
}

main #dashboard .product.add_to_cart_inline .add_to_cart_button:hover {
  background-color: #4380db;
}

main #dashboard .woocommerce-info:before, main #dashboard .woocommerce-message:before {
  position: relative;
  top: auto;
  left: auto;
}

main #dashboard .woocommerce-info .woocommerce-Button, main #dashboard .woocommerce-info .button, main #dashboard .woocommerce-message .woocommerce-Button, main #dashboard .woocommerce-message .button {
  display: none;
}

main #dashboard.status-publish p a {
  font-weight: 600;
  color: #dc030c;
}

main #dashboard .woocommerce-Addresses .woocommerce-Address {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px dashed #eee;
}

main #dashboard .woocommerce-Addresses .woocommerce-Address:last-child {
  border: 0;
  margin: 0;
  padding: 0;
}

main #dashboard .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 15px;
}

main #dashboard .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title:before, main #dashboard .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title:after {
  display: none;
}

main #dashboard .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title h2 {
  margin: 0;
  font-size: 25px;
}

@media (max-width: 992px) {
  main #dashboard .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title h2 {
    margin-bottom: 15px;
  }
}

main #dashboard .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title a.edit {
  padding: 10px 15px;
  border: 1px solid #dc030c;
  border-radius: 5px;
  color: #dc030c;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

main #dashboard .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title a.edit:hover {
  background-color: #dc030c;
  color: #fff;
}

main #dashboard .user-registration {
  max-width: 1000px;
  margin: 0 auto;
}

main #dashboard .woocommerce-form-login {
  max-width: 450px;
  margin: 0 auto;
}

main #dashboard .woocommerce-form-login .form-row {
  width: 100% !important;
}

main #dashboard .woocommerce-form-login .form-row .woocommerce-form__label-for-checkbox {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 15px !important;
}

main #dashboard .woocommerce-form-login .form-row .woocommerce-form__label-for-checkbox .woocommerce-form__input {
  width: 15px;
  height: 15px;
  min-height: auto !important;
  padding: 0;
}

main #dashboard .woocommerce-form-login .woocommerce-form-login__submit {
  padding: 15px 25px;
  background-color: #dc030c;
  color: #fff;
}

main #login {
  padding: 100px 0;
}

main #login form {
  padding: 50px 30px 30px;
  border: 1px solid #ddd;
  border-radius: 15px;
  position: relative;
}

main #login form h2 {
  position: absolute;
  top: -30px;
  left: 15px;
  padding: 10px 25px 10px 15px;
  background: #fff;
}

main #login form .forgot {
  color: #dc030c;
}

main #register {
  padding: 100px 0;
}

main #register form {
  padding: 50px 30px 30px;
  border: 1px solid #ddd;
  border-radius: 15px;
  position: relative;
}

main #register form h2 {
  position: absolute;
  top: -30px;
  left: 15px;
  padding: 10px 25px 10px 15px;
  background: #fff;
}

main #register form .btn {
  margin-top: 15px;
}

main #register form .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

main #register form .head h4 {
  font-size: 20px;
  margin-top: 10px;
}

main #register form .head .form-group {
  margin: 0;
}

main #checkout {
  padding: 100px 0;
}

main #checkout form {
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 15px;
  position: relative;
}

main #checkout .btn {
  margin-top: 15px;
}

main #about .thumb img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

main #meetings .item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 15px;
}

@media screen and (max-width: 1024px) {
  main #meetings .item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 30px;
  }
}

main #meetings .item.upcoming {
  border-top: 1px solid #dc030c;
}

main #meetings .item .time-place {
  position: relative;
  background: #dc030c;
  width: 200px;
  padding: 20px;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  main #meetings .item .time-place {
    width: 100%;
  }
}

main #meetings .item .time-place strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

main #meetings .item .time-place:before {
  position: absolute;
  bottom: -1px;
  right: -1px;
  content: '';
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' xml:space='preserve'%3E%3Cstyle%3E.st0{fill:%23F3F3F3}%3C/style%3E%3Cpolygon class='st0' points='100,100 0,100 100,0 '/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100%;
}

main #meetings .item .title {
  background: #F3F3F3;
  width: calc(100% - 200px);
  padding: 25px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: 500;
  text-transform: none;
  color: #101010;
}

@media screen and (max-width: 1024px) {
  main #meetings .item .title {
    width: 100%;
    padding: 20px;
  }
}

main #meetings .item .title a {
  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;
  color: #101010;
}

main #meetings .item .title a i {
  font-size: 22px;
  color: #dc030c;
  margin-left: 15px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

main #meetings .item .title a:hover {
  color: #dc030c;
}

main #meetings .item .register {
  background: #E9E9E9;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

@media screen and (max-width: 1024px) {
  main #meetings .item .register {
    width: 100%;
  }
}

main #meetings .item .register h4 {
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 0;
  padding: 15px 0;
  text-align: center;
}

main #meetings .item .register a.btn {
  width: 100%;
  font-size: 13px;
  white-space: nowrap;
  padding: 10px 18px;
  line-height: 1;
  border-radius: 0;
  text-transform: uppercase;
}

main #meetings .item:hover .title a i {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}

main #meetings #events-list {
  margin-bottom: 60px;
  border-color: #dc030c;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

main #meetings #events-list li.nav-item .nav-link {
  color: #4380db;
  font-size: 20px;
  font-weight: 600;
  padding: 12px 18px;
}

@media screen and (max-width: 1024px) {
  main #meetings #events-list li.nav-item .nav-link {
    font-size: 16px;
    padding: 12px 15px;
  }
}

main #meetings #events-list li.nav-item .nav-link.active {
  background: #dc030c;
  color: #fff;
  border-color: #dc030c;
}

main #meetings #events-list li.nav-item .nav-link:hover {
  border-color: transparent;
}

main #meetings .timerrList {
  position: absolute;
  top: -38px;
  right: 0;
  z-index: 50;
}

main #meetings .timerrList .timerrInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-radius: 8px 0 0 0;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  main #meetings .timerrList .timerrInner {
    margin-top: 12px;
  }
}

main #meetings .timerrList .timerrInner > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-right: 1px;
  background: #dc030c;
  padding: 10px 15px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
  main #meetings .timerrList .timerrInner > div {
    font-size: 15px;
  }
}

main #meetings .timerrList .timerrInner > div:last-child {
  margin-right: 0;
}

main #meetings .timerrList .timerrInner > div span {
  font-weight: 600;
  margin-right: 4px;
  text-transform: uppercase;
}

main #message-content {
  max-width: 1200px;
  margin: 0 auto;
}

main #message-content .thumb {
  margin-bottom: 30px;
}

main #message-content .thumb img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

main #message-content .full-msg {
  border-left: 1px solid #a1a1a1;
  padding-left: 40px;
  margin-left: 75px;
}

@media screen and (max-width: 1024px) {
  main #message-content .full-msg {
    padding-left: 20px;
    margin-left: 20px;
  }
}

main #photo-gallery .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

@media screen and (max-width: 1024px) {
  main #photo-gallery .grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}

main #photo-gallery .item {
  position: relative;
  display: block;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  overflow: hidden;
}

main #photo-gallery .item:before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(0);
          transform: translate(0);
  background: rgba(16, 16, 16, 0.6);
  z-index: 5;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

main #photo-gallery .item img {
  aspect-ratio: 10/8;
  z-index: 2;
}

main #photo-gallery .item span {
  display: block;
  padding: 15px 10px;
  position: absolute;
  text-align: center;
  font-size: 15px;
  color: #fff;
  width: 100%;
  height: auto;
  bottom: -100px;
  left: 0;
  z-index: 10;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

main #photo-gallery .item:hover:before {
  bottom: 0;
  -webkit-transform: translate(1);
          transform: translate(1);
}

main #photo-gallery .item:hover span {
  bottom: 0;
}

main #photo-album .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

@media screen and (max-width: 1024px) {
  main #photo-album .grid {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 0;
    max-width: 90%;
    margin: 0 auto;
  }
}

main #photo-album .item {
  position: relative;
  display: block;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  overflow: hidden;
}

main #photo-album .item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  border-radius: 10px;
  background: rgba(16, 16, 16, 0.6);
  z-index: 5;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

main #photo-album .item i {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  width: 40px;
  font-size: 40px;
  color: #fff;
  z-index: 10;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

main #photo-album .item img {
  aspect-ratio: 10/8;
  padding: 15px;
  position: relative;
}

main #photo-album .item span {
  position: relative;
  padding: 15px 20px;
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  color: #fff;
  background: #4380db;
  width: 100%;
  z-index: 10;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border-radius: 0 0 10px 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  main #photo-album .item span {
    padding: 10px 20px;
    white-space: normal;
  }
}

main #photo-album .item:hover span {
  background: #dc030c;
}

main #photo-album .item:hover:before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

main #photo-album .item:hover i {
  -webkit-transform: translate(-50%, -100%) scale(1);
          transform: translate(-50%, -100%) scale(1);
}

main #members .item {
  position: relative;
  background: #f4f4f4;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-align: left;
  margin-bottom: 25px;
  padding: 25px 20px;
}

@media screen and (max-width: 1024px) {
  main #members .item {
    margin-bottom: 15px;
    aspect-ratio: auto;
    padding: 20px;
  }
}

main #members .item:before {
  position: absolute;
  bottom: -12px;
  right: -15px;
  content: '';
  width: 0;
  height: 0;
  margin: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 28px solid #fff;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}

main #members .item .name {
  font-size: 16px;
  color: #101010;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}

main #members .item .address {
  font-size: 13px;
  color: #101010;
  line-height: 16px;
  font-weight: 400;
  margin-bottom: 4px;
}

main #members .item .deg {
  font-size: 13px;
  color: #6d6e76;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 8px;
}

main #members .item .phone {
  margin-bottom: 0;
}

main #members .item:hover {
  background: rgba(220, 3, 12, 0.8);
}

main #members .item:hover > div {
  color: #fff;
}

main #members .item:hover .thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

main #awards .item {
  position: relative;
  background: #f4f4f4;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-align: center;
  margin-bottom: 25px;
  padding: 25px 20px;
}

@media screen and (max-width: 1024px) {
  main #awards .item {
    margin-bottom: 15px;
    aspect-ratio: auto;
    padding: 30px 0;
  }
}

main #awards .item:before {
  position: absolute;
  bottom: -12px;
  right: -15px;
  content: '';
  width: 0;
  height: 0;
  margin: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 28px solid #fff;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}

main #awards .item .thumb {
  margin-bottom: 15px;
}

main #awards .item .thumb img {
  width: auto;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

main #awards .item .name {
  font-size: 16px;
  color: #101010;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}

main #awards .item:hover {
  background: rgba(220, 3, 12, 0.8);
}

main #awards .item:hover > div {
  color: #fff;
}

main #awards .item:hover .thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

main .timerr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-radius: 3px;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  main .timerr {
    margin-top: 12px;
  }
}

main .timerr > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-right: 1px;
  background: #dc030c;
  padding: 3px 5px;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
  main .timerr > div {
    font-size: 15px;
  }
}

main .timerr > div:last-child {
  margin-right: 0;
}

main .timerr > div span {
  font-weight: 600;
  margin-right: 4px;
  text-transform: uppercase;
}

main #annual-conference {
  padding: 100px 0;
}

@media (max-width: 600px) {
  main #annual-conference {
    padding: 50px 0;
  }
}

main #annual-conference h2.custom-heading {
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  padding: 0 20px;
  margin: 0;
  text-align: center;
}

main #annual-conference .content {
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid #ddd;
  border-radius: 15px;
  position: relative;
}

@media (max-width: 600px) {
  main #annual-conference .content {
    padding: 20px;
  }
}

main #annual-conference .content .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

main #annual-conference .content .head h4 {
  font-size: 20px;
  margin-top: 10px;
}

main #annual-conference .content .head .form-group {
  margin: 0;
}

main #annual-conference .content .btn-group {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

main #annual-conference .content .btn-group .btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

main #annual-conference .content .btn-group .btn i {
  margin-right: 8px;
}

main #annual-conference h3 {
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  main #annual-conference h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

main #annual-conference .head-sec {
  background-color: #f1f1f1;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, #d9e9ff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #d9e9ff 50%, rgba(255, 255, 255, 0) 100%);
  padding: 20px 0;
  margin-bottom: 30px;
}

main #annual-conference .sec {
  background-color: #f1f1f1;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, #ffe3e3), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffe3e3 50%, rgba(255, 255, 255, 0) 100%);
  padding: 30px;
  margin-bottom: 20px;
}

main #annual-conference .sec.text-sec {
  background-color: transparent;
  background: none;
  padding: 0;
  margin-bottom: 30px;
}

main #annual-conference .sec.text-sec table td {
  padding: 0 25px 0 0;
}

@media (max-width: 600px) {
  main #annual-conference .sec.text-sec table td {
    padding: 0 8px 0 0;
  }
}

main #annual-conference .border-sec {
  background: #fbfbfb;
  padding: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 15px;
}

@media (max-width: 600px) {
  main #annual-conference .border-sec h4 strong {
    display: block;
  }
}

main #annual-conference table {
  width: 100%;
  border-collapse: collapse;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

main #annual-conference table td {
  padding: 10px;
}

main #annual-conference table.name-table {
  width: auto;
}

@media (max-width: 600px) {
  main #annual-conference table.name-table td {
    display: block;
    width: 100%;
    padding: 6px 0 !important;
  }
}

main #annual-conference table.members td {
  border-right: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
  font-size: 15px;
  font-weight: 600;
}

main #annual-conference table.members td.b0 {
  border-right: 0;
}

main #annual-conference table.other-conference {
  margin-top: 10px;
}

@media (max-width: 600px) {
  main #annual-conference table.other-conference tr {
    border-bottom: 20px solid #fff;
  }
}

main #annual-conference table.other-conference td {
  border: 1px solid #c7c7c7;
  padding: 12px;
  font-size: 18px;
}

@media (max-width: 600px) {
  main #annual-conference table.other-conference td {
    display: block;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  main #annual-conference table.other-conference td .btn {
    font-size: 15px;
  }
}

main #annual-conference .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 600px) {
  main #annual-conference .list {
    gap: 10px;
    margin-right: 0;
  }
}

main #annual-conference .list li {
  list-style: square;
  font-size: 15px;
  font-weight: 500;
  margin-right: 20px;
}

@media (max-width: 600px) {
  main #annual-conference .list li {
    margin-right: 0;
  }
}

main #annual-conference .list-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  row-gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

main #annual-conference .list-2 li {
  list-style: square;
  font-size: 15px;
  font-weight: 500;
  margin-right: 15px;
}

@media (max-width: 600px) {
  main #annual-conference .list-2 li {
    list-style: inside;
    margin-right: 0;
  }
}

main #video-gallery .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

@media screen and (max-width: 1024px) {
  main #video-gallery .grid {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 20px;
  }
}

main #video-gallery .item {
  position: relative;
  display: block;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  overflow: hidden;
}

main #video-gallery .item:before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(0);
          transform: translate(0);
  background: rgba(16, 16, 16, 0.6);
  z-index: 5;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

main #video-gallery .item img {
  aspect-ratio: 16/9;
  height: auto;
}

main #video-gallery .item .text {
  display: block;
  padding: 15px 10px;
  position: absolute;
  text-align: center;
  font-size: 15px;
  color: #fff;
  width: 100%;
  height: auto;
  bottom: -100px;
  left: 0;
  z-index: 10;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

main #video-gallery .item:hover:before {
  bottom: 0;
  -webkit-transform: translate(1);
          transform: translate(1);
}

main #video-gallery .item:hover span {
  bottom: 0;
}

.home main #executive-committee {
  padding: 0 0 50px;
}

@media screen and (max-width: 1024px) {
  .home main #executive-committee {
    padding: 50px 0;
  }
}

.home main #executive-committee h2 {
  margin-bottom: 115px;
}

@media screen and (max-width: 1024px) {
  .home main #executive-committee h2 {
    margin-bottom: 80px;
  }
}

.home main #executive-committee .team-lists {
  margin-bottom: 0;
}

.home main #executive-committee .team-lists .item .other {
  display: none;
  min-height: auto;
}

.single-meeting-conference main #inner-banner .content .container, .common-album main #inner-banner .content .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.single-meeting-conference main #inner-banner .content .container h1, .common-album main #inner-banner .content .container h1 {
  color: #000;
  background: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  line-height: 30px;
  padding-left: 50px;
  max-width: 900px;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

@media screen and (max-width: 1024px) {
  .single-meeting-conference main #inner-banner .content .container h1, .common-album main #inner-banner .content .container h1 {
    font-size: 16px;
    line-height: 20px;
    padding-left: 20px;
  }
}

.single-meeting-conference main #inner-banner .content .container h4, .common-album main #inner-banner .content .container h4 {
  display: inline-block;
  font-size: 40px;
  color: #fff;
  text-align: right;
  margin: 0;
  padding: 12px 25px;
  background: #dc030c;
}

@media screen and (max-width: 1024px) {
  .single-meeting-conference main #inner-banner .content .container h4, .common-album main #inner-banner .content .container h4 {
    font-size: 30px;
  }
}

.pagination {
  width: 100%;
  margin-top: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 8px;
          column-gap: 8px;
}

.pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 15px;
  border: 0;
  border-radius: 0;
  min-width: 38px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #4380db;
}

.pagination .page-numbers:hover {
  background-color: #dc030c;
  color: #fff;
  border-color: #dc030c;
}

.pagination .page-numbers.dots {
  pointer-events: none;
}

.pagination .current {
  background-color: #dc030c;
  color: #fff;
  pointer-events: none;
}

.pagination .next,
.pagination .prev {
  color: #fff;
}

.pagination .next:hover,
.pagination .prev:hover {
  text-decoration: none;
  color: #fff;
}

#saleEnded {
  display: none;
  color: #dc030c;
}

/* -------- Contact Page Css -------- */
.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact_page_area {
  padding: 80px 0 0;
}

@media screen and (max-width: 1024px) {
  .contact_page_area {
    padding: 50px 0 0;
  }
}

#contact_map_area {
  display: block;
  width: 100%;
  margin-top: 40px;
  margin-bottom: -8px;
}

.contact_frm_area {
  margin-bottom: 30px;
}

@media screen and (max-width: 1024px) {
  .contact_frm_area {
    margin-bottom: 40px;
  }
}

.contact_page_area h3 {
  margin-bottom: 20px;
  font-size: 20px;
}

.cntct_mrgntp {
  margin-top: 50px;
  margin-bottom: 50px;
}

.contact_info {
  padding-left: 40px;
}

@media screen and (max-width: 1024px) {
  .contact_info {
    padding-left: 12px;
  }
}

.contact_frm_area h2,
.contact_info h2 {
  line-height: 17px;
  margin: 0 0 20px;
  padding-bottom: 12px;
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
}

.contact_info p.subtitle {
  margin-bottom: 25px;
}

.wpcf7 .form-row .form-group:first-child {
  margin-right: 5px;
}

.wpcf7 .form-row .form-group:last-child {
  margin-left: 5px;
}

.wpcf7 .form-group p {
  margin-bottom: 0;
}

.wpcf7 .btn:hover {
  background: #dc030c;
}

.single_info {
  margin-bottom: 30px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single_info p {
  margin-bottom: 0;
}

.single_info .con_icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: #fff;
  border: 1px solid #dc030c;
  border-radius: 50px;
  float: left;
  margin-right: 25px;
  background: #dc030c;
  -webkit-transform: .5s;
          transform: .5s;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.single_info a:hover {
  color: #dc030c;
}

.tableIN {
  width: 100%;
  background: #fff;
  margin: 0px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.tableIN td,
th {
  padding: 8px 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #222;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.tableIN tr td:last-child {
  font-size: 12px;
}

.tableIN td a {
  width: 30px;
  height: 30px;
  display: block;
  margin: 0px auto;
}

.tableIN th {
  background-color: red;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}

.tableIN tbody th {
  background-color: #e6e7e8;
}

.tableIN tbody tr:nth-child(1n-1) {
  background-color: #ecebeb;
  -webkit-transition: all 0.125s ease-in-out;
  transition: all 0.125s ease-in-out;
}

.tableIN tbody tr:nth-child(2n-1) {
  background-color: #f6f6f6;
  -webkit-transition: all 0.125s ease-in-out;
  transition: all 0.125s ease-in-out;
}

.tableIN tbody tr:hover {
  background-color: rgba(255, 212, 45, 0.2);
}

.sec-group {
  padding: 25px 0;
  background: #fff;
}

.sec-group h2 {
  margin-bottom: 25px;
  text-align: left;
}

.d-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}

@media (max-width: 1024px) {
  .d-list {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}

@media (max-width: 768px) {
  .d-list {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}

@media (max-width: 600px) {
  .d-list {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 15px;
  }
}

.d-list .item {
  position: relative;
  padding: 20px;
  background: #ededed;
  border-radius: 50px 0 0 0;
}

@media screen and (max-width: 1024px) {
  .d-list .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px 20px;
  }
}

.d-list .item:before {
  position: absolute;
  bottom: -12px;
  right: -15px;
  content: '';
  width: 0;
  height: 0;
  margin: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 28px solid #fff;
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
}

.d-list .item .img {
  width: 110px;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 15px;
}

@media screen and (max-width: 1024px) {
  .d-list .item .img {
    margin-bottom: 10px;
  }
}

.d-list .item .img img {
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1024px) {
  .d-list .item .text {
    width: calc(100% - 80px);
    padding-left: 10px;
  }
}

.d-list .item .name {
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

@media (max-width: 1024px) {
  .d-list .item .name {
    text-align: center;
  }
}

.d-list .item .des {
  font-size: 15px;
  font-weight: 400;
}

@media (max-width: 992px) {
  .sec-group {
    padding: 30px 20px;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 30px;
  -webkit-column-gap: 30px;
          column-gap: 30px;
}

@media (max-width: 992px) {
  .flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 0;
            column-gap: 0;
    row-gap: 30px;
  }
}

.flex > div {
  padding: 30px;
  background: #f1f1f1;
}

@media (max-width: 992px) {
  .flex > div {
    width: 100%;
  }
}

.flex > div h4 {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #cdcdcd;
}

.events_calendar_list .calendar-event-details .calendar-event-content .calendar-event-title {
  font-size: 18px !important;
  line-height: 20px;
}

main #dashboard .events_calendar_list .event-calendar-action a,
main #dashboard .events_calendar_list .event-calendar-action a i {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

main #dashboard .events_calendar_list .event-calendar-action a:hover i {
  margin-left: 5px;
}

.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions .woocommerce-button {
  padding: 10px 15px;
  background: #dc030c;
  color: #fff;
  border-radius: 8px;
  margin-right: 8px;
}

main #dashboard .amount {
  width: auto;
  display: inline-block;
  border: 0;
  background: none;
  border-radius: 5px;
  overflow: hidden;
  padding: 0 !important;
}

.woocommerce-order .extra-buttons {
  margin: 10px 0 40px;
}

.woocommerce-order .extra-buttons .download-invoice-pdf {
  color: #4380db;
  background-color: transparent;
  border: 1px solid #4380db;
}

.woocommerce-order .extra-buttons .download-invoice-pdf:hover {
  color: #fff;
  background-color: #4380db;
}

.woocommerce-table--order-details.shop_table.order_details td div a {
  padding: 10px 15px;
  background: #dc030c;
  color: #fff;
  border-radius: 8px;
  white-space: nowrap;
}

.woocommerce-button.button {
  border-radius: 5px !important;
}

main #dashboard .events_calendar_list .event-calendar-action a {
  line-height: 20px;
}

@media (max-width: 992px) {
  .woocommerce-order .shop_table.order_details thead th,
  .woocommerce-order .shop_table.order_details td {
    display: block;
    width: 100%;
  }
}

table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table .wcod_detail_row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

@media (max-width: 992px) {
  .woocommerce-order .shop_table.order_details thead {
    display: none;
  }
}

.etn-event-single-content-wrap .etn-event-content-body {
  overflow-x: auto;
}

@media (max-width: 992px) {
  .etn-event-single-content-wrap .etn-event-content-body table td {
    padding: 5px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 992px) {
  .etn-event-single-content-wrap .etn-event-content-body table td ul li {
    font-size: 13px !important;
  }
}

.wp-html5vp-video-row {
  margin: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

@media (max-width: 1024px) {
  .wp-html5vp-video-row {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wp-html5vp-video-row {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
}

.wp-html5vp-video-row .video-wrap {
  padding: 0;
}

.wp-html5vp-video-row .video-wrap .video_frame .video_image_frame {
  height: auto;
  aspect-ratio: 16/9;
}

.wc-block-cart .wc-block-cart__submit-container .wc-block-cart__submit-button {
  background-color: #dc030c;
  color: #fff;
  border-radius: 8px;
}

.wc-block-cart .wc-block-cart__submit-container .wc-block-cart__submit-button:hover {
  background-color: #4380db;
}

@media (max-width: 992px) {
  #etn_attendee_details_to_print .etn-ticket-main-wrapper {
    width: 90%;
  }
}

#etn_attendee_details_to_print .etn-ticket-main-wrapper .etn-ticket table tr td {
  padding: 10px;
}

@media (max-width: 992px) {
  #etn_attendee_details_to_print .etn-ticket-main-wrapper .etn-ticket table tr td {
    display: block;
    text-align: center;
  }
}

#etn_attendee_details_to_print .etn-ticket-main-wrapper .etn-ticket-body .etn-ticket-body-top .etn-ticket-body-top-ul {
  max-width: 1200px;
  margin: 15px auto 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 10px;
}

@media (max-width: 992px) {
  #etn_attendee_details_to_print .etn-ticket-main-wrapper .etn-ticket-body .etn-ticket-body-top .etn-ticket-body-top-ul {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
}

#etn_attendee_details_to_print .etn-ticket-main-wrapper .etn-ticket-body .etn-ticket-body-top .etn-ticket-body-top-ul .etn-ticket-body-top-li {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .wcod_row_order_details .wcod_order_data_header {
    text-align: center;
  }
  .wcod_row_order_details .wcod_product_data_container .wcod_product_name_cotaniner {
    margin-top: 15px;
    text-align: left;
  }
  .wcod_row_order_details .wcod_order_details_container .wcod_user_details_data {
    float: none;
    width: 100%;
  }
  .wcod_row_order_details .wcod_order_details_container .wcod_single_product_data {
    float: none;
    width: 100%;
  }
  .wcod_row_order_details .wcod_right_column_elements_header, .wcod_row_order_details .wcod_left_column_elements_header {
    text-align: left;
    font-weight: 700;
    padding-left: 10px;
  }
  .wcod_row_order_details .wcod_customer_details {
    text-align: left;
  }
  .wcod_row_order_details td:before {
    display: none;
  }
}

@media (max-width: 768px) {
  table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table {
    border: 0 !important;
  }
  .woocommerce table.shop_table_responsive tr, .woocommerce-page table.shop_table_responsive tr {
    display: block;
  }
  .woocommerce table.shop_table_responsive tbody th, .woocommerce-page table.shop_table_responsive tbody th {
    display: block;
    margin-top: 20px;
  }
}

@media (min-width: 767px) {
  .etn-event-single-content-wrap .etn-event-entry-title {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (max-width: 766px) {
  .etn-event-single-content-wrap .etn-event-entry-title {
    font-size: 20px;
    line-height: 25px;
  }
}
/*# sourceMappingURL=style.css.map */