@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;
}

section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    /*display: flex;*/
    display: flexbox;
    justify-content: space-between;
    align-items: center;
    /***background: #161616; **/
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(images/background.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    position: relative;
    max-width: 150px;
}

header .navigation {
    position: relative;
    display: flex;
}

header .navigation li {
    list-style: none;
}

header .navigation li a {
    display: inline-block;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    margin-left: 30px;
    border-bottom: 3px solid transparent;
    transition: border-bottom 0.2s;
    padding: 5px;
}

header .navigation li a:hover,
header .navigation li a:active {
    /*border-bottom: 3px solid #e51e2a;*/
    border-bottom: 3px solid #da1212;
}


/**** Slider ****/

.swiper-container {
    width: 600px;
    height: 400px;
    margin-top: 0;
    margin-left: 0;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    /*background: #fff;*/
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content,
.imgBox {
    width: 600px;
    height: 400px;
    margin-top: 150px;
    margin-left: 25%;
    align-content: center;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.content,
.imgBox img {
    max-width: 900px;
}

.sci {
    position: absolute;
    bottom: 40px;
    left: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sci li {
    list-style: none;
}

.sci li a {
    display: inline-block;
    margin-left: 15px;
    background: #222;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
}

.sci li a:hover {
    background: #e51e2a;
    transform: translateY(-10px);
}

.sci li a img {
    filter: invert(1);
    transform: scale(0.5);
}


/**** About us ****/

.section-about {
    padding: 80px 0px;
    background-color: #f1f1f1;
    background: rgb(245, 245, 245);
}

.row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 50px;
}

h2 {
    font-weight: 400;
    font-size: 1.5rem;
    text-transform: uppercase;
}

h2:after {
    content: "";
    height: 2px;
    width: 100px;
    display: block;
    background-color: #e51e2a;
    margin: 0 auto;
    margin-top: 20px;
}

.col {
    margin: 1% 0 1% 1.6%;
}

.span-1-of-3 {
    width: 33.33%;
}

.content-box {
    background-color: #fff;
    width: 90%;
    border-radius: 10px;
    box-shadow: 0 4px 4px #bebebe;
    transition: box-shadow 0.2s, transform 0.2s;
}

.content-box:hover {
    box-shadow: 0 20px 20px #a8a8a8;
    transform: scale(1.005);
}

.content-box div {
    padding: 15px;
    border-bottom: 1px solid #d1d1d1;
}

.content-box div:first-child {
    background-color: #fafafa;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
}

.content-box div:last-child {
    border: 0;
    text-align: center;
}

h3 {
    font-weight: 400;
    text-align: center;
}

.content-box a {
    text-decoration: none;
    color: #e51e2a;
}


/**** About us ****/


/*** Services ***/

.section-services {
    padding: 80px 0px;
    background-color: #dbdbdb;
    background: #dbdbdb;
}

.span-1-of-4 {
    width: 25%;
}

.box img {
    width: 100%;
    height: 100%;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    margin-top: 60px;
}

.box a {
    display: block;
    text-align: center;
    color: #4a4a4a;
    letter-spacing: 1px;
    word-spacing: 2px;
    transition: color 0.2s;
}

.box a:hover {
    color: #e51e2a;
}

.content-text-box {
    width: 100%;
    height: 100%;
    display: inline-block;
    margin-left: 20%;
    margin-top: 40px;
    font-size: 1.2rem;
    font-weight: 350;
    text-align: justify;
    letter-spacing: 0.5px;
    word-spacing: 2px;
    margin: 30px;
}


/*** Services ***/


/*** Gallery ***/

.section-gallery {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(images/background.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.showcase {
    display: flex;
    width: 100%;
    list-style: none;
}

.showcase li {
    width: 25%;
    overflow: hidden;
}

.showcase li img {
    width: 100%;
    height: auto;
    margin: 0;
    opacity: 0.7;
    transform: scale(1.2);
    transition: opacity 0.5s, transform 0.5s;
}

.showcase li img:hover {
    opacity: 1;
    transform: scale(1.05);
}


/*** Gallery ***/


/*** Contact ***/

.section-contact {
    background: #dbdbdb;
    padding: 50px 80px;
    min-height: 100vh;
}

.span-1-of-2 {
    width: 50%;
    margin-top: 40px;
}

.contact-info {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info .info-group {
    padding: 10px 0;
    display: flex;
}

.contact-info .info-group .icons {
    min-width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 20px;
}

.contact-info .info-group .text h3 {
    font-weight: 500;
    color: #000;
    text-align: start;
}

.contact-form {
    width: 80%;
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 400;
}

.contact-form .form-group {
    width: 100%;
    margin-top: 10px;
}

input[type=text],
input[type=email],
textarea {
    width: 100%;
    padding: 5px 0;
    font-size: 0.8rem;
    margin: 15px 0;
    border: none;
    border-bottom: 2px solid #555;
    resize: none;
    outline: none;
}

input[type=submit] {
    width: 100%;
    padding: 5px 0;
    font-size: 0.9rem;
    background-color: #fff;
    border: 2px solid #e51e2a;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

input[type=submit]:hover {
    background-color: #e51e2a;
    color: #fff;
}


/*** Contact ***/


/**** Footer ****/

footer {
    background-color: #3b3b3b;
    padding: 40px 80px;
}

footer p {
    color: #888;
    text-align: center;
}


/**** Footer ****/

@media (max-width:991px) {
    header {
        padding: 40px;
    }
    section {
        padding: 150px 40px;
    }
    .sci {
        position: absolute;
        bottom: 40px;
        left: 40px;
    }
    .content {
        flex-direction: column;
    }
    .content,
    .textBox,
    .content,
    .imgBox {
        max-width: 100%;
    }
    .swiper-slide {
        height: 400px;
    }
}

@media (max-width:760px) {
    header {
        padding: 40px;
    }
    section {
        padding: 150px 40px;
    }
    header .navigation {
        display: none;
    }
    .sci {
        position: absolute;
        bottom: 40px;
        left: 40px;
    }
    .content {
        flex-direction: column;
    }
    .content .textBox,
    .content .imgBox {
        max-width: 100%;
    }
    .swiper-slide {
        height: 400px;
    }
    .imgBox {
        margin-top: 150px;
        margin-left: 20px;
        align-content: center;
        position: relative;
        display: flex;
        justify-content: flex-end;
    }
    header .navigation.active {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /*background: #4e7375;*/
        background: #222c2c;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 10;
    }
    header .navigation li a {
        margin: 10px 0;
        font-size: 1.5em;
        font-weight: 300;
    }
    .toggle {
        position: relative;
        width: 30px;
        height: 30px;
        background: url(images/menu.png);
        background-size: 30px;
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer;
        z-index: 10000;
    }
    .toggle.active {
        position: fixed;
        right: 40px;
        background: url(images/close.png);
        background-size: 25px;
        background-repeat: no-repeat;
        background-position: center;
    }
}

@media (max-width:860px) {
    header {
        padding: 40px;
    }
    section {
        padding: 150px 40px;
    }
    header .navigation {
        display: none;
    }
    .sci {
        position: absolute;
        bottom: 40px;
        left: 40px;
    }
    .content {
        flex-direction: column;
    }
    .content .textBox,
    .content .imgBox {
        max-width: 100%;
    }
    .swiper-slide {
        height: 400px;
    }
    .imgBox {
        margin-top: 150px;
        margin-left: 20px;
        align-content: center;
        position: relative;
        display: flex;
        justify-content: flex-end;
    }
    header .navigation.active {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /*background: #4e7375;*/
        background: #222c2c;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 10;
    }
    header .navigation li a {
        margin: 10px 0;
        font-size: 1.5em;
        font-weight: 300;
    }
    .toggle {
        position: relative;
        width: 30px;
        height: 30px;
        background: url(images/menu.png);
        background-size: 30px;
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer;
        z-index: 10000;
    }
    .toggle.active {
        position: fixed;
        right: 40px;
        background: url(images/close.png);
        background-size: 25px;
        background-repeat: no-repeat;
        background-position: center;
    }
}

.homeslider {
    position: relative;
    /*height: 400px; */
    display: none;
    overflow: hidden;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 50px;
    padding: 15px;
    cursor: pointer;
    color: #fff;
    transition: 0.1s;
    user-select: none;
}

.prev:hover,
.next:hover {
    color: #da1212;
}

.next {
    right: 0%;
}

.dotsbox {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 20px;
    cursor: pointer;
}

.dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 3px solid #fff;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
}

.active,
.dot:hover {
    border-color: #da1212;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    form {
        opacity: 0.8
    }
    to {
        opacity: 1
    }
}

@keyframes fade {
    form {
        opacity: 0.8
    }
    to {
        opacity: 1
    }
}

.txt {
    position: absolute;
    color: #fff;
    letter-spacing: 2px;
    line-height: 35px;
    top: 40%;
    left: 15%;
    -webkit-animation-name: posi;
    -webkit-animation-duration: 2s;
    animation-name: posi;
    animation-duration: 2s;
    z-index: 1;
}

@-webkit-keyframes posi {
    from {
        left: 25%
    }
    to {
        left: 15%
    }
}

@keyframes posi {
    from {
        left: 25%
    }
    to {
        left: 15%
    }
}

.txt h1 {
    color: #da1212;
    text-align: start;
    font-weight: bold;
    margin-bottom: 20px;
}

.txt p {
    font-weight: bold;
    text-align: start;
    font-size: 18px;
    margin-top: 20px;
}

@media screen and (max-width:600px) {
    .swiper-container {
        height: 400px;
    }
    .txt {
        line-height: 25px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-animation-name: posi2;
        -webkit-animation-duration: 2s;
        animation-name: posi2;
        animation-duration: 2s;
    }
    @-webkit-keyframes posi2 {
        from {
            top: 35%;
        }
        to {
            top: 50%;
        }
    }
    @keyframes posi2 {
        from {
            top: 35%;
        }
        to {
            top: 50%;
        }
    }
    .txt h1 {
        font-size: 40px;
    }
    .txt p {
        font-size: 13px;
    }
}

@media (max-width:440px) {
    header {
        padding: 40px;
    }
    section {
        padding: 150px 40px;
    }
    header .navigation {
        display: none;
    }
    .sci {
        position: absolute;
        bottom: 40px;
        left: 40px;
    }
    .content {
        flex-direction: column;
    }
    .content .textBox,
    .content .imgBox {
        max-width: 100%;
    }
    .swiper-slide {
        height: 400px;
    }
    .imgBox {
        margin-top: 150px;
        margin-left: 20px;
        align-content: center;
        position: relative;
        display: flex;
        justify-content: flex-end;
    }
    header .navigation.active {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /*background: #4e7375;*/
        background: #222c2c;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 10;
    }
    header .navigation li a {
        margin: 10px 0;
        font-size: 1.5em;
        font-weight: 300;
    }
    .toggle {
        position: relative;
        width: 30px;
        height: 30px;
        background: url(images/menu.png);
        background-size: 30px;
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer;
        z-index: 10000;
    }
    .toggle.active {
        position: fixed;
        right: 80px;
        background: url(images/close.png);
        background-size: 25px;
        background-repeat: no-repeat;
        background-position: center;
    }
    .homeslider {
        position: relative;
        /*height: 400px; */
        display: flex;
        overflow: hidden;
    }
    .prev,
    .next {
        position: absolute;
        top: 25%;
        transform: translate(0, -50%);
        font-size: 30px;
        padding: 10px;
        cursor: pointer;
        color: #fff;
        transition: 0.1s;
        user-select: none;
    }
    .prev:hover,
    .next:hover {
        color: #da1212;
    }
    .next {
        right: 0%;
    }
    .dotsbox {
        position: absolute;
        left: 20%;
        margin-left: 30%;
        display: flex;
        transform: translate(-50%);
        bottom: 200px;
        cursor: pointer;
    }
    .dot {
        display: inline-block;
        width: 12px;
        height: 12px;
        border: 3px solid #fff;
        border-radius: 40%;
        margin: 0 10px;
        cursor: pointer;
    }
    .active,
    .dot:hover {
        border-color: #da1212;
    }
    .fade {
        -webkit-animation-name: fade;
        -webkit-animation-duration: 1.5s;
        animation-name: fade;
        animation-duration: 1.5s;
    }
    @-webkit-keyframes fade {
        form {
            opacity: 0.8
        }
        to {
            opacity: 1
        }
    }
    @keyframes fade {
        form {
            opacity: 0.8
        }
        to {
            opacity: 1
        }
    }
    .homeslider.txt {
        position: relative;
        color: #fff;
        letter-spacing: 2px;
        line-height: 10px;
        top: 40%;
        left: 15%;
        -webkit-animation-name: posi;
        -webkit-animation-duration: 2s;
        animation-name: posi;
        animation-duration: 2s;
        z-index: 1;
    }
    .imgBox.slider {
        display: flex;
    }
    @-webkit-keyframes posi {
        from {
            left: 25%
        }
        to {
            left: 15%
        }
    }
    @keyframes posi {
        from {
            left: 25%
        }
        to {
            left: 15%
        }
    }
    .txt h1 {
        color: #da1212;
        text-align: start;
        font-weight: 600;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    .txt p {
        font-weight: bold;
        text-align: start;
        font-size: auto;
        margin-top: 20px;
    }
    .row {
        width: 100%;
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
        padding: 0px 50px;
    }
    .span-1-of-3 {
        width: fit-content;
        position: relative;
        margin-top: 40px;
        display: flex;
        justify-content: start;
        align-items: flex-start;
    }
    .homeslider {
        position: relative;
        /*height: 400px; */
        display: flex;
        overflow: hidden;
    }
    .prev,
    .next {
        position: absolute;
        top: 25%;
        transform: translate(0, -50%);
        font-size: 40px;
        padding: 15px;
        cursor: pointer;
        color: #fff;
        transition: 0.1s;
        user-select: none;
    }
    .prev:hover,
    .next:hover {
        color: #da1212;
    }
    .next {
        right: 0%;
    }
    .dotsbox {
        position: absolute;
        left: 20%;
        margin-left: 30%;
        display: flex;
        transform: translate(-50%);
        bottom: 200px;
        cursor: pointer;
    }
    .dot {
        display: inline-block;
        width: 12px;
        height: 12px;
        border: 3px solid #fff;
        border-radius: 50%;
        margin: 0 10px;
        cursor: pointer;
    }
    .active,
    .dot:hover {
        border-color: #da1212;
    }
    .fade {
        -webkit-animation-name: fade;
        -webkit-animation-duration: 1.5s;
        animation-name: fade;
        animation-duration: 1.5s;
    }
    @-webkit-keyframes fade {
        form {
            opacity: 0.8
        }
        to {
            opacity: 1
        }
    }
    @keyframes fade {
        form {
            opacity: 0.8
        }
        to {
            opacity: 1
        }
    }
    .content-text-box {
        width: 85%;
        height: 85%;
        display: inline-block;
        margin-left: 20%;
        margin-top: 40px;
        font-size: 1.2rem;
        font-weight: 350;
        text-align: left;
        letter-spacing: 0.5px;
        word-spacing: 2px;
        margin: 30px;
    }
    .showcase {
        display: flex;
        width: 100%;
        list-style: none;
    }
    .span-1-of-2 {
        width: 175%;
        margin-top: 40px;
    }
    .contact-info {
        width: 10%;
        display: flex;
        flex-direction: column;
    }
    a:-webkit-any-link {
        color: -webkit-link;
        font-size: 0.8rem;
        cursor: pointer;
        text-decoration: underline;
    }
    .contact-form {
        width: 100%;
        background-color: #fff;
        padding: 30px;
        border-radius: 20px;
    }
}


/*
.homeslider.txt {
    position: relative;
    color: #fff;
    letter-spacing: 2px;
    line-height: 10px;
    top: 40%;
    left: 15%;
    -webkit-animation-name: posi;
    -webkit-animation-duration: 2s;
    animation-name: posi;
    animation-duration: 2s;
    z-index: 1;
}

.imgBox.slider {
    display: flex;
}

@-webkit-keyframes posi {
    from {
        left: 25%
    }
    to {
        left: 15%
    }
}

@keyframes posi {
    from {
        left: 25%
    }
    to {
        left: 15%
    }
}

.txt h1 {
    color: #da1212;
    text-align: start;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.txt p {
    font-weight: bold;
    text-align: start;
    font-size: auto;
    margin-top: 20px;
}  */