/*!
 * AEGS - 12/05/2020
 * Web Design: digidea.com.tr
 * Front End Web Developer: Ferdi Tarakci / ferditarakci.com
 * Back End Web Developer: Mustafa Akbas / akbas.net
 */
.wow {
  visibility: hidden;
}

.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
          animation-name: pulse;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
          animation-name: bounceIn;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
          animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
          animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
          animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
          animation-name: slideInUp;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}

body,
input,
select,
textarea,
button,
h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo', sans-serif;
}

html {
  background: #f5f6fa;
}

body {
  line-height: 1.4;
  font-size: 16px;
  font-weight: 400;
  color: #414242;
}

body + div {
  display: none !important;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 20px;
  line-height: 1.15;
  font-weight: 600;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
}

p + h1, p + h2, p + h3, p + h4, p + h5, p + h6 {
  margin-top: 40px;
}

h1 {
  font-size: 22px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 15px;
}

h6 {
  font-size: 14px;
}

a {
  color: #414242;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
}

a:hover {
  text-decoration: underline;
}

.red {
  color: #ea252d;
}

.navyblue {
  color: #ea252d;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.showHide {
  display: none;
}

.video {
  position: relative;
  width: 100%;
}

.video > .video-inner {
  overflow: hidden;
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  background: #f5f5f5 url(../images/loading.svg) no-repeat 50%;
  background-size: 48px auto;
}

.video .play-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.8);
}

.video .play-btn::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  padding-left: 7px;
  content: "\f04b";
  line-height: 100px;
  font-family: "Font Awesome 5 Pro";
  font-size: 32px;
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  color: #414242;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 9px 0px rgba(26, 26, 26, 0.4);
          box-shadow: 0px 3px 9px 0px rgba(26, 26, 26, 0.4);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mobile .video video {
  width: calc(100% + 1px);
}

.video video::-internal-media-controls-download-button {
  display: none;
}

.video video::-webkit-media-controls-enclosure {
  overflow: hidden;
}

.image {
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
  background: #f5f5f5 url(../images/loading.svg) no-repeat 50%;
  background-size: 32px auto;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.image.loaded {
  background-image: none;
}

.image > span {
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 56.25%;
  background: none no-repeat 50%;
  background-size: cover;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.image > span > img {
  display: none !important;
}

.image.video-image::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  margin-left: -21px;
  padding-left: 3px;
  content: "\f04b";
  line-height: 42px;
  font-family: "Font Awesome 5 Pro";
  font-size: 14px;
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  color: #414242;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 9px 0px rgba(26, 26, 26, 0.4);
          box-shadow: 0px 3px 9px 0px rgba(26, 26, 26, 0.4);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.item:hover .image > span, .image:not(.no-effect):hover > span {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.form {
  position: relative;
  width: 100%;
}

.form-label, .form-label-group {
  position: relative;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.form-label-group {
  width: 102%;
  margin-left: -2%;
  margin-bottom: 0;
}

.form-label-group .form-label {
  width: 48%;
  margin-left: 2%;
}

.form-label > span,
.form-label > div {
  position: relative;
  width: 100%;
}

.form-label > span {
  margin-bottom: 5px;
}

.form-label > div > i[class*="fa"] {
  position: absolute;
  top: 50%;
  right: 20px;
  font-size: 18px;
  color: #e8e7e7;
  pointer-events: none;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-label > div > textarea + i[class*="fa"] {
  top: 11%;
}

select,
textarea,
input[type="tel"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="text"] {
  display: block;
  width: 100%;
  height: 60px;
  line-height: 28px;
  margin: 0;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 400;
  color: #414242;
  border: 1px solid #fff;
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0px 3px 21px 0px rgba(20, 23, 69, 0.11);
          box-shadow: 0px 3px 21px 0px rgba(20, 23, 69, 0.11);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

select:focus,
textarea:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
input[type="text"]:focus {
  color: #2f3032;
  border-color: #aed7f7;
}

.error select, .error
textarea, .error
input[type="tel"], .error
input[type="email"], .error
input[type="search"], .error
input[type="password"], .error
input[type="text"] {
  border-color: #ea252d;
  -webkit-box-shadow: 0px 0px 4px 4px rgba(255, 0, 0, 0.17);
          box-shadow: 0px 0px 4px 4px rgba(255, 0, 0, 0.17);
}

textarea {
  min-height: 120px;
  height: 120px;
}

select {
  background-image: url(../images/select_arrow_gray.png);
  background-repeat: no-repeat;
  background-position: 90% 50%;
  background-position: calc(100% - 20px) 50%;
  background-size: 10px auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.r2x select {
  background-image: url(../images/select_arrow_gray@2x.png);
}

.r3x select {
  background-image: url(../images/select_arrow_gray@3x.png);
}

select.white {
  background-image: url(../images/select_arrow_white.png);
}

.r2x select.white {
  background-image: url(../images/select_arrow_white@2x.png);
}

.r3x select.white {
  background-image: url(../images/select_arrow_white@3x.png);
}

.ie select::-ms-expand {
  display: none;
}

.checkbox {
  position: relative;
  width: auto;
}

.checkbox label {
  position: relative;
  display: inline-block;
  vertical-align: top;
  line-height: 20px;
  cursor: pointer;
}

.checkbox label span {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  pointer-events: none;
}

.checkbox label span::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "";
  border-radius: 6px;
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 21px 0px rgba(20, 23, 69, 0.11);
          box-shadow: 0px 3px 21px 0px rgba(20, 23, 69, 0.11);
}

.checkbox label span::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  text-align: center;
  color: #ea252d;
  opacity: 0;
  content: "\f00c";
  line-height: 21px;
  font-family: "Font Awesome 5 Pro";
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.checkbox label a {
  color: #ea252d;
  text-decoration: underline;
  pointer-events: auto;
  -webkit-transition: none;
  transition: none;
}

.checkbox label input {
  position: absolute;
  left: 10px;
  top: 20px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.checkbox label input:checked + span::after {
  opacity: 1;
}

.checkbox.error label span {
  color: #ea252d;
}

.checkbox.error label span::before {
  border-color: #ea252d;
}

.checkbox.error label span::after {
  color: #ea252d;
}

.ph-text {
  position: absolute;
  top: 50%;
  left: 20px;
  font-size: 16px;
  color: rgba(65, 66, 66, 0.6);
  pointer-events: none;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.placeholder {
  padding-top: 24px !important;
  padding-bottom: 8px !important;
}

.placeholder.focus + .ph-text {
  top: 30%;
  font-size: 13px;
}

textarea.placeholder + .ph-text {
  top: 32%;
}

textarea.placeholder.focus + .ph-text {
  top: 16%;
}

::-webkit-input-placeholder {
  color: #9e9e9e;
}

:-ms-input-placeholder {
  color: #9e9e9e;
}

::-ms-input-placeholder {
  color: #9e9e9e;
}

::placeholder {
  color: #9e9e9e;
}

.btn {
  overflow: hidden;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 140px;
  height: 42px;
  margin: 0;
  padding: 5px 20px;
  line-height: 1;
  font-size: 17px;
  font-weight: 400;
  color: #414242;
  text-decoration: none !important;
  white-space: nowrap;
  border: 0;
  border-radius: 12px;
  background: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.btn::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.04);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.btn.dark {
  color: #fff;
  background-color: #414242;
}

.btn.dark::before {
  background-color: rgba(255, 255, 255, 0.08);
}

.btn.navyblue {
  color: #fff;
  background-color: #375b89;
}

.btn.navyblue::before {
  background-color: rgba(0, 0, 0, 0.12);
}

.btn.red {
  color: #fff;
  background-color: #ea252d;
}

.btn.red::before {
  background-color: rgba(0, 0, 0, 0.12);
}

.btn:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.08, 0.35, 0.4, 1.02);
  transition: -webkit-transform 0.6s cubic-bezier(0.08, 0.35, 0.4, 1.02);
  transition: transform 0.6s cubic-bezier(0.08, 0.35, 0.4, 1.02);
  transition: transform 0.6s cubic-bezier(0.08, 0.35, 0.4, 1.02), -webkit-transform 0.6s cubic-bezier(0.08, 0.35, 0.4, 1.02);
}

.btn > span {
  position: relative;
  display: block;
}

.btn > span:first-child:last-child {
  margin-right: auto;
  margin-left: auto;
}

.btn i {
  position: relative;
  display: block;
  font-size: 14px;
  color: inherit !important;
}

.btn i:first-child {
  margin-right: 6px;
}

.btn i:last-child {
  margin-right: 0;
  margin-left: auto;
  padding-left: 10px;
}

.submit-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.submit-button[disabled] {
  opacity: 0.4;
  pointer-events: none;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

#site-wrap {
  padding-top: 190px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

#header .container, #header .row {
  height: 100%;
}

#header .top-bar {
  height: 180px;
  background: url(../images/header_logo_bg.png) no-repeat 50% 0;
}

#header .logo a {
  position: relative;
  top: -30px;
  display: block;
  width: 213px;
  height: 80px;
  margin: 0 auto;
  cursor: pointer;
  text-decoration: none;
  background: url(../images/logo.png) no-repeat;
  background-size: 100% auto;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.r2x #header .logo a {
  background-image: url(../images/logo@2x.png);
}

.r3x #header .logo a {
  background-image: url(../images/logo@3x.png);
}

#header .logo a > span {
  display: none;
}

#header .logo a > .title {
  display: block;
  position: absolute;
  left: 76px;
  bottom: -6px;
  line-height: 1;
  font-size: 12px;
  opacity: 0.7;
}

#header .logo .logo_bg {
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 380px;
  height: 300px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 9px 0px rgba(26, 26, 26, 0.09);
          box-shadow: 0px 3px 9px 0px rgba(26, 26, 26, 0.09);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#header .logo2 a,
#header .logo3 a {
  position: relative;
  display: block;
  width: 150px;
  height: 150px;
  cursor: pointer;
  text-decoration: none;
  border-radius: 50%;
  background: #fff url(../images/logo2.png) no-repeat;
  background-size: 100% auto;
  -webkit-box-shadow: 0px 3px 9px 0px rgba(26, 26, 26, 0.09);
          box-shadow: 0px 3px 9px 0px rgba(26, 26, 26, 0.09);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.r2x #header .logo2 a, .r2x
#header .logo3 a {
  background-image: url(../images/logo2@2x.png);
}

.r3x #header .logo2 a, .r3x
#header .logo3 a {
  background-image: url(../images/logo2@3x.png);
}

#header .logo2 a > span,
#header .logo3 a > span {
  display: none;
}

#header .logo3 a {
  margin-left: auto;
  background-image: url(../images/logo3.png);
}

.r2x #header .logo3 a {
  background-image: url(../images/logo3@2x.png);
}

.r3x #header .logo3 a {
  background-image: url(../images/logo3@3x.png);
}

.content {
  position: relative;
}

.content header {
  margin-bottom: 20px;
}

header.col-12 .col-3:first-child {
  -ms-flex-preferred-size: 280px;
      flex-basis: 280px;
  max-width: 280px;
}

header.col-12 .col-3:first-child + .col-9 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 100%;
}

aside.col-3 {
  -ms-flex-preferred-size: 280px;
      flex-basis: 280px;
  max-width: 280px;
}

aside.col-3 + .col-9 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 100%;
}

.welcome h1 {
  font-size: 24px;
  font-weight: 500;
}

.welcome h1 > em {
  font-size: 24px;
  font-weight: 700;
  color: #ea252d;
  font-style: normal;
}

.welcome p {
  margin-top: -20px;
}

.search .form-label {
  margin: 0;
}

.search input[type="text"] {
  height: 40px;
  padding: 5px 20px;
  border-radius: 12px;
  border-color: #e8e7e7;
  background-color: #e8e7e7;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.search button[type="submit"] {
  position: absolute;
  top: 50%;
  right: 16px;
  line-height: 20px;
  font-size: 16px;
  margin-top: -10px;
  opacity: 0.6;
  padding: 0;
  border: 0;
  background: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.search button[type="submit"]:hover {
  opacity: 1;
}

.search button[type="submit"] + input[type="text"] {
  padding-right: 50px;
}

.page-header .col-4 {
  max-width: none;
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
}

.page-header .col-8 {
  max-width: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.page-header .module-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-header .module-title .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: #ea252d;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-header .module-title .icon i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-header .module-title .icon svg {
  display: block;
  width: 100%;
  height: auto;
  fill: #fff !important;
}

.page-header .module-title .title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 0 0 10px;
  font-size: 14px;
  font-weight: 500;
}

.page-header .module-title .name {
  margin: 0;
  line-height: 1.2;
  font-size: 14px;
  font-weight: 700;
  color: #414242;
  letter-spacing: -0.25px;
}

.page-header .module-title .name a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}

.page-header .module-title .counter {
  margin: 3px 0 0;
  line-height: 1.1;
  font-size: 13px;
  font-weight: 500;
  color: #9d9d9d;
}

.page-header .page-title {
  padding-left: 20px;
  border-left: 1px solid rgba(158, 158, 158, 0.4);
}

.page-header .page-title h1 {
  margin: 0;
  line-height: 1.2;
  font-size: 15px;
  font-weight: 600;
  color: #414242;
}

.page-header .page-title h3 {
  margin: 3px 0 0;
  line-height: 1.1;
  font-size: 13px;
  font-weight: 500;
  color: #9d9d9d;
}

.login,
.forgot,
.register {
  padding-top: 40px;
  padding-bottom: 40px;
}

.login form,
.forgot form,
.register form {
  margin-top: 30px;
}

.login .container, .forgot .container {
  min-width: 0;
  max-width: 480px;
}

.register .container {
  min-width: 0;
  max-width: 840px;
}

.profile .col-9,
.contact .col-9 {
  padding-right: 60px;
  padding-left: 60px;
}

.contact .address > div {
  width: 100%;
}

.contact .address > div > h4 {
  margin-bottom: 5px;
  font-size: 21px;
  font-weight: 500;
}

.contact .address > div > b {
  position: relative;
  display: block;
  max-width: 70px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70px;
          flex: 0 0 70px;
  font-weight: 500;
}

.contact .address > div > b::after {
  position: absolute;
  right: 0;
  content: ":";
}

.contact .address > div > span {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 10px;
}

.contact form {
  margin-top: 30px;
}

.or-line {
  position: relative;
  margin: 30px 0 10px;
}

.or-line::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: -webkit-gradient(linear, left top, right top, color-stop(6%, #f5f6fa), color-stop(33%, #cdcdcd), color-stop(67%, #cdcdcd), color-stop(94%, #f5f6fa));
  background: linear-gradient(to right, #f5f6fa 6%, #cdcdcd 33%, #cdcdcd 67%, #f5f6fa 94%);
}

.or-line > span {
  position: relative;
  top: -11px;
  padding: 4px 20px;
  color: rgba(65, 66, 66, 0.8);
  background-color: #f5f6fa;
}

.content-box {
  position: relative;
  padding: 20px;
  border-radius: 12px;
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 21px 0px rgba(20, 23, 69, 0.11);
          box-shadow: 0px 3px 21px 0px rgba(20, 23, 69, 0.11);
}

.content-box + .content-box {
  margin-top: 20px;
}

.side-nav {
  padding-top: 30px;
  padding-bottom: 30px;
}

.main-profile {
  text-align: center;
}

.main-profile .icon {
  width: 50px;
  height: 50px;
  margin-right: auto;
  margin-left: auto;
  font-size: 26px;
  color: #9e9e9e;
  border-radius: 12px;
  background-color: #e8e7e7;
}

.main-profile .icon i {
  display: block;
}

.main-profile .name {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 700;
}

.main-profile .title {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #9d9d9d;
}

.main-profile a {
  text-decoration: none;
}

.main-counter {
  margin: 50px 0;
}

.main-counter > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14px;
  font-weight: 500;
}

.main-counter > div:first-child {
  text-align: right;
}

.main-counter > div.divider {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  margin-right: 20px;
  margin-left: 20px;
  border-left: 1px solid #e8e7e7;
}

.main-counter > div > span {
  display: block;
  color: #ea252d;
  font-size: 14px;
  font-weight: 700;
}

.main-nav > ul > li {
  margin-top: 10px;
}

.main-nav > ul > li:first-child {
  margin-top: 0;
}

.main-nav > ul > li > a {
  position: relative;
  display: block;
  padding: 5px 10px 5px 40px;
  font-size: 15px;
  font-weight: 700;
  color: #414242;
  text-decoration: none;
}

.main-nav > ul > li > a::before {
  position: absolute;
  top: 50%;
  left: -20px;
  width: 4px;
  height: 0;
  content: "";
  background-color: #ea252d;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.main-nav > ul > li:hover > a, .main-nav > ul > li.selected > a {
  color: #ea252d;
}

.main-nav > ul > li:hover > a::before, .main-nav > ul > li.selected > a::before {
  top: -8%;
  height: 116%;
}

a.logout {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px 10px;
  line-height: 22px;
  font-size: 15px;
  font-weight: 700;
  color: #414242;
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

a.logout i {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  line-height: 23px;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  background-color: #ea252d;
}

.flex-masonry .col-4.selected {
  z-index: 1;
}

.flex-masonry .module-box {
  margin-bottom: 20px;
}

.module-box {
  padding-top: 20px;
  padding-bottom: 20px;
}

.module-box .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.module-box .header .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: #ea252d;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.module-box .header .icon i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.module-box .header .icon svg {
  display: block;
  width: 100%;
  height: auto;
  fill: #fff !important;
}

.module-box .header .title {
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 0 0 10px;
  font-size: 14px;
  font-weight: 500;
}

.module-box .header .name {
  margin: 0;
  line-height: 1.2;
  font-size: 14px;
  font-weight: 700;
  color: #414242;
  letter-spacing: -0.25px;
}

.module-box .header .name a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}

.module-box .header .counter {
  margin: 0;
  line-height: 1.1;
  font-size: 13px;
  font-weight: 500;
  color: #9d9d9d;
}

.module-box .educations {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.module-box .educations > li {
/*  position: relative;
  margin: 0;
  border-top: 1px dashed #e8e7e7;*/
}

.module-box .educations > li::after {
/*  position: absolute;
  top: 0;
  left: -20px;
  z-index: 0;
  width: calc(100% + 40px);
  height: 100%;
  content: "";
  opacity: 0;
  background-color: rgba(232, 231, 231, 0.3);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;*/
}

.module-box .educations > li > a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 15px 27px 15px 0;
  text-decoration: none;
}

.module-box .educations > li > a::before {
  position: absolute;
  top: 15px;
  right: 0;
  width: 22px;
  height: 22px;
  content: "";
  border-radius: 6px;
  background-color: #e8e7e7;
}

.module-box .educations > li > a::after {
  position: absolute;
  top: 15px;
  right: 0;
  width: 22px;
  height: 22px;
  content: "\f00c";
  line-height: 23px;
  font-family: "Font Awesome 5 Pro";
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  color: #375b89;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.module-box .educations > li > a h3,
.module-box .educations > li > a h4 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.module-box .educations > li h3 {
  margin: 0;
  line-height: 1.2;
  font-size: 13px;
  font-weight: 600;
  color: #414242;
}

.module-box .educations > li h4 {
  margin: 0;
  line-height: 1.1;
  font-size: 13px;
  font-weight: 500;
  color: #9d9d9d;
}

.module-box .educations > li:hover::after {
  opacity: 1;
}

.module-box .educations > li.completed > a::after {
  opacity: 1;
}

.module-box .educations > li .module-detail {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 4;
  width: 300px;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  border-radius: 12px;
  background-color: #282828;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.module-box .educations > li .module-detail::before {
  position: absolute;
  bottom: 99%;
  left: 20px;
  content: "";
  border: 12px solid transparent;
  border-left-width: 10px;
  border-right-width: 18px;
  border-bottom-color: #282828;
}

.module-box .educations > li .module-detail .module-inner {
  padding: 20px;
}

.module-box .educations > li .module-detail .image {
  border-radius: 6px;
  background-color: #414242;
  background-image: url(../images/loading2.svg);
}

.module-box .educations > li .module-detail h3 {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.module-box .educations > li .module-detail h4 {
  margin-top: 3px;
  text-transform: uppercase;
}

.module-box .educations > li .module-detail .btn-wrap {
  margin-top: 20px;
  text-align: center;
}

.module-box .educations > li.selected .module-detail {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.module-box .about-info {
  margin-top: 10px;
  border-radius: 6px;
  background-color: #375b89 !important;
}

.module-box .about-info::before {
  position: absolute;
  left: 0;
  top: -15px;
  width: 100%;
  content: "";
  border-top: 1px dashed #e8e7e7;
}

.module-box .about-info a {
  padding: 10px 10px 10px 66px;
}

.module-box .about-info .icon {
  width: 26px;
}

.module-box .about-info:hover {
  color: #fff;
  background-color: #ea252d !important;
}

.module-box .about-info:hover .icon {
  fill: #fff;
}

.module-box.completed .header .icon {
  background-color: #375b89;
}

.test-start {
  min-height: 100%;
  padding: 60px 50px;
  text-align: center;
}

.test-start > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 100%;
}

.test-start .title {
  font-size: 28px;
  font-weight: 500;
}

.test-start .title > em span {
  font-weight: 700;
}

.test-start p {
  margin-top: 50px;
}

.test-start .remaining {
  margin-top: 50px;
}

.test-start .remaining > strong {
  white-space: nowrap;
}

.test-start .remaining > strong ~ strong {
  padding-left: 30px;
}

.test-start .btn {
  margin-top: 50px;
  margin-right: 5px;
  margin-left: 5px;
}

.test-finish {
  min-height: 100%;
  text-align: center;
  color: #fff;
}

.test-finish > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 100%;
  padding: 50px;
  background-color: #375b89;
}

.test-finish .title {
  font-size: 28px;
  font-weight: 500;
}

.test-finish .title > em span {
  display: block;
  font-size: 42px;
  font-weight: 700;
}

.test-finish p {
  margin-top: 50px;
}

.test-finish .remaining {
  margin-top: 50px;
}

.test-finish .remaining > strong {
  white-space: nowrap;
}

.test-finish .remaining > strong ~ strong {
  padding-left: 30px;
}

.test-finish .btn {
  margin-top: 50px;
  margin-right: 5px;
  margin-left: 5px;
}

.test-finish.failed > div {
  padding: 50px;
  background-color: #ea252d;
}

.test-box {
  min-height: 100%;
  padding: 60px 50px;
  background: #fff url(../images/test_box_logo.png) no-repeat 94% 90%;
  background-position: calc(100% - 50px) calc(100% - 60px);
}

.test-box .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.2em;
}

.test-box .title > strong {
  display: block;
  padding-right: 14px;
  white-space: nowrap;
}

.test-box .title > span {
  display: block;
}

.test-box .test-footer {
  padding-top: 60px;
}

.test-box .remaining {
  padding-left: 10px;
}

.test-box .remaining > strong {
  white-space: nowrap;
}

.test-box .remaining > strong ~ strong {
  padding-left: 30px;
}

.test-box .questions {
  margin-top: 40px;
  padding-right: 10px;
  padding-left: 10px;
}

.test-box .questions .radio {
  position: relative;
  display: block;
  cursor: pointer;
}

.test-box .questions .radio + .radio {
  margin-top: 10px;
}

.test-box .questions .radio > span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 0 5px 40px;
  line-height: 22px;
  pointer-events: none;
}

.test-box .questions .radio > span::before, .test-box .questions .radio > span::after {
  position: absolute;
  top: 5px;
  left: 0;
  width: 22px;
  height: 22px;
  content: "";
  border-radius: 6px;
  background-color: #e8e7e7;
}

.test-box .questions .radio > span::after {
  content: "\f00c";
  line-height: 23px;
  font-family: "Font Awesome 5 Pro";
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  color: #375b89;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.test-box .questions .radio > span > strong {
  max-width: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
}

.test-box .questions .radio > span > span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.test-box .questions .radio a {
  color: inherit;
  text-decoration: underline;
  pointer-events: auto;
  -webkit-transition: none;
  transition: none;
}

.test-box .questions .radio input[type="radio"],
.test-box .questions .radio input[type="checkbox"] {
  position: absolute;
  top: 22px;
  left: 10px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.test-box .questions .radio input[type="radio"]:checked + span::after,
.test-box .questions .radio input[type="checkbox"]:checked + span::after {
  opacity: 1;
}

.test-video .not-paused-video {
  display: none;
  position: absolute;
  left: 0;
  bottom: 100%;
  margin-bottom: 10px;
  padding: 3px 10px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  border-radius: 3px;
  background-color: #ea252d;
}

.test-video .not-paused-video::before {
  position: absolute;
  top: 100%;
  left: 8px;
  content: "";
  border: 5px solid transparent;
  border-top-color: #ea252d;
}

.test-video .paused-video {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 34%;
  padding-right: 20px;
  padding-left: 20px;
  font-size: 26px;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.8);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.test-video .paused-video::after {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  padding-left: 7px;
  content: "\f04b";
  line-height: 92px;
  font-family: "Font Awesome 5 Pro";
  font-size: 32px;
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  border: 4px solid #fff;
}

.test-video .timeout-alert {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 32%;
  font-size: 26px;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.test-video .timeout-alert::after {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 122px;
  height: 100px;
  margin-top: -50px;
  margin-left: -61px;
  content: "";
  background: url(../images/keyboard.svg) no-repeat;
  background-size: 100% auto;
}

.test-video .timeout-alert span {
  display: block;
  font-size: 39px;
  font-weight: 700;
  color: #ea252d;
}

.test-video .directions {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 32%;
  font-size: 26px;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.test-video .directions::after {
  position: absolute;
  top: 32%;
  left: 50%;
  width: 122px;
  height: 122px;
  margin-top: -61px;
  margin-left: -61px;
  content: "";
  background: url(../images/directions.svg) no-repeat;
  background-size: 100% auto;
}

.test-video .directions span {
  display: block;
  font-size: 39px;
  font-weight: 700;
  color: #ea252d;
}

.other-modules .module-box {
  border-bottom: 1px dashed #e8e7e7;
}

.about-info {
  height: 100%;
  padding: 0;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.about-info a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  color: inherit;
  padding: 30px 20px 30px 75px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-transition: none;
  transition: none;
}

.about-info .icon {
  position: absolute;
  top: 50%;
  left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  padding: 3px;
  fill: #ea252d;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.about-info .icon svg {
  display: block;
  width: 100%;
  height: auto;
  fill: inherit;
}

.about-info h3 {
  margin: 0;
  line-height: 1.2;
  font-size: 15px;
  font-weight: 600;
  color: inherit;
}

.about-info h4 {
  margin: 0;
  line-height: 1.2;
  font-size: 12px;
  font-weight: 400;
  color: inherit;
}

.about-info:hover, .about-info.active {
  color: #fff;
  background-color: #ea252d;
}

.about-info:hover .icon, .about-info.active .icon {
  fill: #fff;
}

.about-info-2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 100%;
  padding: 30px 75px 30px 20px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.about-info-2 .counter {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 64px;
  height: 64px;
  margin-top: -32px;
  line-height: 62px;
  font-size: 24px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background-color: #375b89;
}

.about-info-2 h3 {
  width: 100%;
  margin: 0;
  line-height: 1.2;
  font-size: 15px;
  font-weight: 600;
  color: inherit;
}

.about-info-2 h4 {
  width: 100%;
  margin: 0;
  line-height: 1.2;
  font-size: 12px;
  font-weight: 400;
  color: inherit;
}

.survey-box h2 {
  margin-bottom: 0;
  font-size: 21px;
  font-weight: 500;
}

.survey-box .row {
  border-top: 1px solid #e8e7e7;
  padding-top: 30px;
  margin-top: 30px;
}

.survey-box .row:last-child {
  border-top: 0;
  padding-top: 0;
}

.survey-box .questions .options,
.survey-box .questions .comment {
  margin-top: 10px;
}

.survey-box .questions .options {
  padding-left: 40px;
}

.survey-box .questions .comment > label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.survey-box .questions .comment textarea {
  border-color: #e8e7e7;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.survey-box .questions .radio + .radio {
  margin-top: 0;
  padding-left: 30px;
}

.survey-box .questions .radio > span {
  padding-left: 30px;
}

@media (max-width: 1219px) {
  .survey-box .questions .options .radio {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .survey-box .questions .options .radio + .radio {
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .survey-box .questions .options {
    padding-left: 10px;
  }
}

#footer {
  position: relative;
  z-index: 0;
}

#footer .inner {
  position: relative;
  padding: 80px 0 40px;
}

#footer .inner .col-12 {
  padding-bottom: 40px;
}

#footer .inner nav {
  text-align: center;
}

#footer .inner nav a {
  display: inline-block;
  margin-left: 40px;
  line-height: 20px;
  vertical-align: top;
}

#footer .inner nav a:first-child {
  margin-left: 0;
}

#footer .inner nav a:hover {
  text-decoration: underline;
}

#footer .inner .abdiibrahim,
#footer .inner .web-designer {
  float: right;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

#footer .inner .abdiibrahim > span,
#footer .inner .web-designer > span {
  display: block;
  margin-top: 2px;
  line-height: 1;
  font-size: 15px;
  color: #9e9e9e;
}

#footer .inner .abdiibrahim a,
#footer .inner .web-designer a {
  display: block;
  width: 112px;
  height: 24px;
  font-size: 0;
  text-decoration: none;
  background: url(../images/digidea.png) no-repeat;
  background-size: auto 100%;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.r2x #footer .inner .abdiibrahim a, .r2x
#footer .inner .web-designer a {
  background-image: url(../images/digidea@2x.png);
}

.r3x #footer .inner .abdiibrahim a, .r3x
#footer .inner .web-designer a {
  background-image: url(../images/digidea@3x.png);
}

#footer .inner .abdiibrahim a:hover,
#footer .inner .web-designer a:hover {
  -webkit-transform: skew(-20deg);
          transform: skew(-20deg);
}

#footer .inner .abdiibrahim {
  float: left;
}

#footer .inner .abdiibrahim > span {
  padding-left: 28px;
}

#footer .inner .abdiibrahim a {
  width: 162px;
  background-image: url(../images/abdiibrahim.png);
}

.r2x #footer .inner .abdiibrahim a {
  background-image: url(../images/abdiibrahim@2x.png);
}

.r3x #footer .inner .abdiibrahim a {
  background-image: url(../images/abdiibrahim@3x.png);
}

#footer .inner .abdiibrahim a:hover {
  -webkit-transform: none;
          transform: none;
}

#footer .inner .team-stars a {
  display: block;
  width: 116px;
  height: 60px;
  margin: 0 auto;
  font-size: 0;
  text-decoration: none;
  background: url(../images/agrinin_takim_yildizlari.png) no-repeat;
  background-size: auto 100%;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#footer .footer-note {
  padding: 0 20px 40px;
  text-align: center;
  opacity: 0.7;
}
