html,body {
    width: 100%;
    height: 100%;
}
body {
    position: relative;
    color: #fff;
    background: #000;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}
body::-webkit-scrollbar {
    width: 7px;
}
 
body::-webkit-scrollbar-track {
    border-left: 1px solid rgba(254,147,3,1);
}
 
body::-webkit-scrollbar-thumb {
  background: rgb(215,49,48);
  background: linear-gradient(0deg, rgba(215,49,48,1) 0%, rgba(254,147,3,1) 100%);
}
section {
	display: block;
    position: relative;
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
}
section .container {
    position: relative;
}
.section-bg {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100%;
    height: 100%;
    background: #000;
    padding: 15px;
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 999999;
}
.preloader img,
.preloader svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    margin-top: -50px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.scrollShowFade,
.scrollShowFadeUp,
.scrollShowFadeDown,
.scrollShowFadeLeft,
.scrollShowFadeRight,
.scrollShowZoomIn {
    opacity: 0;
    visibility: hidden;
}

.page-content {
    position: relative;
    width: 100%;
    min-height: 100%;
    padding: 160px 0 150px;
    overflow: hidden;
}
.hide {
    opacity: 0;
    visibility: hidden;
}
.show {
    opacity: 1;
    visibility: visible;
}
h1,h2,h3,h4,h5,h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}
.page-title {
    position: relative;
    margin: 0 0 50px;
    font-size: 60px;
    text-transform: uppercase;
}
.page-title:before {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(100% + 50px);
    width: 2000px;
    height: 1px;
    background: #fff;

    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    z-index: 999;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
header.active {
    z-index: 999999;
}
header.scrolled {
    background: #000
    padding: 10px 0;
}
header .logo {
    position: relative;
    z-index: 99999;
    margin: 0 30px;
}
header .logo img{
    height: 40px;
    
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
header.scrolled .logo img {
    height: 35px;
}
header .main-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
}
header .main-nav a {
    text-decoration: none;
    color: #fff;
}
.menu {
    position: relative;
    margin-top: 150px;
    z-index: 10;
}
.menu__item {
    line-height: 1;
    position: relative;
    display: block;
    margin: 1em 0;
    outline: none;
    animation-delay: .3s;
}
/*.menu__item:nth-child(2) {
    animation-delay: .4s;
}
.menu__item:nth-child(3) {
    animation-delay: .5s;
}
.menu__item:nth-child(4) {
    animation-delay: .6s;
}
.menu__item:nth-child(5) {
    animation-delay: .7s;
}
.menu__item:nth-child(6) {
    animation-delay: .8s;
}
.menu__item:nth-child(7) {
    animation-delay: .9s;
}
.menu__item:nth-child(8) {
    animation-delay: 1s;
}*/
.menu__item-name,
.menu__item-label {
    position: relative;
    display: inline-block;
}
.menu__item {
    font-weight: 700;
    display: grid;
    justify-content: center;
    margin: 50px 0;
    grid-template-columns: auto;
}
.menu__item-name {
    font-size: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    white-space: pre;
    grid-area: 1 / 1 / 2 / 2;
}
.menu__item-name span {
    display: inline-block;
}
.menu__item-label {
    font-size: 24px;
    line-height: 1.4;
    overflow: hidden;
    margin: 0;
    text-align: center;
    color: transparent;
    transition: color 0s 0.3s;
    grid-area: 1 / 1 / 2 / 2;
}
.menu__item:hover .menu__item-label,
.menu__item:focus .menu__item-label {
    color: rgba(254,147,3,1);
}
.menu__item-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: translate3d(-100%,0,0) translate3d(-1px,0,0);
    transition: transform 0.6s;
    transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}
.menu__item:hover .menu__item-label::before,
.menu__item:focus .menu__item-label::before {
    transform: translate3d(100%,0,0) translate3d(1px,0,0);
}
header .menu-contact {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 22px;
}
header .menu-contact a {
    display: inline-block;
    color: #fff;
    margin-right: 30px;
    padding-right: 30px;
    border-right: 1px solid #fff;
}
header .menu-contact p {
    display: inline-block;
    font-weight: bold;
    margin: 0;
}

.menu-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    z-index: 9999;
}
.menu-btn span {
    float: left;
    line-height: 16px;
    margin-right: 10px;

    transition: all .3s ease-in-out;
}
.menu-btn:hover span{
    color: rgba(254,147,3,1);
}
.menu-btn img {
    height: 16px;

    transition: all .3s ease-in-out;
}
.menu-btn.active img {
    transform: rotate(45deg);
}
.header-triangle {
    position: absolute;
    top: -440px;
    right: -330px;
    height: 660px;
}
.triangle-slider {
    position: absolute;
    bottom: -80px;
    left: -17%;
    height: 60%;
    z-index: -1;
}
/* END HEADER */

.home-menu {
    position: absolute;
    top: 30px;
    left: 50%;
    padding: 0;
    text-align: center;
    z-index: 99999;
    transform: translateX(-50%);
}
.home-menu li {
	display: inline-block;
}
.home-menu a {
    margin-right: 20px;
    color: #fff;

    transition: all .3s ease-in-out;
}
.home-menu a:hover {
    color: rgba(254,147,3,1);
    text-decoration: none;
}
/* home slider */
.highlight {
    padding-top: 200px;
}
.home-slider {
    width: 100%;
    height: 600px;
    display: block;
}
.home-slider .slick-list,
.home-slider .slick-track,
.home-slider .slick-slide {
    height: 100%;
}
.home-slider .slick-list {
    overflow: unset !important;
}
.slick-slide {
    outline: none;
}
.slick-prev {
    position: absolute;
    bottom: 20px;
    right: 80px;
    background: none;
    border: none;
    text-transform: uppercase;
    font-weight: 900;
    outline: none !important;
    cursor: pointer;
    z-index: 99;
}
.slick-next {
    position: absolute;
	bottom: 20px;
    right: 20px;
    background: none;
    border: none;
    text-transform: uppercase;
    font-weight: 900;
    outline: none !important;
    cursor: pointer;
}
.slick-prev img,
.slick-next img {
    height: 16px;
}
.slide-content {
    position: relative;
    width: 90%;
    margin: 0 auto;
    z-index: 3;
}
.slide-content h1 {
    font-size: 60px;
    line-height: 70px;
    margin: 0;
}
.slide-content h4 {
    font-size: 32px;
}
.slide-content p {
    width: 60%;
    font-size: 18px;
    margin: 50px 0 0;
}
.slide-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
}
.slide-image img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.slide-image .black-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: rgb(215,49,48);
    background: linear-gradient(0deg, rgba(215,49,48,1) 0%, rgba(254,147,3,1) 100%);
}
.slide-image .white-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: rgb(215,49,48);
    background: linear-gradient(0deg, rgba(215,49,48,.75) 0%, rgba(254,147,3,.5) 100%);
    z-index: 2;
}
.slide-image .black-bg:after {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    z-index: -1;
}
.scroll-down {
    position: absolute;
    bottom: -100px;
    right: -100px;
}
.scroll-down:after {
    content: '';
    display: block;
    width: 1px;
    height: 150px;
    bottom: 0;
    left: 0;
    background: #fff;
}
.scroll-down p {
    position: absolute;
    top: -50px;
    left: -28px;
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;

    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
}


.home__slider-txt {
    width: 50%;
    margin: 0 auto;
    text-align: center;
}
.home__slider-txt h1 {
    font-size: 32px;
}
.home__slider-txt h2 {
    font-size: 24px;
}
.home__slider-txt p {
    margin: 40px 0 16px;
    font-size: 24px;
    text-transform: uppercase;
}
.home__main-slider {
    height: 500px;
    padding: 0 40px;
}
.home__main-slider .item {
    padding: 0 32px;
}
.slide__item-inner {
    width: 100%;
    height: 500px;
    background: #151515;
    padding: 32px;
}
.slide__item-btns a {
    display: block;
    padding: 12px 16px;
    margin-bottom: 16px;
    text-align: center;
    background: #4CAF50;
    color: #fff;
    text-transform: uppercase;
}
.slide__item-btns a:nth-child(2) {
    background: #FFC107;
}
.slide__item-btns a:nth-child(3) {
    background: #F44336;
}
.slide__item-inner h2 {
    font-size: 18px;
}

/*HOME ABOUT*/
.home-about-shape {
    position: absolute;
    right: 0;
    top: 0;
    height: 90%;
    z-index: -1;
    animation-delay: .4s;
}
.home-about h2 {
    position: relative;
    font-size: 60px;
    font-weight: 700;
    margin: 100px 0px 30px 50px;
    animation-delay: .2s;
}
.home-about h2:after {
    content: "";
    position: absolute;
    top: calc(100% + 40px);
    left: 50px;
    width: 2px;
    height: 200px;
    background: #fff;
}
.home-about p {
    width: 60%;
    margin: 0 auto;
    font-size: 18px;
    line-height: 29px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
    animation-delay: .2s;
}
.home-clients .row {
    height: auto !important;
}
/* HOME WORK HOW */
.home-process {
    height: auto !important;
}
.home-process h2 {
    position: relative;
    font-size: 60px;
    text-align: center;
    font-weight: 700;
    margin: 0 0 190px;
}
.home-process h2:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -80%;
    width: 100%;
    height: 2px;
    background: #fff;

    transform: translateY(-50%);
}
.process-item {
    position: relative;
    margin-bottom: 190px;
}
.process-item img {
    position: absolute;
    top: 0%;
    right: -70%;
    height: 300px;
    /*transform: translateY(-50%);*/
    animation-delay: .6s;
    z-index: -1;
}
.process-item:nth-child(3) img {
    right: auto;
    left: -100%;
    height: 230px;
}
.process-item:nth-child(4) img {
    right: -100%;
    height: 300px;

    transform: rotate(180deg);
}
.process-item h3 {
    position: relative;
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px;
}
.process-item:before {
    content: "01";
    position: absolute;
    top: -120px;
    left: -120px;
    color: #fff;
    font-size: 200px;
    font-weight: 700;
    line-height: 1;
    opacity: .15;
}
.process-item:nth-child(3):before {
    content: "02";
}
.process-item:nth-child(4):before {
    content: "03";
}
.process-item p {
    font-size: 18px;
    line-height: 29px;
    animation-delay: .2s;
}

/* HOME SERVICES */
.home-services {
    padding-bottom: 50px;
}
.home-services .row {
    height: 100%;
}
.home-services h2 {
    position: relative;
    font-size: 60px;
    text-align: center;
    font-weight: 700;
    margin: 0 0 100px;
}
.home-services h2:after {
    content: "";
    position: absolute;
    top: 50%;
    left: -80%;
    width: 100%;
    height: 2px;
    background: #fff;

    transform: translateY(-50%);
}
.home-service-item {
    position: relative;
    height: calc(100% - 250px);
    padding: 0;
}
.home-service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-service-item .img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(215,49,48);
    background: linear-gradient(0deg, rgba(215,49,48,1) 0%, rgba(254,147,3,1) 100%);
    opacity: 0.5;

    transition: all .3s ease-in-out;
}
.home-service-item:hover .img-overlay {
    opacity: 0.95;
}
.home-service-item h3 {
    position: absolute;
    bottom: 0;
    left: 20px;
    line-height: 1;
    font-weight: 700;
    margin: 0;
    transform: rotate(-90deg);
    transform-origin: 0 0;
}
.home-service-item p {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 50px;
    font-size: 18px;
    line-height: 28px;
    opacity: 0;
    visibility: hidden;

    transition: opacity .3s ease-in-out;
}
.home-service-item:hover p {
    opacity: 1;
    visibility: visible;
}
.home-clients h2 {
    margin-bottom: 100px;
}
.home-clients h2:after {
    left: auto;
    right: -100%;
}
.home-clients h3 {
    margin-bottom: 32px;
}
/*END HOME SERVICES*/

/* HOME PROJECTS*/
.home-projects {
	margin-bottom: 100px;
	height: auto;
}
.projects-triangle {
    position: absolute;
    top: -50px;
    right: -200px;
    width: 300px !important;
}
.home-projects h2 {
    position: relative;
    font-size: 60px;
    text-align: center;
    font-weight: 700;
    margin: 0 0 100px;
}
.home-projects h2:after {
    content: "";
    position: absolute;
    top: 50%;
    left: -90%;
    width: 100%;
    height: 2px;
    background: #fff;

    transform: translateY(-50%);
}
.home-projects img {
	width: 80%;
    margin: 0 auto;
    display: block;
}
.home-projects a {
	display: block;
    margin: 50px 0 0;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;

    transition: color .3s ease-in-out;
}
.home-projects a:hover {
    color: rgba(254,147,3,1);
}
/* END HOME PROJECTS */


/*PROJECTS */
.projects-page .capabilities-item:nth-child(2) {
    margin-bottom: 300px;
}
.projects-page .capabilities-item:nth-child(2) .project-img:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: -50px;
    left: -50px;
    background: rgb(215,49,48);
    background: linear-gradient(0deg, rgba(215,49,48,1) 0%, rgba(254,147,3,1) 100%);
    z-index: -1;
}
.projects-page .capabilities-item:nth-child(2) .project-img:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 150px;
    bottom: -100px;
    left: -25px;
    background: linear-gradient(0deg, rgba(254,147,3,1) 0%, rgba(215,49,48,1) 100%);
}
.projects-page .capabilities-item:nth-child(2) .project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.projects-page .capabilities-item:nth-child(2) .work-circle-shape{
	display: none;
}
.work-circle-shape {
	position: absolute;
    top: -100px;
    left: -60%;
    z-index: -1;
}
.projects-page .capabilities-item:nth-child(odd) .work-circle-shape{
	transform: rotate(180deg);
    right: -60%;
    left: auto;
    top: -110px;
}
/*END PROJECTS */


/* SERVICES */
.services-shape {
    position: absolute;
    top: -170px;
    right: -205px;
    width: 500px;
}
.services {
    color: #fff;
}
.services .service-items{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 50%;

    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.service-item {
    height: 100%;
    padding: 0;
}
.service-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.service-item:hover .service-item-inner {
    padding: 15px;
}
.service-item .service-info{
    position: relative;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    padding: 15px;
    z-index: 2;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.service-item:hover .service-info {
    border: 1px solid #fff;
}
.service-item .service-info h3 {
    position: relative;
    top: 155px;
    left: -166px;
    text-transform: uppercase;
    text-align: right;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;

    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.service-item:hover .service-info h3{
    left: -151px;
    top: 142px;
}
.service-item .service-info p {
    position: absolute;
    bottom: 0;
    left: 15px;
    opacity: 0;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.service-item:hover .service-info p {
    opacity: 1;
}
.service-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    z-index: 1;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.service-item:hover .overlay {
    opacity: 0.5;
}
.service-contact {
    display: none;
}
/*END SERVICES*/

/* HOME WORKS */
.home-works {
    color: #fff;
}
.work-header-shape {
    position: absolute;
    top: -120px;
    right: -200px;
    height: 450px;
}
.home-works .section-bg {
    text-align: right;
}
.work-items {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 50%;

    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.work-item {
    width: 50%;
    height: calc(50% - 15px);
    padding: 0 15px;
    margin-bottom: 30px;
    float: left;
}
.work-item:nth-child(2) {
    height: 100%;
    margin-bottom: 0;
}
.work-item-inner {
    width: 100%;
    height: 100%;
    position: relative;
}
.work-item .work-info {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    padding: 0 30px;
    text-align: center;
    opacity: 0;
    z-index: 2;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;

    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.work-item:hover .work-info {
    opacity: 1;
}
.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.work-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    z-index: 1;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.work-item:hover .overlay {
    opacity: 0.5;
}
.view-all-btn {
    float: left;
    display: block;
    width: 100%;
    margin: 50px 0;
    color: #000;
    text-transform: uppercase;
    font-weight: 900;
    text-align: center;
}
.view-all-btn i {
    margin-left: 15px;
}
/* END HOME WORKS */

/* SERVICES PAGE */
.services-page .capabilities-img img {
    width: 100%;
}
.contact-btn {
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.contact-btn:hover {
    color: rgb(254,147,3);
    text-decoration: none;
}
.contact-btn i {
    margin-left: 15px;
}
.service-contact {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 32px;
    background: rgba(0,0,0,0.9);
    overflow-y: scroll;
}
.service-contact form {
    position: absolute;
    top: 100px;
    left: 50%;
    width: 90%;
    max-width: 600px;

    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
}
.close__service-contact {
	position: absolute;
	top: -32px;
    right: -32px;
	font-size: 24px;
	color: #fff;
	cursor: pointer;
}
/* END SERVICES PAGE */

/* CAPABILIIES PAGE */
.capabilities-page {

}
.capabilities-shape {
    position: absolute;
    top: -70px;
    right: -180px;
    width: 450px;
}
.capabilities-item {
    position: relative;
    min-height: 400px;
    margin: 150px 0 0;
}
.capabilities-img {
    position: relative;
    width: 100%;
    height: 400px;
}
.capabilities-item:nth-child(odd) .capabilities-img {
    order: 2;
}
.capabilities-img .img {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    box-shadow: 2px 2px 10px -15px rgba(255,255,255,0.15);
}
.capabilities-item:nth-child(odd) .capabilities-img .img {
    box-shadow: -2px -2px 10px -15px rgba(255,255,255,0.15);
}
.capabilities-img .img:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: -50px;
    left: -50px;
    background: rgb(215,49,48);
    background: linear-gradient(0deg, rgba(215,49,48,1) 0%, rgba(254,147,3,1) 100%);
    z-index: -1;
}
.capabilities-item:nth-child(odd) .capabilities-img .img:before{
    left: auto;
    right: -50px;
}
.capabilities-img .img:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 150px;
    bottom: -100px;
    left: -25px;
    background: linear-gradient(0deg, rgba(254,147,3,1) 0%, rgba(215,49,48,1) 100%);
}
.capabilities-item:nth-child(odd) .capabilities-img .img:after{
    left: auto;
    right: -25px;
}

.capabilities-info h2 {
    margin-bottom: 0 0 20px;
}
.capabilities-info h4 {
    margin: 0 0 30px;
}
.capabilities-info p {
    color: #fff;
    font-size: 18px;
    line-height: 29px;
}
/* END CAPABILIIES PAGE */

/* PROJECTS PAGE */
.projects-page .capabilities-img img {
    width: 100%;
}
/* END PROJECTS PAGE */

/* CONTACT PAGE */
.contact-page {

}
.contact-shape {
    position: absolute;
    top: 300px;
    left: -270px;
    height: 450px;
    z-index: -1;
}
.contact-header-triangle {
    position: absolute;
    top: -260px;
    right: -150px;
    height: 450px;
}
.contact-info h4 {
    margin: 0 0 50px;
}
.contact-info p {
    font-size: 18px;
    line-height: 28px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.contact-form input {
    width: 100%;
    height: 50px;
    padding: 15px;
    margin-bottom: 15px;
    background: #000;
    border: 1px solid #fff;
    color: #fff;
    outline: none;
}
.contact-form textarea {
    width: 100%;
    height: 150px;
    padding: 15px;
    margin-bottom: 15px;
    background: #000;
    color: #fff;
    border: 1px solid #fff;
    outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border: 1px solid rgba(254,147,3,1);
}
.contact-form select {
	float: left;
	width: 33.333%;
    height: 50px;
    background: none;
    color: #757575;
    margin-bottom: 15px;
    border-radius: 0;
    -webkit-appearance: none;
    padding: 15px;
    background: #000;
    border: 1px solid #fff;
    outline: none;
}
.contact-form button {
    float: right;
    background: none;
    outline: none;
    border: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    cursor: pointer;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.contact-form button:hover {
    color: rgb(254,147,3);
    text-decoration: none;
}
.contact-form button i {
    margin-left: 15px;
}
.g-recaptcha {
    margin-bottom: 16px;
}
.contact__terms {
    width: 70%;
}
.contact__terms a {
    color: #fff;
    text-decoration: underline;
}
.contact__terms a:hover {
    color: rgb(254,147,3);
}

.contact-map {
    width: 100%;
    height: 400px;
    position: relative;
    margin: 150px 0 100px;
}
.contact-map:before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100%;
    height: 100%;
    padding: 15px;
    background: rgb(215,49,48);
    background: linear-gradient(0deg, rgba(215,49,48,1) 0%, rgba(254,147,3,1) 100%);
}
.contact-map:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 150px;
    bottom: -100px;
    right: -25px;
    background: linear-gradient(0deg, rgba(254,147,3,1) 0%, rgba(215,49,48,1) 100%);
}
.contact-map p{
    position: absolute;
    top: -35px;
    left: 65px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700
}
.contact-map p i {
    margin-right: 15px;
}
.contact-map #map {
    width: 100%;
    height: 100%;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    z-index: 1;
}
/* END CONTACT PAGE */

/* TEAM PAGE */
.team-page {
    overflow: hidden;
}
.team-page .page-title:before {
    content: "";
    position: absolute;
    top: 130px;
    left: 70px;
    width: 2px;
    height: 200px;
    background: #fff;

    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
}
.team-desc {
    position: relative;
    width: 60%;
    margin: 0 auto;
    font-size: 16px;
    line-height: 29px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
    animation-delay: .2s;
}
.team-shape {
    position: absolute;
    top: 0;
    left: -126%;
    height: 450px;
    z-index: -1;
}
.team-header-shape {
    position: absolute;
    top: -150px;
    right: -100px;
    height: 500px;
    z-index: -1;
}
.team-members {
    margin: 150px 0;
}
.team-slider {
    width: 100%;
}
.team-item {
    position: relative;
    height: 350px;
    width: 100%;
    padding: 0 15px;
}
.team-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-info {
    position: absolute;
    top: 0;
    left: 15px;
    width: calc(100% - 30px);
    height: 100%;
    color: #fff;
    padding: 15px;
}
.team-info-inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 15px;
    border: 1px solid transparent;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.team-item:hover .team-info-inner {
    border: 1px solid #fff;
}
.team-title {
    position: absolute;
    bottom: 30px;
    left: 30px;

    -webkit-transition: all .3s ease-in-out .3s;
    -moz-transition: all .3s ease-in-out .3s;
    transition: all .3s ease-in-out .3s;
}
.team-item:hover .team-title {
    bottom: 78%;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.team-title h3 {
    margin: 0;
}
.team-title span {
    display: block;
    margin: 0;
}
.team-info p {
    position: absolute;
    bottom: 15px;
    left: 15px;
    opacity: 0;
    visibility: hidden;
    margin: 0;

    -webkit-transition: all .3s ease-in-out .3s;
    -moz-transition: all .3s ease-in-out .3s;
    transition: all .3s ease-in-out .3s;
}
.team-item:hover .team-info p {
    opacity: 1;
    visibility: visible;
}
/* END TEAM PAGE */


/* MUSINGS PAGE */
.musings {
    margin-top: 200px;
}
.musing-item .img {
    position: relative;
    width: 50%;
    height: 200px;
    float: left;
}
.musing-item .img:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    z-index: -1;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.musing-item:hover .img:before {
    top: -50px;
    left: -50px;
}
.musing-item .img:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 0;
    bottom: -100px;
    left: -25px;
    background: #000;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.musing-item:hover .img:after {
    height: 150px;
}
.musing-item .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.musing-info {
    width: 50%;
    float: left;
    padding-left: 30px;
}
.read-btn {
    display: block;
    margin: 20px 0 0;
    color: #000;
    font-family: 'Roboto Slab', serif;
    text-transform: uppercase;
    font-weight: 900;
}
.read-btn i {
    margin-left: 15px;
}
/* END MUSINGS PAGE */














footer {
    position: relative;
    height: 50px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    padding: 0 15px;
    line-height: 50px;
}
footer a {
    color: #fff;
    float: left;
    padding: 0 15px;

    transition: all .3s ease-in-out;
}
footer a:hover {
    color: rgba(254,147,3,1);
    text-decoration: none;
}
footer p {
    float: left;
    margin: 0;
    padding: 0 15px;
}
footer .copyright {
    float: left;
}
footer .footer-contact {
    float: right;
}
footer .gotop {
    float: left;
    height: 24px;
    padding: 0 15px;
    margin-top: 13px;
    cursor: pointer;
}
footer .triangle-footer {
    position: absolute;
    bottom: -12px;
    left: 50%;
    width: 150px;

    transform: translateX(-50%) rotate(-90deg);
}