:root
{
    --TextColor: #ffffff;
    --TextHover: #9c51b6;

    --ButtonText: #ffffff;
    --ButtonColor: #9c51b6;
    --ButtonHover: #9c51b6;

    --ColorBlockMain: #f8f2ed;
    --ColorBlockSub: #040408;
    --ColorBlockServices: #f8f3ed;
    --ColorBlockContact: #040408;

    --ProjectMainBoxColor: #000000;
    --ProjectBoxColor: #212121;

    --SocialColor: #ffffff;
    --SocialHover: #9c51b6;
}

/* Tablet version */
@media screen and (min-width: 768px)
{
	.HeaderBar
	{
		display: block;
	}

    .MobileHeaderBar
    {
        display: none;
    }
    
    .HeaderLogo
    {
        display: block;
    }

    .HeaderLogoReverse
    {
        display: block;
    }

    .MobileMenu
    {
        display: none;
    }
    
    .MobileDropDown
    {
        display: none;
    }

    .ContactFormSmall
    {
        max-width: 32.8%;
    }

    .Socials
    {
        float: right;
        margin-left: 0px;
        margin-top: 0px;
    }
}

/* Desktop version */
@media screen and (max-width: 1280px)
{
	.HeaderBar
	{
		display: block;
	}
	
    .MobileHeaderBar
    {
        display: none;
    }
    
    .MobileMenu
    {
        display: none;
    }
    
    .MobileDropDown
    {
        display: none;
    }
    
    .ContactFormSmall
    {
        max-width: 100%;
    }
}

/* Phone version */
@media screen and (max-width: 767px)
{
	.HeaderBar
	{
		display: none;
	}

    .MobileHeaderBar
    {
        display: block;
    }
    
    .HeaderLogo
    {
        display: block;
    }

    .HeaderLogoReverse
    {
        display: none;
    }
    
    .HeaderButtons
    {
        display: none;
    }
    
    .MobileMenu
    {
        display: block;
    }
    
    .MobileDropDown
    {
        display: none;
    }

    .ContactFormSmall
    {
        max-width: 100%;
    }

    .FooterText
    {
        display: none;
    }
}

/* Hides wordpress title on page */
.page .entry-title
{
    display: none;
}

/* Blocks with background color */
.MainBlock
{
    background-color: var(--ColorBlockMain);
}

.SubBlock
{
    background-color: var(--ColorBlockSub);
}

.ServicesBlock
{
    background-color: var(--ColorBlockServices);
}

.ContactBlock
{
    background-color: var(--ColorBlockContact);
}

/* Header section */
.HeaderBar
{
    background-color: var(--ColorBlockContact);
    z-index: 1;
    position: sticky;
    padding-bottom: 40px;
}

.HeaderLogo
{
    width: 30px;
    margin-top: 6px;
    float: left;
    margin-left: 6px;
}

.HeaderLogoReverse
{
    width: 30px;
    margin-top: 6px;
    margin-right: 6px;
    float: right;
    opacity: 0;
}

.HeaderButtons
{
    z-index: 3;
    color: var(--TextColor);
    font-weight: 600;
    font-family: Roboto;
    margin-right: -2.5px;
    margin-left: -2.5px;
    border: none;
    background: none;
    position: sticky;
    transition-duration: 0.3s;
    cursor: pointer;
}

.HeaderButtons:focus
{
    outline: none;
    box-shadow: none;
    background: none;
}

.HeaderButtons:hover
{
    background: none;
    color: var(--TextHover);
}

.CenterItems
{
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.MainVideo
{
    min-width: 100.01%;
    overflow: none;
    overflow-x: none;
}

/* Mobile drop down menu*/
.MobileHeaderBar
{
    background-color: var(--ColorBlockContact);
    z-index: 3;
    position: sticky;
    padding-bottom: 40px;
}

.MobileMenu 
{
    margin-top: -10px;
    margin-left: -4px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    overflow: hidden;
    background-color: #000000;
    position: relative;
}

.MobileMenu #MobileDropDown 
{
    display: none;
}

.MobileMenu a
{
    color: #ffffff;
    padding-top: 2.5px;
    padding-bottom: 2.5px;
    text-decoration: none;
    font-size: 17px;
    display: block;
}

.MobileMenu a.BackgroundMenuIcon 
{
    background: #000000;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

.MenuIcon
{
    background: #000000;
    position: fixed;
    display: block;
    right: 10px;
    top: 10px;
    transition-duration: 0.3s;
    width: 25px;
}

.MenuIcon:hover
{
    transition: transform 1s; 
    filter: invert(1);
}

.BackgroundMenuIcon
{
    background-color: #000000;
}

.MenuButtonsText
{
    color: var(--TextColor);
    font-weight: 400;
    font-family: Roboto;
    border: none;
    background: none;
    position: sticky;
    transition-duration: 0.3s;
    cursor: pointer;
}

.MenuButtonsText:hover
{
	outline: none;
    box-shadow: none;
    background: none;
}

.MenuButtons:focus
{
    outline: none;
    box-shadow: none;
    background: none;
}

.MenuButtons:hover .MenuButtonsText
{
    background: none;
    color: var(--TextHover);
}

/* Portfolio segment */
.ProjectImages
{
    width: 270px;
    height: 270px;
    margin-left: 140px;
}

.MainProjectBoxes
{
    background-color: var(--ProjectMainBoxColor);
    border-radius: 15px;
}

/* Portfolio segment in portfolio page*/
.ProjectBoxes
{
    background-color: var(--ProjectMainBoxColor);
    border-radius: 15px;

}

/* Buttons on page */
.MainButtons
{
    color: var(--TextColor);
    border-color: var(--ButtonColor);
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 26px;
    padding-left: 24px;
    font-size: 25px;
    border-radius: 10px;
}

.MainButtons:focus
{
    outline: none;
    box-shadow: none;
    background: none;
}

.MainButtons:hover
{
    color: var(--TextColor);
    background: var(--ButtonColor);
}

.SmallButtons
{
    color: var(--TextColor);
    border-color: var(--ButtonColor);
    padding-top: 10px;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 10px;
    border-radius: 7px;
}

.SmallButtons:focus
{
    outline: none;
    box-shadow: none;
    background: none;
}

.SmallButtons:hover
{
    background: var(--ButtonColor);;
}

/* Buttons for Socials */
.SocialButtons
{
    border-color: var(--ButtonColor);
    border-radius: 10px;
    width: 300px;
    height: 50px;
    margin-bottom: 10px;
}

.SocialButtons:focus
{
    background-color: var(--ButtonColor);
}

.SocialButtons:hover
{
    background-color: var(--ButtonColor);
}

.SocialButtons:hover > .SocialBoxesImage
{
    /*-webkit-filter: invert(1);
    filter: invert(1);*/
}

.SocialBoxesImage
{
    float: left;
    width: 30px;
}

.SocialBoxesText
{
    color: var(--TextColor);
    margin-left: 10px;
    font-size: 20px;
    margin-top: -2px;
    margin-right: 27px;
}

.KvKButton:hover
{
    cursor: default;
}

/* Email form */
.ContactFormSmall
{
    margin-bottom: 5px;
    background-color: var(--ColorBlockServices);
}

.ContactFormBig
{
    resize: none;
    max-height: 115px;
    max-width: 99.99%;
    background-color: var(--ColorBlockServices);
}

.ContactFormSubmit
{
    color: var(--TextColor);
    border-color: var(--ButtonColor);
    padding-top: 10.5px;
    padding-bottom: 10.5px;
    margin-top: 20px;
    border-radius: 7px;
    width: 150px;
}

.ContactFormSubmit:focus
{
    outline: none;
    box-shadow: none;
    background: none;
}

.ContactFormSubmit:hover
{
    background: var(--ButtonColor);;
}

/* Footer */
.FooterCopyRight
{
    font-size: 12px;
    color: white;
    float: left;
    margin-top: -1px;
}

.FooterText
{
    float: right;
    font-size: 12px;
    color: #ffffff;
    margin-right: 8px;
    margin-top: -1px;
}

.Socials
{
    background: none;
    color: var(--SocialColor);
    float: right;
    margin-left: 9px;
    margin-right: 9px;
    transition-duration: 0.3s;
    float: right;
}

.Socials:focus
{
    outline: none;
    box-shadow: none;
}

.Socials:hover
{
    background: none;
    color: var(--SocialHover);
    cursor: pointer;
}