/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    Master Stylesheet
-----------------------------------------

    1. Import
    2. Variables
    3. Reset
    4. Typography
    5. Form & Buttons
    6. Global
    7. Header
    8. Banner
    9. Footer
    10. Main
    11. Preloader
    12. About Us Page
    13. Products Page
    14. Contact Us
    15. Insights Page (Listing & Details)
    16. Regions Page
    17. Individual Product Page
    18. Product Icon Animation on Hover
    19. Modal

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    1. Import
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

@import url('//fonts.googleapis.com/css2?family=Exo:wght@400;700;800&family=Poppins:wght@400;500;600;700&family=Roboto+Slab:wght@700&display=swap');
@import url("bootstrap.min.css");
@import url("font-awesome.css");
@import url("owl.carousel.min.css");
@import url("owl.theme.default.min.css");

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    2. Variables
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

:root {
    --font-family__primary: 'Poppins', sans-serif;
    --font-family__secondary: 'Exo', sans-serif;

    --font-size__base: 16px;

    --color__primary: #4c4c4c;
    --color__primary--dark: #4d4d4f;
    --color__secondary: #f37524;
    --color__tertiary: #ff5d52;
    --color__black: #000000;
    --color__white: #ffffff;

    --font-weight__regular: 400;
    --font-weight__medium: 500;
    --font-weight__semibold: 600;
    --font-weight__bold: 700;
    --font-weight__extrabold: 800;

    --transition: all 0.5s ease;
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    3. Reset
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

* {
    box-sizing: border-box;
    outline: none !important;
}

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

::-moz-selection {
    background: var(--color__tertiary);
    color: var(--color__white);
}

::selection {
    background: var(--color__tertiary);
    color: var(--color__white);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    4. Typography
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

html {
    font-size: var(--font-size__base);
}

body {
    font-family: var(--font-family__primary);
    font-weight: var(--font-weight__medium);
    font-size: var(--font-size__base);
    line-height: 1.5rem;
    color: var(--color__primary);
}

h1 {
    font-family: var(--font-family__secondary);
    font-size: 50px;
    line-height: 60px;
    color: var(--color__white);
    font-weight: var(--font-weight__bold);
    margin: 0 0 1rem;
}

h2 {
    font-family: var(--font-family__secondary);
    font-size: 32px;
    line-height: 38px;
    color: var(--color__black);
    font-weight: var(--font-weight__bold);
    margin: 0 0 1rem;
}

h3 {
    font-family: var(--font-family__secondary);
    font-size: 24px;
    line-height: 30px;
    color: var(--color__secondary);
    font-weight: var(--font-weight__bold);
    margin: 0 0 1rem;
    text-transform: uppercase;
}

h4 {
    font-family: var(--font-family__secondary);
    font-size: 20px;
    line-height: 26px;
    color: var(--color__black);
    font-weight: var(--font-weight__bold);
    margin: 0 0 1rem;
}

h5 {
    font-family: var(--font-family__secondary);
    font-size: 16px;
    line-height: 22px;
    color: var(--color__black);
    font-weight: var(--font-weight__bold);
    margin: 0 0 1rem;
}

h6 {
    font-family: var(--font-family__primary);
    font-size: 14px;
    line-height: 20px;
    color: var(--color__secondary);
    font-weight: var(--font-weight__bold);
    margin: 0 0 1rem;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    h1 {
        font-size: 40px;
        line-height: 46px;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 32px;
        line-height: 38px;
    }
    h2 {
        font-size: 26px;
        line-height: 32px;
    }
    h3 {
        font-size: 20px;
        line-height: 26px;
    }
}

.color-white {
    color: var(--color__white) !important;
}

.color-black {
    color: var(--color__black) !important;
}

.color-secondary {
    color: var(--color__secondary) !important;
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    5. Form & Buttons
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

.button {
    font-family: var(--font-family__secondary);
    font-size: 18px;
    line-height: 24px;
    font-weight: var(--font-weight__bold);
    color: var(--color__white);
    padding: 11px 32px;
    text-transform: capitalize;
    border-radius: 50px;
    min-width: 220px;
    outline: none;
    border: none;
    box-shadow: none;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.button--primary {
    background-size: 200% auto;
    background-image: linear-gradient(
        to right,
        var(--color__secondary) 0%,
        var(--color__tertiary) 51%,
        var(--color__secondary) 100%
    );
}

.button--primary:hover {
    color: var(--color__white);
    background-position: right center;
}

.button--sml {
    font-size: 14px;
    line-height: 20px;
    min-width: auto;
    padding: 8px 32px;
}

.button--xsml {
    font-size: 12px;
    line-height: 20px;
    min-width: auto;
    padding: 4px 16px;
}

.button i {
    margin-left: 1rem;
}

.button i svg {
    fill: var(--color__white);
    display: block;
}

@media (max-width: 767.98px) {
    .button {
        min-width: auto;
        font-size: 14px;
        line-height: 20px;
        padding: 10px 32px;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: var(--font-weight__medium);
    color: var(--color__primary);
    font-size: 14px;
    line-height: 20px;
}

.form-control {
    border-color: #d7d7d7;
    background: var(--color__white);
    color: var(--color__primary);
    font-size: 14px;
    line-height: 20px;
    padding: 17px 16px;
    height: auto;
    outline: none;
    box-shadow: none;
    border-radius: 10px;
}

.form-control:focus {
    color: var(--color__primary);
    background: var(--color__white);
    border-color: var(--color__secondary);
    outline: 0;
    box-shadow: none;
}

textarea.form-control {
    height: 150px;
    resize: none;
}

@media (max-width: 767.98px) {
    .form-group {
        margin-bottom: 1rem;
    }
    .form-control {
        padding: 12px 16px;
    }
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    6. Global
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1192px;
    }
}

.site:before {
    content: "";
    height: 75px;
    display: block;
}

.page__under-construction .site::before {
    display: none;
}

.site-main > section {
    padding: 100px 0;
}

.site-main > section.products,
.site-main > section.capabilities {
    padding-bottom: 60px;
}

.bg--grey {
    background: #f4eeed;
}

b, strong {
    font-weight: var(--font-weight__bold);
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 0;
    display: flex;
    justify-content: center;
}

.owl-theme .owl-dots .owl-dot span {
    margin: 0 5px;
    width: 12px;
    height: 12px;
    background: transparent;
    border: solid 1px var(--color__secondary);
    transition: var(--transition);
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--color__secondary);
}

.owl-theme .owl-nav {
    margin: 0;
}

.owl-carousel.owl-theme .owl-nav [class*=owl-] {
    margin: 0;
    width: 44px;
    height: 44px;
    background: var(--color__secondary);
    border-radius: 50%;
    font-size: 22px;
    line-height: 44px;
    color: var(--color__white);
    transition: var(--transition);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-carousel.owl-theme .owl-nav .owl-prev {
    left: 0;
}

.owl-carousel.owl-theme .owl-nav .owl-next {
    right: 0;
}

.owl-carousel.owl-theme .owl-nav [class*=owl-]:hover {
    background: var(--color__tertiary);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .1);
}

.owl-carousel.owl-theme .owl-nav [class*=owl-] span {
    display: block;
}

.heart {
    background: var(--color__primary);
    border-radius: 50%;
    position: relative;
}

.heart img {
    width: 100%;
    height: 100%;
    display: block;
}

.heart .round {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    animation: rotation 3s linear infinite;
}

.heart .round-lg,
.heart .round-sm {
    animation-direction: reverse;
}

.heart .round-xl {
    width: 90%;
    height: 90%;
}

.heart .round-lg {
    width: 75%;
    height: 75%;
}

.heart .round-md {
    width: 55%;
    height: 55%;
}

.heart .round-sm {
    width: 40%;
    height: 40%;
}

@keyframes rotation {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (max-width: 767.98px) {
    .site-main > section {
        padding: 2.5rem 0;
    }
    .site-main > section.products, .site-main > section.capabilities {
        padding-bottom: 2.5rem;
    }
}

@keyframes gradientChanger {
    0% {
        background-position: left center;
    }
    50% {
        background-position: right center;
    }
    100% {
        background-position: left center;
    }
}

#back_top {
    width: 50px;
    height: 60px;
    background-image: linear-gradient(
        to bottom,
        var(--color__secondary) 0%,
        var(--color__tertiary) 100%
    );
    display: flex;
    position: fixed;
    bottom: 15px;
    right: 15px;
    border-radius: 5px;
    font-size: 30px;
    transform: translateY(100vh);
    opacity: 0;
    transition: var(--transition);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    z-index: 99999;
} 

#back_top.active {
    transform: translateY(0);
    opacity: 1;
}

@keyframes arocket {
	0% {
		transform: rotate(-45deg) translate(0,0);
	}
	50% {
		transform: rotate(-45deg) translate(-2px,2px);
	}
	100% {
		transform: rotate(-45deg) translate(0,0);
	}
}

#back_top i {
    transform: rotate(-45deg);
    color: var(--color__white);
    animation: arocket .2s linear infinite;
    text-shadow: -5px 10px 5px rgb(0 0 0 / 20%);
    display: block;
}

#back_top span {
    position: relative;
    margin: auto;
}

#back_top span:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-7px);
    width: 17px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(#ffc107, transparent);
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}

.pagination ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: center;
    align-items: center;
}

.pagination li {
    font-size: 18px;
    line-height: 24px;
    font-weight: var(--font-weight__regular);
    color: var(--color__black);
}

.pagination li a {
    display: block;
    color: var(--color__black);
    padding: .5rem 1rem;
}

.pagination li a:hover {
    color: var(--color__secondary);
}

.pagination li.disable {
    pointer-events: none;
    user-select: none;
    cursor: not-allowed;
}

.pagination svg {
    fill: var(--color__black);
    height: 23px;
    width: auto;
}

.pagination a:hover svg {
    fill: var(--color__secondary);
}

.pagination .active a {
    background: var(--color__secondary);
    color: var(--color__white);
    border-radius: .25rem;
}

.pagination .active a:hover {
    color: var(--color__white);
}

.pagination li a,
.pagination li a svg {
    transition: var(--transition);
}

.list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.list li {
    position: relative;
    padding-left: 1.75rem;
}

.list li + li {
    margin-top: .5rem;
}

.list-paragraph li + li {
    margin-top: 1.25rem;
}

.list li:before {
    content: "";
    width: 18px;
    height: 18px;
    background: url(../images/icon--bullet.svg) no-repeat 0 0;
    background-size: 18px;
    position: absolute;
    left: 0;
    top: 3px;
}

.list.col__2 {
    display: flex;
    flex-wrap: wrap;
}

.list.col__2 li {
    width: 50%;
    padding-right: 15px;
}

@media (min-width: 768px) {
    .list.col__2 li:nth-child(2) {
        margin-top: 0;
    }
}

@media (max-width: 767.98px) {
    .list.col__2 {
        display: block;
    }
    
    .list.col__2 li {
        width: 100%;
    }
}

.text-notransform {
    text-transform: none !important;
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    7. Header
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

.site-header {
    padding: 13px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, .25);
    z-index: 9;
    position: fixed;
    background: var(--color__white);
    left: 0;
    top: 0;
    width: 100%;
}

.site-header.fixed {
    position: fixed;
    animation: header .5s ease;
}

@keyframes header {
    0% {
        transform: translateY(-75px);
    }
    1000% {
        transform: translateY(0px);
    }
}

.site-nav .nav li {
    position: relative;
}

.site-nav .nav > li + li {
    margin-left: 2rem;
}

.site-nav a {
    color: var(--color__primary--dark);
    display: block;
    transition: var(--transition);
}

.site-nav .nav .has-dropdown > a:after {
    content: "\f107";
    font-family: "FontAwesome";
    margin-left: 4px;
    color: var(--color__primary--dark);
    transition: var(--transition);
}

.site-nav a:hover,
.site-nav .nav > .active > a,
.site-nav li:hover > a,
.site-nav .nav .has-dropdown:hover > a:after,
.site-nav .nav .active > a:after {
    color: var(--color__secondary);
}

.site-nav .nav ul {
    display: none;
    background: var(--color-white);
    list-style: none;
    margin: 0;
    padding: 0;
    background: var(--color__white);
}

.site-nav .nav ul li:first-child a,
.site-nav .nav ul li:first-child a:hover {
    pointer-events: none;
    user-select: none;
    color: var(--color__primary--dark);
}

.site-nav .nav ul a {
    font-size: 14px;
    line-height: 20px;
    padding: .5rem 1rem;
}

.site-nav .nav ul li + li {
    border-top: solid 1px rgba(0, 0, 0, .1);
}

@media (min-width: 1024px) {
    .toggle--sub-nav {
        display: none;
    }
    .site-nav .nav ul {
        position: absolute;
        left: 0;
        width: 200px;
        box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    }

    .site-nav .nav > li:hover ul {
        top: calc(100% + 26px);
        display: block !important;
        opacity: 1;
        -webkit-animation-name: menu;
        animation-name: menu;
        -webkit-animation-duration: 500ms;
        animation-duration: 500ms;
    }

    .site-nav .nav ul:before {
        content: "";
        display: block;
        position: absolute;
        bottom: 100%;
        left: 0;
        right: 0;
        height: 26px;
    }
}

@-webkit-keyframes menu {
    0% {
        top: 0px;
        opacity: 0;
    }
}
@keyframes menu {
    0% {
        top: 0px;
        opacity: 0;
    }
}

.toggle--site-nav {
    background: var(--color__tertiary);
    border-radius: 4px;
}

.toggle--site-nav svg {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 40px;
    height: 40px;
    display: block;
}

.toggle--site-nav svg .line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: var(--color__white);
    stroke-width: 5.5;
    stroke-linecap: round;
}

.toggle--site-nav svg .top {
    stroke-dasharray: 40 121;
}

.toggle--site-nav svg .bottom {
    stroke-dasharray: 40 121;
}

.toggle--site-nav.active svg {
    transform: rotate(45deg);
}

.toggle--site-nav.active svg .top {
    stroke-dashoffset: -68px;
}

.toggle--site-nav.active svg .bottom {
    stroke-dashoffset: -68px;
}

@media (min-width: 992px) {
    .toggle--site-nav {
        display: none;
    }
    .site-nav {
        display: block !important;
    }
}

@media (max-width: 991.98px) {
    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: radial-gradient(var(--color__secondary), var(--color__tertiary));
    }
    .site-nav .nav {
        display: block;
    }
    .site-nav .nav > li + li {
        margin-left: 0;
        border-top: solid 1px rgba(255, 255, 255, .15);
    }
    .site-nav a {
        color: var(--color__white);
        padding: 8px 39px;
    }
    .site-nav .nav ul li:first-child a,
    .site-nav .nav ul li:first-child a:hover {
        color: var(--color__white);
    }
    .site-nav a:hover, .site-nav .nav > .active > a, .site-nav li:hover > a, .site-nav .nav .has-dropdown:hover > a:after, .site-nav .nav .active > a:after {
        color: var(--color__white);
        background: var(--color__tertiary);
    }
    .site-nav .toggle--sub-nav {
        color: var(--color-black);
        position: absolute;
        right: 0;
        top: 0;
        height: 41px;
        width: 41px;
        border: solid 1px rgba(255, 255, 255, .15);
        border-width: 0 1px;
        display: flex;
        font-size: 20px;
        z-index: 1;
    }
    .site-nav .toggle--sub-nav i {
        margin: auto;
        transition: var(--transition);
    }
    .site-nav .toggle--sub-nav.active i {
        transform: rotate(180deg);
    }
    .site-nav .nav ul {
        background: none;
        border-top: solid 1px rgba(255, 255, 255, .15);
    }
    .site-nav .nav ul li + li {
        border-top: solid 1px rgba(255, 255, 255, .15);
    }
    .site-nav .nav ul a {
        padding: 8px 39px;
        padding-left: 55px;
    }
}

@media (max-width: 767.98px) {
    .site-nav a,
    .site-nav .nav ul a {
        padding: 8px 15px;
    }
    .site-nav .nav ul a {
        padding-left: 30px;
    }
    .site-nav .nav .has-dropdown > a:after {
        display: none;
    }
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    8. Banner
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

.site-banner {
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.site-banner:not(.inner-banner) {
    background-color: #032a3b;
    background-image: url(../images/banner__bg.png);
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}

.site-banner:not(.inner-banner):after {
    content: "";
    background: url(../images/banner__object.png) no-repeat right top;
    width: 591px;
    height: 198px;
    position: absolute;
    right: 0;
    top: 0;
}

.site-banner p {
    color: var(--color__secondary);
    margin: 0 0 2.5rem;
    font-weight: var(--font-weight__regular);
}

.site-banner p strong {
    font-weight: var(--font-weight__bold);
}

.site-banner .graphics {
    padding: 22px;
    background: rgba(0, 0, 0, .5);
    border-radius: 50%;
    position: relative;
    z-index: 3;
}

.site-banner .graphics .inner {
    width: 430px;
    height: 430px;
    background: var(--color__black);
    border-radius: 50%;
    position: relative;
}

.site-banner .graphics .inner .heart {
    position: absolute;
    top: 274px;
    left: 200px;
    width: 47px;
    height: 47px;
}

.site-banner .graphics .inner > img {
    max-width: 100%;
    display: block;
    border-radius: 50%;
}

.site-banner .circle {
    position: absolute;
}

.site-banner .circle span {
    border-radius: 50%;
    display: block;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

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

@keyframes scale-xlrg {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

.site-banner .circle--right-top {
    top: -245px;
    right: 200px;
}

.site-banner .circle--right-top span {
    width: 470px;
    height: 470px;
    animation: scale 10s linear infinite;
}

.site-banner .circle--bottom-center {
    left: 50%;
    bottom: -120px;
    transform: translateX(-50%);
    z-index: 2;
}

.site-banner .circle--bottom-center span {
    width: 230px;
    height: 230px;
    animation: scale-lrg 10s linear infinite;
}

.site-banner .circle--white.circle--bottom-center {
    z-index: 1;
    left: calc(50% - 40px);
    bottom: -100px;
}

.site-banner .circle--white.circle--bottom-center span {
    animation: scale 10s linear infinite;
}

.site-banner .circle--right-center {
    right: -90px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.site-banner .circle--right-center span {
    width: 180px;
    height: 180px;
    animation: scale-lrg 10s linear infinite;
}

.site-banner .circle--white.circle--right-center {
    right: -110px;
    top: calc(50% + 20px);
    transform: translateY(-50%);
    z-index: 1;
}

.site-banner .circle--white.circle--right-center span {
    width: 220px;
    height: 220px;
    animation: scale 10s linear infinite;
}

.site-banner .circle--right-center-sm {
    top: 139px;
    right: 46px;
}

.site-banner .circle--right-center-sm span {
    width: 32px;
    height: 32px;
    animation: scale-xlrg 5s linear infinite;
}

.site-banner .circle--right-center-xs {
    top: 107px;
    right: 25px;
}

.site-banner .circle--right-center-xs span {
    width: 10px;
    height: 10px;
    animation: scale-xlrg 5s linear infinite;
}

.site-banner .circle span {
    background: linear-gradient(
        to right,
        var(--color__secondary) 50%,
        var(--color__tertiary) 100%
    );
}

.site-banner .circle--white span {
    background: var(--color__white);
}

@media (max-width: 1199.98px) {
    .site-banner .graphics {
        padding: 20px;
    }
    .site-banner .inner {
        width: 410px;
        height: 410px;
    }
    .site-banner .inner .heart {
        top: 262px;
        left: 192px;
        width: 42px;
        height: 42px;
    }
    .site-banner .circle--right-top {
        top: -270px;
        right: 168px;
    }
}

@media (max-width: 991.98px) {
    .site-banner .inner {
        width: 290px;
        height: 290px;
    }    
    .site-banner .inner .heart {
        top: 185px;
        left: 135px;
        width: 31px;
        height: 30px;
    }
    .site-banner .circle--right-top {
        top: -245px;
        right: 190px;
    }
    .site-banner .circle--right-center {
        right: -70px;
        margin-top: -60px;
    }
    .site-banner .circle--right-center span {
        width: 100px;
        height: 100px;
    }
    .site-banner .circle--white.circle--right-center {
        right: -80px;
        top: calc(50% + 10px);
    }
    .site-banner .circle--white.circle--right-center span {
        width: 120px;
        height: 120px;
    }
    .site-banner .circle--bottom-center {
        bottom: -50px;
        left: auto;
        right: 0;
        transform: translateX(0);
    }
    .site-banner .circle--bottom-center span {
        width: 100px;
        height: 100px;
    }
    .site-banner .circle--white.circle--bottom-center {
        left: auto;
        right: 10px;
        bottom: -40px;
    }
    .site-banner .circle--right-center-xs {
        top: 50px;
        right: 15px;
    }
    .site-banner .circle--right-center-sm {
        top: 68px;
        right: 25px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .site-banner:not(.inner-banner):after {
        right: -170px;
        top: -115px;
    }
    .site-banner .circle--right-top {
        top: -316px;
        right: 39px;
    }
    .site-banner .circle--right-top span {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 767.98px) { 
    .site-banner .graphics {
        padding: 15px;
    }
    .site-banner .inner {
        width: 260px;
        height: 260px;
    }
    .site-banner p {
        margin-bottom: 1.5rem;
    }
    .site-banner .inner .heart {
        top: 166px;
        left: 121px;
        width: 28px;
        height: 28px;
    }
}

.inner-banner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 440px;
    z-index: 1;
}

.page__about .inner-banner,
.page__contact-us .inner-banner {
    background-color: #001f2f;
}

.page__insights .inner-banner {
    background-color: #0b0b31;
}

.page__products .inner-banner {
    background-image: url(https://protectedby.ai/images/product-banner__bg.jpg);
}

.page__insights .inner-banner {
    background-image: url(https://protectedby.ai/images/insights-banner__bg.jpg);
}

.inner-banner:before {
    content: "";
    width: 1517px;
    height: 1517px;
    background: url(https://protectedby.ai/images/banner__glow.png) no-repeat center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: banner-rotate 300s linear infinite; 
}

@keyframes banner-rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.inner-banner > .container,
.inner-banner > .container > .row {
    height: 100%;
}

.inner-banner > .container > .row {
    position: relative;
    z-index: 1;
}

.inner-banner h1 {
    text-align: center;
    margin: 0;
}

.inner-banner h1 .sml {
    font-size: 30px;
    line-height: 36px;
    display: block;
    clear: both;
    margin-top: 12px;
}

.inner-banner h1 small {
    display: block;
    clear: both;
    font-size: 16px;
    line-height: 24px;
    margin-top: 16px;
}

.inner-banner .circle span {
    opacity: .19;
    animation: scale 10s linear infinite;
}

.inner-banner .inner-circle--white span {
    background: var(--color__white);
}

.inner-banner .inner-circle--lrg {
    top: -110px;
    left: 36px;
}

.inner-banner .inner-circle--lrg span {
    width: 320px;
    height: 320px;
}

.inner-banner .inner-circle--mid {
    bottom: 30px;
    right: 102px;
}

.inner-banner .inner-circle--mid span {
    width: 189px;
    height: 189px;
}

.inner-banner .inner-circle--sml {
    bottom: 194px;
    right: 50px;
}

.inner-banner .inner-circle--sml span {
    width: 61px;
    height: 61px;
}

.inner-banner .object {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.inner-banner .object img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.page__about .inner-banner .object img.lrg,
.page__contact-us .inner-banner .object img.lrg {
    animation: banner-rotate 300s linear infinite reverse;
}

.page__about .inner-banner .object img.mid {
    animation: banner-rotate 60s linear infinite;
}

.page__about .inner-banner .object img.sml {
    animation: banner-rotate 60s linear infinite reverse;
}

.page__products .inner-banner .object img.lrg {
    animation: banner-rotate 300s linear infinite reverse;
}

.page__products .inner-banner .object img.mid {
    animation: banner-rotate 60s linear infinite;
}

.page__insights .inner-banner .particles {
    animation: blink 30s linear infinite;
}

.page__regions .inner-banner {
    background-color: #032a3b;
}

.page__regions .inner-banner .object .ray {
    animation: banner-rotate 60s linear infinite reverse;
    opacity: 0.15;
}

.page__regions .inner-banner .object .map {
    width: 440px;
    height: auto;
}

.page__regions .inner-banner .object img.lrg {
    animation: banner-rotate 300s linear infinite reverse;
}

.page__regions .inner-banner .object img.mid {
    animation: banner-rotate 60s linear infinite;
}

@keyframes blink {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: .5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: .5;
    }
}

.page__insights .inner-banner .glow {
    animation: glowing 3s linear infinite;
}

@keyframes glowing {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
}

@media (max-width: 1199.98px) {
    .inner-banner .inner-circle--lrg {
        top: -125px;
        left: -125px;
    }
    .inner-banner .inner-circle--lrg span {
        width: 250px;
        height: 250px;
    }
    .inner-banner .inner-circle--mid {
        bottom: -15px;
        right: 60px;
    }
    .inner-banner .inner-circle--mid span {
        width: 120px;
        height: 120px;
    }
    .inner-banner .inner-circle--sml {
        bottom: 80px;
        right: 15px;
    }
    .inner-banner .inner-circle--sml span {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767.98px) {
    .inner-banner h1 br {
        display: none;
    }
    .inner-banner:before,
    .inner-banner:after {
        display: none;
    }
    .page__insights .inner-banner .graphic {
        width: 300px;
    }
    .page__regions .inner-banner .object .map {
        width: 300px;
    }
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    9. Footer
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

.site-footer {
    position: relative;
    z-index: 1;
}

.site-footer .top {
    padding: 1.25rem 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

.site-footer .top .contacts {
    margin: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-footer .top span {
    font-family: 'Roboto Slab', serif;
    font-size: 28px;
    line-height: 32px;
    font-weight: var(--font-weight__bold);
    color: var(--color__secondary);
    border: solid 1px var(--color__secondary);
    border-width: 4px 0;
    padding: 4px 0 5px;
}

.site-footer .top .call-secondary {
    font-family: 'Roboto Slab', serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: var(--font-weight__bold);
    color: var(--color__secondary);
    margin: .25rem 0 0;
}

.site-footer .top span a {
    color: var(--color__secondary);
}

.site-footer .top .heart {
    width: 80px;
    height: 80px;
}

.site-footer .mid {
    background: url(../images/bg__footer.jpg) repeat 0 0;
    padding: 2.5rem 0 1.5rem;
}

.site-footer .mid p {
    font-size: 12px;
    line-height: 18px;
    color: var(--color__white);
    margin: 0 0 .5rem;
}

.site-footer .mid p strong {
    color: var(--color__secondary);
    font-weight: var(--font-weight__bold);
}

.site-footer .mid p a {
    color: var(--color__secondary);
}

.site-footer .mid p a:hover {
    color: var(--color__white);
}

.site-footer .mid ul {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: column;
}

.site-footer .mid ul:not(.socials) li {
    line-height: 18px;
    position: relative;
    padding-left: 1rem;
}

.site-footer .mid ul:not(.socials) li:before {
    content: "\f105";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--color__white);
}

.site-footer .mid ul:not(.socials) li + li {
    margin-top: .5rem;
}

.site-footer .mid ul:not(.socials) a {
    font-size: 12px;
    line-height: 18px;
    color: var(--color__white);
}

.site-footer .mid ul:not(.socials) a:hover {
    color: var(--color__secondary);
}

.site-footer .socials li + li {
    margin-top: 1rem;
}

.site-footer .socials a {
    display: flex;
    width: 22px;
    height: 22px;
    background: var(--color__white);
    border-radius: 50%;
    transition: var(--transition);
}

.site-footer .socials a svg {
    fill: var(--color__black);
    height: 12px;
    margin: auto;
}

.site-footer .socials a:hover svg {
    fill: var(--color__white);
}

.site-footer .socials a[title="Twitter"]:hover {
    background: #1da1f2;
}

.site-footer .socials a[title="Facebook"]:hover {
    background: #385C8E;
}

.site-footer .socials a[title="LinkedIn"]:hover {
    background: #0077b5;
}

.site-footer .bot {
    padding: .5rem 0;
    background: var(--color__black);
}

.site-footer .bot li {
    font-size: 12px;
    line-height: 20px;
    color: var(--color__white);
}

.site-footer .bot li + li {
    margin-left: 1rem;
}

.site-footer .certificate {
    height: 112px;
}

.site-footer .bot p {
    font-size: 12px;
    line-height: 20px;
    color: var(--color__white);
}

@media (max-width: 767.98px) {
    .site-footer .top span {
        font-size: 18px;
        line-height: 24px;
        margin: 0 1rem;
    }
    .site-footer .top .heart {
        width: 50px;
        height: 50px;
    }
    .site-footer .bot {
        padding-bottom: 86px;
    }
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    10. Main
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

.why-us .block {
    background: var(--color__white);
    border-radius: 10px;
    padding: 2rem 1rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 6px 32px rgba(0, 0, 0, .1);
    min-height: 100%;
    position: relative;
}

.why-us .block.active {
    box-shadow: 0 6px 32px rgba(0, 0, 0, .25);
}

.why-us .block .icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    background-size: 200% auto;
    background-image: linear-gradient(
        to right,
        var(--color__secondary) 0%,
        var(--color__tertiary) 51%,
        var(--color__secondary) 100%
    );
    transition: var(--transition);
}

.why-us .block:hover .icon {
    background-position: right center;
}

.why-us .block .icon img {
    max-width: 100%;
}

.why-us .block h5 {
    margin-bottom: .5rem;
}

.why-us .block p {
    font-size: 12px;
    line-height: 18px;
    margin: 0;
}

@media (max-width: 1199.98px) {
    .why-us .block {
        padding: 1.5rem 1rem;
    }
    .why-us .block p br {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .why-us .block {
        padding: 2rem 1.5rem;
    }
}

.advantages h5 {
    margin-bottom: 1.25rem;
}

.advantages p {
    font-size: 18px;
    line-height: 26px;
}

.advantages ul {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.advantages ul li {
    position: relative;
    padding-left: 1.75rem;
}

.advantages ul li + li {
    margin-top: .75rem;
}

.advantages ul li:before {
    content: "";
    width: 18px;
    height: 18px;
    background: url(../images/icon--bullet.svg) no-repeat 0 0;
    background-size: 18px;
    position: absolute;
    left: 0;
    top: 3px;
}

@media (max-width: 1199.98px) {
    .advantages h2 br {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .advantages p {
        font-size: 16px;
        line-height: 24px;
    }
    .advantages ul {
        margin: 0 0 .75rem;
    }
}

.products .title p {
    font-size: 18px;
    line-height: 26px;
}

.products .title [class*="col-"]:first-of-type {
    border-right: solid 1px var(--color__primary);
}

.products .item {
    padding: 15px;
}

.products .block {
    background: var(--color__white);
    border-radius: 10px;
    padding: 1.75rem 1rem;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.products .block:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);
    background-image: linear-gradient(
        135deg,
        var(--color__secondary) 0%,
        var(--color__tertiary) 100%
    );
    z-index: -1;
}

.products .block:hover:after {
    transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,0,0);
}

.products .block img {
    max-width: 100%;
    width: auto;
    height: 100px;
    margin-bottom: 1.25rem;
    display: inline-block;
    vertical-align: top;
}

.products .block svg {
    max-width: 100%;
    width: auto;
    height: 100px;
    margin-bottom: 1.25rem;
    display: inline-block;
    vertical-align: top;
}

.products .block svg,
.products .block svg path,
.products .block svg rect {
    fill: var(--color__secondary);
}

.products .block:hover svg,
.products .block:hover svg path,
.products .block:hover svg rect {
    fill: var(--color__white);
}

.products .block:hover svg#icon-itriage,
.products .block:hover svg#icon-itriage path {
    fill: var(--color__white) !important;
}

.products .block svg#icon-SmartShield .icon-SmartShield__tranparent {
    fill: var(--color__white);
}

.products .block:hover svg#icon-SmartShield .icon-SmartShield__tranparent {
    fill: var(--color__secondary);
}

.products .block h4 {
    margin-bottom: .5rem;
}

.products .block p {
    font-size: 12px;
    line-height: 18px;
    margin: 0;
}

.products .block img,
.products .block h4,
.products .block p,
.products .block:after,
.products .block svg {
    transition: var(--transition);
}

.products .block:hover img {
    filter: brightness(100);
}

.products .block:hover h4,
.products .block:hover p {
    color: var(--color__white);
    animation-name: fadeInUp;
    animation-delay: 0.3s;
    animation-duration: .5s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.products .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 2.5rem;
}

.products .owl-carousel {
    padding: 0 4rem;
}

@media (max-width: 991.98px) {
    .products .title [class*="col-"]:first-of-type {
        border: none;
    }
}

@media (max-width: 767.98px) {
    .products .title p {
        font-size: 16px;
        line-height: 24px;
    }
    .products .owl-theme .owl-nav.disabled + .owl-dots {
        margin-top: 1.5rem;
    }
    .products .block {
        padding: 2rem 1.5rem;
    }
    .products .owl-carousel {
        padding: 0;
    }
}

.capabilities .title p {
    font-size: 18px;
    line-height: 26px;
}

.capabilities .item {
    text-align: center;
}

.capabilities .item .icon {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    display: inline-flex;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.capabilities-sml .item .icon {
    width: 140px;
    height: 140px;
}

.capabilities .item .icon:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    border: dashed 1px rgba(0, 0, 0, .25);
    transition: var(--transition);
}

.capabilities .item:hover .icon:before {
    border-color: var(--color__tertiary);
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.capabilities .item .icon:after {
    content: "";
    width: 140px;
    height: 140px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: var(--transition);
    border-radius: 50%;
    background: var(--color__secondary);
    z-index: -1;
    box-shadow: 0 0 0 rgba(243, 117, 36, .75);
    animation: capabilities-pulse 2s infinite;
}

@keyframes capabilities-pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(243, 117, 36, .75);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(243, 117, 36, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(243, 117, 36, 0);
    }
  }

.capabilities-sml .item .icon:after {
    width: 98px;
    height: 98px;
}

.capabilities .item:hover .icon:after {
    transform: translate(-50%, -50%) scale(1);
}

.capabilities .item img {
    width: auto;
    margin: auto;
    max-width: 100%;
    transition: var(--transition);
}

.capabilities .item svg {
    height: 80px;
    width: auto;
    fill: var(--color__secondary);
    margin: auto;
    max-width: 100%;
    transition: var(--transition);
}

.capabilities .item svg path {
    fill: var(--color__secondary);
}

.capabilities-sml .item img {
    width: 58px;
    height: 58px;
}

.capabilities-sml .item svg {
    height: 58px;
    width: auto;
}

.capabilities .item:hover img {
    filter: brightness(100);
}

.capabilities .item:hover svg,
.capabilities .item:hover svg path {
    fill: var(--color__white);
}

.capabilities .item p {
    margin: 0;
    font-family: var(--font-family__secondary);
    font-size: 15px;
    line-height: 19px;
    color: var(--color__black);
    font-weight: var(--font-weight__bold);
}

.capabilities .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 60px;
}

@media (max-width: 1199.98px) {
    .capabilities .title p br {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .capabilities .title p {
        font-size: 16px;
        line-height: 24px;
    }
    .capabilities .item .icon {
        margin-bottom: 1.5rem;
    }
    .capabilities .item p br {
        display: none;
    }
    .capabilities .owl-theme .owl-nav.disabled + .owl-dots {
        margin-top: 1.5rem;
    }
}

.newsletter form {
    padding-top: .5rem;
}

.newsletter form ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.newsletter form ul li {
    width: calc((100% - 15px) / 2);
}

.newsletter form ul li + li {
    margin-left: 15px;
}

.newsletter form .form-control {
    border: none;
    height: auto;
    font-size: 12px;
    line-height: 20px;
    font-weight: var(--font-weight__semibold);
    color: var(--color__primary);
    padding: 18px 20px;
    margin-bottom: 1.75rem;
    box-shadow: none;
    transition: var(--transition);
}

.newsletter form .form-control:focus {
    box-shadow: 0 4px 8px rgba(0,0,0,.1);
}

.newsletter form .form-control::-webkit-input-placeholder { 
    color: var(--color__primary);
    opacity: 1;
}

.newsletter form .form-control:-ms-input-placeholder { 
    color: var(--color__primary);
    opacity: 1;
}

.newsletter form .form-control::placeholder {
    color: var(--color__primary);
    opacity: 1;
}

@media (max-width: 1199.98px) {
    .newsletter h2 br {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .newsletter form {
        padding-top: 0;
    }
    .newsletter form ul li {
        width: 100%;
    }
    .newsletter form ul li + li {
        margin: 1rem 0 0;
    }
    .newsletter form .form-control {
        margin-bottom: 0;
    }
}

.blogs .owl-carousel {
    padding: 0 4rem;
}

.blogs .item {
    padding: 15px;
}

.blogs .block {
    background: var(--color__white);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .1);
    overflow: hidden;
    transition: var(--transition);
    min-height: 100%;
}

.blogs .block:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, .2);
}

.blogs .block .pic img {
    width: 100%;
    height: auto;
    display: block;
}

.blogs .block .content {
    padding: 1.5rem;
}

.blogs .block .content h5 {
    height: 44px;
    overflow: hidden;
}

.blogs .block .content p {
    font-size: 12px;
    line-height: 18px;
}

.blogs .block .content .nav {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: .5rem;
    display: none;
}

.blogs .block .content .nav li {
    display: flex;
    align-items: center;
}

.blogs .block .content .nav li + li {
    margin-left: 8px;
}

.blogs .block .content .nav img {
    height: 12px;
    width: 12px;
    margin-right: 4px;
}

.blogs .owl-stage {
    display: flex;
}

.blogs .owl-item {
    display: flex;
    flex: 1 0 auto;
}

@media (max-width: 767.98px) {
    .blogs .owl-carousel {
        padding: 0;
    }
    .blogs .owl-theme .owl-nav.disabled + .owl-dots {
        margin-top: 1.5rem;
    }
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    11. Preloader
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

.preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color__white);
    z-index: 9999;
    display: flex;
}

.preloader .inner {
    margin: auto;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader .brand {
    margin-top: 1.5rem;
    height: 75px;
    transform: translateY(50px);
    opacity: 0;
}

.preloader .brand.show {
    transition: all 1.5s ease;
    transform: translateY(0px);
    opacity: 1;
}

.preloader .robot {
    position: relative;
    width: 150px;
    height: 150px;
}

.preloader .circle {
    position: relative;
    width: 500px;
    height: 500px;
    background: #0a0a0a;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, .25);

    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    margin-top: 30%;
}

.preloader .circle.hide {
    transition: all .75s ease;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
} 

.preloader .circle > img {
    height: 100%;
    width: auto;
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.preloader .robot > .heart {
    width: 150px;
    height: 150px;
    background: var(--color__primary);
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transform: scale(0);
    display: none;
    box-shadow: 0 0 60px rgba(0, 0, 0, .25);
    opacity: 0;
}

.preloader .robot > .heart.show {
    transition: all 1s ease;
    transform: scale(1);
    opacity: 1;
}

.preloader .robot .circle .heart {
    width: 50px;
    height: 50px;
    background: var(--color__primary);
    border-radius: 50%;
    position: absolute;
    left: 233px;
    top: 303px;
}

@media (max-width: 767.98px) {
    .preloader .circle {
        width: 290px;
        height: 290px;
    }
    .preloader .brand {
        margin-top: 1rem;
        max-width: 80%;
        height: auto;
    }
    .preloader .robot > .heart,
    .preloader .robot {
        width: 100px;
        height: 100px;
    }
    .preloader .robot .circle .heart {
        width: 30px;
        height: 30px;
        left: 135px;
        top: 176px;
    }
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    12. About Us Page
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

.page__about .intro h2 {
    font-size: 27px;
    line-height: 35px;
}

@media (max-width: 1199.98px) {
    .page__about .intro p br {
        display: none;
    }
}

.page__about .video {
    position: relative;
}

.page__about .video video {
    width: 100%;
    display: block;
    border-radius: 1rem;
}

.page__about .video img {
    max-width: 100%;
    display: block;
    border-radius: 1rem;
}

.page__about .video:after {
    content: "";
    width: calc(100% + (21px * 2));
    height: 100%;
    position: absolute;
    top: 21px;
    left: 50%;
    transform: translateX(-50%);
    border: solid 1px var(--color__secondary);
    border-radius: 1rem;
    z-index: -1;
}

.page__about .video .play {
    width: 72px;
    height: 72px;
    background: var(--color__white);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
}

.page__about .video .play:after {
    content: "\f04b";
    font-family: 'FontAwesome';
    color: var(--color__secondary);
    margin: auto;
    font-size: 26px;
    line-height: 32px;
    padding-left: 5px;
}

.page__about .video .play.active:after {
    content: "\f04c";
    padding-left: 0px;
}

.page__about .video .play:hover:after {
    color: var(--color__tertiary);
}

.page__about .video .play:hover i {
    color: var(--color__tertiary);
}

.page__about .video .play.active {
    opacity: 0;
    transition: var(--transition);
}

.page__about .video:hover .play.active {
    opacity: 1;
}

@media (max-width: 767.98px) {
    .page__about .video {
        padding: 15px;
    }
    .page__about .video:after {
        width: 100%;
        height: calc(100% - 30px);
        left: 0;
        top: 30px;
        transform: none;
    }
    .page__about .video .play {
        width: 50px;
        height: 50px;
    }
    .page__about .video .play i {
        font-size: 24px;
        line-height: 30px;
        padding-left: 7px;
    }
}

.page__about .approach ul {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.page__about .approach ul li {
    position: relative;
    padding-left: 1.75rem;
}

.page__about .approach ul li + li {
    margin-top: .75rem;
}

.page__about .approach ul li:before {
    content: "";
    width: 18px;
    height: 18px;
    background: url(../images/icon--bullet.svg) no-repeat 0 0;
    background-size: 18px;
    position: absolute;
    left: 0;
    top: 3px;
}

@media (max-width: 1199.98px) {
    .page__about .approach p br {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .page__about .approach ul {
        margin: 0 0 .75rem;
    }
    .page__about .approach p {
        text-align: left !important;
    }
}

.page__about .capabilities .title p {
    font-size: 20px;
    line-height: 28px;
}

.page__about .experience .title p {
    font-size: 18px;
    line-height: 26px;
}

.page__about .experience .block {
    height: 100px;
    display: flex;
}

.page__about .experience .block img {
    width: auto;
    max-width: 90%;
    max-height: 100%;
    margin: auto;
}

.page__about .experience .owl-carousel {
    padding: 0 4rem;
}

.page__about .experience .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 3rem;
}

@media (max-width: 1199.98px) {
    .page__about .experience .title p br {
        display: none;
    }
    .page__about .experience .owl-carousel .item .w-100 {
        display: none;
    }
    .page__about .experience .block {
        padding: 15px 0;
    }
    .page__about .experience .block img {
        height: auto;
    } 
}

@media (max-width: 767.98px) {
    .page__about .experience .title p {
        font-size: 16px;
        line-height: 24px;
    }
    .page__about .experience .owl-theme .owl-nav.disabled + .owl-dots {
        margin-top: 1.5rem;
    }
    .page__about .experience .owl-carousel {
        padding: 0;
    }
}

.page__about .leadership .title {
    position: relative;
    padding-bottom: 2rem;
}

.page__about .leadership .title:after {
    content: "";
    width: 80px;
    height: 2px;
    background: var(--color__secondary);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.page__about .leadership .title h3 {
    color: #999999;
    text-transform: capitalize;
}

.page__about .leadership .title .tagline {
    font-size: 30px;
    line-height: 46px;
    font-weight: var(--font-weight__bold);
    font-family: var(--font-family__secondary);
    color: var(--color__black);
    margin-bottom: 1rem;
}

.page__about .leadership .title .tagline .color-secondary {
    font-size: 40px;
    line-height: 46px;
}

.page__about .leadership .title p {
    font-weight: var(--font-weight__bold);
    font-size: 18px;
    line-height: 26px;
}

.page__about .leadership .leaders {
    padding-top: 3rem;
    position: relative;
}

.page__about .leadership .leaders:before {
    content: "";
    width: 165px;
    height: 123px;
    background: url(https://protectedby.ai/images/icon--quote-lrg.png) no-repeat 0 0;
    opacity: .18;
    position: absolute;
    left: 0;
    top: 0;
}

.page__about .leadership .leaders .owl-carousel {
    padding: 0 4rem;
}

.page__about .leadership .item {
    padding: 20px;
    flex-grow: 1;
}

.page__about .leadership .block {
    box-shadow: 0 6px 12px rgba(0, 0, 0, .1);
    background: var(--color__white);
    border-radius: 15px;
    padding: 2rem;
    min-height: 100%;
}

.page__about .leadership .block .social {
    display: flex;
    width: 22px;
    height: 22px;
    background: #0077b5;
    border-radius: 2px;
    transition: var(--transition);
}

.page__about .leadership .block .social svg {
    fill: var(--color__white);
    height: 14px;
    margin: auto;
}

.page__about .leadership .block .social.linkedin:hover {
    background: #0077b5;
}

.page__about .leadership .block .pic {
    width: 160px;
    height: 160px;
    border: solid 2px var(--color__secondary);
    padding: 3px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.5rem;
}

.page__about .leadership .block .pic img {
    max-width: 100%;
    display: block;
    border-radius: 50%;
}

.page__about .leadership .block .info p {
    font-weight: var(--font-weight__bold);
    text-transform: uppercase;
    color: var(--color__black);
    margin-bottom: .5rem;
}

.page__about .leadership .block .info p span {
    color: var(--color__secondary);
    font-weight: var(--font-weight__regular);
    font-size: 11px;
    line-height: 15px;
    display: block;
}

.page__about .leadership .block .content {
    border-top: solid 1px #ebebeb;
    margin-top: 2rem;
    padding-top: 95px;
    background: url(https://protectedby.ai/images/icon--quote.png) no-repeat 0 30px;
}

.page__about .leadership .block .content p {
    font-size: 12px;
    line-height: 18px;
    text-align: justify;
}

.page__about .leadership .block .content p:last-of-type {
    margin: 0;
}

.page__about .leadership .owl-stage {
    display: flex;
}

.page__about .leadership .owl-item {
    display: flex;
    flex: 1 0 auto;
}

@media (max-width: 1199.98px) {
    .page__about .leadership .title p br {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .page__about .leadership .title {
        padding-bottom: .5rem;
    }
    .page__about .leadership .title .tagline {
        font-size: 24px;
        line-height: 30px;
    }
    .page__about .leadership .title .tagline .color-secondary {
        font-size: 32px;
        line-height: 38px;
    }
    .page__about .leadership .title p {
        font-weight: var(--font-weight__medium);
        font-size: 16px;
        line-height: 24px;
    }
    .page__about .leadership .leaders .owl-carousel {
        padding: 0;
    }
    .page__about .leadership .leaders {
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
    .page__about .leadership .leaders:before {
        width: 107px;
        height: 80px;
        background-size: 107px 80px;
    }
    .page__about .leadership .block {
        padding: 1.5rem 1rem;
    }
    .page__about .leadership .block .pic {
        width: 100px;
        height: 100px;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .page__about .leadership .block .info {
        text-align: center;
    }
    .page__about .leadership .block .social {
        display: inline-flex;
    }
    .page__about .leadership .block .content {
        margin-top: 1rem;
        background: none;
        padding-top: 1.5rem;
    }
    .page__about .leadership .owl-theme .owl-nav.disabled + .owl-dots {
        margin-top: 1rem;
    }
}

.page__about .advisors .owl-carousel {
    padding: 0 4rem;
}

.page__about .advisors .item {
    padding: 20px;
    flex-grow: 1;
}

.page__about .advisors .block {
    box-shadow: 0 6px 12px rgba(0, 0, 0, .1);
    background: var(--color__white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    min-height: 100%;
}

.page__about .advisors .block .pic {
    display: inline-block;
    vertical-align: top;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0 0 1.5rem rgba(243, 117, 36, .4);
    margin-bottom: 1.5rem;
}

.page__about .advisors .block .pic img {
    display: block;
    max-width: 100%;
    border-radius: 50%;
}

.page__about .advisors .block p {
    text-align: justify;
    font-size: 11px;
    line-height: 18px;
}

.page__about .advisors .block p:last-of-type {
    margin: 0;
}

.page__about .advisors .owl-stage {
    display: flex;
}

.page__about .advisors .owl-item {
    display: flex;
    flex: 1 0 auto;
}

@media (max-width: 767.98px) {
    .page__about .advisors .owl-carousel {
        padding: 0;
    }
    .page__about .advisors .block {
        padding: 1.5rem 1rem;
    }
    .page__about .advisors .owl-theme .owl-nav.disabled + .owl-dots {
        margin-top: 1rem;
    }
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    13. Products Page
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

#showLess {
    display: none;
}

#product-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

#product-list li {
    display: none;
    width: calc((100% - 60px) / 3);
    margin-right: 30px;
}

#product-list li:nth-child(3n) {
    margin-right: 0;
}

.product-list .title p,
.solutions .title p {
    font-size: 18px;
    line-height: 26px;
}

.product-list .block {
    background: var(--color__white);
    border-radius: 10px;
    padding: 1.75rem 1rem;
    text-align: center;
    box-shadow: 0 6px 30px rgba(0,0,0,10%);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin: 0 0 30px;
    min-height: 282px;
    display: flex;
}

.product-list .block:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale3d(2,1.75,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);
    background-image: linear-gradient(
        135deg,
        var(--color__secondary) 0%,
        var(--color__tertiary) 100%
    );
    z-index: -1;
}

.product-list .block:hover:after {
    transform: scale3d(2,1.75,1) rotate3d(0,0,1,45deg) translate3d(0,0,0);
}

.product-list .block .inner {
    margin: auto;
}

.product-list .block img {
    max-width: 100%;
    width: auto;
    margin-bottom: 1.25rem;
    display: inline-block;
    vertical-align: top;
    height: 100px;
}

.product-list .block svg {
    max-width: 100%;
    width: auto;
    margin-bottom: 1.25rem;
    display: inline-block;
    vertical-align: top;
    height: 100px;
}

.product-list .block svg,
.product-list .block svg path,
.product-list .block svg rect {
    fill: var(--color__secondary);
}

.product-list .block:hover svg,
.product-list .block:hover svg path,
.product-list .block:hover svg rect {
    fill: var(--color__white);
}

.product-list .block:hover svg#icon-itriage,
.product-list .block:hover svg#icon-itriage path {
    fill: var(--color__white) !important;
}

.product-list .block svg#icon-SmartShield .icon-SmartShield__tranparent {
    fill: var(--color__white);
}

.product-list .block:hover svg#icon-SmartShield .icon-SmartShield__tranparent {
    fill: var(--color__secondary);
}


.product-list .block h4 {
    margin-bottom: .5rem;
}

.product-list .block p {
    font-size: 12px;
    line-height: 18px;
    margin: 0;
}

.product-list .block img,
.product-list .block h4,
.product-list .block p,
.product-list .block:after {
    transition: var(--transition);
}

.product-list .block:hover img {
    filter: brightness(100);
}

.product-list .block:hover h4,
.product-list .block:hover p {
    color: var(--color__white);
    animation-name: fadeInUp;
    animation-delay: 0.3s;
    animation-duration: .5s;
    animation-fill-mode: both;
}

.product-list .stretched-link {
    display: none;
}

.solutions .tab-container__nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.solutions .tab-container__nav li {
    margin-right: .75rem;
    margin-bottom: 1rem;
}

.solutions .tab-container__nav a {
    color: var(--color__primary);
    border: solid 2px #e6e6e6;
    font-size: 14px;
    padding: 3px 1.5rem;
    display: block;
    text-decoration: none;
    border-radius: 2rem;
    transition: var(--transition);
}

.solutions .tab-container__nav li:hover a,
.solutions .tab-container__nav a.current {
    border-color: var(--color__secondary);
    color: var(--color__secondary);
}

.solutions .tab-container__nav a.current {
    background-image: linear-gradient(
        to right,
        var(--color__secondary) 0%,
        var(--color__tertiary) 100%
    );
    color: var(--color__white);
}

.solutions .tab-container__nav a.current:hover {
    color: var(--color__white);
}

.solutions .tab-container__section {
    display: none;
}

.solutions .tab-container__section .block {
    padding: 2rem 3rem;
    background: var(--color__white);
    border-radius: 10px;
    box-shadow: 0 6px 30px rgba(0,0,0,10%);
    margin-top: 2rem;
}

.solutions .tab-container__section .block h4 {
    margin-bottom: .5rem;
}

.solutions .tab-container__section .block p:last-of-type {
    margin: 0;
}

.solutions .tab-container__section .block img {
    max-width: 100%;
}

.solutions .solutions__icon {
    max-width: 100%;
    height: 200px;
    width: auto;
}

.solutions .tab-container__dropdown {
    position: relative;
}

.solutions .tab-container__select {
    color: var(--color__primary);
    border: solid 2px #e6e6e6;
    font-size: 14px;
    padding: .5rem 1.5rem;
    display: block;
    text-decoration: none;
    border-radius: 2rem;
    transition: var(--transition);
    position: relative;
}

.solutions .tab-container__select.active {
    border-color: var(--color__secondary);
    color: var(--color__secondary);
}

.solutions .tab-container__select:after {
    content: "\f107";
    font-family: 'FontAwesome';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    transition: var(--transition);
}

.solutions .tab-container__select.active:after {
    transform: translateY(-50%) rotate(180deg);
}


@media (min-width: 768px) {
    .solutions .tab-container__select {
        display: none !important;
    }
    .solutions .tab-container__nav {
        display: flex !important;
    }
}

@media (max-width: 991.98px) {
    #product-list li {
        width: calc((100% - 30px) / 2);
    }
    
    #product-list li:nth-child(3n) {
        margin-right: 30px;
    }

    #product-list li:nth-child(2n) {
        margin-right: 0px;
    }
}

@media (max-width: 767.98px) {
    .product-list .title p,
    .solutions .title p {
        font-size: 16px;
        line-height: 24px;
    }

    .product-list .title p br,
    .solutions .title p br {
        display: none;
    }

    #product-list li {
        width: 100%;
        margin: 0;
    }
    
    #product-list li:nth-child(3n) {
        margin-right: 0;
    }

    #product-list li:nth-child(2n) {
        margin-right: 0px;
    }

    .product-list .block {
        box-shadow: 0 0 20px rgba(0,0,0,10%);
        min-height: inherit;
    }

    .product-list .block p br {
        display: none;
    }
    .product-list .block img {
        margin-bottom: .75rem;
    }
    .solutions .tab-container__section .block {
        padding: 2rem 1.5rem;
        box-shadow: 0 0 20px rgba(0,0,0,10%);
        text-align: center;
    }
    .solutions .tab-container__nav {
        flex-direction: column;
        align-items: inherit;
        background: var(--color__white);
        border: solid 2px #e6e6e6;
        border-radius: .5rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + .5rem);
        z-index: 1;
        display: none;
    }
    .solutions .tab-container__nav li {
        margin: 0;
    }
    .solutions .tab-container__nav li + li {
        border-top: solid 1px #e6e6e6;
    }
    .solutions .tab-container__nav a {
        border: none;
        padding: .5rem 1rem;
    }
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    14. Contact Us Page
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

.contact-us .title p {
    font-size: 18px;
    line-height: 26px;
}

.contact-us .form {
    border-radius: 15px;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    padding-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.contact-us .form:after {
    content: "";
    height: 8px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 200% auto;
    background-image: linear-gradient(
        to right,
        var(--color__secondary) 0%,
        var(--color__tertiary) 51%,
        var(--color__secondary) 100%
    );
    animation: gradientChanger 1s linear infinite;
}

.contact-us .form-group {
    margin-bottom: 1rem;
}

.contact-us .address,
.contact-us .map {
    padding-top: 100px;
}

.contact-us .address .block {
    border-radius: 15px;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
    padding: 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-us .address .block .symbol {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    background-image: linear-gradient(
        to right,
        var(--color__secondary) 0%,
        var(--color__tertiary) 100%
    );
    transition: var(--transition);
}

.contact-us .address .block:hover .symbol {
    background-position: right center;
}

.contact-us .address .block .symbol img {
    max-width: 100%;
    height: 44px;
}

.contact-us .address .block ul {
    list-style: none;
    margin: 0;
    padding: 1rem 0 0;
    text-align: left;
}

.contact-us .address .block ul li {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: var(--font-weight__semibold);
    color: var(--color__black);
    padding: 6px 0 6px 32px;
    position: relative;
}

.contact-us .address .block li span.icon {
    position: absolute;
    left: 0;
    top: 6px;
}

.contact-us .address .block li span.icon img {
    height: 20px;
}

.contact-us .address .block li + li {
    margin-top: 6px;
}

.contact-us .address .block ul li a {
    color: var(--color__black);
    transition: var(--transition);
}

.contact-us .address .block ul li a:hover {
    color: var(--color__secondary);
}

.contact-us .address .block .circle {
    border-radius: 50%;
    position: absolute;
    background: linear-gradient(
        to right,
        var(--color__tertiary) 50%,
        var(--color__secondary) 100%
    );
    display: block;
    opacity: .56;
    z-index: -1;
}

.contact-us .address .block .circle.lrg {
    width: 200px;
    height: 200px;
    left: -60px;
    top: -60px;
    animation: scale 10s linear infinite;
}

.contact-us .address .block .circle.mid {
    width: 120px;
    height: 120px;
    right: -20px;
    bottom: -20px;
    animation: scale-lrg 10s linear infinite;
}

.contact-us .address .block .circle.sml {
    width: 70px;
    height: 70px;
    left: 100px;
    top: -35px;
    animation: scale-xlrg 10s linear infinite;
}

.page__contact-us .map {
    position: relative;
}

.page__contact-us .map .inner {
    border-radius: 15px;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: .75rem;
}

.page__contact-us .map iframe {
    width: 100%;
    height: 400px;
    display: block;
    margin: 0;
    border-radius: 7px;
}

.page__contact-us .map iframe {
    width: 100%;
    height: 400px;
    display: block;
    margin: 0;
}

@media (max-width: 1199.98px) {
    .contact-us .address .block {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .contact-us .title p {
        font-size: 16px;
        line-height: 24px;
    }
    .contact-us .form {
        padding: 2rem 1.5rem;
    }
    .page__contact-us .inner-banner .graphic {
        width: 300px;
    }
    .contact-us .address,
    .contact-us .map {
        padding-top: 2.5rem;
    }
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    15. Insights Page (Listing & Details)
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

.blog .block .pic img,
.blog .block h3 a,
.blog .block .button--primary {
    transition: all 0.3s ease 0s;
}

.blog .block .pic {
    border-radius: .5rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.blog .block .pic a {
    display: block;
}

.blog .block .pic img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

.blog:not(.blog-details) .block:hover .pic img {
    transform: scale(1.3);
}

.blog .block .content .nav {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 1rem;
    color: var(--color__primary);
    opacity: 0.6;
    display: none;
}

.blog .block .content .nav li {
    display: flex;
    align-items: center;
}

.blog .block .content .nav li + li {
    margin-left: 1rem;
}

.blog .block .content .nav img {
    height: 14px;
    width: auto;
    margin-right: .375rem;
}

.blog .block .content .nav a {
    color: var(--color__primary);
    opacity: 0.5;
    transition: var(--transition);
}

.blog .block .content .nav a:hover {
    opacity: 1;
}

.blog .block h3 {
    color: var(--color__black);
    text-transform: none;
}

.blog .block h3 a {
    color: var(--color__black);
}

.blog .block:hover h3 a {
    color: var(--color__secondary);
}

.blog .block:hover .button--primary {
    color: var(--color__white);
    background-position: right center;
}

.blog-listing .block + .block {
    margin-top: 5rem;
}

.blog.blog-details .block h4 {
    color: var(--color__secondary);
}

.aside .block {
    border: solid 1px rgba(0, 0, 0, .1);
    border-radius: .5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
}

.aside .block + .block {
    margin-top: 3rem;
}

.aside .block-search .form-group {
    position: relative;
}

.aside .block-search .form-control {
    border-radius: .5rem;
}

.aside .block-search .button {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    padding: 0;
    border-radius: .5rem;
    min-width: auto;
    width: 48px;
}

.aside .block-search .button i {
    margin: 0;
}

.aside .block-recent-post ul {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
}

.aside .block-recent-post ul li {
    display: flex;
    align-items: top;
}

.aside .block-recent-post ul li  + li {
    margin-top: 1.25rem;
}

.aside .block-recent-post ul li img {
    height: 50px;
    width: auto;
    margin-right: 1rem;
    border-radius: .25rem;
}

.aside .block-recent-post ul li h6 {
    text-transform: none;
    color: var(--color__black);
    font-weight: var(--font-weight__semibold);
    font-size: 12px;
    line-height: 16px;
    margin: 0;
}

.aside .block-recent-post ul li h6 a {
    color: var(--color__black);
    transition: var(--transition);
}

.aside .block-recent-post ul li h6 a:hover {
    color: var(--color__secondary);
}

.blog-navigation {
    margin-top: 3rem;
}

.blog-navigation img {
    height: 60px;
    width: auto;
    margin-right: 1rem;
    border-radius: .25rem;
}

.blog-navigation .content {
    flex-grow: 1;
}

.blog-navigation h5 {
    font-size: 14px;
    line-height: 20px;
    opacity: 0.5;
    margin: 0 0 .25rem;
}

.blog-navigation h6 {
    text-transform: none;
    color: var(--color__black);
    font-weight: var(--font-weight__semibold);
    margin: 0;
}

.blog-navigation h6 a {
    color: var(--color__black);
    transition: var(--transition);
    display: block;
}

.blog-navigation h6 a:hover {
    color: var(--color__secondary);
}

.blog-navigation .row .block + .block {
    text-align: right;
}

@media (min-width: 768px) {
    .blog-navigation .row .block + .block img {
        order: 1;
        margin-right: 0;
        margin-left: 1rem;
    }
}

@media (max-width: 1199.98px) {
    .block-recent-post {
        display: none;
    }
    .aside {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .blog-listing .block + .block {
        margin-top: 2.5rem;
    }
    .pagination {
        margin-top: 2.5rem;
    }
    .pagination li a, .pagination li span {
        padding: .5rem;
    }
    .aside .block {
        padding: 1.25rem 1rem;
    }
    .blog-navigation {
        margin-top: 2.5rem;
    }
    .blog-navigation img {
        margin: 0 0 1rem;
        width: 100%;
        height: auto;
    }
}


/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    16. Regions Page
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

.highlighted-area {
    background: rgba(255, 93, 82, .1);
    border: solid 1px rgba(255, 93, 82, 1);
    border-left-width: .5rem;
    padding: 1.5rem 2rem 1.5rem 4rem;
    position: relative;
    border-radius: .25rem;
    margin: 2rem 0;
}

.highlighted-area:before {
    content: "\f10d";
    font-family: "FontAwesome";
    color: var(--color__tertiary);
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-size: 30px;
    line-height: 36px;
    font-style: normal;
}

.highlighted-area p {
    color: var(--color__black);
    font-style: italic;
}

.highlighted-area p:last-of-type {
    margin: 0;
}

.page__regions .block {
    margin-top: 5rem;
}

.page__regions .block .pic {
    width: 300px;
    box-shadow: 0 0 20px rgb(0 0 0 / 25%);
    display: inline-block;
    vertical-align: top;
    border-radius: 50%;
}

.page__regions .block .pic img {
    width: 100%;
    display: block;
    border-radius: 50%;
}

.page__regions .block .content h3 {
    color: var(--color__black);
    text-transform: none;
}

.page__regions .block .content h2 {
    color: var(--color__secondary);
}

.page__regions .block .content p {
    margin-bottom: 2rem;
}

@media (max-width: 991.98px) {
    .page__regions .block .content p br {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .page__regions .block {
        margin-top: 2rem;
        text-align: center;
    }
    .highlighted-area p {
        text-align: left !important;
    }
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    17. Individual Product Page
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

/* Banner */

.page__product-individual .inner-banner {
    background-color: var(--color__secondary);
    background-image: linear-gradient( to right, var(--color__secondary) 0%, var(--color__tertiary) 51%, var(--color__secondary) 100% );
}

.page__product-individual .inner-banner:before {
    background-image: url(https://protectedby.ai/images/banner__glow-products.png);
}

.page__product-individual .inner-banner .object .lrg {
    animation: banner-rotate 60s linear infinite reverse;
}

.page__product-individual .inner-banner .icon,
.page__product-individual .inner-banner .icon:before {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.page__product-individual .inner-banner .icon {
    display: flex;
    width: 360px;
    height: 360px;
    padding: 2rem;
    z-index: -1;
    background: #ffffff;
    background-size: auto 200%;
    background-image: linear-gradient(
        to bottom,
        #ffc398 0%,
        #ffffff 51%,
        #ffc398 100%
    );
    animation: bannerGradientChanger 5s linear infinite;
    z-index: 1;
}

.page__product-individual .inner-banner .icon:before {
    content: "";
    background: var(--color__secondary);
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
}

.page__product-individual .inner-banner .icon .inner {
    margin: auto;
    position: relative;
    z-index: 1;
    width: auto;
    height: auto;
}

.page__product-individual .inner-banner .icon svg {
    height: 200px;
    width: auto; 
}

.page__product-individual .inner-banner .icon svg, 
.page__product-individual .inner-banner .icon svg path, 
.page__product-individual .inner-banner .icon svg rect {
    fill: var(--color__white);
}

@keyframes bannerGradientChanger {
    0% {
        background-position: center top;
    }
    50% {
        background-position: center bottom;
    }
    100% {
        background-position: center top;
    }
}

/* Banner WorkerB */

#icon__workerB--1 {
    animation: workerB--1 5s linear infinite;
    transform-box: fill-box;
    transform-origin: center;
    position: relative;
}

#icon__workerB--2 path {
    animation: workerB--2 1s linear infinite;
}

/* Banner Cybersecurity */

#icon__cybersecurity--1 {
    animation: svgScaleReverse 2s linear infinite;
    transform-box: fill-box;
    transform-origin: center;
    transform: scale(1);
}

#icon__cybersecurity--2 {
    animation: svgScale 2s linear infinite;
    transform-box: fill-box;
    transform-origin: center;
    transform: scale(.5);
}

/* Banner CodeLock */

.site-banner #product-icon__codelock--1 {
    animation: codelock--1 3s linear infinite;
}

.site-banner #product-icon__codelock--3 path {
    animation: codelock--3 3s linear infinite;
}

.site-banner #product-icon__codelock--2 {
    animation: codelock--2 3s linear infinite;
}

/* Banner S33K */

.page__product-individual .inner-banner .icon__s33k svg {
    height: 90px;
}

.site-banner #product-icon__s33k--1 {
    animation: s33k--1 2s linear infinite;
}

.site-banner #product-icon__s33k--2 {
    animation: s33k--2 2s linear infinite;
}

/* Banner Hark */

.site-banner #product-icon__hark--1 {
    animation: hark--1 3s linear infinite;
}

.site-banner #product-icon__hark--2 {
    animation: hark--2 3s linear infinite;
}

/* Banner The Perfekt Fit */

.page__product-individual .inner-banner .icon__the-perfekt-fit svg {
    height: 140px;
}

.site-banner #product-icon__perfektfit--1 {
    transform-origin: center;
    transform-box: fill-box;
    animation: perfektfit--1 3s linear infinite;
}

.site-banner #product-icon__perfektfit--2 {
    animation: perfektfit--2 3s linear infinite;
}

.site-banner #product-icon__perfektfit--3 {
    animation: perfektfit--3 3s linear infinite;
}

/* Banner SmartShield */

.site-banner svg#icon-SmartShield .icon-SmartShield__tranparent {
    fill: var(--color__secondary);
}

.site-banner #product-icon__smartshield--1 {
    animation: smartshield--1 3s linear infinite;
}

.site-banner #product-icon__smartshield--2 {
    animation: smartshield--2 3s linear infinite;
}

/* DataLock3r */

.site-banner  #product-icon__DataLock3r--2,
.site-banner .block:hover #product-icon__DataLock3r--3,
.site-banner .block:hover #product-icon__DataLock3r--4 {
    animation: DataLock3r--1 5s linear infinite;
}

.site-banner #product-icon__DataLock3r--3,
.site-banner #product-icon__DataLock3r--3 {
    animation-direction: reverse;
}

/* Saige */

.site-banner #product-icon__saige--1 {
    animation: saige--1 1s cubic-bezier(.5,0.05,1,.5) infinite alternate;
}

.site-banner #product-icon__saige--2 {
    animation: saige--2 1s cubic-bezier(.5,0.05,1,.5) infinite alternate;
}

/* Banner SmartChain */

.page__product-individual .inner-banner .icon__smartchain svg {
    height: 160px;
}

.site-banner #product-icon__smartchain--1,
.site-banner #product-icon__smartchain--2 {
    animation: smartchain--1_2 3s linear infinite;
}

.site-banner #product-icon__smartchain--3,
.site-banner #product-icon__smartchain--4 {
    animation: smartchain--3_4 3s linear infinite;
}

.site-banner #product-icon__smartchain--5a,
.site-banner #product-icon__smartchain--5b {
    animation: smartchain--5a_5b 3s linear infinite;
}

.site-banner #product-icon__smartchain--6a,
.site-banner #product-icon__smartchain--6b {
    animation: smartchain--6a_6b 3s linear infinite;
}

.site-banner #product-icon__smartchain--7a,
.site-banner #product-icon__smartchain--7b {
    animation: smartchain--7a_7b 3s linear infinite;
}

.site-banner #product-icon__smartchain--8a,
.site-banner #product-icon__smartchain--8b {
    animation: smartchain--8a_8b 3s linear infinite;
}

/* Content */

.page__product-individual .product-name {
    font-size: 36px;
    line-height: 42px;
}

.page__product-individual p {
    text-align: justify;
}

.page__product-individual p a {
    color: var(--color__secondary);
    transition: var(--transition);
}

.page__product-individual p a:hover {
    color: var(--color__tertiary);
}

.dual-col > .container > .row + .row {
    padding-top: 100px;
}

.dual-col p:last-of-type {
    margin: 0;
}

.block-group [class*="col-"] {
    margin-bottom: 2.5rem;
}


.block-group .block {
    background: var(--color__white);
    border-radius: 10px;
    padding: 2.5rem 1rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 6px 32px rgba(0, 0, 0, .1);
    min-height: 100%;
    position: relative;
}

.block-group .block.active {
    box-shadow: 0 6px 32px rgba(0, 0, 0, .25);
}

.block-group .block .icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-size: 200% auto;
    background-image: linear-gradient(
        to right,
        var(--color__secondary) 0%,
        var(--color__tertiary) 51%,
        var(--color__secondary) 100%
    );
    transition: var(--transition);
}

.block-group .block:hover .icon {
    background-position: right center;
}

.block-group .block .icon img {
    max-width: 100%;
    height: 50px;
    width: auto;
}

.block-group .block h5 {
    margin-bottom: .5rem;
}

.block-group .block p {
    font-size: 12px;
    line-height: 18px;
    margin: 0;
    text-align: center;
}

@media (max-width: 1199.98px) {
    .page__product-individual .dual-col .title p br {
        display: none;
    }
    .block-group .block {
        padding: 1.5rem 1rem;
    }
    .block-group .block p br {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .dual-col > .container > .row + .row {
        padding-top: 2.5rem;
    }
    .page__product-individual .dual-col img {
        width: 75%;
        height: auto;
    }
    .page__product-individual .product-name {
        font-size: 26px;
        line-height: 32px;
    }
    .block-group .block {
        padding: 2rem 1.5rem;
    }
    .block-group [class*="col-"] {
        margin-bottom: 1.5rem;
    }
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    18. Product Icon Animation on Hover
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

/* CodeLock */

#product-icon__codelock--1,
#product-icon__codelock--2,
#product-icon__codelock--3 path  {
    transform-box: fill-box;
    transform-origin: center;
}

#product-icon__codelock--1 {
    transform: translateY(14px);
}

#product-icon__codelock--3 path {
    transform: translateY(3px);
}

.block:hover #product-icon__codelock--1 {
    animation: codelock--1 3s linear infinite;
}

@keyframes codelock--1 {
    0% {
        transform: translateY(14px);
    }
    55% {
        transform: translateY(0);
    }
    65% {
        transform: translateY(14px);
    }
    
}

.block:hover #product-icon__codelock--3 path {
    animation: codelock--3 3s linear infinite;
}

@keyframes codelock--3 {
    0% {
        transform: translateY(3px);
    }
    55% {
        transform: translateY(0);
    }
    65% {
        transform: translateY(3px);
    }
}

.block:hover #product-icon__codelock--2 {
    animation: codelock--2 3s linear infinite;
}

@keyframes codelock--2 {
    0% {
        transform: rotateZ(0deg);
    }
    55% {
        transform: rotateZ(0deg);
    }
    57.5% {
        transform: rotateZ(15deg);
    }
    60% {
        transform: rotateZ(0deg);
    }
    62.5% {
        transform: rotateZ(-15deg);
    }
    65% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(0deg);
    }
}

/* WorkerB */

.products .block #product-icon__workerB--1,
.product-list .block #product-icon__workerB--1 {
    transform-box: fill-box;
    transform-origin: center;
    position: relative;
}

.products .block:hover #product-icon__workerB--1,
.product-list .block:hover #product-icon__workerB--1 {
    animation: workerB--1 5s linear infinite;
}

@keyframes workerB--1 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    
}

.products .block:hover #product-icon__workerB--2 path,
.product-list .block:hover #product-icon__workerB--2 path {
    animation: workerB--2 1s linear infinite;
}

@keyframes workerB--2 {
    0% {
       fill: none;
    }
    50% {
        fill: #fff;
    }
    100% {
        fill: none;
    }
    
}

/* Cybersecurity */

.products .block #product-icon__cybersecurity--1,
.product-list .block #product-icon__cybersecurity--1 {
    transform-box: fill-box;
    transform-origin: center;
    transform: scale(1);
}

.products .block:hover #product-icon__cybersecurity--1,
.product-list .block:hover #product-icon__cybersecurity--1 {
    animation: svgScaleReverse 2s linear infinite;
}

.products .block #product-icon__cybersecurity--2,
.product-list .block #product-icon__cybersecurity--2 {
    transform-box: fill-box;
    transform-origin: center;
    transform: scale(1);
}

.products .block:hover #product-icon__cybersecurity--2,
.product-list .block:hover #product-icon__cybersecurity--2 {
    animation: svgScale 2s linear infinite;
}

@keyframes svgScale {
    0% {
        transform: scale(.5);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(.5);
    }
}

@keyframes svgScaleReverse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.4);
    }
    100% {
        transform: scale(1);
    }
}

/* S33K */

#product-icon__s33k--1 {
    transition: transform .5s;
    transform-style: preserve-3d;
    transform-origin: center;
    transform-box: fill-box;
}

.block:hover #product-icon__s33k--1 {
    animation: s33k--1 2s linear infinite;
}

#product-icon__s33k--2 {
    transform: rotate(52deg);
    transform-box: fill-box;
    transform-origin: center;
}

.block:hover #product-icon__s33k--2 {
    animation: s33k--2 2s linear infinite;
}

@keyframes s33k--1 {
    0% {
        transform: rotateY(0deg);
    }
    25% {
        transform: rotateY(360deg);
    }
    75% {
        transform: rotateY(360deg);
    }
    100% {
        transform: rotateY(0deg);
    }
}

@keyframes s33k--2 {
    0% {
        transform: rotate(52deg) translateY(-60px);
    }
    25% {
        transform: rotate(52deg) translateY(0px);
    }
    75% {
        transform: rotate(52deg) translateY(0px);
    }
    100% {
        transform: rotate(52deg) translateY(60px);
    }
}

/* DataLock3r */

.product-icon__DataLock3r--particles {
    transform-box: fill-box;
    transform-origin: center;
}

.product-list .block:hover #product-icon__DataLock3r--2,
.product-list .block:hover #product-icon__DataLock3r--3,
.product-list .block:hover #product-icon__DataLock3r--4,
.products .block:hover #product-icon__DataLock3r--2,
.products .block:hover #product-icon__DataLock3r--3,
.products .block:hover #product-icon__DataLock3r--4 {
    animation: DataLock3r--1 5s linear infinite;
}

.product-list .block:hover #product-icon__DataLock3r--3,
.products .block:hover #product-icon__DataLock3r--3 {
    animation-direction: reverse;
}

@keyframes DataLock3r--1 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Saige */

#product-icon__saige--1 {
    transform-box: fill-box;
    transform-origin: left;
}

.block:hover #product-icon__saige--1 {
    animation: saige--1 1s cubic-bezier(.5,0.05,1,.5) infinite alternate;
}

@keyframes saige--1 {
    from {
        transform: rotate(5deg);
    }
    to {
        transform: rotate(0deg);
    }
    
}

#product-icon__saige--2 {
    transform-box: fill-box;
    transform-origin: center;
}

.block:hover #product-icon__saige--2 {
    animation: saige--2 1s cubic-bezier(.5,0.05,1,.5) infinite alternate;
}

@keyframes saige--2 {
    from { 
        transform: translate3d(0, 0, 0);     
    }
    to  { 
        transform: translate3d(0, 5px, 0); 
    }
}

/* SmartChain */

.block:hover #product-icon__smartchain--1,
.block:hover #product-icon__smartchain--2 {
    animation: smartchain--1_2 3s linear infinite;
}

@keyframes smartchain--1_2 {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(1.5px, 2.5px);
    }
    50% {
        transform: translate(1.5px, 2.5px);
    }
    75% {
        transform: translate(0, 0);
    }
}

.block:hover #product-icon__smartchain--3,
.block:hover #product-icon__smartchain--4 {
    animation: smartchain--3_4 3s linear infinite;
}

@keyframes smartchain--3_4 {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-1.5px, -2.5px);
    }
    50% {
        transform: translate(-1.5px, -2.5px);
    }
    75% {
        transform: translate(0, 0);
    }
}

.block:hover #product-icon__smartchain--5a,
.block:hover #product-icon__smartchain--5b {
    animation: smartchain--5a_5b 3s linear infinite;
}

@keyframes smartchain--5a_5b {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    25% {
        transform: translate(22px, 2.5px);
        opacity: 0;
    }
    50% {
        transform: translate(22px, 2.5px);
        opacity: 0;
    }
    75% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

.block:hover #product-icon__smartchain--6a,
.block:hover #product-icon__smartchain--6b {
    animation: smartchain--6a_6b 3s linear infinite;
}

@keyframes smartchain--6a_6b {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    25% {
        transform: translate(19px, -2.5px);
        opacity: 0;
    }
    50% {
        transform: translate(19px, -2.5px);
        opacity: 0;
    }
    75% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

.block:hover #product-icon__smartchain--7a,
.block:hover #product-icon__smartchain--7b {
    animation: smartchain--7a_7b 3s linear infinite;
}

@keyframes smartchain--7a_7b {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    25% {
        transform: translate(-19px, 2.5px);
        opacity: 0;
    }
    50% {
        transform: translate(-19px, 2.5px);
        opacity: 0;
    }
    75% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

.block:hover #product-icon__smartchain--8a,
.block:hover #product-icon__smartchain--8b {
    animation: smartchain--8a_8b 3s linear infinite;
}

@keyframes smartchain--8a_8b {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    25% {
        transform: translate(-22px, -2.5px);
        opacity: 0;
    }
    50% {
        transform: translate(-22px, -2.5px);
        opacity: 0;
    }
    75% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

/* iTriage */

.block:hover #product-icon__itriage--1,
.block:hover #product-icon__itriage--2 {
    animation: itriage--1 1s cubic-bezier(.5,0.05,1,.5) infinite alternate;
}

@keyframes itriage--1 {
    from { 
        transform: translate3d(0, 0, 0);     
    }
    to  { 
        transform: translate3d(0, 5px, 0); 
    }
}

/* Hark */

#product-icon__hark--1 {
    transform-box: fill-box;
    transform-origin: center;
    transform: scale(1);
}

.block:hover #product-icon__hark--1 {
    animation: hark--1 3s linear infinite;
}

#product-icon__hark--2 {
    transform-box: fill-box;
    transform-origin: center;
    transform: scale(1);
}

.block:hover #product-icon__hark--2 {
    animation: hark--2 3s linear infinite;
}

@keyframes hark--2 {
    0% {
        transform: scale(.5);
    }
    50% {
        transform: scale(1.5);
    }
    75% {
        transform: scale(1);
    }
    100% {
        transform: scale(.5);
    }
}

@keyframes hark--1 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.23);
    }
    100% {
        transform: scale(1);
    }
}

/* The Perfekt Fit */

.block:hover #product-icon__perfektfit--1 {
    /* transform: scale(1.2); */
    transform-origin: center;
    transform-box: fill-box;
    animation: perfektfit--1 3s linear infinite;
}

@keyframes perfektfit--1 {
    0% {
        transform: scale(1);
    }
    55% {
        transform: scale(1.2);
    }
    65% {
        transform: scale(1);
    }
}

.block:hover #product-icon__perfektfit--2 {
    /* transform: translateX(100px); */
    animation: perfektfit--2 3s linear infinite;
}

@keyframes perfektfit--2 {
    0% {
        transform: translateX(0);
    }
    55% {
        transform: translateX(100px);
    }
    65% {
        transform: translateX(0);
    }
}

.block:hover #product-icon__perfektfit--3 {
    /* transform: translateX(-100px); */
    animation: perfektfit--3 3s linear infinite;
}

@keyframes perfektfit--3 {
    0% {
        transform: translateX(0);
    }
    55% {
        transform: translateX(-100px);
    }
    65% {
        transform: translateX(0);
    }
}

/* SmartScan */

#product-icon__smartscan--1 {
    transform-box: fill-box;
    transform-origin: center;
}

.block:hover #product-icon__smartscan--1 {
    animation: smartscan--1 3s linear infinite alternate;
}

@keyframes smartscan--1 {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    25% {
        transform: translateX(0px);
        opacity: 1;
    }
    40% {
        transform: translateX(0px) rotateZ(10deg);
    }
    50% {
        transform: translateX(0px) rotateZ(0deg);
    }
    60% {
        transform: translateX(0px) rotateZ(-10deg);
    }
    75% {
        transform: translateX(0px);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

.block:hover #product-icon__smartscan--2 rect {
    animation: smartscan--2 3s linear infinite;
}

@keyframes smartscan--2 {
    0% {
        fill: #fff;
    }
    25% {
        fill: #fff;
    }
    40% {
        fill: none;
    }
    50% {
        fill: #fff;
    }
    60% {
        fill: none;
    }
    75% {
        fill: #fff;
    }
    100% {
        fill: #fff;
    }
}

/* SmartShield */

#product-icon__smartshield--1,
#product-icon__smartshield--2 {
    transform-box: fill-box;
    transform-origin: center;
}

.block:hover #product-icon__smartshield--1 {
    animation: smartshield--1 3s linear infinite;
}

.block:hover #product-icon__smartshield--2 {
    animation: smartshield--2 3s linear infinite;
}

@keyframes smartshield--1 {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    15% {
        opacity: 0;
    }
    37.5% {
        transform: scale(0);
    }
    60% {
        opacity: 0;
    }
    75% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes smartshield--2 {
    0% {
        transform: scale(1);
    }
    37.5% {
        transform: scale(1.45);
    }
    75% {
        transform: scale(1);
    }
}

/* Connect */

.block:hover #product-icon__connect--1 path {
    animation: connect--1 4s linear infinite;
}

.block:hover #product-icon__connect--2 path,
.block:hover #product-icon__connect--3 path {
    animation: connect--2_3 4s linear infinite;
}

#product-icon__connect--4 {
    transform-origin: center;
    transform-box: fill-box;
}

.block:hover #product-icon__connect--4 {
    animation: connect--4 4s linear infinite;
}

@keyframes connect--1 {
    0% {
        fill: #fff;
    }
    10% {
        fill: #fff;
    }
    15% {
        fill: none;
    }
    20% {
        fill: #fff;
    }
    25% {
        fill: none;
    }
    30% {
        fill: #fff;
    }

    35% {
        fill: #fff;
    }
    37.5% {
        fill: none;
    }
    40% {
        fill: #fff;
    }
    42.5% {
        fill: none;
    }
    45% {
        fill: #fff;
    }
    47.5% {
        fill: none;
    }
    50% {
        fill: #fff;
    }
    100% {
        fill: #fff;
    }
}

@keyframes connect--2_3 {
    0% {
        fill: #fff;
    }

    50% {
        fill: #fff;
    }
    55% {
        fill: none;
    }
    65% {
        fill: #fff;
    }
    75% {
        fill: none;
    }
    80% {
        fill: #fff;
    }

    85% {
        fill: #fff;
    }
    87.5% {
        fill: none;
    }
    90% {
        fill: #fff;
    }
    92.5% {
        fill: none;
    }
    95% {
        fill: #fff;
    }
    97.5% {
        fill: none;
    }
    100% {
        fill: #fff;
    }
}

@keyframes connect--4 {
    0% {
        transform: scale(1);
    }
    40% {
        transform: scale(1);
    }
    50% {
        transform: scale(3);
    }
    60% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

#alert_success,
#alert_error {
    display: none;
}

.form-alert {
    border-style: solid;
    border-color: var(--color__white);
    border-width: 1px 1px 1px 8px;
    padding: .75rem 1rem;
    padding-left: 2.25rem;
    margin: 1.5rem 0 0;
    font-size: 14px;
    line-height: 20px;
    border-radius: .25rem;
    position: relative;
    background: var(--color__white);
    text-align: left;
}

.form-alert:before {
    content: "\f0f3";
    font-family: 'FontAwesome';
    position: absolute;
    left: .75rem;
    top: .75rem;
}

.form-alert.success {
    border-color: #28a745;
}

.form-alert.success:before {
    color: #28a745;
}

.form-alert.error {
    border-color: #dc3545;
}

.form-alert.error:before {
    color: #dc3545;
}

.waviy {
    display: flex;
    position: relative;
    -webkit-box-reflect: below -15px linear-gradient(transparent, rgba(0,0,0,.2));
    margin-bottom: 2rem;
}
.waviy span {
    position: relative;
    font-size: 40px;
    line-height: 48px;
    font-weight: var(--font-weight__bold);
    font-family: var(--font-family__secondary);
    color: var(--color__secondary);
    animation: waviy 1.5s infinite;
    animation-delay: calc(.15s * var(--i));
}
@keyframes waviy {
    0%,40%,100% {
      transform: translateY(0)
    }
    20% {
      transform: translateY(-20px)
    }
}

@media (max-width: 767.98px) {
    .waviy {
        justify-content: center;
    }
    .waviy span {
        font-size: 34px;
        line-height: 40px;
    }
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    19. Modal
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

.modal-body p {
    font-weight: var(--font-weight__medium);
    font-size: 14px;
    line-height: 24px;
}

.modal-body p:last-of-type {
    margin: 0;
}

.modal-header {
    align-items: center;
    border-bottom: solid 1px #ebebeb;
}

.modal-header h4 {
    color: var(--color__tertiary);
    text-transform: uppercase;
}

.modal-header .close {
    stroke: var(--color__tertiary);
    opacity: 1;
}
.modal-header .close:hover {
    stroke: var(--color__black);
    opacity: 1;
}