/*Start Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Aref+Ruqaa:wght@700&display=swap');
/* Open Sans */
@font-face {
    font-family: "Tajawal";
    src: url("../font/Tajawal-ExtraLight.eot");
    src: url("../font/Tajawal-ExtraLight.eot?#iefix") format('embedded-opentype'),
         url("../font/Tajawal-ExtraLight.woff2") format('woff2'),
         url("../font/Tajawal-ExtraLight.woff") format('woff'),
         url("../font/Tajawal-ExtraLight.ttf") format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "Tajawal";
    src: url("../font/Tajawal-Light.eot");
    src: url("../font/Tajawal-Light.eot?#iefix") format('embedded-opentype'),
         url("../font/Tajawal-Light.woff2") format('woff2'),
         url("../font/Tajawal-Light.woff") format('woff'),
         url("../font/Tajawal-Light.ttf") format('truetype');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: "Tajawal";
    src: url("../font/Tajawal-Regular.eot");
    src: url("../font/Tajawal-Regular.eot?#iefix") format('embedded-opentype'),
         url("../font/Tajawal-Regular.woff2") format('woff2'),
         url("../font/Tajawal-Regular.woff") format('woff'),
         url("../font/Tajawal-Regular.ttf") format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "Tajawal";
    src: url("../font/Tajawal-Medium.eot");
    src: url("../font/Tajawal-Medium.eot?#iefix") format('embedded-opentype'),
         url("../font/Tajawal-Medium.woff2") format('woff2'),
         url("../font/Tajawal-Medium.woff") format('woff'),
         url("../font/Tajawal-Medium.ttf") format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Tajawal";
    src: url('../font/Tajawal-Bold.eot');
    src: url('../font/Tajawal-Bold.eot?#iefix') format('embedded-opentype'),
         url('../font/Tajawal-Bold.woff2') format('woff2'),
         url('../font/Tajawal-Bold.woff') format('woff'),
         url('../font/Tajawal-Bold.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Tajawal";
    src: url('../font/Tajawal-ExtraBold.eot');
    src: url('../font/Tajawal-ExtraBold.eot?#iefix') format('embedded-opentype'),
         url('../font/Tajawal-ExtraBold.woff2') format('woff2'),
         url('../font/Tajawal-ExtraBold.woff') format('woff'),
         url('../font/Tajawal-ExtraBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Tajawal";
    src: url('../font/Tajawal-Black.eot');
    src: url('../font/Tajawal-Black.eot?#iefix') format('embedded-opentype'),
         url('../font/Tajawal-Black.woff2') format('woff2'),
         url('../font/Tajawal-Black.woff') format('woff'),
         url('../font/Tajawal-Black.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}
/*End Fonts*/
*
{
    padding: 0;
    margin: 0;
}

body
{
    font-family: 'arial', sans-serif;
}


/* Start Scrollbar */
/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #f2f2f2; 
  -webkit-box-shadow: inset 0 0 .2rem #808080; 
          box-shadow: inset 0 0 .2rem #808080;
}
/* Track Active */
::-webkit-scrollbar-track:active {
  background: #d9d9d9; 
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #4d4d4d; 
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 .3rem #4d4d4d;
          box-shadow: inset 0 0 .3rem #4d4d4d;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #333333; 
}
/* End Scrollbar */
/*Tooltips Start*/
[data-tooltip-top]
{
    position: relative;
    cursor: default;
}
[data-tooltip-top]::after
{
    position: absolute;
    width: 143px;
    left: calc(50% - 73px);
    bottom: 125%;
    content: attr(data-tooltip-top);
    background: #0d0d0d;
    color: #ffffff;
    border-radius: 3px;
    padding: .6em 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    font-size: 11px !important;
    line-height: 1.5;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
            transform: translateY(10px);
}
[data-tooltip-top]:hover:after
{
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
            transform: translateY(-5px);
}
[data-tooltip-bottom]
{
    position: relative;
    cursor: default;
}
[data-tooltip-bottom]::after
{
    position: absolute;
    width: 143px;
    left: calc(50% - 73px);
    top: 125%;
    content: attr(data-tooltip-bottom);
    background: #0d0d0d;
    color: #ffffff;
    border-radius: 3px;
    padding: .6em 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    font-size: 11px !important;
    line-height: 1.5;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
            transform: translateY(-10px);
}
[data-tooltip-bottom]:hover:after
{
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(5px);
        -ms-transform: translateY(5px);
            transform: translateY(5px);
}
[data-tooltip-right]
{
    position: relative;
    cursor: default;
}
[data-tooltip-right]::after
{
    position: absolute;
    width: 143px;
    right: -150px;
    content: attr(data-tooltip-right);
    background: #0d0d0d;
    color: #ffffff;
    border-radius: 3px;
    padding: .6em 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    font-size: 11px !important;
    line-height: 1.5;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
            transform: translateX(-10px);
}
[data-tooltip-right]:hover:after
{
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(5px);
        -ms-transform: translateX(5px);
            transform: translateX(5px);
}
[data-tooltip-left]
{
    position: relative;
    cursor: default;
}
[data-tooltip-left]::after
{
    position: absolute;
    width: 143px;
    left: -150px;
    content: attr(data-tooltip-left);
    background: #0d0d0d;
    color: #ffffff;
    border-radius: 3px;
    padding: .6em 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    font-size: 11px !important;
    line-height: 1.5;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
            transform: translateX(0px);
}
[data-tooltip-left]:hover:after
{
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(-15px);
        -ms-transform: translateX(-15px);
            transform: translateX(-15px);
}
/*Tooltips End*/

.overlay
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.overlay-active
{
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1.0);
        -ms-transform: scale(1.0);
            transform: scale(1.0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: rgba(255, 255, 255, .5);
}
.overlay .overlay-content
{
    position: relative;
    z-index: 1101;
}
.block-overlay
{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, .5);
}
.block-overlay-content
{
     position: relative;
    z-index: 1001;
}
.upload-btn
{
    background: #a31aff;
    color: #ffffff;
    font-size: 13px;
    margin: .5em 0;

}
.upload-btn .text
{
    font-weight: 300;
}
.upload-btn:hover
{
    background: #8a00e6;
    color: #ffffff;
}
.upload-btn .icon
{
    font-size: 12px;
}
.text-ellipsis
{
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
}
.list
{
    padding: .5em 1em;
    list-style: circle;
}
.form-link-btn
{
    text-decoration: none;
    display: inline-block;
    padding: .3em 2em;
    color: brown;
    font-size: 14px;
}
.link-btn
{
    text-decoration: none;
    display: inline-block;
    padding: .3em 2em;
    color: brown;
    font-size: 14px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.link-btn:hover
{
    letter-spacing: 2px;
}
.hint-div
{
    font-weight: 300;
    font-size: 14px; 
}
.hint-div .hint
{
    color: #391313;
    font-weight: 500;
}
.hint-div .hint .desc
{
   color: #669999; 
}
.full-height
{
    overflow: auto;
    height: 100%;
}
.nopointer-events
{
    pointer-events: none;
}
.table
{
    font-weight: 300;
    font-size: 14px;
    border: none !important;
}
.table thead tr
{
    border-bottom: 1px solid #ECEFF1;
}
.table tbody tr
{
    border-bottom: 1px solid #ECEFF1;
}
.table tbody tr:hover
{
    -webkit-box-shadow: 0 1px 0.2em #a6a6a6;
            box-shadow: 0 1px 0.2em #a6a6a6;
}
.table tbody tr a
{
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
    font-size: inherit;
}
.table-div
{
    width:  100%;
    max-height: 100vh;
    overflow: auto;
}
.btn-close
{
    font-size: 10px;
    padding: .5em 1em;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.btn-close:focus
{
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
            transform: rotate(360deg);
}
.card-text
{
    margin: 0;
}
.link
{
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    color: #751aff;
    margin: .5em 0;
    display: block;
}
.soft-shadow
{
    -webkit-box-shadow: 0 0.2em 0.5em #00000026;
            box-shadow: 0 0.2em 0.5em #00000026;
}
.smooth-radius
{
    border-radius: .5em;
}
.btn
{
    padding: .35em 1.5em !important;
    border: 1px solid #ffffff;
    font-weight: 500;
}
.flex
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.flex-center
{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.title
{
    font-weight: 400;
    font-size: 25px;
    margin: 1em 0;
}
.submit-btn
{
    padding: .5em 2em;
    font-weight: 300;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    color: #ffffff;
    background: #68A51D;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.submit-btn:hover
{
    -webkit-transform: translateY(5px);
        -ms-transform: translateY(5px);
            transform: translateY(5px);
}
.special-btn
{
    padding: .5em 2em;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 24px;
    color: #ffffff;
    background: #FF8300;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.special-btn:hover
{
    -webkit-transform: translateY(5px) scale(1.1);
        -ms-transform: translateY(5px) scale(1.1);
            transform: translateY(5px) scale(1.1);
    color: #ffffff;
}
.input-group .input-group-text
{
    border-color: #E6F0F5;
    border-left: none;
    background: #ffffff;
    border-radius: 0;
    font-size: 13px;
    color: #ab4795;
}
.input-group .input-text
{
    position: relative;
    border-radius: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}
.input-group .input-textarea
{
    position: relative;
    border-radius: 0;
    border-right: none;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}
.input-textarea
{
    padding: .5em 1em;
    outline: 0;
    border: 1px solid  #f2f2f2;
    border-radius: 5px;
    font-size: 15px;
    color: #6B7C93;
    display: block;
    width: 100%;
    min-height: 100px;
}
.input-textarea::-webkit-input-placeholder
{
    font-size: 12px;
    color: #666666;
}
.input-textarea::-moz-placeholder
{
    font-size: 12px;
    color: #666666;
}
.input-textarea:-ms-input-placeholder
{
    font-size: 12px;
    color: #666666;
}
.input-textarea::-ms-input-placeholder
{
    font-size: 12px;
    color: #666666;
}
.input-textarea::placeholder
{
    font-size: 12px;
    color: #666666;
}
.input-text
{
    padding: .5em 1em;
    outline: 0;
    border-radius: 5px;
    border:  1px solid #E6F0F5;
    width: 100%;
    color: #6B7C93;
    font-size: 14px;
    font-weight: 300;
}
.input-text::-webkit-input-placeholder
{
    font-size: 13px;
    font-weight: 300;
}
.input-text::-moz-placeholder
{
    font-size: 13px;
    font-weight: 300;
}
.input-text:-ms-input-placeholder
{
    font-size: 13px;
    font-weight: 300;
}
.input-text::-ms-input-placeholder
{
    font-size: 13px;
    font-weight: 300;
}
.input-text::placeholder
{
    font-size: 13px;
    font-weight: 300;
}
.form-title
{
    font-size: 25px;
    font-weight: 300;
    text-align: center;
    color: #1a1a1a;
    padding: 1em 0;
    display: block;
}
.blur
{
    -webkit-filter: blur(3px);
            filter: blur(3px);
}
.app-block-simple
{
    overflow: auto;
    padding: 1.5em;
    border: 1px solid #e3e8ff;
    border-radius: 5px;
}
.app-block
{
    border-radius: 5px;
    -webkit-box-shadow: 0 2px 5px 0 rgb(51 51 79 / 7%);
            box-shadow: 0 2px 5px 0 rgb(51 51 79 / 7%);
    padding: 20px;
    background: #ffffff;
}
.text-align-r
{
    text-align: right;
    direction: rtl;
}
.text-align-l
{
    text-align: left;
    direction: ltr;
}
.text-align-cr
{
    text-align: center;
    direction: rtl;
}
.text-align-cl
{
    text-align: center;
    direction: ltr;
}
.wrapper-p-1
{
    padding: 1em;
}
.wrapper-p-2
{
    padding: 1.5em;
}
.wrapper-p-3
{
    padding: 2em 1em;
}
.important
{
    color: #33001a;
    text-shadow: 0 1px 1px #33001a;
    margin: 1em 0;
    padding: 0;
}
.underline
{
    text-decoration: underline;
}
.notice
{
    color: #00004d;
    text-shadow: 0 1 1px #00004d;
    font-weight: 500;
}
.note-div
{
    padding: .5em 1em;
    margin: .5em 0;
    border-radius: 4px;
    border: 1px solid #660029;
    background: #ffe0cc;
}
.note-div .desc
{
    padding: 0 !important;
    margin: 0 !important;
}
.note-div .note
{
    color: #660029;
    font-weight: 500;
    text-shadow: 0 1px 1px #a7a7a7;
}
.tip-div
{
    padding: .5em 1em;
    margin: .5em 0;
    border-radius: 4px;
    border: 1px solid #003300;
    background: #c4e6c8;
}
.tip-div .desc
{
    padding: 0 !important;
    margin: 0 !important;
}
.tip-div .tip
{
    color: #003300;
    font-weight: 500;
    text-shadow: 0 1px 1px #a7a7a7;
}
.link-lg
{
    font-size: 20px;
}
.link-lemon
{
    color: #68A51D;
}
.adblock-detector-container 
.wrapper
{
    border-right: 5px solid #79B76A;
}
.adblock-detector-container
.abd-header
{
    margin-bottom: 1.5em;
}
.adblock-detector-container
.abd-header .icon img
{
    width: 70px;
}
.adblock-detector-container
.abd-header .abd-title
{
    margin: 1em 0 0 0;
    font-size: 25px;
    font-weight: 400;
    color: #262626;
}
.adblock-detector-container
.abd-body
{
    font-weight: 400;
    font-size: 15px;
    color: #333333;
}
.adblock-detector-container
.abd-footer
{
    margin-top: 1.5em;
}
.adblock-detector-container
.abd-footer .abd-footer-btn
{
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
    padding: .5em 1em;
    margin: .5em 0;
    display: inline-block;
    width: 100%;
    border-radius: 4px;
    border: none;
}
.OAuthSignin-btn
{
    margin: .5em 0;
    cursor: pointer;
}
.OAuthSignin-btn .wrapper
{
    width: 240px;
    height: 50px;
    border: 1px solid #4285F4;
    background: #4285F4;
    -webkit-box-shadow: -1px 1px 0.3em #ababab;
            box-shadow: -1px 1px 0.3em #ababab;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.OAuthSignin-btn .wrapper:hover
{
    -webkit-box-shadow: 0 0 0.5em #5590f6;
            box-shadow: 0 0 0.5em #5590f6;
}
.OAuthSignin-btn .wrapper
.icon
{
    display: inline-block;
    vertical-align: middle;
    width: 48px;
    height: 100%;
    padding: 0.6em 1em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #ffffff;
}
.OAuthSignin-btn .wrapper
.icon img
{
    width: 18px;
}
.OAuthSignin-btn .wrapper
.OAuth-text
{
    display: inline-block;
    vertical-align: middle;
    width: 185px;
    height: 100%; 
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    padding: 0.8em 0;
    text-align: center;
}
.parallax
{
    background: url('../img/utils/parallaxbg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 300px;
}
.top-shape-01
{
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
}
.top-shape-01
svg
{
    height: 40px;
    width: 100%;
}
.top-shape-02
{
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
.top-shape-02
svg
{
    height: 40px;
    width: 100%;
}
.bottom-shape-01
{
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
.bottom-shape-01
svg
{
    height: 40px;
    width: 100%;
}
.bottom-shape-02
{
    position: absolute;
    bottom: -45px;
    left: 0;
    width: 100%;
}
.bottom-shape-02
svg
{
    height: 40px;
    width: 100%;
}


.main-content-container
{
    background: #ffffff;
    overflow: hidden;
    height: 100%;
}


.navbar-container
{
    border-bottom: 1px solid #f2f2f2;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    position: relative;
    z-index: 1;
}
.navbar-container.sticky
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    background: #ffffff;
}
.menu-togger-div
{
    display: none;
    color: #68A51D;
    cursor: pointer;
    font-size: 25px;
}
.navbar-container .logo
{
    max-width: 200px;
    display: inline-block;
}
.navbar-container .logo
img
{
    width: 100%;
}

.navbar-container .navmenu-div
{
    padding: .5em 0 0 0;
}
.navbar-container .navmenu-div.active
{
    display: block;
}
.navbar-container .navmenu-div
.navmenu
{
    list-style: none;
    margin: 0;
    padding: 0;
}
.navbar-container .navmenu-div
.navmenu li
{
    display: inline-block;
}
.navbar-container .navmenu-div
.navmenu li a
{
    text-decoration: none;
    color: #000000;
    font-size: 20px;
    display: block;
    padding: .5em .5em;
}
.navbar-container .navmenu-div
.navmenu li a::after
{
    content: '';
    height: 1px;
    width: 0;
    display: block;
    background-color: #1a1a1a;
    border-radius: 5px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.navbar-container .navmenu-div
.navmenu li a:hover:after
{
    width: 100%;
}

.navbar-container .user-account-col.active
{
    display: block;
}
.navbar-container .user-account-col
.submit-btn
{
    display: block;
    margin: 0 auto;
}

@media screen and (max-width:  900px)
{
    .navbar-container
    {
        text-align: center;
        border:  none;
    }
    .menu-togger-div
    {
        display: inline-block;
    }
    .navbar-container .navmenu-div
    {
        text-align: right;
        display: none;
    }
    .navbar-container .navmenu-div
    .navmenu li
    {
        display: block;
    }
    .user-account-col
    {
        margin-top: 1.7em;
        display: none;
    }
}


.header-container
{
    height: 500px;
    position: relative;
}
.header-container .wrapper
{
    position: relative; 
}
.header-container .video-div
{
    position: relative;
    height: 500px;
}
.header-container .video-div
video
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.header-container .desc-overlay
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
}
.header-container .desc-overlay-content
{
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}
.header-container .desc-overlay-content
.desc-div
{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    color: #ffffff;
}
.header-container .desc-overlay-content
.desc-div .title
{
    font-size: 50px;
    font-weight: 700;
    margin: 0 0 .5em 0;
}
.header-container .desc-overlay-content
.desc-div .desc
{
    margin: 0;
    font-weight: 500;
    font-size: 25px;
}
@media screen and (max-width:  360px)
{
    .header-container .desc-overlay-content
    .desc-div .title
    {   
        font-size: 30px;
    }
    .header-container .desc-overlay-content
    .desc-div .desc
    {
        font-size: 20px;
    }
}

.block-01
{
    position: relative;
}
.block-01 .title
{
    font-weight: 700;
    font-family: 'Aref Ruqaa', 'Tajawal';
    font-size: 102px;
    margin-bottom: .3em;
}
.block-01 .desc
{
    font-size: 27px;
    font-weight: 400;
    color: #75AD31;
}
.block-01 .big-desc
{
    font-size: 42px;
    font-weight: 700;
    color: #000000;
}
.block-01 .img
{
    padding: 4em 0 0 0;
}


.block-02 .wrapper
{
    position: relative;
}
.block-02 .title
{
    font-family: 'Aref Ruqaa', 'Tajawal';
    font-weight: 700;
    font-size: 40px;
    color: #68A51D;
    margin-bottom: .5em;
}
.block-02 .list-details-div
{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url('../img/utils/metalbg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position:relative;
    padding: 2em;
}
.block-02 .list-details-div
.logo
{
    width: 200px;
    display: block;
    margin: 0 auto;
}
.block-02 .list-details-div 
.list-title
{
    font-size: 38px;
    font-family: 'Aref Ruqaa', 'Tajawal';
    font-weight: 700;
    color: #68A51D;
    margin: 1.5em 0 .5em 0;
}
.block-02 .list-details-div
.checked-list
{
    list-style: url('../img/utils/list-check.png');
    padding: 0 1.5em 1.5em 0;
}
.block-02 .list-details-div
.checked-list li
{
    font-size: 22px;
    font-weight: 400;
    padding: .3em 0;
}

.block-03 
{
    padding-bottom: 2em;
}
.block-03 .title
{
    font-weight: 700;
    font-size: 55px;
    color: #68A51D;
    margin-bottom: .5em;
}
.block-03 .feature
{
    text-align: center;
}
.block-03 .feature
.feature-img
{
    width: 335px;
}
.block-03 .feature
.feature-title a
{
    font-weight: 500;
    font-size: 24px;
    color: #000000;
    text-decoration: none;
}
.block-03 .feature
.feature-title a p
{
    margin: 0;
    padding: 0;
}


.block-04
{
    background: #000000;
    position: relative;
}
.block-04 .title
{
    font-size: 60px;
    font-family: 'Aref Ruqaa', 'Tajawal';
    font-weight: 700;
    color: #68A51D;
    margin: 0 0 .5em 0;
}
.block-04 .desc
{
    font-size: 40px;
    font-weight: 700;
    color: #68A51D;
    margin:0;
}
.block-04 .feature
.feature-img
{
    width: 51px;
}
.block-04 .feature 
.feature-desc
{
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 1em;
    line-height: 1.7;
}


.block-05
{
    position: relative;
}
.block-05 .wrapper
{
    padding: 5em 1em;
}
.block-05 .quote
{
    font-size: 50px;
    font-family: 'Aref Ruqaa', 'Tajawal';
    font-weight: 700;
    color: #000000;
    margin: 0 0 .5em 0;
}
.block-05 .quote-author
{
    font-size: 30px;
    font-weight: 400;
    color: #000000;
}
.block-05 .quote-author::before
{
    content:  '-';
    display: inline-block;
    margin-left: .3em;
    vertical-align: middle;
}


.block-06
{
    position: relative;
    padding: 5em 0 3em 0;
}
.block-06 .title
{
    font-size: 30px;
    font-weight: 700;
    color: #000000;
    margin: 0 auto 1em auto;
    padding: 1em 0;
    border-top: 1px solid #68A51D;
    border-bottom: 1px solid #68A51D;
    width: 320px;
}
.block-06 .news .news-img
{
    width: 100%;
}
.block-06 .news .news-link
{
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: #76BC21;
    display: block;
    padding: .5em;
}
.block-06 .news .news-readmore
{
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    color: #4d1f00;
    display: block;
    padding: 0 .5em;
}
.block-06 .news .news-readmore:hover
{
    text-decoration: underline;
}


.block-07
{
    background: url('../img/utils/block07bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 5em .5em;
}
.block-07 .feature
{
    margin-bottom: 1em;
}
.block-07 .feature .feature-col
{
    position: relative;
    overflow: hidden;
    height: 190px;
}
.block-07 .feature .feature-col
.block-overlay
{
    background: transparent;
}
.block-07 .feature .feature-col
.block-overlay:hover .feature-img
{
    -webkit-transform: scale(1.5);
        -ms-transform: scale(1.5);
            transform: scale(1.5);
}
.block-07 .feature .feature-img
{
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1.0);
        -ms-transform: scale(1.0);
            transform: scale(1.0);
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
.block-07 .feature .feature-body 
{
    background: #ffffff;
    padding: 1em;
    text-align: center;
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
}
.block-07 .feature .feature-body 
.feature-desc
{
    font-size: 24px;
    font-weight: 400;
    color: #000000;
}
.block-07 .feature .feature-body 
.feature-btn
{
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    color: #ffff;
    background: #68A51D;
    display: block;
    width: 200px;
    padding: .5em 1.7em;
    margin-top: 2em;
    position: absolute;
    bottom: 1em;
    right: 1.5em;
}


.block-08
{
    position: relative;
}
.block-08 .product-name
{
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
    color: #68A51D;
}
.block-08 .product-name:hover
{
    color: #000000;
}


.block-09
{
    position: relative;
    background: #E0E0E0;
    padding-bottom: 3em;
}
.block-09 .title
{
    font-size: 50px;
    font-family: 'Aref Ruqaa', 'Tajawal';
    font-weight: 700;
    color: #000000;
    margin: 0 0 .5em 0;
}
.block-09 .desc
{
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin: 0;
}
.block-09 .feature
{
    text-align: center;
    background: #ffffff;
    border-radius: 42px;
    -webkit-box-shadow: 0 2px 5px 0 rgb(51 51 79 / 7%);
            box-shadow: 0 2px 5px 0 rgb(51 51 79 / 7%);
    height: 400px;
    padding: 1em;
}
.block-09 .feature
.feature-img
{
    width: 250px;
    display: inline-block;
    margin-top: -5.5em;
}
.block-09 .feature
.feature-title a
{
    font-weight: 500;
    font-size: 24px;
    color: #000000;
    text-decoration: none;
}
.block-09 .feature
.feature-title a p
{
    margin: 0;
    padding: 0;
}
.block-09 .feature
.feature-desc
{
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    margin-top: 2em;
}
@media screen and (max-width:  360px)
{
    .block-09 .feature
    {
        margin-bottom: 3em;
    }
}


.block-10
{
    position: relative;
    background: #ffffff;
}
.block-10 .title
{
    font-size: 60px;
    font-weight: 700;
    color: #68A51D;
    margin: 0 0 .5em 0;
}
.block-10 .sub-title
{
    font-size: 50px;
    font-family: 'Aref Ruqaa', 'Tajawal';
    font-weight: 700;
    color: #000000;
    margin: 0 0 .5em 0;
}
.block-10 .desc
{
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin: 0;
}
.block-10 .feature
{
    text-align: center;
    background: #E0E0E0;
    border-radius: 42px;
    -webkit-box-shadow: 0 2px 5px 0 rgb(51 51 79 / 7%);
            box-shadow: 0 2px 5px 0 rgb(51 51 79 / 7%);
    height: 360px;
    padding: 1em;
    margin-bottom: 4em;
}
.block-10 .feature
.feature-img
{
    width: 250px;
    display: inline-block;
    margin-top: -7.5em;
    -webkit-transform: rotate3d(1, 0, 0, 302deg);
            transform: rotate3d(1, 0, 0, 302deg);
}
.block-10 .feature
.feature-title a
{
    font-weight: 500;
    font-size: 24px;
    color: #000000;
    text-decoration: none;
}
.block-10 .feature
.feature-title a p
{
    margin: 0;
    padding: 0;
}
.block-10 .feature
.feature-desc
{
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    margin-top: 2em;
}


.block-11
{
    position: relative;
    background: #E0E0E0;
    margin: 3em 0 0 0;
}
.block-11 .title
{
    font-size: 60px;
    font-weight: 700;
    color: #68A51D;
    margin: 0 0 .5em 0;
}
.block-11 .sub-title
{
    font-size: 50px;
    font-family: 'Aref Ruqaa', 'Tajawal';
    font-weight: 700;
    color: #000000;
    margin: 0 0 .5em 0;
}
.block-11 .desc
{
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin: 0;
}
.block-11 .feature
{
    text-align: center;
    background: #ffffff;
    border-radius: 42px;
    -webkit-box-shadow: 0 2px 5px 0 rgb(51 51 79 / 7%);
            box-shadow: 0 2px 5px 0 rgb(51 51 79 / 7%);
    height: 430px;
    padding: 1em;
    margin-bottom: 4em;
}
.block-11 .feature
.feature-img
{
    width: 250px;
    display: inline-block;
    margin-top: -5.5em;
}
.block-11 .feature
.feature-title a
{
    font-weight: 500;
    font-size: 24px;
    color: #000000;
    text-decoration: none;
}
.block-11 .feature
.feature-title a p
{
    margin: 0;
    padding: 0;
}
.block-11 .feature
.feature-desc
{
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    margin-top: 2em;
}


.block-12
{
    position: relative;
    background: #ffffff;
}
.block-12 .title
{
    font-size: 60px;
    font-weight: 700;
    color: #68A51D;
    margin: 0 0 .5em 0;
}
.block-12 .sub-title
{
    font-size: 50px;
    font-family: 'Aref Ruqaa', 'Tajawal';
    font-weight: 700;
    color: #000000;
    margin: 0 0 .5em 0;
}
.block-12 .desc
{
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin: 0;
}
.block-12 .feature
{
    text-align: center;
    background: #E0E0E0;
    border-radius: 42px;
    -webkit-box-shadow: 0 2px 5px 0 rgb(51 51 79 / 7%);
            box-shadow: 0 2px 5px 0 rgb(51 51 79 / 7%);
    height: 360px;
    padding: 1em;
    margin-bottom: 4em;
}
.block-12 .feature
.feature-img
{
    width: 165px;
    display: inline-block;
    margin-top: -5.5em;
}
.block-12 .feature
.feature-title a
{
    font-weight: 500;
    font-size: 24px;
    color: #000000;
    text-decoration: none;
}
.block-12 .feature
.feature-title a p
{
    margin: 0;
    padding: 0;
}
.block-12 .feature
.feature-desc
{
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    margin-top: 2em;
}


.block-13
{
    position: relative;
    background: #E0E0E0;
    margin: 3em 0 0 0;
}
.block-13 .title
{
    font-size: 60px;
    font-weight: 700;
    color: #68A51D;
    margin: 0 0 .5em 0;
}
.block-13 .sub-title
{
    font-size: 50px;
    font-family: 'Aref Ruqaa', 'Tajawal';
    font-weight: 700;
    color: #000000;
    margin: 0 0 .5em 0;
}
.block-13 .desc
{
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin: 0;
}
.block-13 .feature
{
    text-align: center;
    background: #ffffff;
    border-radius: 42px;
    -webkit-box-shadow: 0 2px 5px 0 rgb(51 51 79 / 7%);
            box-shadow: 0 2px 5px 0 rgb(51 51 79 / 7%);
    height: 360px;
    padding: 1em;
    margin-bottom: 4em;
}
.block-13 .feature
.feature-img
{
    width: 160px;
    display: inline-block;
    margin-top: -5.5em;
}
.block-13 .feature
.feature-title a
{
    font-weight: 500;
    font-size: 24px;
    color: #000000;
    text-decoration: none;
}
.block-13 .feature
.feature-title a p
{
    margin: 0;
    padding: 0;
}
.block-13 .feature
.feature-desc
{
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    margin-top: 2em;
}


.presentation-container
{

}
.presentation-container 
.header
.wrapper
{
    background: url('../img/utils/presentation-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100vh;
}
@media screen and (max-width:  800px)
{
    .presentation-container 
    .header
    .wrapper
    {
        height: auto;
    }
}


.presentation-container
.header
.contents-div
{
    padding: 15% 1em;
}
.presentation-container
.header
.contents-div .title
{
    font-weight: 800;
    font-size: 35px;
    color: #ffffff;
}
.presentation-container
.header
.contents-div .desc
{
    color: #e6fff2;
    font-weight: 300;
    font-size: 14px;
}
.presentation-container
.contents-div .signup-btn
{
    background: #ffe26d;
    border-radius: 0px;
    border: 1px inset transparent;
    color: #262626;
    padding: .35em 2em;
    margin-top: 9em;
    position: relative;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.presentation-container
.contents-div .signup-btn
.icon
{
    color: brown;
    display: inline-block;
    vertical-align: middle;
    margin-right: .5em;
    font-size: 12px;
    position: relative;
    z-index: 2;
     -webkit-transition: all .5s ease-in-out;
     -o-transition: all .5s ease-in-out;
     transition: all .5s ease-in-out;
}
.presentation-container
.contents-div .signup-btn .text
{
    position: relative;
    z-index: 2;
}
.presentation-container
.contents-div .signup-btn .bright
{
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    height: 100%;
    width: 0;
    background: rgba(255, 255, 255, .5);
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
.presentation-container
.contents-div .signup-btn:hover
{
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    border-radius: 5px;
    padding: .35em 4em;
}
.presentation-container
.contents-div .signup-btn:hover .text
{
    text-shadow: -1px 1px 1px #000000;
}
.presentation-container
.contents-div .signup-btn:hover .icon
{
    -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
            transform: translateX(-20px);
}
.presentation-container
.contents-div .signup-btn:hover .bright
{
    width: 100%;
}


.block-14 .wrapper
{
    padding: 3em 1em 1em 1em;
}
.block-14 .contents-div
{

}
.block-14 .contents-div
.title
{
    font-size: 14px;
    font-weight: 400;
    color: #ED1E4D;
}
.block-14 .contents-div
.sub-title
{
    font-size: 38px;
    font-weight: 700;
    color: #333;
}
.block-14 .contents-div
.desc
{
    font-size: 14px;
    font-weight: 300;
    color: #333;
    line-height: 1.8;
}
.block-14 .signup-btn
{
    background: transparent !important;
    color: #ffffff !important;
    text-shadow: -1px 1px 1px #000000;
    border-color: #ffffff !important;
    border-radius: 5px !important;
    padding: .35em 4em !important;
    border-style: dashed !important;
    border-color: #ffd1b3 !important;
}
.block-14 .signup-btn .icon
{
    color: #ffcc66 !important;
    text-shadow: -1px 1px 1px #b36b00;
}
.block-14 .signup-btn:hover .text
{
    text-shadow: -1px 1px 1px #ff9900 !important;
}
.block-14 .signup-btn:hover .bright
{
    background: rgba(255, 240, 230, 1.0);
}


.block-15
{
    background: #F9F9F9;
}
.block-15 .wrapper
{
    padding: 3em 1em;
}
.block-15 .title
{
    font-size: 26px;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: .3em;
}
.block-15 .desc
{
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    color: #662900;
}
.block-15 .upgrade-plans
{
    margin-top: 3em;
}
.block-15 .upgrade-plans
.upgrade-plan
{
    margin-bottom: 2em;
    position: relative;
    overflow: hidden;
    border-top: 10px solid transparent;
    border-bottom: 5px solid transparent;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.block-15 .upgrade-plans
.upgrade-plan:hover
{
    -webkit-box-shadow: 0 0 1em #adc2eb;
            box-shadow: 0 0 1em #adc2eb;
    -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
            transform: translateY(-20px);
    border-color: #FBB738;
}
.block-15 .upgrade-plans
.upgrade-plan.selected
{
    border-top: 10px solid #FBB738;
    border-bottom: 5px solid #E89B43;
    -webkit-box-shadow: 0 0 1em #adc2eb;
            box-shadow: 0 0 1em #adc2eb;
    -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
            transform: translateY(-20px);
}
.block-15 .upgrade-plans
.upgrade-plan .upgrade-plan-image
{
    max-width: 50px;
    display: inline-block;
    margin-bottom: 1.5em;
}
.block-15 .upgrade-plans
.upgrade-plan .upgrade-plan-title
{
    font-size: 17px;
    font-weight: 300;
    color: #4d4d4d;
    margin-bottom: .2em;
}
.block-15 .upgrade-plans
.upgrade-plan .upgrade-plan-title span
{
    font-weight: 800;
    color: #505362;
    display: inline-block;
    vertical-align: middle;
}
.block-15 .upgrade-plans
.upgrade-plan .upgrade-plan-price
{
    font-weight: 400;
    font-size: 13px;
    color: #808080;
    display: block;
    margin-bottom: 1em;
}
.block-15 .upgrade-plans
.upgrade-plan .upgrade-plan-price-discount
{
    font-weight: 400;
    font-size: 15px;
    color: #808080;
    display: block;
    margin-bottom: 1em;
}
.block-15 .upgrade-plans
.upgrade-plan .upgrade-plan-price-discount
.percentage
{
    font-weight: 800;
    font-size: 60px;
    color: #262626;
    display: inline-block;
    vertical-align: middle;
}
.block-15 .upgrade-plans
.upgrade-plan .upgrade-plan-features
{
    list-style: none;
    margin-bottom: 1em;
    text-align: right;
}
.block-15 .upgrade-plans
.upgrade-plan .upgrade-plan-features li
{
    display: block;
    padding: .3em 1em;
}
.block-15 .upgrade-plans
.upgrade-plan .upgrade-plan-features li::before
{
    content: '\f00c';
    display: inline-block;
    margin-left: .5em;
    border-radius: 50%;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 10px;
    color: #33cc33;
}
.block-15 .upgrade-plans
.upgrade-plan .upgrade-plan-features li.not-available::before
{
    content: '\f12a';
    color: #cc0044;
}
.block-15 .upgrade-plans
.upgrade-plan .upgrade-plan-btn
{
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    font-weight: 400;
    padding: .45em 2em;
    border-radius: 5px;
    border: none;
    background-color: #e9ae00;
    background-image: -o-linear-gradient(right, #e9ae00 0%, #e06412 100%);
    background-image: -webkit-gradient(linear, right top, left top, from(#e9ae00), to(#e06412));
    background-image: linear-gradient(270deg, #e9ae00 0%, #e06412 100%);
    color: #ffffff;
    overflow: hidden;
    position: relative;
}
.block-15 .upgrade-plans
.upgrade-plan .upgrade-plan-btn span, i, p
{
    pointer-events: none;
}
.block-15 .upgrade-plans
.upgrade-plan .upgrade-plan-btn:hover .scanner
{
    right: 200%;
}
.block-15 .upgrade-plans
.upgrade-plan .upgrade-plan-btn:hover::after
{
    -webkit-transform: translateX(-15px);
        -ms-transform: translateX(-15px);
            transform: translateX(-15px);
}
.block-15 .upgrade-plans
.upgrade-plan .upgrade-plan-btn::after
{
    content: '\f135';
    display: inline-block;
    margin-right: 1.5em;
    padding: .3em .5em;
    background: #DE9B4A;
    border-radius: 50%;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 10px;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.block-15 .upgrade-plans
.upgrade-plan .upgrade-plan-btn .scanner 
{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: -14px;
    -webkit-box-shadow: 0px 0px 3em 20px #ffffff;
            box-shadow: 0px 0px 3em 20px #ffffff;
    -webkit-filter: blur(5px);
            filter: blur(5px);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.block-15 .upgrade-plans
.upgrade-plan
.upgrade-plan-terms
{
    font-size: 14px;
    font-weight: 300;
    color: #669999;
    margin-top: 1em;
}
.block-15 .upgrade-plans
.upgrade-plan
.upgrade-plan-terms a
{
    color: #662200;
    text-decoration: none;
}


.block-16 .wrapper
{
    padding: 3em 1em;
}
.block-16 .title
{
    font-size: 26px;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 0.3em;
}
.block-16 .desc
{
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    color: #662900;
}
.block-16 .tips-div 
{
    margin-top: 4em;
}
.block-16 .tips-div 
.tip-div
{
    background: transparent;
    border: none;
    color: #000000;
}
.block-16 .tips-div
.tip-div .tip-icon
{
    font-size: 37px;
    color: brown;
    border: 1px dashed brown;
    border-radius: 50%;
    width: 73px;
    height: 73px;
    padding: 0.27em 0;
    margin: 0 auto;
}
.block-16 .tips-div
.tip-div .tip-title
{
    font-size: 22px;
    font-weight: 600;
    color: #262626;
    margin: 1.2em 0 0.3em 0;
}
.block-16 .tips-div
.tip-div .tip-desc
{
    font-size: 14px;
    font-weight: 300;
    color: #333333;
    margin: 0;
}
.block-16 .tips-div 
.signup-btn
{
    border-radius: 5px;
    border:  none;
    border-right: 5px dotted #ff6600;
    border-bottom: 2px dashed #ff6600;
    background: transparent;
    color: brown;
    padding: .35em 2em;
    margin-top: 5em;
}

.block-17 .wrapper
{
    padding: 5em 1em;
    background: #F9F9F9;
    position: relative;
}
.block-17 .wrapper .qrcode-bg
{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 295px;
    height: 295px;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 20em;
    color: #f2f2f2;
    z-index: 1;
}
.block-17 .title
{
    font-size: 26px;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 1em;
    text-align: center;
}
.block-17 .blockquote
{
    position: relative;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 .5em #d9d9d9;
            box-shadow: 0 0 .5em #d9d9d9;
    padding: 4em 1em;
    overflow: hidden;
}
.block-17 .blockquote
.blockquote-text
{
    font-size: 17px;
    font-weight: 300;
    color: #404040;
    position: relative;
    z-index: 10;
}
.block-17 .blockquote
.blockquote-text-important
{
    font-weight: 800;
    color: #404040;
}
.block-17 .blockquote
.blockquote-icon
{
    position: absolute;
    right: 0;
    top: 0;
    font-size: 5em;
    color: #E0DAE6;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    -o-transition: transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    z-index: 3;
}
.block-17 .blockquote
.blockquote-shape-top-left
{
    position: absolute;
    top: -83px;
    left: -30px;
    width: 107px;
    height: 147px;
    background: #741AAB;
    -webkit-box-shadow: 2px 0 0.5em #8c8c8c;
            box-shadow: 2px 0 0.5em #8c8c8c;
    -webkit-transform: rotate(55deg);
        -ms-transform: rotate(55deg);
            transform: rotate(55deg);
    z-index: 2;
    -webkit-transition: width .3s, height .3s,
                -webkit-transform .5s;
    transition: width .3s, height .3s,
                -webkit-transform .5s;
    -o-transition: width .3s, height .3s,
                transform .5s;
    transition: width .3s, height .3s,
                transform .5s;
    transition: width .3s, height .3s,
                transform .5s, -webkit-transform .5s;
}
.block-17 .blockquote:hover 
.blockquote-icon
{
    -webkit-transform: translateY(10px) translateX(-10px);
        -ms-transform: translateY(10px) translateX(-10px);
            transform: translateY(10px) translateX(-10px);
}
.block-17 .blockquote:hover 
.blockquote-shape-top-left
{
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
}
.block-17 .blockquote:hover 
.blockquote-text
{
    color: #c07aeb;
    text-shadow: 0 1px 1px #9900ff;
}
.block-17 .blockquote:hover 
.blockquote-text-important
{
    color: #c07aeb;
    text-shadow: 0 1px 1px #9900ff;
}
.block-17 .blockquote:hover 
.blockquote-icon
{
    color: #9900ff;
}

.blockquote-orange
.blockquote-shape-top-left
{
    background: #ff5500 !important;
}
.block-17 .blockquote-orange:hover 
.blockquote-text
{
    color: #ffaa80 !important;
    text-shadow: 0 1px 1px #ff5500;
}
.block-17 .blockquote-orange:hover 
.blockquote-text-important
{
    color: #ffaa80 !important;
    text-shadow: 0 1px 1px #ff5500;
}
.block-17 .blockquote-orange:hover 
.blockquote-icon
{
    color: #fd7734 !important;
}

.cookies-consent-container
{
    position: fixed;
    bottom: 2em;
    right: 1em;
    z-index: 1007;
    background: #1F1F1F;
    border-radius: 10px;
    display: none;
}
.cookies-consent-container
.wrapper
{
    padding: .5em .5em;
    width: 100%;
    height: 100%;
    color: #ffffff;
}
.cookies-consent-container
.title
{
    font-weight: 400;
    font-size: 17px;
    margin: 1em 0;
    color: #c9c9c9;
}
.cookies-consent-container
.desc
{
    font-weight: 300;
    font-size: 14px;
    margin: 0 0 .5em 0;
    color: darkgrey;
}
.cookies-consent-container 
.list
{
    list-style: none;
}
.cookies-consent-container 
.list li
{
    display: block;
    padding: 1em;
    border-radius: 5px;
    border: 2px inset transparent;
    cursor: pointer;
    -webkit-transition: background .5s, border .3s;
    -o-transition: background .5s, border .3s;
    transition: background .5s, border .3s;
}
.cookies-consent-container 
.list li div
{
    pointer-events: none;
}
.cookies-consent-container 
.list li.active
{
    border-color: #c9c9c9;
    background: #3E3E3E;
}
.cookies-consent-container 
.list li .icon
{
    display: inline-block;
    width: 100px;
    font-size: 12px;
    margin-left: 0.5em;
    text-align: center;
}
.cookies-consent-container 
.list li .text
{
    font-size: 14px;
    font-weight: 300;
}


.footer-container
{
    position: relative;
    background: #000000;
    color: #ffffff;
}
.footer-container a
{
    color: #ffffff;
    text-decoration: none;
}
.footer-container a:hover
{
    color: #f2f2f2;
}
.footer-container .navmenu
{
    list-style: none;
}
.footer-container .navmenu
li
{
    display: inline-block;
}
.footer-container .navmenu
li a
{
    display: block;
    padding: .5em .5em;
    font-size: 20px;
    font-weight: 500;
}
.footer-container .title
{
    padding: 0 1em;
}
.footer-container .social
ul
{
    margin: 0;
    padding: 0;
}
.footer-container .social
ul li
{
    display: inline-block;
}
.footer-container .social
ul li a
{
    display: block;
    padding: .5em 1em;
    font-size: 20px;
}
.our-app .app-link img
{
    width: 140px;
}
.footer-container .copyright
{
    padding: 2em .5em;
}

















