// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.roboto-<uniquifier> {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

body {
    font-family: 'Roboto', serif;
}

a {
	color: black;
}

header.masthead {
    position: relative;
    width: 100%;
    padding-top: 120px;
    color: black;
    background-color: transparent;

}

header.masthead .row.wrapper {
    margin: 0 auto;
    text-align: center;
}

header.masthead .row.wrapper .blend {
    position: absolute;
    width: 65px;
    height: 30px;
    top: 75px;
    left: 80px;
    background-color: white;
    opacity: 0;
}

header.masthead .action {
    margin-top: 60px;
}

header.masthead .header-content {
    max-width: 500px;
    margin-bottom: 50px;
    text-align: center;
}

header.masthead .header-content h1 {
    font-size: 30px;
}


header.masthead .header-content a {
    font-size: 30px;
    padding: 5px 15px;
    border-bottom: 3px solid #ff5005;
}


header.masthead .header-content a:hover {
    text-decoration: none;
}

header.masthead .device-container {
    max-width: 325px;
    margin-right: auto;
    margin-left: auto;
}

header.masthead .device-container .screen img {
    border-radius: 3px;
}

@media (min-width: 992px) {
    header.masthead {
        height: 100vh;
        min-height: 775px;
        padding-top: 0;
        padding-bottom: 0;
    }
    header.masthead .header-content {
        margin-bottom: 0;
        text-align: center;
    }
    header.masthead .header-content h1 {
        font-size: 34px;
    }
    header.masthead .header-content a {
        font-size: 30px;
        padding: 5px 15px;
    }
    header.masthead .device-container {
        max-width: 325px;
    }

    header.masthead .action {
        margin-top: 0;
    }

    footer {
        text-align: right !important;
        right: 30px;
    }
}

@media (max-width: 1200px) {
    header.masthead .row.wrapper .blend {
        width: 50px;
        height: 30px;
        top: 65px;
        left: 71px;
    }
}

@media (max-width: 991px) {
    header.masthead .row.wrapper .blend {
        width: 40px;
        height: 20px;
        top: 47px;
        left: 56px;
    }

    footer {
        margin-top: 0 !important;
    }
}

@media (max-width: 767px) {
    header.masthead .row.wrapper .blend {
        width: 32px;
        height: 12px;
        top: 37px;
        left: 43px;
    }
}

@media (max-width: 576px) {
    header.masthead .row.wrapper .blend {
        display: none;
    }
    header.masthead .header-content h1 {
        font-size: 25px;
    }
    header.masthead .header-content a {
        font-size: 20px;
        padding: 5px 15px;
    }
}

@media (max-width: 478px) {
    header.masthead .header-content a {

    }
}

footer {
    width: 100%;
    position: relative;
    font-size: 18px;
    text-align: center;
    margin-right: 20px;
    margin-top: -45px;
    position:absolute;
    bottom: 0;
    width: 100%;
    height: 2em;
    font-weight: 200;
    
}

footer a {
    color: #000 !important;
    font-weight: 200;
}

footer a:hover {
    text-decoration: none;
}

.rotate {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}
.rotate:hover,
.rotate:focus,
.rotate:active {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
}

.rotate.counter:hover,
.rotate.counter:focus,
.rotate.counter:active {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
}

/* Sweep To Top */
.hvr-sweep-to-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ff5005;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-top:hover, .hvr-sweep-to-top:focus, .hvr-sweep-to-top:active {
  color: white;
}
.hvr-sweep-to-top:hover:before, .hvr-sweep-to-top:focus:before, .hvr-sweep-to-top:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

/*
.blend {
    animation: blink 8s infinite;
}
*/

a.mail-sec {
    unicode-bidi:bidi-override;
/*     direction:rtl; */
}

footer.bottom-fixed {
    position: fixed !important;
    bottom: 20px;
}

@keyframes blink {
    1% {
        opacity: 1;
    }
    3% {
        opacity: 0;
    }
}