@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
section
{
    padding: 100px;
}
.banner
{
    position: relative;
    min-height: 100vh;
    background: url(../images/bg-min.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.banner h2
{
    font-size: 3em;
    color: #fff;
    font-weight: 500;
    text-align: right;
    line-height: 1.5em;
}
.banner h2 span
{
    font-size: 1.5em;
    font-weight: 700;
    text-align: right;
}
.banner h3
{
    font-size: 1.5em;
    color: #fff;
    font-weight: 500;
    text-align: right;
}
.banner .button
{
    display: flex;
    justify-content: flex-end;
}
.btn
{
    position: relative;
    background: #2196f3;
    display: inline-block;
    color: #fff;
    margin-top: 20px;
    padding: 10px 30px;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: 500;
}
header
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s;
}
header.sticky
{
    background: #111;
    padding: 20px 100px;
    box-sizing: 0 5px 20px rgba(0,0,0,0.1);
}
header .logo
{
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    transition: 0.6s;
    opacity: 0;
    animation: fadeDown 2s forwards;
    animation-delay: 1s;
}
header.sticky .logo
{
    color: #fff;
}
header ul
{
    position: relative;
    display: flex;
    opacity: 0;
    animation: scale .9s forwards;
    animation-delay: .9s;
}
header ul li
{
    position: relative;
    list-style: none;
}
header ul li a
{
    position: relative;
    display: inline-block;
    margin: 0 15px;
    color: #fff;
    text-decoration: none;
}
header.sticky ul li a
{
    color: #fff;

}
.bf-end img
{
    margin-right: 10px;
    margin-top: 10px;
}
.bf-end,
.heading
{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #111;
}
.heading h2
{
    font-weight: 600;
    font-size: 30px;
}
.content
{
    display: flex;
    justify-content: space-between;
}
.contentBx
{
    padding-right: 30px;
}
.contentBx h3
{
    font-size: 24px;
    margin-bottom: 10px;
}
.w50
{
    min-width: 50%;
}
img
{
    max-width: 100%;
}
.services
{
    background: #111;
}
.heading.white
{
    color: #fff;
}
.services .content
{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}
.services .content .servicesBx
{
    padding: 40px 20px;
    background: #222;
    color: #fff;
    max-width: 340px;
    margin: 20px;
    text-align: center;
    transition: 0.5s;
}
.services .content .servicesBx:hover
{
    background: #2196f3;
}
.services .content .servicesBx img
{
    max-width: 80px;
    filter: invert(1);
}
.services .content .servicesBx h2
{
    font-size: 20px;
    font-weight: 600;
}
.work .content
{
    display: flex;
    justify-content: center; /*If products > 1: space-beetween*/
    flex-wrap: wrap;
}
.work .content .workBx
{
    width: 50%;
    padding: 20px;
}
.work .content .workBx h2
{
    position: absolute;
    margin-top: -15%;
    margin-left: 15%;
    opacity: 0;
}
.work .content .workBx img
{
    max-width: 100%;
    transition: 0.5s;
}
.work .content .workBx img:hover
{
    max-width: 101%;
}
.contact
{
    background: #111;
}
.formBx
{
    min-width: 60%;
}
.formBx form
{
    display: flex;
    flex-direction: column;
}
.formBx form h3,
.contactInfo h3
{
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}
.formBx form input,
.formBx form textarea
{
    margin-bottom: 20px;
    padding: 15px;
    font-size: 16px;
    background: transparent;
    border: none;
    outline: none;
    background: #222;
    color: #fff;
    resize: none;
}
.formBx form textarea
{
    min-height: 200px;
}
.formBx form input::placeholder,
.formBx form textarea::placeholder
{
    color: #999;
}
.formBx form input[type="submit"]
{
    max-width: 150px;
    background: #2196f3;
    padding: 10px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.contactInfo
{
    min-width: 40%;
}
.contactInfoBx
{
    position: relative;
}
.contactInfoBx .box
{
    position: relative;
    padding: 20px 0;
    display: flex;
}
.contactInfoBx .box .icon
{
    min-width: 40px;
    padding-top: 4px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-size: 24px;
}
.contactInfoBx .box .text
{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: #fff;
    flex-direction: column;
    font-weight: 300;
}
.contactInfoBx .box .text h3
{
    font-weight: 500;
    color: #2196f3;
    margin-bottom: 0;
}
.social
{
    background: #111;
    color: #fff;
    padding: 10px 60px;
}
.social a
{
    text-decoration: none;
    color: #fff;
}
.social a i
{
    font-size: 2em;
    padding-left: 10px;
}
/*Responsive*/
@media (max-width: 991px)
{
    header,
    header.sticky
    {
        padding: 20px 50px;
        z-index: 1000;
    }
    .menu
    {
        position: fixed;
        top: 75px;
        left: -100%;
        display: block;
        padding: 100px 10px;
        text-align: left;
        width: 70%;
        height: 100vh;
        background: #111;
        transition: 0.5s;
        z-index: 999;
        border-top: 1px solid rgba(0,0,0,0.2);
    }
    .menu.active
    {
        left: 0;
    }
    header ul li a,
    header.sticky ul li a
    {
        font-size: 24px;
    }
    .toggle
    {
        width: 40px;
        height: 40px;
        background: url(../images/menu.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 30px;
        cursor: pointer;
    }
    .toggle.active
    {
        background: url(../images/close.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 25px;
        cursor: pointer;
    }
    header.sticky .toggle
    {
    }
    .section
    {
        padding: 100px 50px;
    }
    .banner
    {
        padding: 150px 50px 100px;
      	align-items: start;
    }
    .banner h2
    {
        font-size: 1.5em;
    }
    .banner h3
    {
        font-size: 1em;
    }
    .btn
    {
        margin-top: 10px;
        padding: 10px 20px;
        font-size: 16px;
    }
    .heading h2
    {
        font-size: 24px;
    }
    .contentBx h3
    {
        font-size: 20px;
    }
    .content
    {
        flex-direction: column;
    }
    .w50
    {
        margin-bottom: 20px;
    }
    .services .content .servicesBx
    {
        margin: 10px;
    }
    .work .content .workBx
    {
        width: 100%;
        padding: 10px
    }
    .contactInfo
    {
        min-width: 40%;
        margin: 20px 0;
    }
}
@media (max-width: 600px)
{
    header,
    header.sticky
    {
        padding: 5px 20px;
        z-index: 1000;
    }
    .banner
    {
        padding: 150px 20px 100px;
    }
    section
    {
        padding: 100px 20px;
    }
}
@media (max-width: 397px)
{
    .banner h2 span
    {
        font-size: 1.3em;
    }
}
@keyframes fadeDown
{
    0%
    {
        transform: translateY(-1rem);
    }
    100%
    {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes scale
{
    0%
    {
        transform: scale(2);
    }
    100%
    {
        opacity: 1;
        transform: scale(1);
    }
}

.yellow
{
    color: #e0ca42;
}

.warning-red
{
    color: #e04242;
}
.process-icon
{
    font-size: 80px;
    padding-bottom: 10px;
}
.change-lang
{
	color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    transition: 0.6s;
    opacity: 0;
    animation: fadeDown 2s forwards;
    animation-delay: 1s;
}
.button-change-lang
{
	background-color: #fff;
  	border: none;
  	color: #222222;
    padding: 5px 10px;
  	text-align: center;
  	text-decoration: none;
  	display: inline-block;
    border-radius: 500px;
}
.button-change-lang:hover
{
	background-color: gray;
    color: white;
}