html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;

}

* {
    box-sizing: border-box;
    outline: none;
    list-style: none;
    text-decoration: none;
    
}

* {
    scrollbar-width: thin;
    scrollbar-color: blue;
  }
  
*::-webkit-scrollbar {
    width: 6px;
  }
  
*::-webkit-scrollbar-track {
    background: var(--primary-color);
  }
  
*::-webkit-scrollbar-thumb {
    background-color: var(--white);
    border-radius: 0 0 20px 20px;
    border: none;
  }

::-webkit-scrollbar { 
    display: none; 
}

:root {
    --primary-color: #0071BC;
    --secondary-color: #29AAE1;
    --alert-color: #F95D51;
    --white: #fff;
    --title-1: 48px;
    --title-2: 40px;
    --title-3: 32px;
    --title-4: 24px;
    --title-5: 20px;
    --title-6: 16px;
    --description: 14px;
    --mobile: 10px;
    --padding: 100px 12px;
}

video {
    object-fit: cover;
}

body {
    font-family: 'Roboto', sans-serif;
    color: white;
    background-image: url(https://www.freeum.net/wp-content/themes/freeum/img/first_screen__background2.png);
}

::selection {
    background-color: var(--white);
    color: var(--primary-color);
}

.wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background-color: black;
    z-index: 0;
}

.section {
    position: relative;
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
}

#myVideo {
    position: fixed;
    top: 0;
    z-index: -2;
    min-width: 100%;
    min-height: 100%;
    filter: brightness(0.5);
}

.navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    padding-top: 50px;
}

.navbar{
    position: static;
    animation-name: heading;
    animation-duration: 5s;
    animation-fill-mode: forwards;
    transition: .4s;

  }

@keyframes heading{
    0% {top: -150px;opacity: 0;}
    100% {top: 0;opacity: 1;}
  }

.burger {
    position: absolute;
    top: 6px;
    right: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: relative;
    cursor: pointer;
    display: none;
    z-index: 1;
}

.burger span {
    background-color: var(--white);
    height: 2px;
    position: absolute;
    width: 100%;
    left: 0;
    transition: all 0.3s ease;
}

.burger span:first-child {
    top: 0;
}

.burger span:nth-child(2) {
    top: 6px;
}

.burger span:last-child {
    top: 12px;
}

.burger:hover span:nth-child(2) {
    opacity: 0;
}

.burger:hover span:first-child,
.burger:hover span:last-child {
    top: 0;
}

.burger:hover span:first-child {
    transform: rotate(45deg);
}

.burger:hover span:last-child {
    transform: rotate(-45deg);
}

.mobile-brand,
.mobile-link {
    display: none;
}

.nav-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 486px;
    width: 100%;
}

.nav-list.active {
    padding: 20px 0 20px 0;
    max-width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 0;
    font-size: var(--title-6);
    background-color: var(--primary-color);
    z-index: 1;
}

.nav-list.active .nav-list__item {
    margin: 0;
    cursor: pointer;
    margin-bottom: 20px;
    padding-left: 20px;
}

.nav-list.active img {
    padding-left: 20px;
    margin-bottom: 20px;
}

.nav-list__item {
    position: relative;
    font-size: var(--title-6);
    line-height: 19px;
}

.nav-list__link {
    max-width: 84px;
    width: 100%;
    position: relative;
    text-decoration: none;
    color: var(--white);
    line-height: 19px;
    font-size: var(--title-6);
    font-weight: 400;
}

.nav-list__link:before {
    content: '';
    position: absolute;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    opacity: 0;
}

.nav-list__link:hover:before {
    opacity: 1;
    transition: .4s ease-in-out;
}

.button {
    background-color: var(--primary-color);
    min-width: 99px;
    height: 39px;
    border: none;
    color: var(--white);
    font-size: var(--title-6);
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    text-decoration: none;
}

.wpcf7-form-control.has-spinner.wpcf7-submit.button {
	padding: 0;
}

.button:hover {
    background-color: var(--secondary-color);
}

.button:hover {
    background-color: #29aae179;
}

.nav-list__btn {
    background-color: rgba(255, 255, 255, 0);
    border: 2px solid var(--white);
}

.nav-list__btn:hover {
    color: black;
    background-color: var(--white);
    border: 2px solid var(--white);
    transition: .4s ease-in-out;
}

.burger-button {
    display: none;
}

.section__title {
    font-weight: 700;
    font-size: var(--title-2);
    line-height: 47px;
    text-align: center;
}

.section__subtitle {
    font-size: var(--title-3);
    line-height: 38px;
    text-align: center;
}

.section__description {
    font-size: var(--title-5);
    line-height: 23px;
    text-align: center;
}


.main-section__title {
    font-size: var(--title-1);
    max-width: 698px;
    width: 100%;
    font-weight: 700;
    line-height: 56px;
    padding: 254px 0 220px;
}

.main-section__title span {
    color: var(--primary-color);
}

.main-section__title {
    position: relative;
    animation-name: content;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    transition: .4s;
  }
  
@keyframes content{
    0% {left: -2000px;opacity: 0;}
    100% {left: 0px;opacity: 1;}
  }

.main-section__subtitle {
    width: 100%;
    font-size: var(--title-2);
    font-weight: 700;
    line-height: 47px;
    padding-bottom: 350px;
}

.main-section__subtitle {
    position: relative;
    animation-name: contents;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    transition: .4s;
  }

@keyframes contents{
    0% {left: 2000px; opacity: 0;}
    100% {left: 0px; opacity: 1;}
  }

#main img{
    position: absolute;
    top: 385px;
    left: 800px;
    width: 400px;
}

  #main img {
    opacity: 0;
    animation-name: logo;
    animation-duration: 1s;
    animation-delay: 3s;
    animation-fill-mode: forwards;
    transition-property: transform;
    transition-duration: 3s;
    transition: .4s;
  }

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

.whoweare {
    padding: var(--padding);
}

.whoweare .section__title {
    width: 100%;
    padding-bottom: 50px;
}

.whoweare .section__subtitle {
    margin: 0 auto;
    max-width: 980px;
    width: 100%;
    font-size: 24px
    line-height: 28px;
}

.verticals {
    background: url(../img/first-screen.png) center no-repeat;
    text-align: center;
    padding: var(--padding);
}

.verticals .section-title {
    font-size: var(--title-2);
    padding-bottom: 50px;
    font-weight: 700;
}


.verticals-svg {
    margin: 0 auto;
    max-width: 1391px;
    height: 190px;
    width: 100%;
}

.verticals-svg--mobile {
    display: none;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.verticals {
    padding: var(--padding);
}

.verticals .section__title {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.verticals .section {
    margin: 0 auto;
}

.third-section__list {
    display: flex;
    flex-direction: row;
    max-width: 1391px;
    width: 100%;
}

.third_section__list-bg {
    position: relative;
    background-image: url(../img/list-item__icon-background.svg);
    background-repeat: no-repeat;
    min-width: 285px;
    width: 100%;
    height: 190px;
    margin-left: -120px;
}

.inventory {
    padding: var(--padding);
}

.inventory .section__title {
    font-size: var(--title-2);
    padding-bottom: 50px;
}

.raw {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.column-left,
.column-right {
    text-align: center;
}

.inventory .section__subtitle {
    width: 100%;
    padding-bottom: 50px;
}

.inventory .section__description {
    max-width: 494px;
    width: 100%;
}

.numbers {
    padding: var(--padding);
}

.numbers .section__title {
    padding-bottom: 50px;
}

.numbers .section__subtitle {
    max-width: 80px;
    width: 100%;
}

.numbers .section__description {
    max-width: 90px;
    width: 100%;
}

.list-item__description {
	max-width: 140px;
	width: 100%;
	text-align: center;
}

.audience {
    padding: var(--padding);
}

.audience .section__title {
    padding-bottom: 50px;
}

.audience-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.audience-block {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.audience-block a {
    padding-left: 20px;
}

.audience-block img {
    width: 100px;
}

.clients {
    padding: var(--padding);
}

.clients .section__title {
    padding-bottom: 50px;
}

.clients .row {
    display: flex;
    flex-direction: row;
}

.row-block {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.clients-section__list-item a {
    padding: 10px;
}

div.clients-section__list-item {
    height: 140px;
}

 .clients-section__list-item img {
        width: 210px;
    }

.wrapper-block.eigth-section {
    max-width: 100%;
    margin: 0 auto;
}

.contact .row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 100px;
}

.left-column,
.right-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.left-column .section__title {
    margin-bottom: 50px;
}

.mail,
.address {
    width: 48px;
    padding-bottom: 50px;
}

.right-column .section__title {
    padding-top: 40px;
    padding-bottom: 100px;
}

.right-column .section__title,
.right-column .section__description {
    max-width: 380px;
}

.right-column .section__description {
    max-width: 380px;
    margin-bottom: 50px;
    font-size: var(--title-5);
    font-weight: 400;
    line-height: 23px;
}

.address-text {
    padding-bottom: 43px;
}

.contact {
    padding: var(--padding);
}

.contact-mail a {
    color: var(--white);
}

.contact .section__title {
    max-width: 380px;
    width: 100%;
}

.section-logo-nav--mobile{
    display: none;
}

.section__copyright {
    margin: 0 auto;
    font-size: var(--title-6);
    max-width: 640px;
    width: 100%;
    text-align: center;
}

.section__copyright a {
    color: var(--secondary-color)
}

form div {
    text-align: left; 
}

input[type=text],
input[type=email],
textarea {
    max-width: 420px;
    width: 100%;
    height: 55px;
    margin-bottom: 50px;
    background-color: rgba(255, 255, 255, 0);
    border: 2px solid white;
    margin: 15px 0;
}

input[type=submit] {
    max-width: 420px;
    width: 100%;
    font-size: var(--title-6);
}

label a {
    color: var(--secondary-color);
}

input[type=text]:focus,
input[type=email]:focus,
input[type=textarea]:focus {
    border-color: var(--secondary-color);
}

input,
textarea {
    caret-color: var(--white);
    color: var(--white);
    font-size: var(--description);
    padding-left: 25px;
}

textarea  {
    height: 120px;
}

::placeholder {
    color: rgba(255, 255, 255, 0.315);
    font-weight: 700;
    font-size: 16px;
}

.iti__country {
    padding: 5px 10px;
    outline: none;
    color: var(--primary-color);
}
.accept,
.newsletter {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=text] {
    color: var(--white);
}

.iti__country.iti__highlight {
    background-color: var(--secondary-color);
}

.wrapper-block.error-section {
    width: 100vw;
    height: 100vh;
}

.wpcf7-list-item.first.last {
	margin: 0;
}

.wpcf7-form-control-wrap {
	display: flex;
	flex-direction: row;
	justify-content: left;
	width: 100%;	
}

.wpcf7 form .wpcf7-response-output {
    margin: 2em 0.5em
em
 1em;
    padding: 0.20000000000000018em 1em;
    border: 2px solid #00a0d2;
    width: 220px;
    text-align: center;
}

.row-error {
    padding-top: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: (-50%, -50%);
}

.title-error {
    font-weight: 700;
    font-size: 128px;
    line-height: 150px;
    margin-bottom: 20px;
}

.subtitle-error {
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    margin-bottom: 50px;
}

.btn-error {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0);
    border: 5px solid var(--white);
    padding: 10px;
    gap: 10px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 40px;
    line-height: 47px;
    cursor: pointer;
    text-decoration: none;
}

.btn-error:hover {
    color: var(--primary-color);
    background-color: rgb(255, 255, 255);
    border: 5px solid var(--white);
}

.page .section__title {
    text-align: left;
    padding-top: 50px;
}

.page p {
    padding: 50px 0 50px 0;
}

.page ul{
    padding-left: 15px;
}

.page p, li{
    font-family: 'Roboto';
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}

.page .section__description ul li{
    list-style: disc;
}

.page p a {
    color: white;
    font-weight: 700;
}
.page .copyright a {
    color: #29AAE1;
}

@media screen and (max-width: 1400px) {

.main-section__subtitle {
	padding-bottom: 200px;
}
        
}

@media screen and (max-width: 1199px) {
     
     body {
	font-weight: 400;
}
    .section,
    .clients,
    .audience,
    .numbers,
    .inventory,
    .verticals,
    .whoweare,
    .contact 
     {
	margin: 0;
        padding: 0;
        padding: 20px;
    }

    .navbar {
        animation: none;
    }

    .main-section__title {
        animation: none;
    }

    .main-section__subtitle {
        animation: none; 
    }

    #main img {
        display: none;
    }
    .verticals .section__title {
    	margin-bottom: 30px;

}

    .section .section__title,
    .section .section__subtitle {
        padding: 0;
        padding: 20px 0 20px 0; 
    }

    .section__title {
        font-size: var(--title-5);
	font-weight: 400;
	line-height: 23px;
    }

    .section__subtitle {
        font-size: var(--description);
        padding: 0;
    }

    .whoweare .section__subtitle {
	font-size: 14px;
     	line-height: 16px;
    }

    .inventory .section__subtitle {
    	width: 100%;
	font-size: 20px;
}

    .inventory .section__description {
    	max-width: 294px;
    	width: 100%;
	font-size: 14px;
}

    .section__logo.address,
    .section__logo.mail {
        padding: 0;
        margin: 0;
        margin-bottom: 10px;
        width: 20px;
    }
    
    .section-logo-nav{
        display: none;
    }

    .section-logo-nav--mobile{
        display: block;
        width: 70px;
    }

    .section__copyright {
        font-size: var(--mobile);
 	max-width: 280px;
        width: 100%;
    }

    .main {
        background-image: url(../img/Group.png);
        background-repeat: no-repeat;
        background-position: center 275px;
        background-size: 200px;
        background-blend-mode: color-dodge;
    }

    .main-section__title {
        margin: 0 auto;
        text-align: center;
        font-size: var(--title-4);
        padding: 0;
        max-width: 220px;
	padding-top: 50px;
        padding-bottom: 420px;
        font-weight: 400;
	line-height: 28px;
    }

    .main-section__subtitle {
        margin: 0 auto;
        padding: 0;
        padding-bottom: 50px;
	font-family: 'Roboto', sans-serif;
	font-style: normal;
        font-size: var(--title-4);
        font-weight: 400;
        text-align: center;
	line-height: 28px;
    }

    .burger {
        display: flex;
    }

    .header-nav {
        display: none;
    }

    .nav-list {
        display: none;
    }

    .nav-list_link:hover:before {
        opacity: 0;
    }

    .nav-list__btn {
        display: none;
    }

    .mobile-brand,
    .mobile-link {
        display: flex;

    }

    .navbar {
        padding: 0;
        margin: 0 auto;
        background-position: center;
        padding-bottom: 50px;
    }

    .nav-list__link:hover:before {
        opacity: 0;
    }

    .main img {
        position: absolute;
        top: 181px;
        left: 74px;
        width: 170px;
        height: 160px;
    }

    .first-section__title {
        font-size: var(--title-4);
        font-weight: 400;
        margin: 0 auto;
        padding: 0;
        max-width: 220px;
        width: 100%;
        text-align: center;
        margin-bottom: 259px;
        line-height: 28px;
    }
	

    .first-section__subtitle {
        text-align: center;
        font-size: var(--title-4);
        line-height: 28px;
        font-weight: 400;
        margin: 0 auto;
        padding: 0;
    }

    .section__title {
        font-size: var(--title-5);
        text-align: center;
        line-height: 23px;
    }

    .section__subtitle {
        font-size: var(--description);
        text-align: center;
        line-height: 16px;
    }

    .seventh-section__list .row {
        display: flex;
        justify-content: center;
    }

    .list-item__icon {
        max-width: 24px;
        width: 100%;
        height: auto;
    }

    .audience .section__title {
        padding: 0;
        padding-bottom: 20px;
    }

    .audience-list {
	margin: 0 auto;
        display: flex;
        flex-direction: column;
    	justify-content: center;
    	align-items: center;
    }
    
     .audience-list__item-vertical {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }    
 
    .audience-block img{
        max-width: 70px;
	width: 100%;
}
    .audience-block a {
        padding: 10px 40px;
	display: flex;
	justify-content: center;
	align-items: center;
    }

    .clients .row {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    div.clients-section__list-item {
    	height: 60px;
}

    .clients-section__list {
        margin: 0 auto;
    }

    .clients-section__list-item {
        height: 50px;
}
    .clients-section__list-item img {
        width: 120px;
    }

    .row-block {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .audience-list__item img {
        width: 110px;
    }

    .contact .row {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
   
    .left-column .section__title,
    .right-column .section__description,
    .right-column .section__title{
        padding: 0;
        margin: 0;
    }

    .left-column .section__title,
    .right-column .section__title,
    .right-column .section__description {
       padding: 0 0 20px 0; 
    }

    .right-column .section__title {
        padding-top: 20px;
    }

    .left-column .section__title,
    .right-column .section__title {
        font-size: 20px;
	font-weight: 400;
        width: 220px;
    }

    form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
	
    }

    form a {
	font-size: 14px;
}

    input[type=text],
    input[type=email],
    textarea {
        max-width: 320px;
        width: 100%;
        height: 30px;
        margin-bottom: 50px;
        background-color: rgba(255, 255, 255, 0);
        border: 2px solid white;
        margin: 15px 0;
    }

    textarea {
        height: 90px;
    }

    input[type=submit] {
        font-size: var(--title-6);
        background-color: rgba(255, 255, 255, 0);
        border: 2px white solid;
    }

    input[type=submit] {
    max-width: 420px;
    width: 100%;
    padding: 6px 0;
}
    .contact .row {
        margin-bottom:20px;
    }

    .wpcf7-form-control-wrap {
	padding: 0;
	display: flex;
	flex-direction: row;
	justify-content: left;	
}

}

@media screen and (max-width: 991px) {

    .main {
        background-image: url(../img/Group.png);
        background-repeat: no-repeat;
        background-position: center 275px;
        background-size: 200px;
        background-blend-mode: color-dodge;
    }


}

@media screen and (max-width: 768px) {

    .page p {
    padding: 0;
    padding: 20px 0 20px 0;
}

   .right-column .section__description {
        font-size: 10px;
        width: 190px;
	line-height: 18px;
    }

   .address-text {
    	width: 190px;
}

    .main {
        background-image: url(../img/Group.png);
        background-repeat: no-repeat;
        background-position: center 275px;
        background-size: 200px;
        background-blend-mode: color-dodge;
    }

    .inventory .column-left,
    .inventory .column-right {
	display: flex;
	flex-direction: column;
	align-items: center;
}
    .inventory .section__subtitle {
        font-size: var(--title-6);
        line-height: 19px;
        width: 136px;
	text-align: center;
    }
 
    .inventory .section__description {
        font-size: var(--mobile);
        line-height: 12px;
        width: 120px;
    }
    
    .numbers .section__title {
	margin-bottom: 20px;
}
    .clients {
	background-position: 418px;
}
    .clients .section__title {
	padding-bottom: 40px;
}
    input[type=text],
    input[type=email],
    textarea {
        max-width: 220px;
        width: 100%;
        height: 30px;
        margin-bottom: 50px;
        background-color: rgba(255, 255, 255, 0);
        border: 2px solid white;
        margin: 15px 0;
    }

   input[type="checkbox" i] {
	margin: 0 5px 0 0;
	position: absolute;
	top: 0;
	left: 0;
}

    .wpcf7-list-item.first.last {
	display: flex;
	flex-direction: row;
	justify-content: left;
	align-items: center;
	max-width: 220px;
	width: 100%;
}

     form a {
	font-size: 10px;
	line-height: 12px;
}
     form span {
	font-size: 10px;
	line-height: 12px;	
}

    .contact span.wpcf7-list-item-label {
        font-size: 10px;
        max-width: 220px;
        width: 100%;
        margin: 0 auto;
	padding: 0;
	padding-left: 20px;
    }

    .contact span.wpcf7-list-item-label a,
    .contact span.wpcf7-list-item-label span {
	font-size: 10px;		
}

    textarea {
        height: 90px;
    }


    .wpcf7-form-control-wrap {
	display: flex;
	flex-direction: row;
	justify-content: left;
	width: 220px;	
	}

    .section__copyright {
	text-align: center;
	width: 210px;
}

}

@media screen and (max-width: 561px) {

   .right-column .section__description {
	line-height: 14px;
    }

    .numbers .list-item__icon-background {
        background-image: url(/img/list-item__icon-background-MOBILE.svg);
    }
}

@media (min-aspect-ratio: 16/9) {
  video {
    width: 100%;
    height: auto;
  }
}
@media (max-aspect-ratio: 16/9) {
  video {
    width: auto;
    height: 100%;
  }
}