/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
   --color-primary: #292e32;
   --color-secondary: #62b1f6;
   --color-background: #fffaf4;
   --color-accent: #081e5b;

   /* --font-family */
}

@font-face {
   font-family: TTFirs;
   src: url("/lib/fonts/tt-firs-neue-regular.ttf");
}

body {
   background: var(--color-background);
   color: var(--color-primary);
   font-family: "Montserrat", sans-serif;
   overflow-x: hidden;
   position: relative;
}

@keyframes float {
   0%,
   100% {
      transform: translateY(0px) rotate(0deg);
      opacity: 0.3;
   }
   50% {
      transform: translateY(-20px) rotate(180deg);
      opacity: 0.8;
   }
}

a {
   color: var(--color-secondary);
   transition: 0.5s;
}

a:hover,
a:active,
a:focus {
   color: var(--color-primary);
   outline: none;
   text-decoration: none;
}

p {
   padding: 0;
   margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: "TTFirs";
   font-weight: 500;
   margin: 0 0 20px 0;
   padding: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   width: 100%;
   position: fixed;
   z-index: 997;
   padding: 40px;
}

.header .logo {
   position: relative;
   display: inline-flex;
}

.header .logo a {
   position: relative;
   z-index: 998;
}

.header .logo:after {
   content: "";
   position: absolute;
   width: 498.009765625px;
   height: 202.826171875px;
   top: -140.45px;
   left: -185.62px;
   background: radial-gradient(
      50% 50% at 50% 50%,
      #ffffff 32.21%,
      rgba(255, 255, 255, 0) 100%
   );
}

.language-switcher {
   display: flex;
   align-items: center;
   font-family: sans-serif;
   font-size: 14px;
}

.language-switcher a.lang-btn {
   text-decoration: none;
   color: #000;
   padding: 4px 8px;
   transition: 0.3s ease;
}

.language-switcher a.lang-btn:hover {
   color: var(--color-secondary);
}

.language-switcher a.lang-btn.active {
   font-weight: bold;
   color: var(--color-secondary);
   pointer-events: none;
}

.header_nav a,
.header_cta a {
   color: #000;
   font-size: 1rem;
   line-height: 1rem;
   font-weight: 500;
}

.header_nav {
   border: 1px solid;
   padding: 5px 50px;
   border-radius: 2rem;
   background-color: #fff;
}

.header_Nav__menu {
   display: flex;
   align-items: center;
   list-style: none;
   gap: 3rem;
   margin-bottom: 0;
   padding: 0;
}

.header_Nav__menu a {
   padding: 0.2rem 1.75rem;
   border-radius: 14px;
}

.header_Nav__menu .menu-active a {
   color: #fff;
   background-color: var(--color-secondary);
   border: 0.5px solid #000;
}

.header .contact-link {
   display: none;
}

.header_cta {
   border: 1px solid;
   padding: 5px 25px;
   border-radius: 2rem;
   background-color: #fff;
}

.header_cta.menu-active {
   background-color: var(--color-secondary);
}

.header_cta.menu-active a {
   color: #fff;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
   width: 100%;
   height: 900px;
   position: relative;
   overflow: hidden;
   background-image: url("/img/intro-carousel/hero\ img.png");
   background-size: cover;
   background-position: right bottom;
   background-repeat: no-repeat;
}

#intro .intro-content {
   position: absolute;
   bottom: 0;
   top: 0;
   left: 0;
   right: 0;
   z-index: 10;
   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: center;
   -webkit-justify-content: center;
   -ms-flex-pack: center;
   justify-content: center;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -webkit-flex-direction: column;
   -ms-flex-direction: column;
   flex-direction: column;
   padding-left: 3rem;
}

#intro .intro-content h2 {
   color: var(--color-primary);
   margin-bottom: 30px;
   font-size: 64px;
}

#intro .intro-content .btn-get-started {
   font-size: 1.25rem;
   font-weight: 500;
   line-height: 2.25rem;
   display: inline-block;
   padding: 0.25rem 32px;
   border-radius: 30px;
   transition: 0.5s;
   margin: 10px;
   color: var(--color-background);
}

#intro .intro-content .btn-get-started {
   background: #fff;
   color: #000;
   border: 1px solid #000;
   display: inline-flex;
   justify-content: space-between;
   align-items: center;
   padding: 0.25rem 0.25rem 0.25rem 1.25rem;
   width: 237px;
}

#intro .intro-content .btn-get-started .icon {
   width: 40px;
   height: 40px;
   display: inline-flex;
   justify-content: center;
   align-items: center;
   border-radius: 50%;
   border: 1px solid;
   background-color: var(--color-secondary);
}

#intro .intro-content .btn-get-started:hover {
   background: var(--color-secondary);
   color: var(--color-background);
   border-color: var(--color-primary);
}

#intro .intro-content .btn-get-started:hover .icon {
   border-color: var(--color-primary);
   background: var(--color-background);
}

#intro #intro-carousel {
   z-index: 8;
}

#intro #intro-carousel .item {
   width: 100%;
   height: 60vh;
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   transition-property: opacity;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
   margin: 0;
   padding: 0;
   list-style: none;
}

.nav-menu ul {
   position: absolute;
   display: none;
   top: 100%;
   left: 0;
   z-index: 99;
}

.nav-menu li {
   position: relative;
   white-space: nowrap;
}

.nav-menu > li {
   float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
   display: block;
}

.nav-menu ul ul {
   top: 0;
   left: 100%;
}

.nav-menu ul li {
   min-width: 180px;
}

/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
   padding-right: 22px;
}

.sf-arrows .sf-with-ul:after {
   content: "\f107";
   position: absolute;
   right: 8px;
   font-family: FontAwesome;
   font-style: normal;
   font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
   content: "\f105";
}

/* Nav Meu Container */

#nav-menu-container {
   float: right;
   margin: 0;
   align-items: center;
}

/* Nav Meu Styling */

.nav-menu a {
   padding: 10px 8px;
   text-decoration: none;
   display: inline-block;
   color: #081e5b;
   font-weight: 700;
   font-size: 14px;
   outline: none;
}

.nav-menu li:hover > a,
.nav-menu .menu-active > a {
   color: var(--color-secondary);
}

.nav-menu > li {
   margin-left: 10px;
}

.nav-menu .menu-has-children {
   cursor: default;
}

.nav-menu .menu-has-children li button {
   cursor: pointer;
}

.nav-menu ul {
   margin: 4px 0 0 0;
   padding: 10px;
   box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
   background: var(--color-background);
}

.nav-menu ul li {
   transition: 0.3s;
}

.nav-menu ul li a {
   padding: 10px;
   color: #333;
   transition: 0.3s;
   display: block;
   font-size: 13px;
   text-transform: none;
}

.nav-menu ul li:hover > a {
   color: var(--color-secondary);
}

.nav-menu ul ul {
   margin: 0;
}

/* Mobile Nav Toggle */

#mobile-nav-toggle {
   position: fixed;
   right: 0;
   top: 0;
   z-index: 999;
   margin: 20px 20px 0 0;
   border: 0;
   background: none;
   font-size: 24px;
   display: none;
   transition: all 0.4s;
   outline: none;
   cursor: pointer;
}

#mobile-nav-toggle i {
   color: #081e5b;
}

/* Mobile Nav Styling */

#mobile-nav {
   position: fixed;
   top: 0;
   padding-top: 18px;
   bottom: 0;
   z-index: 998;
   background: rgba(52, 59, 64, 0.9);
   right: -260px;
   width: 260px;
   overflow-y: auto;
   transition: 0.4s;
}

#mobile-nav ul {
   padding: 0;
   margin: 0;
   list-style: none;
}

#mobile-nav ul li {
   position: relative;
}

#mobile-nav ul li a {
   color: var(--color-background);
   font-size: 16px;
   overflow: hidden;
   padding: 10px 22px 10px 15px;
   position: relative;
   text-decoration: none;
   width: 100%;
   display: block;
   outline: none;
}

#mobile-nav ul li a:hover {
   color: var(--color-background);
}

#mobile-nav ul li li {
   padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
   position: absolute;
   right: 0;
   z-index: 99;
   padding: 15px;
   cursor: pointer;
   color: var(--color-background);
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
   color: var(--color-secondary);
}

#mobile-nav ul .menu-item-active {
   color: var(--color-secondary);
}

#mobile-body-overly {
   width: 100%;
   height: 100%;
   z-index: 997;
   top: 0;
   left: 0;
   position: fixed;
   background: rgba(52, 59, 64, 0.9);
   display: none;
}

/* Mobile Nav body classes */

body.mobile-nav-active {
   overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
   right: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
   color: var(--color-background);
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header {
   margin-bottom: 30px;
   display: flex;
   justify-content: center;
}

.section-header h2 {
   display: inline-block;
   font-size: 30px;
   background-color: var(--color-secondary);
   color: #fff;
   text-transform: uppercase;
   border: 1px solid #000;
   padding: 0.25rem 1.5rem;
   border-radius: 4rem;
   justify-self: center;
}

.section-header p {
   padding: 0;
   margin: 0;
}

/* About Section
--------------------------------*/

#about {
   padding: 150px 0 30px 0;
   position: relative;
   overflow: visible;
}

#about > a {
   position: absolute;
   right: 2.5rem;
   bottom: -1rem;
}

#about > a:hover svg path {
   fill: var(--color-secondary);
}

#about .row {
   align-items: center;
}

#about:before {
   content: "";
   position: absolute;
   top: 0;
   width: 100%;
   height: 900px;
   background-image: url("/img/intro-carousel/hero\ img.png");
   background-repeat: no-repeat;
   background-size: cover;
   background-position: right bottom;
   transform: scaleY(-1);
}

#about:after {
   content: "";
   position: absolute;
   top: 0;
   width: 100%;
   height: 900px;
   background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      var(--color-background) 100%
   );
}

#about .about-img {
   background-image: url("/img/about/about-bg.png");
   background-size: contain;
   background-position: center;
   background-repeat: no-repeat;
   z-index: 1;

   position: relative;
}

#about .about-img .main-img {
   max-width: 100%;
}

#about .icon {
   position: absolute;
}

.html_icon {
   width: 19%;
   top: 12%;
   left: 56%;
}

.css_icon {
   width: 16%;
   top: 1%;
   left: 40%;
}

.brackets_icon {
   width: 16%;
   top: 26.5%;
   left: 36.5%;
}

.selfClosed_icon {
   width: 14%;
   top: 16%;
   left: 16%;
}

.php_icon {
   width: 16%;
   top: 39%;
   left: 17%;
}

#about .content {
   z-index: 1;
}

#about .content h2 {
   color: var(--color-primary);
   font-weight: 500;
   font-size: 30px;
   line-height: 64px;
}

#about .content h3 {
   font-family: "Montserrat";
   color: var(--color-primary);
   font-weight: 500;
   font-size: 32px;
   line-height: 48px;
}

#about .content p {
   line-height: 26px;
}

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

#about .content li span {
   padding-top: 2px;
}

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

#about .content li {
   padding-bottom: 10px;
   display: flex;
   gap: 1.5rem;
   font-weight: 500;
   font-size: 1.25rem;
   line-height: 30px;
   margin-bottom: 2rem;
}

#about .content li:last-child {
   margin-bottom: 0;
}

/* Services Section
--------------------------------*/

#services {
   padding: 150px 0 0 0;
}

#services ul {
   font-size: 1.25rem;
}

.header_num {
   font-size: 128px;
   color: #62b1f6;
   margin-bottom: 13rem;
   -webkit-text-stroke: 1px black;
}

.services_crm__img,
.services_sla__img,
.services_dialer__img {
   position: relative;
   overflow: visible;
}

.services_crm__img .crm_img,
.services_website__img .website_img {
   position: absolute;
   top: 7%;
   left: 8%;
}

.letter {
   position: absolute;
}

.letter_c {
   top: 46%;
   left: 8%;
}

.letter_r {
   top: 53.1%;
   left: 22.9%;
}

.letter_m {
   top: 61%;
   left: 39.5%;
}

.services_sla,
.services_dialer {
   margin-bottom: 13rem;
}

.services_sla .header_num,
.services_dialer .header_num {
   text-align: end;
}

.services_sla__img .background,
.services_dialer__img .background {
   position: absolute;
   bottom: -13rem;
   right: 0;
}

.services_sla__img .sla_img,
.services_dialer__img .dialer_img {
   position: absolute;
   top: 11%;
   left: -11%;
}

.services_dialer__img .dialer_img {
   -webkit-transform: scaleX(-1);
   transform: scaleX(-1);
   top: 5%;
}

.gear {
   position: absolute;
}

.small-gear {
   top: -1%;
   left: 25%;
}

.large-gear {
   top: 10.4%;
   left: -9%;
}

/* Clients Section
--------------------------------*/

#clients,
#toolkit {
   padding: 30px 0;
}

#clients .owl-stage {
   display: flex;
   align-items: center;
   gap: 1rem;
}

#clients img {
   max-width: 100%;
   opacity: 0.5;
   filter: grayscale(100);
   transition: 0.3s;
   padding: 15px 0;
}

#clients .rr-logo {
   margin: auto;
   width: 137px;
}

owl-item {

}

#clients img:hover,
#toolkit img:hover {
   opacity: 1;
   filter: grayscale(0);
}

#clients .owl-nav,
#clients .owl-dots {
   margin-top: 5px;
   text-align: center;
}

#clients .owl-dot {
   display: inline-block;
   margin: 0 5px;
   width: 12px;
   height: 12px;
   border-radius: 50%;
   background-color: #ddd;
}

#clients .owl-dot.active {
   background-color: var(--color-secondary);
}

/* Our Portfolio Section
--------------------------------*/

#portfolio {
   background: var(--color-background);
   padding: 30px 0;
}

#portfolio .portfolio-overlay {
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 100%;
   opacity: 1;
   transition: all ease-in-out 0.4s;
   background: rgba(13, 42, 85, 0.2);
}

#portfolio .portfolio-item {
   overflow: hidden;
   position: relative;
   padding: 0;
   vertical-align: middle;
   text-align: center;
   margin: 7.5px 0;
}

#portfolio .portfolio-item h2 {
   color: var(--color-background);
   font-size: 24px;
   margin: 0;
   text-transform: capitalize;
   font-weight: 700;
}

#portfolio .portfolio-item img {
   max-width: 100%;
   height: auto;
   aspect-ratio: 16 / 9;
   object-fit: cover;
   transition: all ease-in-out 0.4s;
}

#portfolio .portfolio-item:hover img {
   -webkit-transform: scale(1.1);
   transform: scale(1.1);
}

#portfolio .portfolio-item:hover .portfolio-overlay {
   opacity: 1;
   background: rgb(13, 42, 85, 0.7);
}

#portfolio .portfolio-info {
   position: absolute;
   top: 50%;
   left: 50%;
   -webkit-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
}

/* Testimonials Section
--------------------------------*/

#testimonials {
   padding: 30px 0;
}

#testimonials .testimonial-item {
   box-sizing: content-box;
   padding: 30px 30px 0 30px;
   margin: 30px 15px;
   text-align: center;
   min-height: 350px;
   box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}

#testimonials .testimonial-item .testimonial-img {
   width: 90px;
   border-radius: 50%;
   border: 4px solid var(--color-background);
   margin: 0 auto;
}

#testimonials .testimonial-item h3 {
   font-size: 18px;
   font-weight: bold;
   margin: 10px 0 5px 0;
   color: var(--color-primary);
}

#testimonials .testimonial-item h4 {
   font-size: 14px;
   color: #081e5b;
   margin: 0;
}

#testimonials .testimonial-item .quote-sign-left {
   margin-top: -15px;
   padding-right: 10px;
   display: inline-block;
   width: 37px;
}

#testimonials .testimonial-item .quote-sign-right {
   margin-bottom: -15px;
   padding-left: 10px;
   display: inline-block;
   max-width: 100%;
   width: 37px;
}

#testimonials .testimonial-item p {
   font-style: italic;
   margin: 0 auto 15px auto;
}

#testimonials .owl-nav,
#testimonials .owl-dots {
   margin-top: 5px;
   text-align: center;
}

#testimonials .owl-dot {
   display: inline-block;
   margin: 0 5px;
   width: 12px;
   height: 12px;
   border-radius: 50%;
   background-color: #ddd;
}

#testimonials .owl-dot.active {
   background-color: var(--color-secondary);
}

/* Call To Action Section
--------------------------------*/

#call-to-action {
   background: #081e5b;
   background-size: cover;
   padding: 40px 0;
   position: relative;
}

#call-to-action::before {
   background-color: rgba(255, 255, 255, 0.2);
}

#call-to-action .cta-title {
   color: var(--color-background);
   font-size: 28px;
   z-index: 9;
}

#call-to-action .cta-text {
   color: var(--color-background);
   z-index: 9;
}

#call-to-action .cta-btn-container {
   z-index: 9;
}

#call-to-action .cta-btn {
   font-weight: 700;
   font-size: 15px;
   letter-spacing: 1px;
   display: inline-block;
   padding: 15px 32px;
   border-radius: 30px;
   transition: 0.5s;
   margin: 10px;
   border: 3px solid var(--color-background);
   color: var(--color-background);
   z-index: 9;
}

#call-to-action .cta-btn:hover {
   background: var(--color-secondary);
   border: 3px solid var(--color-secondary);
}

/* Highlights Section
--------------------------------*/

#highlights .highlight {
   box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
}

/* Our Team Section
--------------------------------*/

#team {
   background: var(--color-background);
   padding: 30px 0 0 0;
}

#team .member {
   text-align: center;
   margin-bottom: 20px;
}

#team .member .pic {
   overflow: hidden;
   text-align: center;
}

#team .member .pic img {
   max-width: 100%;
}

#team .member .details {
   background: var(--color-secondary);
   color: var(--color-background);
   padding: 15px;
   border-radius: 0 0 3px 3px;
}

#team .member h4 {
   font-weight: 700;
   margin-bottom: 2px;
   font-size: 18px;
}

#team .member span {
   font-style: italic;
   display: block;
   font-size: 13px;
}

#team .member .social {
   margin-top: 5px;
}

#team .member .social a {
   color: var(--color-background);
}

#team .member .social i {
   font-size: 16px;
   margin: 0 2px;
}

/* Contact Section
--------------------------------*/

#contact {
   padding: 60px 0;
}

.contact-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
   margin-top: 60px;
}

.contact-img {
   display: flex;
   align-items: center;
   width: min(600px, 100%);
   height: 100%;
   overflow: hidden;
   position: relative;
   border-radius: 0 1.25rem 1.25rem 0;
}

.contact-img img {
   object-fit: cover;
   height: 100%;
   transform: translateX(-10%);
}

.contact-img:after {
   content: "";
   width: 100%;
   height: 100%;
   background: linear-gradient(
      270deg,
      rgba(255, 250, 244, 0) 0%,
      var(--color-background) 100%
   );
   position: absolute;
   top: 0;
   left: 0;
}

.contact-info {
   display: flex;
   flex-direction: column;
   gap: 30px;
}

.contact-card {
   background: #ffffff;
   padding: 25px;
   text-align: center;
   transition: all 0.3s ease;
   box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
}

.contact-card:hover {
   box-shadow: rgba(73, 78, 92, 0.15) 0px 0px 30px;
   transform: translateY(-10px);
}

.contact-icon {
   width: 50px;
   height: 50px;
   margin: 0 auto 7px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 50px;
}

.contact-label {
   margin-bottom: 8px;
}

.contact-form {
   position: relative;
   background: var(--color-background);
   padding: 40px;
   box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
}

#contact .contact-form #sendmessage {
   color: var(--color-secondary);
   border: 1px solid var(--color-secondary);
   display: none;
   text-align: center;
   padding: 15px;
   font-weight: 600;
   margin-bottom: 15px;
   position: absolute;
   background-color: rgba(255, 255, 255, 0.6);
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

#contact .contact-form #errormessage {
   color: red;
   display: none;
   border: 1px solid red;
   text-align: center;
   padding: 15px;
   font-weight: 600;
   margin-bottom: 15px;
}

#contact .contact-form #sendmessage.show,
#contact .contact-form #errormessage.show,
#contact .contact-form .show {
   display: block;
}

#contact .contact-form .validation {
   color: red;
   display: none;
   margin: 0 0 20px;
   font-weight: 400;
   font-size: 13px;
}
.form-title {
   margin-bottom: 60px;
   text-align: center;
}

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

.form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
}

.form-label {
   display: block;
   font-size: 0.9rem;
   font-weight: 500;
   color: #374151;
   margin-bottom: 8px;
}

.form-input {
   width: 100%;
   padding: 12px 16px;
   border: 1px solid #d1d5db;
   border-radius: 8px;
   font-size: 1rem;
   transition: all 0.3s ease;
   background: #ffffff;
}

.form-input:focus {
   outline: none;
   border-color: #667eea;
   box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-select {
   width: 100%;
   padding: 13.5px 16px;
   border: 1px solid #d1d5db;
   border-radius: 8px;
   font-size: 1rem;
   background: #ffffff;
   cursor: pointer;
   transition: all 0.3s ease;
}

.form-select:focus {
   outline: none;
   border-color: #667eea;
   box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
   width: 100%;
   padding: 12px 16px;
   border: 1px solid #d1d5db;
   font-size: 1rem;
   resize: vertical;
   min-height: 120px;
   font-family: inherit;
   transition: all 0.3s ease;
   resize: none;
}

.form-textarea:focus {
   outline: none;
   border-color: #667eea;
   box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

#contact .contact-form button[type="submit"] {
   background: var(--color-secondary);
   border: 0;
   border-radius: 30px;
   padding: 15px 32px;
   color: var(--color-background);
   transition: 0.4s;
   cursor: pointer;
}

#contact .contact-form button[type="submit"]:hover {
   background: #081e5b;
   transform: translateY(-2px);
   box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

#contact .contact-form button[type="submit"].loading {
   position: relative;
   color: transparent !important;
   pointer-events: none;
}

#contact .contact-form button[type="submit"].loading::after {
   content: "";
   position: absolute;
   top: 50%;
   left: 50%;
   width: 18px;
   height: 18px;
   margin: -9px 0 0 -9px;
   border: 2px solid #fff;
   border-top-color: transparent;
   border-radius: 50%;
   animation: spin 0.8s linear infinite;
}

@keyframes spin {
   to {
      transform: rotate(360deg);
   }
}

#contact .contact-form button[type="submit"].success {
   background: #28a745; /* green */
   color: #fff !important;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
   background: #f2f5f8;
   padding: 0 0 30px 0;
}

#footer .footer-about {
   width: 50%;
   font-size: 1.25rem;
}

#footer .footer-links h3 {
   font-weight: 600;
   margin-bottom: 3rem;
}

#footer .footer-links ul {
   list-style: none;
   padding-left: 0;
}

#footer .footer-links li {
   margin: 1rem 0;
   font-size: 1.25rem;
}

#footer .copyright {
   text-align: center;
   padding-top: 30px;
   font-size: 14px;
}

#footer .credits {
   text-align: center;
   font-size: 13px;
   color: #081e5b;
}

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

@media (min-width: 768px) {
   #contact .contact-address,
   #contact .contact-phone,
   #contact .contact-email {
      padding: 20px 0;
   }

   #contact .contact-phone {
      /* border-left: 1px solid #e9e9e9; */
      border-right: 1px solid #e9e9e9;
   }
}

@media (min-width: 769px) {
   #call-to-action .cta-btn-container {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
      justify-content: flex-end;
   }
}

@media (max-width: 768px) {
   .header {
      padding: 20px 0;
   }

   #mobile-nav {
      border-radius: 0;
   }

   .header .header_cta {
      display: none;
   }

   .header .contact-link {
      display: block;
   }

   #header #logo h1 {
      font-size: 34px;
   }

   #header #logo img {
      max-height: 40px;
   }

   #nav-menu-container {
      display: none;
   }

   .language-container {
      height: 40px;
      position: relative;
   }
   .language-container::after {
      content: "";
      position: absolute;
      height: 100%;
      border: 1px solid #e9e9e9;
      right: -7px;
   }

   #mobile-nav-toggle {
      display: inline;
   }

   #about .about-img {
      height: auto;
   }

   #about .about-img img {
      margin-left: 0;
      padding-bottom: 30px;
   }

   #services .box .description {
      margin-left: 0;
      padding-inline-start: 0;
   }
   .contact-grid {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .form-row {
      grid-template-columns: 1fr;
      gap: 15px;
   }

   .section-title {
      font-size: 2rem;
   }

   .contact-section {
      padding: 60px 20px;
   }

   .contact-form {
      padding: 30px 20px;
   }

   .contact-img {
      order: -1;
   }

   #footer .footer-about {
      width: 100%;
   }
}

@media (max-width: 768px) {
   #intro .intro-content h2 {
      font-size: 34px;
   }

   #services .box .box {
      margin-bottom: 20px;
   }

   #services .box .icon {
      float: none;
      text-align: center;
      padding-bottom: 15px;
   }

   #services .box h4,
   #services .box p {
      margin-left: 0;
      text-align: center;
   }

   #services .row:not(:last-child) {
      margin-bottom: 13rem;
   }

   #services {
      overflow-x: hidden;
   }

   .header_num,
   .services_sla,
   .services_dialer {
      margin-bottom: 1rem;
   }

   .services_crm__img,
   .services_website__img {
      order: -1;
   }

   .services_dialer__img,
   .services_sla__img {
      margin-bottom: 20rem;
   }

   .services_sla__img .background,
   .services_dialer__img .background {
      bottom: -22rem;
   }

   .services_dialer__img .dialer_img {
      top: unset;
      bottom: -300px;
   }

   #testimonials .testimonial-item {
      margin: 30px 10px;
   }
}

@media (max-width: 576px) {
   #contact #google-map {
      margin-top: 20px;
   }

   .section-title {
      font-size: 1.75rem;
   }

   .contact-card {
      padding: 20px;
   }
}
