/*!
  * Atyaf - Stylesheet (c) 2016 Bahaa Samir <bahaasamir.me>
*/

/* Fonts */
::-moz-selection {
  background: #ff2e63;
  color: #fff;
  text-shadow: none;
  -webkit-text-fill-color: #fff;
}

::selection {
  background: #ff2e63;
  color: #fff;
  text-shadow: none;
  -webkit-text-fill-color: #fff;
}

::-webkit-input-placeholder {
  opacity: 1;
  color: #919191;
}

/* Set */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
}

body {
  font-family: 'Open Sans', 'arial', sans-serif;
  font-size: 12px;
  font-weight: 300;
  background: #151924;
  overflow: hidden;
}

body.disable {
  overflow: hidden;
}

.disable {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3999;
  background: rgba(0, 0, 0, 0);
  display: none;
}

.unload {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999999;
  background: #151924;
}

.loader_container {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-perspective: 300;
}

.loader {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  width: 50px;
  height: 50px;
  z-index: -1;
  position: relative;
}

.loader::before {
  content: '';
  display: block;
  width: 0px;
  height: 0px;
  position: absolute;
  left: 50px;
  top: 50px;
  -webkit-animation-name: flip-shadow;
  animation-name: flip-shadow;
  z-index: 1000;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  animation-name: flip-shadow;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.loader::after {
  content: '';
  width: 50px;
  height: 50px;
  background-color: #ff2e63;
  background-image: url(../structure/icons/atyaf.svg);
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: block;
  top: 25px;
  left: 25px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-animation-name: flip-loader;
  animation-name: flip-loader;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  z-index: 1000;
}

@-webkit-keyframes flip-loader {
  from {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(720deg);
    transform: rotateY(720deg);
  }
}

@keyframes flip-loader {
  from {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(720deg);
    transform: rotateY(720deg);
  }
}

@-webkit-keyframes flip-shadow {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  25% {
    -webkit-transform: scaleX(0.25);
    transform: scaleX(0.25);
  }
  50% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  75% {
    -webkit-transform: scaleX(0.25);
    transform: scaleX(0.25);
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes flip-shadow {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  25% {
    -webkit-transform: scaleX(0.25);
    transform: scaleX(0.25);
  }
  50% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  75% {
    -webkit-transform: scaleX(0.25);
    transform: scaleX(0.25);
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.clrfix {
  position: relative;
  z-index: -1;
}

.clrfix:after {
  content: " ";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

._y {
  transform: translateY(80px);
  -webkit-transform: translateY(80px);
  opacity: 0;
}

._x {
  transform: translateX(80px);
  -webkit-transform: translateX(80px);
  opacity: 0;
}

._rx {
  transform: translateX(-80px);
  -webkit-transform: translateX(-80px);
  opacity: 0;
}

._r {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  opacity: 0;
}

._h {
  opacity: 0;
}

/* Main */
.flex_set {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.flex_set.disable {
  position: relative;
  display: block;
  height: auto;
}

.full_bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.section {
  overflow: hidden;
  display: none;
}

#home {
  background: #151924;
}

.img_fix {
  display: block;
  max-width: 100%;
  visibility: hidden;
}

label,
.srvs_box,
.circle,
.social_box > a,
.m_projects > a,
.o2_button {
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

/* Home */
#home h1 {
  color: #fff;
  font-size: 48px;
  max-width: 710px;
  margin: 70px auto;
  padding: 0 30px;
}

#home h1 > i {
  color: #ff2e63;
  font-style: normal;
  opacity: 0;
}

#home h1 > span {
  opacity: 0;
}

.main_visual {
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: fixed;
  background-color: #151924;
}

.main_visual > span {
  float: left;
  width: 25%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-image: url(../structure/slides/main.jpg);
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: fixed;
}

.main_visual > span > i {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  bottom: -1px;
  background: #151924;
}

.main_visual > span > i.out {
  background: #fff;
}

.btn {
  /*font-family: 'Montserrat', Open Sans, arial;*/
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  padding: 19px 32px;
  border: 2px solid #ff2e63;
  display: inline-block;
  position: relative;
  border-radius: 280px;
  -webkit-border-radius: 280px;
  cursor: pointer;
  overflow: hidden;
  -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
  -webkit-transition: all 300ms cubic-bezier(0.26, .86, .44, .985);
  -moz-transition: all 300ms cubic-bezier(0.26, .86, .44, .985);
  transition: all 300ms cubic-bezier(0.26, .86, .44, .985);
}

.btn > i {
  background: #ff2e63;
  position: absolute;
  top: 0;
  right: -3px;
  left: -3px;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -webkit-transition: all 400ms cubic-bezier(0.26, .86, .44, .985);
  -moz-transition: all 400ms cubic-bezier(0.26, .86, .44, .985);
  transition: all 400ms cubic-bezier(0.26, .86, .44, .985);
}

.btn span {
  position: relative;
  z-index: 99;
  display: block;
}

.btn:hover > i,
.btn.active > i {
  transform: translateY(0);
  -webkit-transform: translateY(0);
}

.main_logo {
  width: 120px;
  height: 130px;
  position: relative;
  margin: 0 auto;
  background: url(../structure/static/logo.svg);
  background-repeat: no-repeat;
  background-position: center;
}

#site {
  position: relative;
  width: calc(100% - 60px);
  left: 60px;
  height: 100%;
  background: #fff;
  overflow: hidden;
}

canvas {
  position: absolute;
  z-index: 199;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Services */
#services {
  z-index: 99;
}

#services.ready {
  background: #fff;
}

.srv_bg {
  z-index: -99;
}

.srv_bg span {
  position: relative;
  float: left;
  width: 25%;
  height: 100%;
  background: #fff;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
}

.srv_bg i {
  position: absolute;
  background: #EDEFF5;
  left: 0;
  z-index: 99;
}

.srv_bg i:nth-child(1),
.srv_bg i:nth-child(2),
.srv_bg i:nth-child(3) {
  width: 1px;
  height: 200%;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
}

.srv_bg i:nth-child(1) {
  left: 25%;
}

.srv_bg i:nth-child(2) {
  left: 50%;
}

.srv_bg i:nth-child(3) {
  left: 75%;
}

.srv_bg i:nth-child(4) {
  width: 100%;
  height: 1px;
  top: 50%;
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
}

.srv_row {
  width: 25%;
  height: 100%;
  float: left;
  position: relative;
  z-index: 99;
}

.srv_box {
  width: 100%;
  height: 50%;
  position: relative;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transform: translateY(80px);
  -webkit-transform: translateY(80px);
  opacity: 0;
}

.srv_box:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #ff2e63;
  z-index: -99;
  opacity: 0;
  -webkit-transition: all 250ms cubic-bezier(0.26, .86, .44, .985);
  -moz-transition: all 250ms cubic-bezier(0.26, .86, .44, .985);
  transition: all 250ms cubic-bezier(0.26, .86, .44, .985);
}

.srv_data {
  position: relative;
  margin: 0 auto;
  height: 100%;
  max-width: 380px;
  color: #323A45;
  padding: 15.5vh 20px 0 20px;
  -webkit-transition: all 250ms cubic-bezier(0.26, .86, .44, .985);
  -moz-transition: all 250ms cubic-bezier(0.26, .86, .44, .985);
  transition: all 250ms cubic-bezier(0.26, .86, .44, .985);
}

.srv_icon {
  position: relative;
  margin: 0 auto;
  height: 121px;
}

.srv_icon > span {
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: all 250ms cubic-bezier(0.26, .86, .44, .985);
  -moz-transition: all 250ms cubic-bezier(0.26, .86, .44, .985);
  transition: all 250ms cubic-bezier(0.26, .86, .44, .985);
}

.srv_icon_hover {
  opacity: 0;
}

.srv_title {
  /*font-family: 'Montserrat', Open Sans, arial;*/
  font-size: 20px;
  margin: 30px 0 20px 0;
  -webkit-font-smoothing: auto;
}

.srv_details {
  font-size: 16px;
  opacity: 0;
  color: #fff;
  -webkit-font-smoothing: auto;
}

.ready .srv_box:hover:after,
.ready .srv_box:hover .srv_details,
.ready .srv_box:hover .srv_icon_hover {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  opacity: 1;
}

.ready .srv_box:hover .srv_data {
  transform: translateY(-5vh);
  -webkit-transform: translateY(-5vh);
  color: #fff;
  opacity: 1;
}

.ready .srv_box:hover .srv_icon_normal {
  opacity: 0;
}

.srv_icon.app_design {
  width: 229px;
}

.srv_icon.app_design .srv_icon_normal {
  background-image: url(../structure/assist/app_design.svg);
}

.srv_icon.app_design .srv_icon_hover {
  background-image: url(../structure/assist/app_design_hover.svg);
}

.srv_icon.branding .srv_icon_normal {
  background-image: url(../structure/assist/branding.svg);
}

.srv_icon.branding .srv_icon_hover {
  background-image: url(../structure/assist/branding_hover.svg);
}

.srv_icon.development .srv_icon_normal {
  background-image: url(../structure/assist/development.svg);
}

.srv_icon.development .srv_icon_hover {
  background-image: url(../structure/assist/development_hover.svg);
}

.srv_icon.digital_marketing .srv_icon_normal {
  background-image: url(../structure/assist/digital_marketing.svg);
}

.srv_icon.digital_marketing .srv_icon_hover {
  background-image: url(../structure/assist/digital_marketing_hover.svg);
}

.srv_icon.graphic_design .srv_icon_normal {
  background-image: url(../structure/assist/graphic_design.svg);
}

.srv_icon.graphic_design .srv_icon_hover {
  background-image: url(../structure/assist/graphic_design_hover.svg);
}

.srv_icon.hosting .srv_icon_normal {
  background-image: url(../structure/assist/hosting.svg);
}

.srv_icon.hosting .srv_icon_hover {
  background-image: url(../structure/assist/hosting_hover.svg);
}

.srv_icon.motion_graphics .srv_icon_normal {
  background-image: url(../structure/assist/motion_graphics.svg);
}

.srv_icon.motion_graphics .srv_icon_hover {
  background-image: url(../structure/assist/motion_graphics_hover.svg);
}

.srv_icon.web_design .srv_icon_normal {
  background-image: url(../structure/assist/web_design.svg);
}

.srv_icon.web_design .srv_icon_hover {
  background-image: url(../structure/assist/web_design_hover.svg);
}

.no-svg .srv_icon.app_design .srv_icon_normal {
  background-image: url(../structure/assist/app_design.png);
}

.no-svg .srv_icon.app_design .srv_icon_hover {
  background-image: url(../structure/assist/app_design_hover.png);
}

.no-svg .srv_icon.branding .srv_icon_normal {
  background-image: url(../structure/assist/branding.png);
}

.no-svg .srv_icon.branding .srv_icon_hover {
  background-image: url(../structure/assist/branding_hover.png);
}

.no-svg .srv_icon.development .srv_icon_normal {
  background-image: url(../structure/assist/development.png);
}

.no-svg .srv_icon.development .srv_icon_hover {
  background-image: url(../structure/assist/development_hover.png);
}

.no-svg .srv_icon.digital_marketing .srv_icon_normal {
  background-image: url(../structure/assist/digital_marketing.png);
}

.no-svg .srv_icon.digital_marketing .srv_icon_hover {
  background-image: url(../structure/assist/digital_marketing_hover.png);
}

.no-svg .srv_icon.graphic_design .srv_icon_normal {
  background-image: url(../structure/assist/graphic_design.png);
}

.no-svg .srv_icon.graphic_design .srv_icon_hover {
  background-image: url(../structure/assist/graphic_design_hover.png);
}

.no-svg .srv_icon.hosting .srv_icon_normal {
  background-image: url(../structure/assist/hosting.png);
}

.no-svg .srv_icon.hosting .srv_icon_hover {
  background-image: url(../structure/assist/hosting_hover.png);
}

.no-svg .srv_icon.motion_graphics .srv_icon_normal {
  background-image: url(../structure/assist/motion_graphics.png);
}

.no-svg .srv_icon.motion_graphics .srv_icon_hover {
  background-image: url(../structure/assist/motion_graphics_hover.png);
}

.no-svg .srv_icon.web_design .srv_icon_normal {
  background-image: url(../structure/assist/web_design.png);
}

.no-svg .srv_icon.web_design .srv_icon_hover {
  background-image: url(../structure/assist/web_design_hover.png);
}

/* projects */
#projects {
  z-index: 1999;
}

.mobile {
  display: none;
  background: #151924;
}

.fk_boxes {
  z-index: 999;
}

.fk_box {
  width: 25%;
  height: 50%;
  float: left;
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: fixed;
  opacity: 0;
}

.fk_box:after,
.project_part:after,
.project_full:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #151924;
  opacity: 0.6;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  transition: all 100ms linear;
}

.project_full:after {
  opacity: 0.3;
}

.projects {
  z-index: 1999;
}

.projects_set {
  position: relative;
  width: 100%;
  height: 100%;
}

.projects_panel {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 199;
  display: none;
}

.projects_slide {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
}

.project_part {
  width: 100%;
  height: 50%;
  float: left;
  position: absolute;
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: fixed;
  -webkit-transition: all 600ms cubic-bezier(0.26, .86, .44, .985);
  -moz-transition: all 600ms cubic-bezier(0.26, .86, .44, .985);
  transition: all 600ms cubic-bezier(0.26, .86, .44, .985);
  cursor: pointer;
}

.project_inner {
  background: #151924;
  display: none;
  opacity: 0;
}

.project_full {
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: fixed;
  opacity: 0;
}

.project_part:nth-child(1) {
  z-index: 4;
}

.project_part:nth-child(2) {
  z-index: 3;
}

.project_part:nth-child(3) {
  z-index: 2;
}

.project_part:nth-child(4) {
  z-index: 1;
}

.ready .project_part:hover:after {
  opacity: 0.3 !important;
}

.project_details {
  width: calc(100% + 20px);
  right: -20px;
  padding-right: 20px;
  overflow-y: scroll;
  display: none;
}

.p_background {
  background-size: cover;
  background-position: center;
  position: fixed;
}

.project_details:after {
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  background: rgba(21, 25, 36, 0);
  background: -moz-linear-gradient(top, rgba(21, 25, 36, 0) 0%, rgba(21, 25, 36, 1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(21, 25, 36, 0)), color-stop(100%, rgba(21, 25, 36, 1)));
  background: -webkit-linear-gradient(top, rgba(21, 25, 36, 0) 0%, rgba(21, 25, 36, 1) 100%);
  background: -o-linear-gradient(top, rgba(21, 25, 36, 0) 0%, rgba(21, 25, 36, 1) 100%);
  background: -ms-linear-gradient(top, rgba(21, 25, 36, 0) 0%, rgba(21, 25, 36, 1) 100%);
  background: linear-gradient(to bottom, rgba(21, 25, 36, 0) 0%, rgba(21, 25, 36, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#151924', endColorstr='#151924', GradientType=0);
}

#getProject {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 300px auto 100px auto;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 999;
}

.back {
  position: absolute;
  left: 30px;
  top: 15px;
  cursor: pointer;
  z-index: 499;
}

.back > i {
  width: 40px;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  background-image: url(../structure/icons/arrow.svg)
}

.back > .b_text {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  overflow: hidden;
}

.back > .b_text > span {
  color: #fff;
  display: block;
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: all 600ms cubic-bezier(0.26, .86, .44, .985);
  -moz-transition: all 600ms cubic-bezier(0.26, .86, .44, .985);
  transition: all 600ms cubic-bezier(0.26, .86, .44, .985);
}

.back:hover span {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  opacity: 1;
}

/* Customize Projects */
#getProject h1 {
  font-size: 38px;
  margin-bottom: 50px;
}

#getProject p {
  font-size: 14px;
  line-height: 20px;
  max-width: 640px;
  margin: 20px auto;
}

/* Gallery */
#gallery {
  background: rgba(21, 25, 37, 1);
}

.g_main {
  width: 100%;
  height: 100%;
}

.g_team_bg {
  background-size: cover;
}

.g_team_bg i {
  background-size: cover;
}

.g_head {
  color: #fff;
  position: relative;
  z-index: 499;
  margin: 0 auto;
  width: 100%;
  max-width: 290px;
}

.g_head > h1 {
  font-size: 48px;
  position: relative;
  z-index: 99;
}

.g_head > h1:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: -80px;
  left: 0;
  background: rgba(0, 0, 0, 0);
}

.g_para_set {
  height: 30px;
  margin: 20px 0 70px 0;
  position: relative;
  z-index: 9;
}

.g_para_set p {
  font-size: 24px;
  width: 100%;
  top: 0;
  position: absolute;
}

p.active {
  z-index: 99;
}

.g_para_set p > span {
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: rotate(10deg);
  -webkit-transform: rotate(10deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transform-origin: top left;
  -webkit-transition: all 800ms cubic-bezier(0.26, .86, .44, .985);
  -moz-transition: all 800ms cubic-bezier(0.26, .86, .44, .985);
  transition: all 800ms cubic-bezier(0.26, .86, .44, .985);
}

.g_para_set p > span:nth-child(2) {
  transform-origin: bottom right;
  transform: rotate(-10deg);
  -webkit-transform: rotate(-10deg);
}

.g_para_set p.active span {
  opacity: 1;
  transform: rotate(0);
}

.g_icon {
  position: relative;
  display: block;
  width: 140px;
  height: 140px;
  margin: 0 auto;
  cursor: pointer;
}

.g_icon i {
  background-image: url(../structure/icons/instagram_light.svg);
  background-position: center;
  background-repeat: no-repeat;
  transform-style: preserve-3d;
  -webkit-transition: all 600ms cubic-bezier(0.26, .86, .44, .985);
  -moz-transition: all 600ms cubic-bezier(0.26, .86, .44, .985);
  transition: all 600ms cubic-bezier(0.26, .86, .44, .985);
}

.no-svg .g_icon i {
  background-image: url(../structure/icons/instagram_light.png);
}

.g_icon:hover i {
  transform: scale(1.2);
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.2, M12=0, M21=0, M22=1.2, SizingMethod='auto expand')";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.2, M12=0, M21=0, M22=1.2, SizingMethod='auto expand');
}

.chart {
  height: 140px;
  position: relative;
  display: block;
  margin: 0;
}

.chart svg {
  position: relative;
}

.outer {
  fill: transparent;
  stroke: #FF3366;
  stroke-width: 2;
  stroke-dasharray: 534;
  transition: stroke-dashoffset 0.5s;
  -webkit-animation-play-state: running;
  -moz-transform: rotate(-90deg) translateX(-140px);
}

.chart:hover .outer {
  stroke-dashoffset: 534 !important;
  -webkit-animation-play-state: paused;
}

.chart[data-percent='100'] .outer {
  stroke-dashoffset: 0;
  -webkit-animation: show100 1s;
  animation: show100 1s;
}

.chart[data-percent='75'] .outer {
  stroke-dashoffset: 133;
  -webkit-animation: show75 1s;
  animation: show75 1s;
}

.chart[data-percent='50'] .outer {
  stroke-dashoffset: 267;
  -webkit-animation: show50 1s;
  animation: show50 1s;
}

.chart[data-percent='25'] .outer {
  stroke-dashoffset: 401;
  -webkit-animation: show25 1s;
  animation: show25 1s;
}

@-webkit-keyframes show100 {
  from {
    stroke-dashoffset: 537;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes show100 {
  from {
    stroke-dashoffset: 537;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes show75 {
  from {
    stroke-dashoffset: 537;
  }

  to {
    stroke-dashoffset: 134;
  }
}

@keyframes show75 {
  from {
    stroke-dashoffset: 537;
  }

  to {
    stroke-dashoffset: 124;
  }
}

@-webkit-keyframes show50 {
  from {
    stroke-dashoffset: 537;
  }

  to {
    stroke-dashoffset: 267;
  }
}

@keyframes show50 {
  from {
    stroke-dashoffset: 537;
  }

  to {
    stroke-dashoffset: 267;
  }
}

@-webkit-keyframes show25 {
  from {
    stroke-dashoffset: 537;
  }

  to {
    stroke-dashoffset: 401;
  }
}

@keyframes show25 {
  from {
    stroke-dashoffset: 537;
  }

  to {
    stroke-dashoffset: 401;
  }
}

.scroll_icon {
  width: 20px;
  height: 59px;
  color: #fff;
  position: absolute;
  left: 50%;
  bottom: 5%;
  background-image: url(../structure/icons/scroll.svg);
  background-repeat: no-repeat;
  animation-name: scroll;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  z-index: 499;
}

.scroll_icon > span {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  position: relative;
  left: -20px;
  display: block;
  margin-top: 45px;
  font-weight: 700;
}

@keyframes scroll {
  0% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 20px);
    -webkit-transform: translate(0, 20px);
  }
  100% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
}

@-webkit-keyframes scroll {
  0% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 20px);
    -webkit-transform: translate(0, 20px);
  }
  100% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
}

.g_photos_set {
  position: relative;
  width: calc(100% + 20px);
  padding-right: 20px;
  height: 100%;
  overflow-y: scroll;
}

.g_photos {
  overflow: hidden;
  position: relative;
}

.g_photos_row {
  position: relative;
  float: left;
  width: 20%;
  background: rgba(21, 25, 37, 0.01);
  overflow: hidden;
}

.g_photo {
  width: 100%;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(150px);
  -webkit-transform: translateY(150px);
}

.g_photo > i {
  position: absolute !important;
  top: -15px !important;
  right: -15px !important;
  bottom: -15px !important;
  left: -15px !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Forms */
#startProject,
#contact {
  background: rgba(21, 25, 37, 1);
}

.form_wrap {
  position: relative;
  width: calc(100% + 20px);
  padding-right: 20px;
  height: 100%;
  overflow-y: scroll;
}

.form_set {
  width: 100%;
  max-width: 960px;
  padding: 100px 15px;
  margin: 0 auto;
  text-align: center;
  color: #444E5A;
  overflow: hidden;
}

.form_set > h1 {
  font-size: 47px;
  letter-spacing: -0.5px;
  color: #fff;
}

.form_set > h1 > strong {
  font-weight: 600;
}

.form_set > p {
  font-size: 18px;
  margin-top: 8px;
}

.form {
  position: relative;
  overflow: hidden;
  text-align: left;
}

.form_block {
  margin-top: 50px;
  overflow: hidden;
}

.block_head {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
}

.block_head > i {
  width: 40px;
  height: 40px;
  line-height: 37px;
  margin-right: 10px;
  display: inline-block;
  text-align: center;
  font-style: normal;
  color: #FF3366;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  border: 2px solid #292D38;
}

.form_row {
  margin-bottom: 26px;
  overflow: hidden;
}

.form_input {
  font-weight: 400;
  width: calc(50% - 13px);
  height: 70px;
  float: left;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  border: 2px solid #292D38;
  position: relative;
}

.form_input.error {
  border-color: #8e0d0d;
}

.form_input:nth-child(2) {
  margin-left: 26px;
}

.form_input.wide {
  width: 100%;
}

.form_input.wide.long {
  height: 200px;
}

label,
.label_role {
  font-size: 16px;
  position: absolute;
  left: 18px;
  top: 22px;
}

.focus label {
  font-size: 12px;
  top: 10px;
}

input[type="text"],
input[type="email"],
input[type="phone"],
textarea {
  font-family: 'Open Sans', 'arial', sans-serif;
  font-size: 16px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-left: 18px;
  padding-top: 18px;
  color: #fff;
  background: transparent;
  border: 0;
  outline: none;
}

textarea {
  padding-top: 33px;
  resize: none;
}

.range {
  font-size: 24px;
  position: absolute;
  right: 18px;
  top: 17px;
  color: #fff;
}

.range_set {
  position: absolute !important;
  left: 160px;
  right: 140px;
  top: 33px;
}

.srvs_box_set {
  width: 25%;
  text-align: center;
  float: left;
  position: relative;
}

.srvs_box {
  height: 220px;
  padding: 48px 0;
  margin: 15px;
  position: relative;
  border: 2px solid #292D38;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  cursor: pointer;
}

.srvs_box:after {
  content: '';
  background: #FF3366;
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  opacity: 0;
}

.srvs_box:before {
  content: '';
  background-image: url(../structure/icons/selected.svg);
  position: absolute;
  width: 64px;
  height: 64px;
  z-index: 99;
  top: 50%;
  left: 50%;
  margin: -32px 0 0 -32px;
  opacity: 0;
  transform: translateY(100%) rotate(180deg);
  -webkit-transform: translateY(100%) rotate(180deg);
}

.srvs_box:before,
.srvs_box:after {
  -webkit-transition: all 500ms cubic-bezier(0.26, .86, .44, .985);
  -moz-transition: all 500ms cubic-bezier(0.26, .86, .44, .985);
  transition: all 500ms cubic-bezier(0.26, .86, .44, .985);
}

.srvs_box.selected:before,
.srvs_box.selected:after {
  transform: translateY(0) rotate(0);
  -webkit-transform: translateY(0) rotate(0);
  opacity: 0.7;
}

.srvs_box.selected:before {
  opacity: 1;
}

.srvs_block.error .srvs_box {
  border-color: #8e0d0d;
}

.srvs_data {
  position: relative;
  margin: 0 auto;
  height: 100%;
  color: #444E5A;
}

.srvs_title {
  /*font-family: 'Montserrat', Open Sans, arial;*/
  font-size: 15px;
  margin: 30px 0 20px 0;
}

.srvs_icon {
  position: relative;
  margin: 0 auto;
  height: 72px;
  background-repeat: no-repeat;
  background-position: center;
}

.srvs_icon.app_design {
  background-image: url(../structure/assist/app_design_x1.svg);
}

.srvs_icon.branding {
  background-image: url(../structure/assist/branding_x1.svg);
}

.srvs_icon.development {
  background-image: url(../structure/assist/development_x1.svg);
}

.srvs_icon.digital_marketing {
  background-image: url(../structure/assist/digital_marketing_x1.svg);
}

.srvs_icon.graphic_design {
  background-image: url(../structure/assist/graphic_design_x1.svg);
}

.srvs_icon.hosting {
  background-image: url(../structure/assist/hosting_x1.svg);
}

.srvs_icon.motion_graphics {
  background-image: url(../structure/assist/motion_graphics_x1.svg);
}

.srvs_icon.web_design {
  background-image: url(../structure/assist/web_design_x1.svg);
}

.no-svg .srvs_icon.app_design {
  background-image: url(../structure/assist/app_design_x1.png);
}

.no-svg .srvs_icon.branding {
  background-image: url(../structure/assist/branding_x1.png);
}

.no-svg .srvs_icon.development {
  background-image: url(../structure/assist/development_x1.png);
}

.no-svg .srvs_icon.digital_marketing {
  background-image: url(../structure/assist/digital_marketing_x1.png);
}

.no-svg .srvs_icon.graphic_design {
  background-image: url(../structure/assist/graphic_design_x1.png);
}

.no-svg .srvs_icon.hosting {
  background-image: url(../structure/assist/hosting_x1.png);
}

.no-svg .srvs_icon.motion_graphics {
  background-image: url(../structure/assist/motion_graphics_x1.png);
}

.no-svg .srvs_icon.web_design {
  background-image: url(../structure/assist/web_design_x1.png);
}

.srvs_block {
  width: calc(100% + 30px);
  overflow: hidden;
  margin-left: -15px;
}

.submit_btn {
  width: 160px;
  text-align: center;
  margin: 80px auto 0 auto;
  display: block;
}

.form_heading {
  width: calc(100% + 130px);
  overflow: hidden;
  margin-top: 80px;
  /*margin-bottom: 40px;*/
  margin-left: -55px;
  text-align: left;
}

.form_h {
  float: left;
  width: 33.33333333333333%;
  min-height: 56px;
  padding: 0 40px;
  position: relative;
  margin-bottom: 40px;
}

.form_h:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background: #292D38;
}

.form_h > i {
  width: 48px;
  height: 48px;
  line-height: 37px;
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  border: 2px solid #292D38;
}

i.address {
  background-image: url(../structure/icons/address.svg);
}

i.phone {
  background-image: url(../structure/icons/phone.svg);
}

i.email {
  background-image: url(../structure/icons/email.svg);
}

i.time {
  background-image: url(../structure/icons/time.svg);
}
i.messenger {
  background-image: url(../structure/icons/messenger.svg);
}
i.whatsapp {
  background-image: url(../structure/icons/whatsapp.svg);
}

.no-svg i.address {
  background-image: url(../structure/icons/address.png);
}

.no-svg i.phone {
  background-image: url(../structure/icons/phone.png);
}

.no-svg i.email {
  background-image: url(../structure/icons/email.png);
}

.no-svg i.time {
  background-image: url(../structure/icons/time.png);
}

.h_text {
  display: inline-block;
  vertical-align: middle;
  margin-left: 13px;
}

.h_text > strong {
  display: block;
  margin-bottom: 3px;
}

.h_text > span {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

/* Side Menu */
.m_side {
  position: fixed;
  z-index: 4999;
  top: 0;
  left: 0;
  bottom: 0;
  width: 60px;
  /* border-right: 1px solid rgba(255,255,255,0.15); */
  background: #151924;
  overflow: hidden;
}

.m_side > i {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  background: #151924;
  z-index: 999;
  opacity: 0.8;
  display: none;
}

.m_logo {
  width: 100%;
  height: 60px;
  text-align: center;
  background: #ff2e63;
  overflow: hidden;
}

.m_logo > i {
  width: 32px;
  height: 39px;
  display: inline-block;
  margin: 10px 0;
  background-image: url(../structure/icons/atyaf.svg);
}

.no-svg .m_logo > i {
  background-image: url(../structure/icons/atyaf.png);
}

.m_icon {
  width: 100%;
  height: 60px;
  padding: 26px 0;
  text-align: center;
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.lines {
  display: block;
  width: 20px;
  height: 8px;
  margin: 0 auto;
  transition: 0.2s;
  position: relative;
}

.lines:before,
.lines:after {
  content: '';
  display: inline-block;
  background: #fff;
  width: 20px;
  height: 2px;
  transition: 0.2s;
  position: absolute;
  right: 0;
}

.lines:before {
  top: 6px;
}

.lines:after {
  top: 0;
}

.m_icon.active .lines:before {
  -webkit-transform: rotate3d(0, 0, 1, 40deg);
  transform: rotate3d(0, 0, 1, 40deg);
}

.m_icon.active .lines:after {
  -webkit-transform: rotate3d(0, 0, 1, -40deg);
  transform: rotate3d(0, 0, 1, -40deg);
}

.m_icon.active .lines {
  background: transparent !important;
}

.m_icon.active .lines:before, .m_icon.active .lines:after {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  top: 0;
}

.m_icon.active .lines:before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}

.m_icon.active .lines:after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}

.circle {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  border: 2px solid #292D38;
  cursor: pointer;
}

.circle:hover,
.circle.active {
  background-color: #ff2e63;
  border-color: transparent;
}

.m_lang,
.m_social {
  text-align: center;
  position: absolute;
  left: 50%;
  margin-left: -20px;
}

.m_lang {
  bottom: 140px;
}

.lang_icon {
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../structure/icons/language.svg);
  z-index: 99;
}

.no-svg .lang_icon {
  background-image: url(../structure/icons/language.png);
}

.lang_options {
  height: 90px;
  margin-bottom: 10px;
  overflow: hidden;
  transform: translateY(-30px);
  -webkit-transform: translateY(-30px);
  opacity: 0;
  -webkit-transition: all 500ms cubic-bezier(0.26, .86, .44, .985);
  -moz-transition: all 500ms cubic-bezier(0.26, .86, .44, .985);
  transition: all 500ms cubic-bezier(0.26, .86, .44, .985);
}

.lang_options > a {
  /*font-family: 'Montserrat', Open Sans, arial;*/
  color: #fff;
  line-height: 40px;
  margin-bottom: 10px;
}

.m_social {
  bottom: 90px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../structure/icons/social.svg);
  z-index: 99;
}

.m_social.active {
  background-image: url(../structure/icons/close.svg);
}

.no-svg .m_social {
  background-image: url(../structure/icons/social.png);
}

.no-svg .m_social.active {
  background-image: url(../structure/icons/close.png);
}

.m_lang.active .lang_options {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  opacity: 1;
}

/* Social */
.social_set {
  position: fixed;
  z-index: 3999;
  background: #151924;
  opacity: 0;
  display: none;
}

.social_box {
  width: 90%;
  max-width: 640px;
  height: 200px;
  background: #fff;
  margin: 0 auto;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
}

.social_box > a {
  color: #B6BCCC;
  position: relative;
  width: 25%;
  height: 100%;
  padding: 63px 10px;
  display: block;
  float: left;
  text-align: center;
  border-left: 1px solid #EDEFF5;
}

.social_box > a:first-child {
  border: none;
}

.social_box > a:hover {
  color: #fff;
}

a.fb > i {
  background-image: url(../structure/icons/facebook.svg)
}

a.tw > i {
  background-image: url(../structure/icons/twitter.svg)
}

a.in > i {
  background-image: url(../structure/icons/linkedin.svg)
}

a.insta > i {
  background-image: url(../structure/icons/instagram.svg)
}

a.fb:hover > i {
  background-image: url(../structure/icons/facebook_hover.svg)
}

a.tw:hover > i {
  background-image: url(../structure/icons/twitter_hover.svg)
}

a.in:hover > i {
  background-image: url(../structure/icons/linkedin_hover.svg)
}

a.insta:hover > i {
  background-image: url(../structure/icons/instagram_hover.svg)
}

.no-svg a.fb > i {
  background-image: url(../structure/icons/facebook.png)
}

.no-svg a.tw > i {
  background-image: url(../structure/icons/twitter.png)
}

.no-svg a.in > i {
  background-image: url(../structure/icons/linkedin.png)
}

.no-svg a.insta > i {
  background-image: url(../structure/icons/instagram.png)
}

.no-svg a.fb:hover > i {
  background-image: url(../structure/icons/facebook_hover.png)
}

.no-svg a.tw:hover > i {
  background-image: url(../structure/icons/twitter_hover.png)
}

.no-svg a.in:hover > i {
  background-image: url(../structure/icons/linkedin_hover.png)
}

.no-svg a.insta:hover > i {
  background-image: url(../structure/icons/instagram_hover.png)
}

a.fb:hover {
  background-color: #3b5998;
}

a.tw:hover {
  background-color: #55acee;
}

a.in:hover {
  background-color: #007bb5;
}

a.insta:hover {
  background-color: #fccc63;
}

.social_box > a > i {
  display: block;
  width: 100%;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
}

.social_box > a > span {
  /*font-family: 'Montserrat', Open Sans, arial;*/
  text-transform: uppercase;
  display: block;
}

.menu {
  width: 240px;
  position: fixed;
  top: 0;
  left: 60px;
  padding: 28px;
  bottom: 0;
  z-index: 3999;
  background: #fff;
  text-align: center;
  border-right: 1px solid #EDEFF5;
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
}

.menu_btn {
  color: #FF3366;
  font-size: 13px;
  padding: 14px 35px;
  margin-top: 10px;
}

.menu_btn:hover,
.menu_btn.active {
  color: #fff;
}

.menu_links {
  text-align: left;
  margin-top: 30px;
}

.menu_links > a {
  /*font-family: 'Montserrat', Open Sans, arial;*/
  font-size: 13px;
  padding: 7px 0;
  margin-top: 9px;
  color: #323A45;
  text-transform: uppercase;
  display: block;
  letter-spacing: 2px;
}

.menu_links a:first-child {
  margin-top: 0;
}

.menu_links > a:hover {
  color: #FF3366;
}

/* O2 CMS */
.o2_container {
  overflow-y: scroll;
  padding-right: 22px;
  right: -24px;
}

.o2_intro {
  position: relative;
  min-height: 641px;
  overflow: hidden;
}

.o2_intro_bg {
  background-image: url(../structure/assist/o2_bg.jpg);
  background-size: cover;
  background-position: center;
  position: absolute !important;
  top: -30px !important;
  right: -30px !important;
  bottom: -30px !important;
  left: -30px !important;
}

.o2_head {
  position: absolute;
  top: 12%;
  left: 0;
  right: 0;
  padding: 0 20px;
  text-align: center;
  color: #fff;
  z-index: 99;
}

.o2_logo {
  width: 7.033%;
  min-width: 77px;
  margin: 0 auto;
  margin-bottom: 3.3%;
  position: relative;
  background-image: url(../structure/assist/o2_logo.png);
  background-size: cover;
}

.o2_head h1 {
  font-size: 2.6vw;
}

.o2_head h2 {
  font-size: 1.15vw;
  margin-top: 0.5vw;
}

.o2_browser_set {
  position: absolute;
  bottom: -2px;
  width: 43.011%;
  left: 50%;
}

.o2_browser {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  background-image: url(../structure/assist/o2_browser.png);
  background-size: cover;
  background-position: center;
}

.m_projects {
  width: calc(100% + 20px);
  height: 100%;
  right: -20px;
  left: 0;
  position: absolute;
  overflow-y: scroll;
}

.m_projects > a {
  width: 100%;
  height: 54vw;
  min-height: 250px;
  float: left;
  display: block;
  background-size: cover;
  background-position: center;
}

.m_projects > a:hover {
  opacity: 0.7 !important;
}

.o2_info {
  max-width: 1200px;
  padding: 0 20px;
  padding-top: 100px;
  margin: 0 auto;
  text-align: center;
}

.o2_info > h1 {
  font-size: 40px;
}

.o2_info > p {
  font-size: 18px;
  margin-top: 30px;
  color: #7E8890;
}

.o2_data {
  margin-top: 100px;
  position: relative;
}

.o2_scr {
  display: none;
  width: 66.138%;
  position: absolute;
  right: 0;
}

.o2_scr > img {
  display: inline-block;
  max-width: 100%;
}

.o2_features {
  width: 100%;
  max-width: 100%;
  position: absolute;
  left: 0;
  text-align: left;
}

.o2_block {
  margin-top: 30px;
  max-width: 360px;
  text-align: left;
  float: right;
  padding: 40px 30px;
}

.o2_block h1 {
  font-size: 14px;
  height: 24px;
  line-height: 24px;
  /*font-family: 'Montserrat', Open Sans, arial;*/
  letter-spacing: 1px;
}

.o2_block p {
  font-size: 14px;
  color: #7E8890;
  line-height: 24px;
  margin-top: 10px;
}

.o2_block h1 i {
  display: block;
  float: left;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background-repeat: no-repeat;
}

.o2_block:nth-child(1) h1 i {
  background-image: url(../structure/icons/f_1.svg)
}

.o2_block:nth-child(2) h1 i {
  background-image: url(../structure/icons/f_2.svg)
}

.o2_block:nth-child(3) h1 i {
  background-image: url(../structure/icons/f_3.svg)
}

.no-svg .o2_block:nth-child(1) h1 i {
  background-image: url(../structure/icons/f_1.png)
}

.no-svg .o2_block:nth-child(2) h1 i {
  background-image: url(../structure/icons/f_2.png)
}

.no-svg .o2_block:nth-child(3) h1 i {
  background-image: url(../structure/icons/f_3.png)
}

.o2_button {
  background: #BB77FF;
  color: #fff;
  /*font-family: 'Montserrat', Open Sans, arial;*/
  letter-spacing: 1px;
  font-size: 13px;
  padding: 16px 27px;
  margin-top: 50px;
  margin-left: 15px;
  margin-right: 15px;
  display: inline-block;
  border-radius: 120px;
  -webkit-border-radius: 120px;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(50, 50, 50, 0.35);
  -moz-box-shadow: 0px 0px 22px 0px rgba(50, 50, 50, 0.35);
  box-shadow: 0px 0px 22px 0px rgba(50, 50, 50, 0.35);
}

.o2_button:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.o2_button > i,
.o2_button > span {
  display: inline-block;
  vertical-align: middle;
}

.o2_button > i {
  width: 11px;
  height: 14px;
  background-image: url(../structure/icons/live_icon.svg);
  margin-right: 5px;
}

/* Responsiveness */
@media (max-width: 1200px) {
  #services {
    overflow-y: scroll;
  }

  .srv_row,
  .main_visual > span {
    width: 50%;
  }

  #services.ready .srv_row:not(:nth-child(2)) {
    border-left: 1px solid #EDEFF5;
  }

  #services.ready .srv_box {
    border-bottom: 1px solid #EDEFF5;
  }

  .srv_bg i,
  .main_visual > span:nth-child(3),
  .main_visual > span:nth-child(4) {
    display: none;
  }

  .o2_head {
    top: 75px;
  }

  .o2_logo {
    margin-bottom: 37px;
  }

  .o2_head h1 {
    font-size: 31px;
  }

  .o2_head h2 {
    font-size: 14px;
    margin-top: 5px;
  }

  .o2_browser_set {
    width: 100%;
    max-width: 490px;
    margin-left: -245px !important;
  }
}

@media (max-width: 1180px) {
  .o2_scr,
  .o2_features {
    width: 100%;
    max-width: 100%;
    position: relative;
    margin-top: 50px;
  }

  .o2_features {
    max-width: 360px;
    margin: 0 auto;
  }

  .o2_button {
    position: relative;
    top: 0;
  }
}

@media (max-width: 960px) {
  .form_heading {
    width: 100%;
    margin-right: 0 !important;
    margin-left: 0;
    margin-bottom: 0;
    margin-top: 50px;
  }

  .form_h {
    width: 50%;
    padding: 0;
    margin-bottom: 30px;
  }

  .form_h:after {
    display: none;
  }

  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }
}

@media (max-width: 840px) {
  .srvs_box_set {
    width: 33.3%;
  }
}

@media (max-width: 640px) {
  #home h1,
  .form_set > h1 {
    font-size: 40px;
  }

  .form_set > p {
    font-size: 17px;
  }

  .form_row {
    margin-bottom: 0;
  }

  .form_input {
    width: 100%;
    margin: 0 !important;
    margin-bottom: 26px !important;
  }

  .range_set {
    left: 135px;
    right: 90px;
  }

  label,
  .label_role {
    font-size: 14px;
    top: 23px;
    /*color: #151924;*/
  }

  .range {
    font-size: 18px;
    top: 22px;
  }

  .srvs_box_set {
    width: 50%;
  }

  .g_photos_row {
    width: 100%;
    float: none;
  }

  .g_photo {
    width: 50%;
    float: left;
  }

  .srv_row,
  .main_visual > span {
    width: 100%;
  }

  .srv_row {
    height: auto;
  }

  .srv_box {
    min-height: 370px;
    border-top: 1px solid #EDEFF5;
  }

  .srv_row:first-child .srv_box {
    border-color: transparent;
  }

  .srv_bg i,
  .main_visual > span:nth-child(2) {
    display: none;
  }
}

@media (max-width: 550px) {
  .o2_intro {
    min-height: 580px;
  }

  .o2_browser_set {
    left: 0 !important;
    margin-left: 0 !important;
  }

  .o2_info > h1 {
    font-size: 30px;
  }

  .o2_info > p {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  #home h1 {
    font-size: 36px;
  }

  .form_set > h1 {
    text-align: left;
  }

  .form_set > p {
    font-size: 16px;
    text-align: left;
  }

  .srvs_box_set,
  .form_h {
    width: 100%;
  }
  .form_h {
    padding: 0 !important
  }

  .o2_features {
    text-align: center;
  }

  .o2_intro {
    min-height: 550px;
  }

  .o2_logo {
    width: 80px;
    margin-bottom: 25px;
  }

  .o2_head h2 {
    font-size: 17px;
    margin-top: 15px;
  }

  .o2_info {
    padding-top: 50px;
  }

  .o2_info > h1 {
    font-size: 25px;
  }

  .o2_info > p {
    font-size: 14px;
  }

  .o2_data {
    margin-top: 70px;
  }
}