﻿html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
    font-family: Arial;
    font-size: 18px;
    margin: 0;
    color: grey;
}
h1 {
    margin: 0;
    font-size: 60px;
}
h2 {
    margin: 0;
    margin-bottom: 15px;
    font-size: 25px;
    color: #fff;
}
h2:after {
    content: " ";
    width: 10px;
    border: 2px solid #fff;
    margin: 0px 10px;
    animation: blinker 1s linear infinite;
}
h3 {
    margin: 0;
    margin-bottom: 10px;
}
p {
    margin: 0;
    margin-bottom: 10px;
}

ul {
    padding: 0;
    list-style: none;
}

section {
    position: relative;
    width: 100%;
    padding: 100px 0px;
}
    .main-section {
        padding: 0px 0px;
        height: 100vh;
        display: table;
    }
    .main-section,
    section.blue-bg {
        background-color: rgba(34,125,170,1);
        background: linear-gradient(to bottom, rgba(34,125,170,1) 0%, rgba(81,172,205,1) 100%);
        color: white;
    }
        .main-section h2 {
            color: #d9bbaa;
        }
        .main-section h2:after {
            border: 2px solid #d9bbaa;
        }
    section.white-bg {
        background-color: white;
    }
        section.white-bg h2 {
            color: rgb(170, 79, 34);
        }
        section.white-bg h2:after {
            border: 2px solid rgb(170, 79, 34);
        }
        section.white-bg h3,
        section.white-bg p {
            color: #58798c;
        }

.section-body {
    max-width: 1000px;
    margin: auto;
    overflow: auto;
    padding: 0 20px;
}
    .main-section .section-body {
        max-width: inherit;
        vertical-align: middle;
        display: table-cell;
    }
@media (min-width: 1000px) {
    .section-body {
        padding: 0 20px;
    }
    .main-section .section-body {
        padding: 0px 100px;
    }
}

.section-body .heading {
    width: 100%;
    float: left;
}
    .section-body .heading img {
        width: 40px;
    }

.section-body .body {
    width: 100%;
    float: left;
}

@media (min-width: 1000px) {
    .section-body .heading {
        width: 20%;
        float: left;
    }
    .section-body .body {
        width: 80%;
        float: left;
    }
}

.portfolio-object {
    float: left;
    width: 100%;
    margin-bottom: 40px;
}
    .portfolio-object h3 {
    }
    .portfolio-object > div {
        border: 1px solid white;
        border-radius: 15px;
        height: 230px;
        overflow: hidden;
        cursor: pointer;
    }
        .portfolio-object > div div {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            transition: all .5s;
        }
        .portfolio-object > div:hover div {
            transform: scale(1.2);
        }
        .portfolio-object > div:hover div:before {
            content: "";
            display: none;
            height: 100%;
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            background-color: rgba(52, 73, 94, 0);
        }
        .portfolio-object > div:hover div:before,
        .portfolio-object > div:focus div:before {
            display: block;
        }
    .portfolio-object iframe,
    .portfolio-object .video {
        border: 0;
    }

@media (min-width: 1000px) {
    .portfolio-object {
        width: 50%;
    }
        .portfolio-object > div {
            margin-right: 15px;
        }
}

.skill-object {
    float: left;
    width: 100%;
    margin-bottom: 15px;
}
.progress-bar-holder {
    margin-right: 15px;
    background-color: #f5e6de;
}
.progress-bar-content {
    height: 18px;
    background: linear-gradient(to right, rgba(170, 79, 34) 0%, rgba(205, 120, 81) 100%);
}

@media (min-width: 1200px) {
    .skill-object {
        width: 50%;
    }
    .progress-bar-holder {
    }
    .progress-bar-content {
    }
}

.used-skill-list {
    
}
    .used-skill-list li {
        border: 1px solid rgb(170, 79, 34);
        border-radius: 5px;
        float: left;
        padding: 5px;
        margin-right: 5px;

        background-color: rgb(205, 120, 81);
    }

.socials li {
    position: relative;
    float: left;
}
    .socials img {
        width: 45px;
        border-radius: 10px;
        background-color: rgb(0, 119, 181);
        transition: .5s linear;
    }
    .socials img:hover {
        background-color: black;
    }

/* Animation definitions */
@keyframes blinker {
  50% {
    opacity: 0;
  }
}