/**************************************
    BUTTONS
**************************************/
.int-btn {
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  min-width: 140px;
  text-decoration: none;
  transition: 0.3s;
  border-radius: 16px;
  border: 2px solid #e6eaf0;
}
.int-btn .btn-icon {
  transition: 0.3s;
  display: inline-flex;
}
.int-btn .btn-icon svg {
  width: 12px;
  height: 12px;
}
.int-btn .btn-icon svg path {
  fill: #0A0A0A;
}
.int-btn:hover, .int-btn:focus {
  text-decoration: none;
}

.int-btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(90deg, rgb(91, 182, 230) 0%, rgb(36, 131, 251) 100%);
  transition: color 0.3s, box-shadow 0.3s;
  color: #fff;
  border: 0;
}
.int-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(36, 131, 251) 0%, rgb(91, 182, 230) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.int-btn-primary:hover, .int-btn-primary:focus {
  color: #fff;
}
.int-btn-primary:hover::before, .int-btn-primary:focus::before {
  opacity: 1;
}

/**********************************************
    HAMBURGER
**********************************************/
.hamburger {
  width: 40px;
  position: relative;
  height: 21px;
  cursor: pointer;
}
.hamburger .line {
  position: absolute;
  right: 0;
  height: 2px;
  background-color: #0A0A0A;
  transition: 0.3s;
}
.hamburger .line1 {
  width: 100%;
  top: 0;
}
.hamburger .line2 {
  width: 50%;
  top: 9px;
  opacity: 1;
  visibility: visible;
}
.hamburger .line3 {
  width: 75%;
  top: 18px;
}

header#site-header.menu-btn-clicked .hamburger .line1 {
  top: 9px;
  transform: rotate(-45deg);
}
header#site-header.menu-btn-clicked .hamburger .line2 {
  opacity: 0;
  visibility: hidden;
  top: 9px;
}
header#site-header.menu-btn-clicked .hamburger .line3 {
  top: 9px;
  transform: rotate(45deg);
  width: 100%;
}

/**********************************************
    CARDS
**********************************************/
.card-with-left-icon {
  display: flex;
}
.card-with-left-icon .icon {
  width: 40px;
}
.card-with-left-icon .content {
  width: calc(100% - 40px);
  padding-left: 16px;
}
.card-with-left-icon .content .title {
  transition: 0.3s;
}
.card-with-left-icon .content .text {
  font-size: 12px;
  color: #5F6B7A;
}
.card-with-left-icon:hover {
  color: initial;
}
.card-with-left-icon:hover h6 {
  color: #2483FB;
}

/****************************************
    UTILITIES
****************************************/
.min-w-unset {
  min-width: unset !important;
}

.text-mini {
  font-size: 12px;
}

.rounded-3 {
  border-radius: 16px !important;
}

.text-primary {
  color: #0A0A0A !important;
}

.text-secondary {
  color: #2483FB !important;
}

/****************************************
    HEADER
****************************************/
header#site-header {
  border-bottom: 1px solid #DCE6FA;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 9;
}
@media only screen and (max-width: 1399.5px) {
  header#site-header > .container {
    max-width: calc(100% - 32px) !important;
    width: 100% !important;
  }
}
header#site-header .header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
}
@media only screen and (max-width: 991.5px) {
  header#site-header .header-inner {
    padding: 16px 0;
  }
}
header#site-header .header-inner ul li {
  list-style-type: none;
  position: relative;
}
header#site-header .header-inner ul li a {
  text-decoration: none;
  transition: 0.3s;
}
header#site-header .header-inner .header-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
header#site-header .header-inner .header-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
header#site-header .header-inner .int-btn {
  padding: 8px 16px;
}
header#site-header .header-inner .logo-box .logo img {
  max-width: 185px;
  width: 100% !important;
  height: auto !important;
  position: static !important;
}
header#site-header .header-inner .header-menu {
  transition: 0.3s;
}
@media only screen and (max-width: 991.5px) {
  header#site-header .header-inner .header-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    background-color: rgba(255, 255, 255, 0.768627451);
    border-right: 1px solid #dee2e6;
    padding: 16px;
    backdrop-filter: blur(20px);
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
  }
}
@media only screen and (max-width: 480.5px) {
  header#site-header .header-inner .header-menu {
    width: 100%;
  }
}
header#site-header .header-inner .header-menu .logo-box img {
  width: 100px !important;
}
header#site-header .header-inner .header-menu > ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  gap: 0 36px;
}
@media only screen and (max-width: 1199.5px) {
  header#site-header .header-inner .header-menu > ul {
    gap: 0 24px;
  }
}
@media only screen and (max-width: 991.5px) {
  header#site-header .header-inner .header-menu > ul {
    height: calc(100vh - 176px);
    overflow-y: auto;
    display: block;
  }
}
header#site-header .header-inner .header-menu > ul > li {
  padding: 28px 0;
}
@media only screen and (max-width: 991.5px) {
  header#site-header .header-inner .header-menu > ul > li {
    width: 100%;
    margin-bottom: 16px;
  }
}
header#site-header .header-inner .header-menu > ul > li > a {
  text-decoration: none;
  position: relative;
  color: #0A0A0A;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}
@media only screen and (max-width: 991.5px) {
  header#site-header .header-inner .header-menu > ul > li > a {
    font-size: 20px;
  }
}
header#site-header .header-inner .header-menu > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #DCE6FA;
  list-style-type: none;
  margin: 0;
  width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  border-radius: 0 0 16px 16px;
  padding: 16px 0;
  transform: translateY(-5px);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}
header#site-header .header-inner .header-menu > ul > li > ul li a {
  text-decoration: none;
  display: block;
  padding: 10px 20px;
  transition: 0.3s;
}
header#site-header .header-inner .header-menu > ul > li > ul li a:hover {
  color: white;
  background-color: #2483fb;
}
header#site-header .header-inner .header-menu > ul > li.has-child-menu > a:after {
  content: "";
  width: 10px;
  height: 10px;
  background-image: url("../images/arrow-down-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
header#site-header .header-inner .header-menu > ul > li.has-child-menu:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header#site-header .header-inner .header-menu > ul > li.has-child-menu:hover > .header-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-29%, 0);
}
header#site-header .header-inner .header-menu > ul > li:hover > a {
  color: #2483FB;
}
header#site-header .header-inner .header-menu > ul > li:hover > a > svg path {
  stroke: #2483FB;
}
header#site-header .header-inner .header-menu > ul > li:hover > a:after {
  filter: saturate(20);
}

header#site-header.menu-btn-clicked .header-inner .header-menu {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.header-mega-menu {
  position: absolute;
  left: 0;
  width: 800px;
  top: 100%;
  background-color: white;
  transform: translate(-29%, -10px);
  border: 1px solid #E6EAF0;
  border-radius: 0 0 16px 16px;
  transition: 0.3s;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}
.header-mega-menu ul li a {
  color: #0A0A0A;
  transition: 0.3s;
}
.header-mega-menu ul li a:hover {
  color: #0A0A0A;
}
.header-mega-menu .content-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.header-mega-menu .content-wrapper .left-col {
  width: 230px;
  padding: 16px 0;
  border-right: 1px solid #E6EAF0;
  background-color: #F7FAFC;
}
.header-mega-menu .content-wrapper .right-col {
  width: calc(100% - 230px);
}
.header-mega-menu .content-wrapper .nav-pills .nav-item {
  margin-bottom: 1px;
}
.header-mega-menu .content-wrapper .nav-pills .nav-item:last-child {
  margin-bottom: 0;
}
.header-mega-menu .content-wrapper .nav-pills .nav-item .nav-link {
  border-radius: 0;
  color: #0A0A0A;
  width: 100%;
  font-size: 14px;
  padding: 16px;
  transition: 0s;
}
.header-mega-menu .content-wrapper .nav-pills .nav-item .nav-link.active, .header-mega-menu .content-wrapper .nav-pills .nav-item .nav-link:hover, .header-mega-menu .content-wrapper .nav-pills .nav-item .nav-link:focus {
  background: linear-gradient(90deg, #2483FB 0%, #2887FA 7.14%, #2C8BF8 14.29%, #2F8FF7 21.43%, #3393F6 28.57%, #3796F4 35.71%, #3B9AF3 42.86%, #3F9EF1 50%, #43A1F0 57.14%, #47A5EE 64.29%, #4BA8ED 71.43%, #4FACEB 78.57%, #53AFE9 85.71%, #57B3E8 92.86%, #5BB6E6 100%);
  color: white;
}

/* Mobile menu */
body.menu-drawer-open {
  overflow: hidden;
}

.mobile-header-menu-box {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 440px;
  width: 100%;
  background-color: white;
  height: 100%;
  border-right: 1px solid #dee2e6;
  display: none;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  transform: translateX(-100%);
}
@media only screen and (max-width: 991.5px) {
  .mobile-header-menu-box {
    display: flex;
  }
}

.menu-btn-clicked .mobile-header-menu-box {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-header-menu-box .logo-box {
  padding: 16px;
  min-height: 64px;
  border-bottom: 1px solid #dee2e6;
}

.mobile-header-menu-box .logo-box > a {
  max-width: 176px;
  width: 100%;
  display: block;
}

.mobile-header-menu-box .mobile-header-menu-body {
  height: calc(100% - 75px);
  background-color: white;
}

.mobile-header-menu-box .mobile-header-menu-body > nav {
  max-height: calc(100% - 65px);
  overflow: auto;
}

.mobile-header-menu-box .mobile-header-menu-body > nav ul li a {
  display: block;
  color: #0A0A0A;
}
.mobile-header-menu-box .mobile-header-menu-body > nav ul li a:hover {
  color: #2483FB;
}
.mobile-header-menu-box .mobile-header-menu-body > nav ul li a:active, .mobile-header-menu-box .mobile-header-menu-body > nav ul li a:focus {
  color: #2483FB;
}

.mobile-header-menu-box .mobile-header-menu-body > nav > ul > li > a {
  padding: 12px 16px;
  font-size: 18px;
  border-bottom: 1px solid #dee2e6;
  position: relative;
  background-color: rgba(255, 255, 255, 0.75);
}

.mobile-header-menu-box .mobile-header-menu-body > nav > ul > li:first-child > a {
  border-top: 1px solid #dee2e6;
}

.mobile-header-menu-box .mobile-header-menu-body > nav > ul > li.has-mobile-dropdown-menu > a:before {
  content: "";
  width: 46px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  border-left: 1px solid #dee2e6;
}

.mobile-header-menu-box .mobile-header-menu-body > nav > ul > li.has-mobile-dropdown-menu > a:after {
  content: "";
  width: 46px;
  height: 100%;
  background-image: url("../images/arrow-down-grey.svg");
  background-repeat: no-repeat;
  background-size: 12px auto;
  background-position: center;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  transition: transform 0.3s ease;
}

.mobile-header-menu-box .mobile-header-menu-body > nav > ul > li.has-mobile-dropdown-menu > a.active:after {
  transform: rotate(180deg);
}

.mobile-header-menu-body > nav > ul {
  overflow: hidden;
  margin: 0;
}

.has-mobile-dropdown-menu > .dropdown-box {
  border-bottom: 1px solid #dee2e6;
  background-color: rgba(0, 0, 0, 0.031372549);
  display: none;
}

.has-mobile-dropdown-menu > .dropdown-box h5 {
  margin-bottom: 12px;
}

.has-mobile-dropdown-menu > .dropdown-box ul {
  margin-left: 0;
  padding: 16px;
}

.has-mobile-dropdown-menu > .dropdown-box ul:not(:last-child) {
  margin-bottom: 24px;
}

.has-mobile-dropdown-menu > .dropdown-box li:not(:last-child) {
  margin-bottom: 16px;
}

/****************************************
  MAIN STYLES
****************************************/

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