/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Poppins", sans-serif;
    color: #2a3238;
    word-break: break-word;
}

a {
    color: #ef6603;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    color: #00969e !important;
    text-decoration: none;
}

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

mark {
    background-color: #ef6603;
    padding: 0;
    color: #fff;
}

.btn-color {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    background-color: #ef6603;
    border: 2px solid #ef6603;
}

.btn-color:hover {
    background: #fff;
    color: #ef6603 !important;
    text-decoration: none;
    border: 2px solid #ef6603;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 35px;
    bottom: 90px;
    z-index: 996;
    background: #ef6603;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #ef6603;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 70px;
    transition: all 0.5s;
    z-index: 997;
    background: rgba(42, 44, 57, 0.9);
}

#header.header-transparent {
    background: transparent;
}

#header.header-scrolled {
    background: rgba(0, 0, 0, 0.7);
}

#header.header-scrolled a {
    color: #fff;
}

#header.header-scrolled img {
    content: url('/assets/img/logo-white.png');
}

#header.header-scrolled .active {
    color: #fff;
}

#header.header-scrolled a:hover {

}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
}

#header .logo h1 a, #header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar .bi-x{
    color: #fff !important;
}

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

.navbar li {
    position: relative;
}

.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px 7px 15px;
    margin-left: 5px;
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
}

.navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    background: #ef6603;
    color: #fff !important;
}

.navbar .login{
    padding-left: 50px;
    padding-right: 50px;
    border: 1px solid #fff;
    color: #fff;
}

.navbar .login:hover{
    padding-left: 50px;
    padding-right: 50px;
    border: 1px solid #ef6603;
}

@media (max-width: 480px) and (max-width: 1024px) {
    .navbar .login {
        padding-left: 0px;
		padding-right: 0px;
		border: 1px solid #ef6603;
		color: #ef6603;
		justify-content: center
    }
	
	.navbar .login:hover{
		padding-left: 0px;
		padding-right: 0px;
		border: 1px solid #ef6603;
		color: #ef6603;
		justify-content: center
	}
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 5px;
    top: calc(100% + 30px);
    margin: 5px 0 0 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 15px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    color: #2a2c39;
    margin: 0 5px;
    font-size: 14px;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: #fff;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #2A3139;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle-scrolled {
    color: #fff !important;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(20, 21, 28, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a, .navbar-mobile a:focus {
    padding: 10px 20px;
    margin: 5px;
    font-size: 15px;
    color: #2a2c39;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: #fff;
}

.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
    color: #fff;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-title {
    padding-bottom: 40px;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    color: #3a4c53;
    font-family: "Poppins", sans-serif;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #fd9042;
    margin: 4px 10px;
}

.section-title p {
    margin: 0;;
    font-size: 36px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    color: #4e6672;
    line-height: 40px;
}

/*--------------------------------------------------------------
# Banner Section
--------------------------------------------------------------*/
#banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background: linear-gradient(0deg, #fff 0%, #fff 100%);
    padding: 0;
}

#banner > .banner-1-b {
    right: 0;
    top: 0;
    position: absolute;
    height: 95vh
}

#banner > .banner-1-a {
    right: 0;
    top: 0;
    position: absolute;
    height: 95vh;
    animation-delay: 0.1s;
}

@media (max-width: 1024px) {
    #banner > .banner-1-b {
        height: 75vh
    }

    #banner > .banner-1-a {
        height: 75vh;
    }
}

@media (max-width: 768px) {
    #banner > .banner-1-b {
        display: none !important;
    }

    #banner > .banner-1-a {
        display: none !important;
    }
}

#banner > .banner-2-b {
    left: 0;
    top: 40vh;
    position: absolute;
    height: 50vh;
    animation-delay: 0.2s;
}

#banner > .banner-2-a {
    left: 0;
    top: 40vh;
    position: absolute;
    height: 50vh;
    animation-delay: 0.3s;
}

@media (min-width: 1400px) {
    #banner > .banner-2-b {
        left: -120px;
        top: 50vh;
        animation-delay: 0.3s;
    }

    #banner > .banner-2-a {
        left: -120px;
        top: 50vh;
        animation-delay: 0.3s;
    }
}

@media (min-width: 1600px) {
    #banner > .banner-2-b {
        left: 0;
        top: 40vh;
        height: 50vh;
        animation-delay: 0.3s;
    }

    #banner > .banner-2-a {
        left: 0;
        top: 40vh;
        height: 50vh;
        animation-delay: 0.3s;
    }
}

#banner > .container > .typewrite {
    position: absolute;
    top: 30vh;
    line-height: 50px;
    padding-right: 10px;
}

#banner > .container > .typewrite > .typist {
    font-size: 45px;
    font-weight: bold;
    margin: 0;
}

#banner > .container > .typewrite > .typewrite-title {
    font-size: 45px;
    font-weight: bold;
    background-color: #fff;
}

#banner > .container > .typewrite > .typewrite-bottom-text {
    margin-top: 20px;
    line-height: initial;
    background-color: #fff;
    text-align: justify;
}

#banner > .container > .typewrite > .typist > .wrap {
    font-size: 45px;
    background-color: #fff;
}

@media (max-width: 480px) {
    #banner > .container > .typewrite > .typewrite-title {
        font-size: 40px;
    }

    #banner > .container > .typewrite > .typist > .wrap {
        font-size: 40px;
    }

    #banner > .container > .typewrite > .typewrite-bottom-text {
        padding-right: 10px;
    }
}

.waves {
    display: block;
    width: 100%;
    height: 60px;
    position: absolute;
    bottom: 0;
}

.waves > .wave1 use {
    -webkit-animation: move-forever1 10s linear infinite;
    animation: move-forever1 10s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.waves > .wave2 use {
    -webkit-animation: move-forever2 8s linear infinite;
    animation: move-forever2 8s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.waves > .wave3 use {
    -webkit-animation: move-forever3 6s linear infinite;
    animation: move-forever3 6s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }
    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }
    100% {
        transform: translate(-90px, 0%);
    }
}

@-webkit-keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}

@-webkit-keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
#services {
    background-color: #00969e;
    color: #fff;
}

#services > .container > .section-title h2 {
    color: #fff;
}

#services > .container > .section-title h2::after {
    background: #fff;
}

#services > .container > .section-title p {
    color: #003136;
}

#services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background-image: url("/assets/img/notary/box-image-background.jpg");
    box-shadow: 0 2px 29px 5px rgba(0, 200, 210, 0.5);
    transition: all 0.4s ease-in-out;
    width: 100%;
    height: 100%;
}

#services .icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 2px 35px 0 rgba(68, 88, 144, 0.8);
}

#services .icon-box p{
    /*color: #2a3238;*/
}

#services .icon {
    position: absolute;
    left: 3px;
    top: calc(50% - 30px);
    /*color: #00969e;*/
}

#services .icon i {
    font-size: 64px;
    line-height: 1;
    transition: 0.5s;
    color: #00969e;
}

#services .title {
    margin-left: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

#services .title a {
    /*color: #2a2c39;*/
    transition: ease-in-out 0.3s;
}

#services .title a:hover {
    color: #ef6603 !important;
}

#services .description {
    font-size: 14px;
    margin-left: 40px;
    line-height: 24px;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#backoffice {
    padding-top: 0px;
}

#backoffice .content{
    padding-top: 3px;
}

#backoffice .backoffice-img {
    position: absolute;
}

@media (max-width: 1024px) {
    #backoffice .backoffice-img {
        width: 45%;
    }
}

@media (max-width: 480px) {
    #backoffice .backoffice-img {
        /*height: 100%;*/
        width: 95%;

    }

    #backoffice .content div:last-child {
        padding-top: 410px;
    }
}

#backoffice .content ul {
    list-style: none;
    padding: 0;
}

#backoffice.content ul li {
    padding-left: 28px;
    position: relative;
}

#backoffice .content ul li + li {
    margin-top: 10px;
    text-align: justify;
}

#backoffice.content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #ef6603;
    line-height: 1;
}

#backoffice .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Security Financial
--------------------------------------------------------------*/
#security-financial {
    padding-top: 20px;
    /*background-color: #00969e;*/
    /*color: #fff;*/
    padding-bottom: 20px;
}

#security-financial hr {
    border: 0;
    background: transparent;
    padding-top: 20px;
    padding-bottom: 20px;
}

#security-financial .text-content {
    text-align: justify;
    padding-bottom: 40px;
}

#security-financial .content ul {
    list-style: none;
    padding: 0;
}

#security-financial.content ul li {
    padding-left: 28px;
    position: relative;
}

#security-financial .content ul li + li {
    margin-top: 10px;
    text-align: justify;
}

#security-financial.content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #ef6603;
    line-height: 1;
}

#security-financial .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Differentials
--------------------------------------------------------------*/
.differentials {
    background: #fff;
    padding: 80px 0;
}

.differentials h3 {
    /*color: #fff;*/
    font-size: 28px;
    font-weight: 700;
}

.differentials p {
    /*color: #fff;*/
}

@media (max-width: 1024px) {
    .differentials {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .differentials .differentials-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

/*--------------------------------------------------------------
# Rotating
--------------------------------------------------------------*/

@-webkit-keyframes rotating /* Safari and Chrome */
{
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.rotating {
    -webkit-animation: rotating 15s linear infinite;
    -moz-animation: rotating 15s linear infinite;
    -ms-animation: rotating 15s linear infinite;
    -o-animation: rotating 15s linear infinite;
    animation: rotating 15s linear infinite;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #14151c;
    color: #fff;
    font-size: 14px;
    text-align: center;
}

#footer h3 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    position: relative;
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0 0 15px 0;
}

/*#footer p {*/
/*    !*font-size: 15;*!*/
/*    !*font-style: italic;*!*/
/*    !*padding: 0;*!*/
/*    !*margin: 0 0 40px 0;*!*/
/*}*/

/*#footer .social-links {*/
/*    margin: 0 0 40px 0;*/
/*}*/

/*#footer .social-links a {*/
/*    font-size: 18px;*/
/*    display: inline-block;*/
/*    background: #ef6603;*/
/*    color: #fff;*/
/*    line-height: 1;*/
/*    padding: 8px 0;*/
/*    margin-right: 4px;*/
/*    border-radius: 50%;*/
/*    text-align: center;*/
/*    width: 36px;*/
/*    height: 36px;*/
/*    transition: 0.3s;*/
/*}*/

/*#footer .social-links a:hover {*/
/*    background: #bd5102;*/
/*    color: #fff;*/
/*    text-decoration: none;*/
/*}*/

/*#footer .copyright {*/
/*    margin: 0 0 5px 0;*/
/*}*/

/*#footer .credits {*/
/*    font-size: 13px;*/
/*}*/