:root {
  --body-text: 'cmiRegular', 'Segeo UI', Arial, sans-serif;
  --heading-text: 'cmiDisplay', 'Segeo UI', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-text);
  font-weight: 600;
}

/*Common Css*/
body {
  font-family: var(--body-text);
  font-size: 16px;
  background: rgb(12,33,100);
  background: linear-gradient(-90deg, rgba(12,33,100,1) 0%, rgba(10,18,44,1) 100%);
  position: relative;
  color: var(--white);
}

body:before {
  content:"";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/pattern.png) 100% 100% no-repeat;
}

body.h-100 {
  overflow: hidden;
}

#main {
  height: calc(100vh - 160px);
  overflow: hidden;
  overflow-y: auto;
  margin-top: 88px;
  position: relative;
  z-index: 10;
  padding-top: 60px;
  padding-bottom: 80px;
}

.toolbar-horizontal #main {
  margin-top: 50px;
}

.toolbar-horizontal.toolbar-tray-open #main {
  margin-top: 10px;
}


.show-mobile {
  display: none;
}


.tabbing-section .image-container img {
  width: 100%;
  height: auto;
  border: 1px solid #4660b6;
  border-radius: 18px;
}

.tabbing-section .content-col {
  padding-left: 64px;
  color: var(--white);
}

.section-title h3 {
  font-size: 44px;
  margin-top: 40px;
}

.section-title h4 {
  font-size: 22px;
  font-weight: 400;
}

.tabbing-container {
  margin-top: 40px;
}

.tabbing-container .tab-content {
  padding: 30px 0;
}

.tabbing-container .nav-tabs {
  padding-bottom: 20px;
  border-bottom-color: #4660b6;
}

.tabbing-container .nav-tabs .nav-link {
  font-size: 22px;
  color: var(--white);
  padding: 0;
  flex: 0 0 130px;
  max-width: 130px;
  font-family: var(--body-text);
  margin: 0 20px;
}

.tabbing-container .nav-tabs .nav-link:first-child {
  margin-left: 0;
}



.tabbing-container .nav-tabs .nav-link:hover {
  border-color: transparent;
}

.tabbing-container .nav-tabs .nav-link.active {
  background-color: transparent;
  border-color: transparent;
}

.tabbing-container .icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #071234;
  border: 1px solid #2657fc;
  display: block;
  text-indent: -999em;
  margin: 0 auto 12px;
  background-position: 0 0;
  background-repeat: no-repeat;
}

.tabbing-container .icon.icon-video {
  background-image: url(../images/icon-video.png);
  background-size: 72px auto;
}

.tabbing-container .icon.icon-quick {
  background-image: url(../images/icon-quick.png);
  background-size: 72px auto;
}

.tabbing-container .icon.icon-troubleshoot {
  background-image: url(../images/icon-troubleshoot.png);
  background-size: 72px auto;
}

.tabbing-container .nav-tabs .nav-link.active .icon {
  background-color: #c77d1c;
  border-color: #c77d1c;
}

.tabbing-container .tab-content ul {
  margin: -24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.tabbing-container .tab-content li {
  position: relative;
  margin-top: 24px;
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 24px;
}

.tabbing-container .tab-content li:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 7px;
  border-radius: 50%;
  background-color: var(--white);
  width: 7px;
  cursor: pointer;
  height: 7px;
}

.tabbing-container .tab-content li:hover:before {
  background-color: #c77d1c;
}

.tabbing-container .tab-content li a {
  color: var(--white);
  text-decoration: none;
}

.tabbing-container .tab-content li a:hover {
  text-decoration: underline;
}

.tabbing-container .tab-content li a strong {
  font-weight: 400;
}


.user-login-form {
  width: 568px;
  margin: 0 auto;
  padding: 10px 20px;
  color: var(--text-color);
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 4px 4px 10px rgba(58, 58, 58, 0.28);
}

.path-user .region-breadcrumb {
  display: none;
}

.btn.btn-primary {
  background-color: #c77d1c;
  border-color: #c77d1c;
}