/*
    Original Template Name : Rolling - Freelancer Portfolio Template
    Author : UiPasta Team
    Website : http://www.uipasta.com/
    Template has been a lot modified by myself
*/
/*
   Table Of Content

   1. Import
   2. Global Style
   3. Preloader
   4. Home Section and Navigation Menu
   5. Bio
   6. Portfolio
   7. Contact
   8. Social Icons
   9. Footer
   10. Theme
   11. Responsive
   12. Scroll To Top
   13. Useful Classes
*/

/* 1. Import */
@import url("../plugin/bootstrap/3.3.7/css/bootstrap.min.css");
@import url("../plugin/fontawesome/5.0.13/web-fonts-with-css/css/fontawesome-all.min.css");
@import url("animations.css");

/* 2. Global Style */
body {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1px;
    height: 100%;
    font-family: "Poppins", sans-serif;
    color: var(--text-color);
    background-color: var(--bkg-color);
}

html,
body {
    height: 100%;
}

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

::-moz-selection {
    background-color: var(--primary-color);
    color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

.green {
    color: var(--primary-color);
}

img {
    width: 100%;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.container a:hover {
    text-decoration: none;
}

a:focus {
    outline: none;
    text-decoration: none;
}

p {
    line-height: 32px;
}

ul,
li {
    margin: 0;
    padding: 0;
}

fieldset {
    border: 0 none;
    margin: 0 auto;
    padding: 0;
}

.no-padding {
    padding: 0;
}

.section-space-padding {
    padding: 100px 0px;
}

.section-title {
    text-align: center;
}

.section-title h2 {
    margin-top: 0;
    font-weight: 600;
    font-size: 30px;
    width: 350px;
    margin-bottom: 10px;
    margin-top: 10px;
    color: var(--subText-color);
}

section h2::before {
    content: "# ";
    vertical-align: middle;
    color: var(--primary-color);
}

.section-title p {
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 40px;
}

.bg-cover {
    background-repeat: no-repeat;
}

.button {
    border: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    cursor: pointer;
    padding: 25px 80px;
    display: inline-block;
    margin: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    outline: none;
    position: relative;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -moz-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.button:after {
    content: "";
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.button:before {
    font-family: "FontAwesome";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.button-style {
    border-radius: 50px;
    border: 3px solid #fff;
    color: #fff;
    overflow: hidden;
}

.button-style:hover,
.button-style:active,
.button-style:focus {
    background: var(--primary-color);
    color: #ffffff !important;
    border: 1px solid var(--primary-color) !important;
}

.button-style:before {
    position: absolute;
    height: 100%;
    font-size: 125%;
    line-height: 3.5;
    color: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.button-style:active:before {
    color: var(--primary-color);
}

.button-style-icon:before {
    left: 130%;
    top: -2px;
}

.button-style-icon:hover:before {
    left: 80%;
}

.button-style-dark {
    border: 1px solid var(--text-color) !important;
    color: var(--text-color);
}

/* 3. Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--bkg-color);
    z-index: 999;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

.loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* 4. Home Section and Navigation Menu */
.home-section {
    height: 100%;
}

.home-section-background {
    position: relative;
    height: 100%;
    background: url(../img/bg/bg.jpg);
    background-size: cover;
    z-index: 1;
}

.home-section-background:after {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}

.display-table {
    display: table;
    width: 100%;
    height: 100%;
}

.display-table-cell {
    display: table-cell;
    vertical-align: middle;
}

.home-section-background h2 {
    color: #f8f8f8;
    font-size: 20px;
    letter-spacing: 5px;
    margin: 0;
}

.home-section-background p {
    color: #f8f8f8;
    letter-spacing: 4px;
    font-size: 15px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.typed-cursor {
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.header-top-area {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.logo {
    padding-top: 28px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.logo img {
    margin-right: 10px;
    width: 30px;
    height: 30px;
}

.logo a {
    display: block;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    font-size: 16px;
}

.logo bold {
    font-weight: 900;
}

.logo a:hover {
    color: var(--primary-color);
}

.flag img {
    width: 16px;
    height: 16px;
}

.navigation-menu .navbar-nav li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 30px 15px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-weight: 600;
}

.navigation-menu .navbar-nav li a:hover {
    background: none;
    color: var(--primary-color);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    cursor: pointer;
}

.navigation-menu .navbar-nav li.active a {
    background-color: var(--primary-color);
}

.navigation-menu .navbar-nav li.active:hover a:hover {
    color: #000;
}
.nav li a:focus,
.nav li a:hover {
    background: none;
    color: #fff;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navbar {
    margin: 0;
}

.navigation-background {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    background: #000;
}

.navigation-background .logo {
    padding-top: 12px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navigation-background .navigation-menu .navbar-nav li a {
    color: #fff;
    padding: 15px 15px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.navigation-background .navigation-menu .navbar-nav li a:hover {
    color: var(--primary-color);
}

#previewTextContent::before {
    content: "{";
    color: var(--primary-color);
}

#previewTextContent::after {
    content: "}";
    color: var(--primary-color);
}

.btn-circle {
    width: 70px;
    height: 70px;
    margin-top: 15px;
    padding: 7px 16px;
    border-radius: 100% !important;
    font-size: 40px;
    color: white;
    background: transparent;
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -moz-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.btn-circle:hover::before {
    width: 100%;
    height: 100%;
}

.btn-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(-5px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(-5px);
    }
}

.btn-circle:hover {
    outline: none;
    color: var(--primary-color);
}

.btn-circle i.animated {
    transition-property: inherit;
    transition-duration: 1s;
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
}

.btn-circle:hover i.animated {
    animation-name: pulse;
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* 5. Bio */

.bio-section {
    overflow: hidden;
    background-color: var(--bkg-color-secondary);
}

.bio-section img {
    position: absolute;
}

.bio h2 {
    padding: 0px 50px;
}

.bio p {
    padding-top: 25px;
    padding-left: 50px;
    padding-right: 50px;
    font-size: 18px;
    line-height: 33px;
    text-align: justify;
}

/* 6. Portfolio */
.portfolio-inner .mix {
    display: none;
}

ul.portfolio {
    padding: 0;
    list-style: none;
    margin-top: 30px;
    text-align: center;
}

ul.portfolio li {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 8px;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 400;
    color: var(--subText-color);
    border: none;
    cursor: pointer;
    font-size: 13px;
}

ul.portfolio li:hover {
    color: var(--primary-color);
    border: none;
}

ul.portfolio li.active {
    color: #ffffff;
    background-color: var(--primary-color);
    padding: 5px 20px;
    border-radius: 20px;
    box-shadow: 0px 1px 2px 0px rgba(90, 91, 95, 0.15);
}

ul.portfolio li.active:hover {
    color: #000;
}
.portfolio .item {
    margin-top: 30px;
    margin-bottom: 20px;
    position: relative;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    margin-top: 40px;
    font-size: 50px;
    background-color: var(--primary-color);
    width: 44px;
    right: 0px;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: inherit;
}

/* 7. Contact */
.contact {
    background-color: var(--bkg-color);
}

.contact-detail i {
    font-size: 30px;
    margin-bottom: 10px;
    background-color: var(--button-color);
    border-radius: 50%;
    box-shadow: 0px 1px 2px 0px rgba(90, 91, 95, 0.15);
    transition: all 0.3s ease-in-out;
    width: 88px;
    height: 88px;
    line-height: 88px;
}

.contact-detail:hover i {
    box-shadow: 0px 8px 15px 0px rgba(90, 91, 95, 0.33);
    margin-top: -5px;
}

.contact-detail a {
    color: var(--subText-color);
}

.contact-detail a:hover {
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    background-color: var(--bkg-color-secondary);
    color: var(--text-color);
    border: 2px solid transparent;
    height: 50px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
    -ms-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
    -o-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
    -webkit-transition: all 150ms ease-in-out 0s;
    -moz-transition: all 150ms ease-in-out 0s;
    -ms-transition: all 150ms ease-in-out 0s;
    -o-transition: all 150ms ease-in-out 0s;
    transition: all 150ms ease-in-out 0s;
}
.form-control:focus {
    border-color: #171717;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

.form-control:focus {
    border-color: var(--primary-color);
    border-width: 2px;
}

.map {
    width: 100%;
    height: 340px;
    border: 1px solid var(--primary-color);
}

/* 8. Social Icons */
.social-icon {
    list-style: none;
    padding-left: 0;
    margin: 0;
    text-align: center;
}

.social-icon:before,
.social-icon:after {
    content: " ";
    display: table;
}

.social-icon:after {
    clear: both;
}

.social-icon li {
    display: inline-block;
    margin: 0px 5px;
}

.social-icon li a {
    display: block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    color: #fff;
    text-align: center;
    border: 0 none;
    border-radius: 4px;
    font-size: 30px;
    box-shadow: 0px 1px 2px 0px rgba(90, 91, 95, 0.15);
    transition: all 0.3s ease-in-out;
}

.social-icon li a:hover {
    box-shadow: 0px 8px 15px 0px rgba(90, 91, 95, 0.33);
}

.social-icon li a .fa {
    line-height: inherit;
}

.facebook {
    background-color: #000;
}

.facebook:hover {
    background-color: #3b5998;
}

.twitter {
    background-color: #000;
}

.twitter:hover {
    background-color: #1da1f2;
}

.instagram {
    background-color: #000;
}

.instagram:hover {
    background-color: #c23289;
}

.linkedin {
    background-color: #000;
}

.linkedin:hover {
    background-color: #0077b5;
}

.youtube {
    background-color: #000;
}

.youtube:hover {
    background-color: #cd201f;
}

.github {
    background-color: #000;
}

.github:hover {
    background-color: #949494;
}

/* 9. Footer */
.footer-section {
    background: #000;
    padding: 0px 0px;
    color: #f8f8f8;
    font-size: 10px;
    width: 100%;
}

.footer-section a {
    color: var(--primary-color);
}

.footer-section a:hover {
    opacity: 0.6;
}

/* 10. Theme */
tr.odd {
    background-color: var(--bkg-color-secondary) !important;
}

.primary-color {
    color: var(--primary-color);
}

@media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #24b662;
    }
    body {
        --text-color: #f2f0ed;
        --bkg-color: #1a1a1a;
        --bkg-color-secondary: #1f1e1e;
        --subText-color: #eee;
        --button-color: #000;
    }
    body.light-theme {
        --text-color: #222;
        --bkg-color: #fff;
        --bkg-color-secondary: #f9f9f9;
        --subText-color: #333;
        --button-color: #fff;
    }
}

/* 11 .Responsive */
@media only screen and (min-width: 1680px) and (max-width: 1922px) {
    .bio-section p {
        line-height: 29px;
        font-size: 16px;
    }
}

@media only screen and (min-width: 1366px) and (max-width: 1680px) {
    .bio-section p {
        line-height: 25px;
        font-size: 18px;
    }
}

@media only screen and (min-width: 991px) and (max-width: 1366px) {
    .bio-section p {
        padding-top: 10px;
        line-height: 17px;
        font-size: 13px;
    }
}

@media only screen and (min-width: 767px) and (max-width: 991px) {
    .navigation-menu .navbar-nav li a {
        padding: 30px 11px;
        font-size: 12px;
    }
    .navigation-background .navigation-menu .navbar-nav li a {
        font-size: 12px;
    }
    .home-section-background {
        background-size: 100% 100%;
    }
}

@media only screen and (max-width: 991px) {
    .bio-section img {
        position: inherit;
    }

    .call-to-action h2 {
        font-size: 20px;
    }

    .space-set {
        margin-top: 80px;
    }

    .footer-section p {
        text-align: center !important;
    }
}

@media only screen and (max-width: 767px) {
    .navbar-toggle .icon-bar {
        background: #f8f8f8;
    }
    .navigation-background .navbar-toggle .icon-bar {
        background: #fff;
    }
    .navbar-toggle {
        margin-right: 0px;
        margin-top: -30px;
    }
    .navbar {
        min-height: 0px;
    }
    .navigation-menu .navbar-nav li a {
        padding: 11px 15px;
    }
    .navigation-menu .navbar-nav li a:hover {
        color: var(--primary-color);
    }
    .navigation-background .navigation-menu .navbar-nav li a:hover {
        color: var(--primary-color);
    }
    .navigation-background .navigation-menu .navbar-nav li a {
        padding: 11px 15px;
    }
    .navbar-fixed-bottom .navbar-collapse,
    .navbar-fixed-top .navbar-collapse {
        max-height: 420px;
    }
    .navbar-toggle {
        margin-top: -30px;
    }
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.9);
    }
    .navigation-background .navbar-collapse {
        background: rgba(0, 0, 0, 0.9);
    }
    .home-section-background {
        padding-top: 120px;
    }
    .home-section-background h2 {
        font-size: 22px;
    }
    .section-title h2 {
        font-size: 22px;
    }
    .testimonial-word {
        padding: 0;
    }
    .testimonial-carousel-list {
        margin-top: 0px;
    }
    .statistics-center {
        margin-left: 20%;
    }
    .call-to-action h2 {
        font-size: 18px;
        line-height: 35px;
    }
    .contact-detail {
        margin-bottom: 30px;
    }

    .home-section-background {
        background-size: 100% 100%;
    }
}

@media only screen and (max-width: 555px) {
    .social-icon li a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
    }

    .section-title h2 {
        font-size: 22px;
        font-weight: 500;
        width: 200px;
    }

    .section-title p {
        font-weight: 300;
        font-size: 12px;
    }

    .home-section-background h2 {
        font-size: 18px;
    }

    .home-section-background p {
        font-size: 12px;
    }
}

@media only screen and (max-width: 449px) {
    .button {
        padding: 15px 30px;
        font-weight: 600;
        font-size: 10px;
    }

    .button-style:before {
        display: none;
    }
}

/* 12 .Scroll To Top */
.scroll-to-top {
    background-color: var(--primary-color);
    display: none;
    width: 50px;
    height: 50px;
    font-size: 25px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    position: fixed;
    right: 0px;
    bottom: 50px;
    z-index: 999;
}

.scroll-to-top:hover,
.scroll-to-top:focus {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* 13. Useful Classes */
/* Margin */
.margin-0 {
    margin: 0px !important;
}

/* Margin Top */
.margin-top-0 {
    margin-top: 0px !important;
}

.margin-top-10 {
    margin-top: 10px !important;
}

.margin-top-20 {
    margin-top: 20px !important;
}

.margin-top-30 {
    margin-top: 30px !important;
}

.margin-top-40 {
    margin-top: 40px !important;
}

.margin-top-50 {
    margin-top: 50px !important;
}

.margin-top-60 {
    margin-top: 60px !important;
}

.margin-top-70 {
    margin-top: 70px !important;
}

.margin-top-80 {
    margin-top: 80px !important;
}

.margin-top-90 {
    margin-top: 90px !important;
}

.margin-top-100 {
    margin-top: 100px !important;
}

.margin-top-120 {
    margin-top: 120px !important;
}

.margin-top-150 {
    margin-top: 150px !important;
}

.margin-top-200 {
    margin-top: 200px !important;
}

/* Margin Bottom */
.margin-bottom-0 {
    margin-bottom: 0px !important;
}

.margin-bottom-10 {
    margin-bottom: 10px !important;
}

.margin-bottom-20 {
    margin-bottom: 20px !important;
}

.margin-bottom-30 {
    margin-bottom: 30px !important;
}

.margin-bottom-40 {
    margin-bottom: 40px !important;
}

.margin-bottom-50 {
    margin-bottom: 50px !important;
}

.margin-bottom-60 {
    margin-bottom: 60px !important;
}

.margin-bottom-70 {
    margin-bottom: 70px !important;
}

.margin-bottom-80 {
    margin-bottom: 80px !important;
}

.margin-bottom-90 {
    margin-bottom: 90px !important;
}

.margin-bottom-100 {
    margin-bottom: 100px !important;
}

.margin-bottom-120 {
    margin-bottom: 120px !important;
}

.margin-bottom-150 {
    margin-bottom: 150px !important;
}

.margin-bottom-200 {
    margin-bottom: 200px !important;
}

/* Margin Left */
.margin-left-0 {
    margin-left: 0px !important;
}

.margin-left-10 {
    margin-left: 10px !important;
}

.margin-left-20 {
    margin-left: 20px !important;
}

.margin-left-30 {
    margin-left: 30px !important;
}

.margin-left-40 {
    margin-left: 40px !important;
}

.margin-left-50 {
    margin-left: 50px !important;
}

.margin-left-60 {
    margin-left: 60px !important;
}

.margin-left-70 {
    margin-left: 70px !important;
}

.margin-left-80 {
    margin-left: 80px !important;
}

.margin-left-90 {
    margin-left: 90px !important;
}

.margin-left-100 {
    margin-left: 100px !important;
}

.margin-left-120 {
    margin-left: 120px !important;
}

.margin-left-150 {
    margin-left: 150px !important;
}

.margin-left-200 {
    margin-left: 200px !important;
}

/* Margin Right */
.margin-right-0 {
    margin-right: 0px !important;
}

.margin-right-10 {
    margin-right: 10px !important;
}

.margin-right-20 {
    margin-right: 20px !important;
}

.margin-right-30 {
    margin-right: 30px !important;
}

.margin-right-40 {
    margin-right: 40px !important;
}

.margin-right-50 {
    margin-right: 50px !important;
}

.margin-right-60 {
    margin-right: 60px !important;
}

.margin-right-70 {
    margin-right: 70px !important;
}

.margin-right-80 {
    margin-right: 80px !important;
}

.margin-right-90 {
    margin-right: 90px !important;
}

.margin-right-100 {
    margin-right: 100px !important;
}

.margin-right-120 {
    margin-right: 120px !important;
}

.margin-right-150 {
    margin-right: 150px !important;
}

.margin-right-200 {
    margin-right: 200px !important;
}

/* Padding */
.padding-0 {
    padding: 0px !important;
}

/* Padding Top */
.padding-top-0 {
    padding-top: 0px !important;
}

.padding-top-10 {
    padding-top: 10px !important;
}

.padding-top-20 {
    padding-top: 20px !important;
}

.padding-top-30 {
    padding-top: 30px !important;
}

.padding-top-40 {
    padding-top: 40px !important;
}

.padding-top-50 {
    padding-top: 50px !important;
}

.padding-top-60 {
    padding-top: 60px !important;
}

.padding-top-70 {
    padding-top: 70px !important;
}

.padding-top-80 {
    padding-top: 80px !important;
}

.padding-top-90 {
    padding-top: 90px !important;
}

.padding-top-100 {
    padding-top: 100px !important;
}

.padding-top-120 {
    padding-top: 120px !important;
}

.padding-top-150 {
    padding-top: 150px !important;
}

.padding-top-200 {
    padding-top: 200px !important;
}

/* Padding Bottom */
.padding-bottom-0 {
    padding-bottom: 0px !important;
}

.padding-bottom-10 {
    padding-bottom: 10px !important;
}

.padding-bottom-20 {
    padding-bottom: 20px !important;
}

.padding-bottom-30 {
    padding-bottom: 30px !important;
}

.padding-bottom-40 {
    padding-bottom: 40px !important;
}

.padding-bottom-50 {
    padding-bottom: 50px !important;
}

.padding-bottom-60 {
    padding-bottom: 60px !important;
}

.padding-bottom-70 {
    padding-bottom: 70px !important;
}

.padding-bottom-80 {
    padding-bottom: 80px !important;
}

.padding-bottom-90 {
    padding-bottom: 90px !important;
}

.padding-bottom-100 {
    padding-bottom: 100px !important;
}

.padding-bottom-120 {
    padding-bottom: 120px !important;
}

.padding-bottom-150 {
    padding-bottom: 150px !important;
}

.padding-bottom-200 {
    padding-bottom: 200px !important;
}

/* Padding Right */
.padding-right-0 {
    padding-right: 0px !important;
}

.padding-right-10 {
    padding-right: 10px !important;
}

.padding-right-20 {
    padding-right: 20px !important;
}

.padding-right-30 {
    padding-right: 30px !important;
}

.padding-right-40 {
    padding-right: 40px !important;
}

.padding-right-50 {
    padding-right: 50px !important;
}

.padding-right-60 {
    padding-right: 60px !important;
}

.padding-right-70 {
    padding-right: 70px !important;
}

.padding-right-80 {
    padding-right: 80px !important;
}

.padding-right-90 {
    padding-right: 90px !important;
}

.padding-right-100 {
    padding-right: 100px !important;
}

.padding-right-120 {
    padding-right: 120px !important;
}

.padding-right-150 {
    padding-right: 150px !important;
}

.padding-right-200 {
    padding-right: 200px !important;
}

/* Padding Left */
.padding-left-0 {
    padding-left: 0px !important;
}

.padding-left-10 {
    padding-left: 10px !important;
}

.padding-left-20 {
    padding-left: 20px !important;
}

.padding-left-30 {
    padding-left: 30px !important;
}

.padding-left-40 {
    padding-left: 40px !important;
}

.padding-left-50 {
    padding-left: 50px !important;
}

.padding-left-60 {
    padding-left: 60px !important;
}

.padding-left-70 {
    padding-left: 70px !important;
}

.padding-left-80 {
    padding-left: 80px !important;
}

.padding-left-90 {
    padding-left: 90px !important;
}

.padding-left-100 {
    padding-left: 100px !important;
}

.padding-left-120 {
    padding-left: 120px !important;
}

.padding-left-150 {
    padding-left: 150px !important;
}

.padding-left-200 {
    padding-left: 200px !important;
}
