#main-wrapper {
  background: #ffffff;
  overflow: hidden;
}
body {
  font-family: "Hind", sans-serif;
  font-size: 15px;
  line-height: 1.8em;
  color: #3d3d50;
  font-weight: 300;
  background: #ffffff;
}
.columns-block {
  display: flex;
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  justify-content: space-around;
}
.left-col-block {
  width: 50%;
  text-align: center;
  overflow: hidden;
  position: fixed;
  left: 0;
}
.right-col-block {
  width: 50%;
  position: absolute;
  right: 0;
  box-shadow: -10px -10px 30px rgba(0, 0, 0, 0.23);
}
@media (max-width: 600px) {
  .left-col-block {
    width: 100%;
    position: relative;
  }

  .right-col-block {
    width: 100%;
    position: relative;
    box-shadow: none;
  }
}
.blocks {
  box-sizing: border-box;
}

.social-icons {
  display: inline-flex;
  margin: 0;
  padding: 0;
}
.social-icon {
  width: 20px;
  height: 20px;
  border-radius: 0%;
  margin: 4px;
}

ul {
  list-style: none;
  padding-left: 0;
}
.header {
  padding: 0;
  margin: 0;
  height: 100vh;
  vertical-align: middle;
  position: relative;
}

.header .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  padding: 10%;
}
.header .profile-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../images/himanshu.png);
  background-color: #3b434c;
  background-size: cover;
  background-position: center top;
}
.header .profile-img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    -30deg,
    rgba(222, 57, 38, 0.5) 0%,
    rgba(222, 57, 38, 0.5) 40%,
    transparent 60%,
    transparent 100%
  );
}
.header .content h1 {
  font-size: 36px;
  color: #ffffff;
  line-height: 1;
  margin: 0;
}
h1 {
  font-size: 36px;
  line-height: 1.8em;
  font-weight: 700;
}
.header .content p {
  font-size: 18px;
  color: #ffffff;
}
@media (max-width: 600px) {
  .header .profile-img {
    z-index: 1;
  }

  .header .content {
    z-index: 2;
  }
}
nav.navbar-default {
  background-color: #fff;
  border-color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 22px 0 -12px 60px;
  padding: 0px;
}
.navbar-collapse {
  padding: 0px !important;
}
nav li a {
  color: #fff !important;
  background-color: #de3926 !important;
}
nav li a:hover {
  background-color: #e57b6f !important;
}
@media (max-width: 767px) {
  nav.navbar-default {
    display: none;
  }
  .navbar-nav {
    display: none;
  }
}
a,
a:active,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

.section-wrapper {
  padding: 50px;
}
@media (max-width: 480px) {
  .section-wrapper {
    padding: 30px;
  }
}
.gray-bg {
  background-color: #ececec;
}

.section-title {
  margin-bottom: 15px;
  position: relative;
}

.section-title h2 {
  margin-bottom: 25px;
  color: #222;
}
.section-title h2:after {
  width: 100px;
  height: 3px;
  position: absolute;
  text-align: center;
  bottom: -5px;
  left: 0;
  margin: 0px;
  z-index: 1;
  content: "";
  background-color: #de3926;
}
h2 {
  font-size: 30px;
  line-height: 1.8em;
  font-weight: 700;
  text-transform: uppercase;
}
h3 {
  font-size: 24px;
  line-height: 1em;
  font-weight: 600;
  text-transform: uppercase;
}
h4 {
  font-size: 18px;
  line-height: 1em;
  font-weight: 500;
  text-transform: uppercase;
}

.section-item {
  margin-bottom: 20px;
}

.one-line {
  display: inline-flex;
}

.bold {
  font-weight: bold;
}

.period {
  font-size: small;
}

.grid {
  display: grid;
}

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

.filter-menu {
  margin-bottom: 20px;
}
.filter-menu li {
  display: inline-block;
  padding: 10px 18px;
  margin-top: 4px;
  background: #de3926;
  color: #fff;
  cursor: pointer;
}
.filter-menu li:hover,
.filter-menu li.current {
  background: #e57b6f;
}
.filter-item li.delete {
  display: none;
}
.filter-item li ul:after {
  width: 200px;
  height: 1px;
  position: relative;
  bottom: -8px;
  z-index: 1;
  content: "";
  background-color: #de3926;
}
.mt-2 {
  margin-top: 2px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-40 {
  margin-top: 40px;
}
.pl-5 {
  padding-left: 5px;
}

.feedback-form {
  margin-top: 50px;
}

.form-control {
  height: 50px;
  padding: 0 20px;
  font-size: 13px;
  line-height: 50px;
  color: #969595;
  border: 1px solid #cccccc;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
}
.form-control.message {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 25px;
}

.form-control:focus,
.form-control:active {
  box-shadow: none;
}

.btn {
  padding: 14px 30px 11px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  border: 0;
  text-transform: uppercase;
}

.btn-primary {
  background-color: #de3926;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active:focus {
  background: #e57b6f;
}
