@font-face {
    font-family: latoLight;
    src: url('../fonts/lato/latolight.ttf');
}

@font-face {
    font-family: latoBold;
    src: url('../fonts/lato/latobold.ttf');
}

@font-face {
    font-family: latoRegular;
    src: url('../fonts/lato/latoregular.ttf');
}

@font-face {
    font-family: robotoLight;
    src: url('../fonts/roboto.ttf');
}

.container-fluid {
    padding: 0;
    align-items: center;
    display: flex;
    flex-direction: column;
}

input {
    -webkit-appearance: none;
    border-radius: 0;
}

.main-image {
    position: absolute;
    height: 1068px;
    width: 100%;
    background-image: url("../img/main-image.jpg");
    background-size: cover;
    opacity: 0.15;

}
.navbar-position {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 0 10%;
    position: fixed;
    width: 100%;
    transition: top 0.2s ease-in-out;
    top: 0;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: row;
}

.nav-link {
    color: #777777;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    font-family: latoLight, sans-serif;
    font-size: 18px;
    padding-top: 1.8em;
}

.nav-link:hover {
    background-color: #555555;
    color: #FFC112;
    font-weight: bold;
}

.social {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 1.8em;
    padding-left: 1em;
}

.nav-link-icon {
    color: #777777;
    font-family: latoLight, sans-serif;
    font-size: 18px;
}

.nav-link-icon:hover {
    color: #FFC112;
    font-weight: bold;
}

.nav-up {
    top: -100px;
}

.intro {
    display: flex;
    max-width: 890px;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 200px;
}

.logo-first-position {
    background-image: url("../img/logo-first.svg");
    background-repeat: no-repeat;
    width: 94px;
    height: 205px;
}

.title-intro {
    font-family: latoBold, sans-serif;
    font-size: 42px;
    text-align: center;
    margin-top: -130px;
    width: 540px;
}
.text-intro {
    font-family: latoLight, sans-serif;
    font-size: 19px;
    text-align: center;
    color: #606060;
}

.first-sentence{
    font-family: latoRegular, sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 57.2px;
}

.second-sentence {
    margin-right: 210px;
    font-weight: 300;
    line-height: 32px;
}
.third-sentence {
    font-family: latoRegular, sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    margin-left: 210px;
}
.fourth-sentence {
    font-family: latoRegular, sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 57.2px;
}

@media (max-width: 900px) {
    .first-sentence, .second-sentence, .third-sentence, .fourth-sentence {
        margin: 0;
    }
    .first-sentence {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 10px;
    }
    .second-sentence {
        font-size: 22px;
        line-height: 35px;
        margin-bottom: 10px;
    }
    .third-sentence {
        margin-bottom: 10px;
        font-weight: bold;
    }
    .fourth-sentence {
        font-size: 22px;
        line-height: 30px;
        font-weight: 500;
    }
}

.black-button {
    background-color: #1C1C1C;
    width: 173px;
    height: 43px;
    color: #FFF;
    border: 0;
    font-family: latoLight, sans-serif;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
    -webkit-appearance: none;
    border-radius: 0;
}

.black-button:hover {
    color: #FFC112;
    font-weight: bold;
}

.fa-bars {
    color: #FFFFFF;
}

.collapsed-menu-nav-link {
    color: #939393;
    display: flex;
    justify-content: flex-end;
    height: 10px;
    font-family: latoRegular, sans-serif;
    font-size: 18px;
}

.collapsed-menu-nav-link:hover {
    background-color: #555555;
    color: #FFC112;
    font-weight: bold;
    text-decoration: none;
}

.collapsed-menu {
    padding: 10px;
    height: auto;
    text-align: end;
}

.navbar-collapse-visible {
    flex-basis: 100%;
    flex-grow: 1;
    display: flex;
    position: absolute;
    right: 0;
    top: 90px;
}

.navbar-collapse {
    flex: 1;
}

.collapsed-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #454545;
    width: 160px;
    height: 270px;
    justify-content: space-around;
    margin: 0;
    padding: 10px 0;
}

.navbar-nav {
    margin: 0;
    width: 100%;
    height: 100%;
    align-items: stretch;
    justify-content: space-evenly;
}

.navbar-nav .nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.collapsed-menu-nav>li {
    display: flex;
    align-items: center;
}

.collapsed-menu:hover {
    background-color: transparent;
}

.navbar-toggler {
    padding: 34px;
    border-radius: 0;
    background-color: #454545;
    position: absolute;
    right: 0;
}

.navbar-toggler .navbar-collapsed {
    background-color: transparent;
}

.navbar-brand {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 0;
}

@media (max-width: 550px) {

    .intro {
        margin-top: 120px;
    }

    .navbar-brand {
        margin-left: -80px;
    }

    .navbar-brand>img {
        height: 56px;
        width: 180px;
    }

    .navbar-toggler {
        padding: 27px;
    }

    .navbar-collapse-visible {
        top: 76px;
    }

    .black-button {
        height: 45px;
        width: 180px;
    }


    .black-button-our-projects {
        height: 36px;
        width: 140px;
    }
}

button:focus {
    outline: none;
}

.content-container {
    z-index: 1000;
    -webkit-transform:translateZ(0px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: visible;
}

.who-we-are {
    display: flex;
    position: relative;
    max-width: 540px;
    width: 100%;
    height: 330px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 130px;
    background-color: #FFFFFF;
    box-shadow: 10px 10px 70px rgba(0,0,0, 0.3);
    margin-bottom: 100px;
    margin-right: 10px;
    margin-left: 10px;

}

.title-who-we-are {
    color: #777777;
    font-family: latoBold, sans-serif;
    font-size: 42px;
    text-align: center;
}
.yellow-text {
    color: #FFC112;
}

.who-we-are-text-intro {
    color: #606060;
    font-family: latoLight, sans-serif;
    font-size: 26px;
    text-align: center;
    padding-right: 80px;
    padding-left: 80px;
}

.who-we-are-square-gradient {
    position: absolute;
    height: 325px;
    width: 380px;
    background: linear-gradient(to top right, #FF931E, #FFC112);
    z-index: -1;
    margin-left: 195px;
    margin-top: 122px;
}

.what-we-do-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1140px;
}

.what-we-do-description>hr {
    width: 100%;
    margin: 10px 0;
}

.what-we-do-description {
    display: flex;
    max-width: 530px;
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 100px;
    background-color: #FFFFFF;
    box-shadow: 10px 10px 70px rgba(0,0,0, 0.3);
    margin-bottom: 100px;
    padding: 40px;
}

.what-we-do-text-intro {
    color: #777777;
    font-family: latoBold, sans-serif;
    font-size: 16px;
}

.what-we-do-text-detailed {
    color: #777777;
    font-family: latoLight, sans-serif;
    font-size: 16px;
    white-space: pre-line;
}

.idea {
    text-transform: uppercase;
    font-weight: bold;
}

.fa-lightbulb {
    color: #FFC112;
}

.what-we-do-icons {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    max-width: 580px;
}

.what-we-do-icons-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 10px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.what-we-do-icons-item {
    flex: 1 0 33%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 50px;
}

.what-we-do-icons-item>span {
    text-decoration: none;
    color: #777777;
    text-align: center;
    font-size: 16px;
    font-family: latoRegular, sans-serif;
    max-width: 125px;
}
.what-we-do-icons-item:hover {
    cursor: pointer;
}

.what-we-do-icons-item:hover span {
    color: #454545;
}

.what-we-do-icons-item:hover svg path {
    fill: #454545;
}

.what-we-do-icons-item>svg {
    height: 53px;
    width: 53px;
    margin-bottom: 20px;
}
.title-who-we-are-margin {
    margin-top: 110px;

    margin-bottom: 40px;
}
@media (max-width: 676px) {
    .who-we-are {
        width: 100%;
        overflow: visible;
        height: 275px;
        margin-bottom: 56px;
        margin-top: 70px;
    }
    .what-we-do-icons-row {
        margin-top: 0;
        margin-bottom: 0;
    }

    .who-we-are-text-intro {
        padding-right: 0px;
        padding-left: 0px;
        width: 298px;
    }

    .text-intro {
        max-width: 90%;
        width: 100%;
    }
}
@media (min-width: 1040px) {
    .what-we-do-container {
        flex-direction: row;
        margin-top: 50px;
    }
}

@media (max-width: 1039.98px) {
    .what-we-do-container {
        flex-direction: column;
    }
    .content-container {
        overflow: visible;
    }
}

@media (max-width: 675px) {
    .content-container {
        overflow: hidden;
        padding: 10px;
    }
}

@media (max-width: 1024px) {
    .title-who-we-are {
        align-self: center;
        font-size: 32px;

    }

    .title-who-we-are-margin {
        margin-top: 45px;
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .what-we-do-container {
        flex-direction: column;
    }

    .what-we-do-description {
        align-items: flex-start;
        background-color: transparent;
        box-shadow: 0 0 0 rgba(0,0,0, 0);
        margin-right: 5%;
        margin-left: 5%;
        margin-top: 0;
        padding: 50px 10px 0 10px;
    }

    .border-mobile {
        padding-bottom: 10px;
        margin-bottom: 10px;
        width: 100%;
        border-bottom: 1px solid #454545;
    }

    .title-description-mobile {
        text-transform: uppercase;
    }

    .what-we-do-icons-item {
        flex: 1 0 50%;
        margin-top: 0;
    }
}

#carouselIndicators {
    max-width: 1140px;
    width: 100%;
}

.how-we-work-cards-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.how-we-work-card {
    height: 370px;
    width: 380px;
    background-color: #FFFFFF;
    margin-left: 10px;
    margin-right: 10px;
    padding: 32px 40px;
    transition: all .2s ease-in-out;
    box-shadow: 10px 10px 70px rgba(0, 0, 0, 0.3);
}

.how-we-work-cards-container>div:first-child {
    margin-left: 10px;
}

.how-we-work-cards-container>div:last-child {
    margin-right: 0;
}

.how-we-work-card:hover {
    transform: scale(1.0);
}

#carouselIndicators {
    display: none;
}

.carousel-inner {
    overflow: visible;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background-color: #767676;
    margin-left: 10px;
    margin-right: 10px;
}

.carousel-indicators .active {
    background-color: #454545;
}

.carousel-indicators {
    margin-bottom: -40px;
}

.how-we-work-container {
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 570px;
    background-color: #F1F1F1;
    overflow: hidden;
    margin-top: 0;
    justify-content: flex-start;
}


@media (max-width: 1023px) {
    .navbar-collapse {
        flex-grow: 1;
    }

    .navbar-toggler {
        align-items: flex-end;
        height: 100%;
    }



    .title-intro {
        margin-top: -200px;
        font-size: 32px;
        width: 440px;
        padding-top: 30px;
        margin-bottom: 80px;
    }

    .black-button {
        color: #FFC112;
        font-weight: bold;
    }
}

@media (max-width: 445px) {
    .title-intro {
        width: 240px;
        margin-bottom: 60px;
        padding-top: 10px;
    }
}


@media (max-width: 1020px) {
    .how-we-work-cards-container>span {
        margin: 20px 0;
    }
}

@media (min-width: 1020px) {
    .how-we-work-card {
        display: block;
        flex-direction: column;
        align-items: flex-start;
        padding-right: 30px;
        padding-left: 30px;
    }

    .how-we-work-container {
        justify-content: flex-start;
        margin-top: 30px;
        height: 720px;
        padding: 0 20px;
    }



    .how-we-work-cards-container>div:first-child {
        margin-left: 0;
    }

    .how-we-work-card {
        position: initial;
        perspective: initial;
    }

    #carouselIndicators>ol {
        display: none;
    }

    #carouselIndicators {
        display: flex;
    }

    .how-we-work-container .carousel-container {
        display: none;
    }

    .how-we-work-card:hover {
        transform: scale(1.11);
    }
}

.how-we-work-title-detailed {
    color: #000000;
    font-family: latoLight, sans-serif;
    font-size: 18px;
}

.icon-margin {
    margin-left: -16px;
    margin-bottom: 16px;
}

.how-we-work-text-detailed, .technical-card-text-detailed {
    color: #777777;
    font-family: latoLight, sans-serif;
    font-size: 16px;
    display: block;
    position: relative;
}
.how-we-work-text-detailed {
    margin-left: 20px;
}

.how-we-work-text-detailed .fas {
    position: absolute;
    left: -20px;
    top: 5px;
}

.our-projects-container {
    margin-top: 150px;
    max-width: 1140px;
    width: 100%;
}

.our-projects-projects-container {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    max-width: 1140px;
    width: 100%;
}

.our-projects-project-item {
    display: flex;
    flex-direction: row;
}

.true-energy{
    border: 1px solid lightgray;
    max-height: 418px;
}

.our-projects-project-text{
    color: #777777;
    font-family: latoLight, sans-serif;
    font-size: 16px;
    display: block;
    position: relative;
}


.project-link{
    font-family: latoRegular, sans-serif;
    text-decoration: none;
    color: #777777;;
    font-size: 16px;
}

@media (max-width: 620px) {
    .our-projects-project-text {
        text-align: left;
    }
    .project-link {
        align-self: flex-start;
        margin-top: 20px;
        text-decoration: underline;
    }
}

.project-link:hover {
    text-decoration: none;
    color: #FFC112;
}

.our-projects-project-item>div:first-child {
    border: 1px solid #c5c5c5;
}

.our-projects-project-item-container {
    max-width: 570px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.our-projects-project-item>img {
    max-width: 570px;
    width: 100%;

    transition: 0.5s;

    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.our-projects-project-item>img:hover {

    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.our-projects-project-item-content-container {
    display: flex;
    flex-direction: column;
    padding-left: 105px;
    padding-right: 105px;
}

.our-projects-project-name {
    font-family: latoBold, sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
}

.black-button-our-projects {
    height: 36px;
    width: 140px;
    padding: 0;
    margin: 0;
    text-align: center;
    padding-top: 4px;
    text-decoration: none !important;
}

.black-button-our-projects:hover {
    color: #000;
    font-weight: bold;
    background: linear-gradient(to right, #FF931E, #FFC112);
}

@media (max-width: 1024px) {
    .portfolio {
        margin-top: 100px !important;
    }

    .our-projects-container {
        padding: 0 10px;
        margin-top: 50px;
    }

    .our-projects-projects-container {
        margin-top: 35px;
    }

    .our-projects-project-item>img {
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
    }

    .black-button-our-projects {
        color: #000;
        font-weight: bold;
        background: linear-gradient(to right, #FF931E, #FFC112);
        margin-top: 30px;
    }

    .how-we-work-text-detailed, .technical-card-text-detailed {
        text-align: start;
    }

    .title-who-we-are-padding {
        padding-left: 40px;
        padding-right: 40px;
        margin-bottom: 10px;
    }

    .our-projects-project-item {
        flex: 1 0 100%;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        margin-bottom: 60px;
    }

    .our-projects-project-item-content-container {
        align-items: center;
        padding: 0;
    }

    .our-projects-project-name {
        margin: 20px 0;
    }

    p {
        margin-bottom: 0;
        text-align: center;
    }
}

.testimonials-cards-container {
    display: flex;
    flex-direction: row;
}

.testimonials-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFFFFF;
    transition: all .2s ease-in-out;
    box-shadow: 10px 10px 70px rgba(0, 0, 0, 0.3);
    padding: 32px;
}

.testimonials-card-square-gradient {
    position: absolute;
    height: 100%;
    width: 195px;
    background: linear-gradient(to top right, #FF931E, #FFC112);
    z-index: -1;
    margin-left: -180px;
}

.testimonials-card-content-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.testimonials-card-img {
    margin-left: 32px;
    margin-top: -100px;
    margin-right: 60px;
}

.testimonials-card-info {
    display: flex;
    flex-direction: column;
}

.carousel-container {
    max-width: 1140px;
    width: 100%;
}


.testimonials-slider {
    max-width: 1140px;
    width: 100%;
}

.slick-dots {
    bottom: 0;
}

.prev {
    left: -100px;
}
.next {
    right: -100px;
}
.arrow {
    top: 50%;
    opacity: 1;
    height: 30px;
    width: 80px;
    background: linear-gradient(to right, #ff941e, #ffc112);
    font-family: latoRegular, sans-serif;
    font-size: 16px;
    color: white;
    border: 0;
    position: absolute;
}

.arrow:hover{
    height: 30px;
    width: 80px;
    background: linear-gradient(to right, #ff941e, #ffc112);
    font-family: latoRegular, sans-serif;
    font-size: 16px;
    color: white;
    cursor: pointer;
}

@media (max-width: 1340px) {
    .next {
        right: -80px;
    }
    .prev {
        left: -80px;
    }
}
@media (max-width: 1300px) {
    .arrow {
        z-index: 999;
    }
    .next {
        right: -48px;
    }
    .prev {
        left: -48px;
    }
}
@media (max-width: 1240px) {
    .arrow {
        display: none;
    }
}
@media (max-width: 1160px) {
    .arrow {
        position: absolute;
        display: block;
        top: unset;
        bottom: 20px;
    }
    .next {
        right: 0;
    }
    .prev {
        left: 0;
    }
}


.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.slick-dots li button:before {
    content: '';
}

.slick-list {
    overflow: visible;
}

.slick-dots>li>button {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background-color: #767676;
}

.slick-slide {
    outline: 0;
}

.slick-dots .slick-active>button {
    background-color: #454545;
}


.how-we-work-container-carousel {
    max-width: 360px;
}

.how-we-work-container-carousel .slick-dots {
    bottom: -52px;
}

.testimonials-card-info-title {
    color: #777777;
    font-family: latoBold, sans-serif;
    font-size: 42px;
    margin-bottom: 40px;
}

.testimonials-card-info-text {
    color: #777777;
    font-family: latoLight, sans-serif;
    font-size: 16px;
    max-width: 520px;
}

.testimonials-container {
    z-index: 1000;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: #F1F1F1;
    padding: 50px 10px 50px 10px;
    overflow: hidden;
    position: relative;
    margin-top: 180px;
}

.testimonials-card-card-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.carousel-position {
    margin-bottom: -10px;
}

.testimonials-card-name {
    color: #606060;
    font-family: latoBold, sans-serif;
    font-size: 26px;
    margin-top: 20px;
}

.testimonials-card-text {
    color: #606060;
    font-family: latoLight, sans-serif;
    font-size: 21px;
}

@media (max-width: 350px) {
    .testimonials-card-text {
        letter-spacing: -1px;
    }
}

.reset-margin {
    margin: 0;
}

.testimonials-card-info-title-up {
    display: none;
    color: #777777;
    font-family: latoBold, sans-serif;
    font-size: 42px;
    margin-bottom: 40px;
}

.rotate-img {
    transform: rotate(180deg);
    align-self: flex-end;
    margin-bottom: 75px;
    margin-left: 60px;
}

.testimonials-card>img {
    width: 300px;
    height: 250px;
}

.testimonials-card>img.testimonials-card-image {
    object-fit: cover;
    height: 250px;
}

.testimonials-card-text-indi {
    font-size: 16px;
    letter-spacing: -1px;
    word-spacing: 2px;
    margin-top: 6px;
}
#carouselTestimonialsIndicators {
    max-width: 1140px;
}

.slick-track {
    display: flex;
    align-items: center;
}

.testimonials-card-name-reset-margin {
    margin-top: 0;
}

@media (max-width: 1160px) {
    .testimonials-card-content-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .slick-track {
        display: block;

    }

    .testimonials-card-info-title-up {
        display: initial;
    }

    .testimonials-card-info-title {
        display: none;
    }

    .slick-dots {
        margin-bottom: 20px;
    }

    .how-we-work-container-carousel .slick-dots {
        margin-bottom: 0;
    }

    .testimonials-card-info-text {
        text-align: initial;
    }

    .testimonials-container {
        padding-bottom: 0;
        margin-top: 0;
    }

    .testimonials-card-card-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .carousel-position {
        margin-bottom: 30px;
    }

    .rotate-img {
        margin-top: -35px;
        margin-right: 20%;
    }

    .testimonials-card-square-gradient {
        height: 655px;
        top: 0;
        margin-left: 156px;
    }

    .testimonials-card-img {
        margin: 20px 0 20px 10px;
        align-self: flex-start;
        margin-left: 20%;
    }

    .testimonials-card>img {
        max-width: 300px;
        width: 100%;
        height: 250px;
    }
}


@media (max-width: 400px) {
    .how-we-work-card {
        padding: 20px 20px;
    }
    .testimonials-card {
        padding: 18px;
    }

    .testimonials-card-square-gradient {
        height: 600px;
    }

    .testimonials-card-text-indi {
        word-spacing: -1px;
    }
}

@media (max-width: 600px) {
    .testimonials-card-img {
        margin-left: 10px;
    }

    .rotate-img {
        margin-right: 10px;
    }
}

.contacts-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 190px;
}

.contacts-info {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 485px;
    max-width: 485px;
    width: 100%;
    background-color: #1C1C1C;
}

.contacts-info-container {
    width: 300px;
    display: flex;
    flex-direction: column;
}

.contacts-form {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: auto;
    max-width: 655px;
    width: 100%;
    padding: 80px 100px;
    position: relative;
    box-shadow: 0 10px 70px rgba(0, 0, 0, 0.3);
}

.contacts-form > .title-who-we-are {
    margin: 0;
}

.contacts-info-title {
    color: #FFFFFF;
    font-family: latoBold, sans-serif;
    font-size: 42px;
    margin-bottom: 20px;
}

.contacts-info-date {
    color: #FFFFFF;
    font-family: latoLight, sans-serif;
    font-size: 18px;
}

.contacts-info-date>span {
    color: #FFFFFF;
    font-family: latoLight, sans-serif;
    font-size: 17px;
    margin-left: 10px;
}

.contacts-info-phones {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}

.contacts-info-phones>i {
    color: #FFFFFF;
    transform: rotate(90deg);
    height: 16px;
    margin-top: 15px;
}

.contacts-info-phone-items {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}

.phone {
    color: #FFFFFF;
    font-family: latoLight, sans-serif;
    font-size: 32px;
}

.text-field-pointer {
    color: #606060
}


.contacts-info-mail {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}



.contacts-info-mail>i {
    color: #FFFFFF;
    margin-top: 5px;
}

.contacts-info-mail>span {
    color: #FFFFFF;
    font-family: latoLight, sans-serif;
    font-size: 18px;
    margin-left: 20px;
}

.contacts-info-follow {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    align-items: center;
    margin-left: 36px;
}

.contacts-info-follow>a>i {
    margin-left: 20px;
    margin-right: 5px;
    color: #FFFFFF;
}

.send-button {
    align-self: flex-end;
    font-family: latoLight, sans-serif;
    color: #000000;
    background: linear-gradient(to right, #FF931E, #FFC112);
    width: 175px;
    margin-top: 30px;
    -webkit-appearance: none;
    border-radius: 0;
}

.send-button:hover {
    font-family: latoBold;
    color: black;
}



@media (max-width: 1024px) {
    .contacts-container {
        flex-direction: column;
        margin-top: 0;
    }

    .contacts-info {
        max-width: 100%;
    }

    .contacts-form {
        padding: 20px 10px 0;
        box-shadow: 0 0 0;
    }

    .contacts-form>p {
        align-self: center;
    }

    .contacts-info-title { align-self: center}


    .send-button {
        position: initial;
        height: 36px;
        width: 140px;
        padding: 0;
    }
}


.input {
    background-color: #F2F2F2;
    border: 0;
    height: 38px;
    width: 100%;
    font-family: latoLight, sans-serif;
    font-size: 18px;
    padding: 10px;
    margin-bottom: 10px;
}

.input:focus {
    border: 1px solid black;
    outline: none;
}

textarea {
    resize: none;
    height: 105px;
    border: 0;
    background-color: #F2F2F2;
    width: 100%;
    font-family: latoLight, sans-serif;
    font-size: 18px;
    padding: 10px;
}
textarea:focus {
    border: 1px solid black;
    outline: none;
}

.footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 175px;
    position: relative;
    align-items: center;
}

.footer-menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 250px;
    background-color: #1C1C1C;
    align-items: center;
}

.footer-form {
    display: flex;
    flex-direction: column;
    max-width: 270px;
    width: 100%;
}

.copyright {
    color: #777777;
    font-size: 14px;
    font-family: robotoLight, sans-serif;
    position: absolute;
    bottom: 20px;
}

.nav-link-icon {
    white-space: nowrap;
}

.footer-link {
    font-size: 18px;
    font-family: robotoLight, sans-serif;
    color: #FFFFFF;
}

.footer-menu-content {
    max-width: 1140px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.footer-menu-content>ul>li {
   padding: 10px;
    text-align: center;
}

ul {
    list-style-type: none;
    margin: 0;
    margin-left: 40px;
}

.footer-link:hover {
    color: #FFC112;
    text-decoration: none;
}

.footer-form-title {
    font-size: 21px;
    font-family: latoRegular, sans-serif;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-form-text {
    font-size: 14px;
    font-family: latoLight, sans-serif;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-form-input {
    display: flex;
    flex-direction: row;
}

.ok-button {
    width: 72px;
    height: 35px;
    border: 0;
    outline: none;
    cursor: pointer;
    font-family: latoRegular, sans-serif;
    font-size: 16px;
    color: #1C1C1C;
    background: linear-gradient(to right, #FF931E, #FFC112);
    -webkit-appearance: none;
    border-radius: 0;
}

.footer-email {
    background-color: #F2F2F2;
    border: 0;
    height: 35px;
    width: 198px;
    font-size: 14px;
    padding: 10px;
}

.footer-copyright-content>div>a>span {
    font-size: 16px;
}

.footer-copyright-content>div>a {
    margin-left: 22px;
}

.footer-social-icons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 270px;
    width: 100%;
}

.footer-social-icons .nav-link-icon {
    margin: 0;
    padding: 0;
}

@media (max-width: 1024px) {
    .footer {
        margin-top: 20px;
    }

    .what-we-do-icons-row {
        margin-top: 0;
        margin-bottom: 0;
    }

    .what-we-do-description {
        margin-bottom: 50px;
    }
}

@media (max-width: 1200px) {
    .footer-menu {
        padding-left: 20px;
        padding-right: 20px;
    }
    .footer-copyright {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 800px) {

    .footer-copyright-content {
        flex-direction: column;
    }

    .footer-copyright-content > div {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .footer-copyright-content > div > a:last-child {
        display: none;
    }

    .copyright {
        padding-top: 50px;
        width: 235px;
        text-align: center;
    }

    .footer-copyright-content > div > a:first-child {
        padding-left: 0;
        margin-left: 0;
    }

    .footer-copyright-content > div > a {
        padding-left: 15px;
    }

    .footer-menu-content {
        flex-direction: column;
        padding: 10px;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .footer-form {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-menu-content > ul {
        margin-top: 40px;
        margin-bottom: 40px;
        margin-left: 0;
    }
}

.btnUp {
    text-align: center;
    position: absolute;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #757875;
    cursor: pointer;
    top: -25px;
    height: 50px;
    width: 50px;
    border-radius: 25px;
}

.btnUp>svg {
    height: 20px;
    width: auto;
    margin-top: 6px;
    margin-left: 1px;
}

.alert-place {
    position: fixed;
    display: none;
    z-index: 3000;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 0;
}

.alert {
    position: relative;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 490px;
    height: 300px;
    background-color: #1C1C1C;
    color: white;
    border-radius: 0;
    padding: 0;
}

.alert .title-who-we-are {
    font-size: 21px;
    font-family: latoRegular;
    color: white;
}

.alert-place-alert-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.closebtn {
    position: absolute;
    top: -35px;
    right: -35px;
    color: black;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s;
}


@media (max-width: 590px) {
    .closebtn {
        right: 0;
    }

    .alert-place-alert-content>span>span {
        display: block;
    }
}

#loader {
    height: 50px;
    width: 50px;
    border-radius: 50px;
    border-top: 5px solid black;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid black;
    animation: spin 2s linear infinite;
    opacity: 0.3;
    align-self: center;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
