 /*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
 body {
   font-family: "Open Sans", sans-serif;
   color: #444444;
 }



 a {
   color: #2487ce;
   text-decoration: none;
 }

 a:hover {
   color: #469fdf;
   text-decoration: none;
 }

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

 /*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
 .back-to-top {
   position: fixed;
   visibility: hidden;
   opacity: 0;
   left: 15px;
   bottom: 15px;
   z-index: 996;
   background: #2487ce;
   width: 40px;
   height: 40px;
   border-radius: 4px;
   transition: all 0.4s;
 }

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

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

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


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

 /*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
 #header {
   transition: all 0.5s;
   background: #fff;
   z-index: 997;
   padding: 15px 0;
   border-bottom: 1px solid #e6f2fb;
 }

 #header.header-scrolled {
   border-color: #fff;
   box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
 }

 #header .logo {
   font-size: 28px;
   margin: 0;
   padding: 0;
   line-height: 1;
   font-weight: 300;
   letter-spacing: 0.5px;
   font-family: Arial, Helvetica, sans-serif;
   ;
 }

 #header .logo a {
   color: #16507b;
 }

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

 @media (max-width: 992px) {
   #header .logo {
     font-size: 28px;
   }
 }

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

 .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: 10px 0 10px 30px;
   font-size: 25px;
   color: #16507b;
   white-space: nowrap;
   transition: 0.3s;
   font-weight: 700;
 }

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

 }

 .navbar a:hover,
 .navbar .active,
 .navbar .active:focus,
 .navbar li:hover>a {
   color: #2487ce;
 }

 .navbar .getstarted,
 .navbar .getstarted:focus {
   background: #2487ce;
   padding: 8px 20px;
   margin-left: 30px;
   border-radius: 4px;
   color: #fff;
 }

 .navbar .getstarted:hover,
 .navbar .getstarted:focus:hover {
   color: #fff;
   background: #3194db;
 }




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

 .mobile-nav-toggle.bi-x {
   color: #fff;
 }

 @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(10, 38, 58, 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;
   background-color: #fff;
   overflow-y: auto;
   transition: 0.3s;
 }

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

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

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

 /*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
 #hero {
   width: 100%;
   height: 100vh;
   position: relative;
   background: url("../img/hero-bg.jpg") top center;
   background-size: cover;
   position: relative;
 }

 #hero:before {
   content: "";
   background: linear-gradient(to right, rgba(242, 241, 241, 0.2), rgba(0, 0, 0, 0.8));
   position: absolute;
   bottom: 0;
   top: 0;
   left: 0;
   right: 0;
 }

 #hero .container {
   padding-top: 80px;
 }



 #hero h1 {
   margin: 0;
   font-weight: 500;
   line-height: 72px;
   color: #fff;
   font-family: Arial, Helvetica, sans-serif;
   letter-spacing: 1px;
 }


 #hero .btn-get-started {
   font-family: Arial, Helvetica, sans-serif;
   font-weight: 500;
   font-size: 25px;
   letter-spacing: 0.5px;
   display: inline-block;
   padding: 14px 50px;
   border-radius: 5px;
   transition: 0.5s;
   margin-top: 30px;
   color: #fff;
   background: #2487ce;
 }

 #hero .btn-get-started:hover {
   background: #3194db;
 }

 #hero .icon-boxes {
   margin-top: 100px;
 }

 #hero .icon-box {
   padding: 50px 30px;
   position: relative;
   overflow: hidden;
   background: rgba(36, 135, 206, 0.5);
   box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
   transition: all 0.3s ease-in-out;
   border-radius: 8px;
   z-index: 1;
 }

 #hero .icon-box .title {
   font-weight: 700;
   margin-bottom: 15px;
   font-size: 30px;
 }

 #hero .icon-box .title {
   color: #fff;
   transition: 0.3s;
 }

 #hero .icon-box .description {
   font-size: 15px;
   line-height: 28px;
   margin-bottom: 0;
   color: #fff;
 }



 #hero .icon-box:hover {
   transform: scale(1.08);
 }

 #hero .icon-box:hover .title a {
   color: #fff;
 }

 @media (min-width: 1024px) {
   #hero {
     background-attachment: fixed;
   }
 }

 @media (max-height: 800px) {
   #hero {
     height: auto;
   }
 }

 @media (max-width: 992px) {
   #hero {
     height: auto;
   }

   #hero p {
     font-size: 28px;
     line-height: 36px;
   }

   #hero p {
     font-size: 18px;
     line-height: 24px;
   }
 }

 /*  */

 #hero {
   width: 100%;
   height: 100vh;
   position: relative;
   background: url("../img/hero-bg.jpg") top center;
   background-size: cover;
   position: relative;
 }

 #hero:before {
   content: "";
   background: linear-gradient(to right, rgba(242, 241, 241, 0.2), rgba(0, 0, 0, 0.8));
   position: absolute;
   bottom: 0;
   top: 0;
   left: 0;
   right: 0;
 }

 #hero .container {
   padding-top: 80px;
 }



 #hero h1 {
   margin: 0;
   font-weight: 500;
   line-height: 72px;
   color: #fff;
   font-family: Arial, Helvetica, sans-serif;
   letter-spacing: 1px;
 }


 #hero .btn-get-started {
   font-family: Arial, Helvetica, sans-serif;
   font-weight: 500;
   font-size: 25px;
   letter-spacing: 0.5px;
   display: inline-block;
   padding: 14px 50px;
   border-radius: 5px;
   transition: 0.5s;
   margin-top: 30px;
   color: #fff;
   background: #2487ce;
 }

 #hero .btn-get-started:hover {
   background: #3194db;
 }

 #hero .icon-boxes {
   margin-top: 100px;
 }

 #hero .icon-box {
   padding: 50px 30px;
   position: relative;
   overflow: hidden;
   background: rgba(36, 135, 206, 0.5);
   box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
   transition: all 0.3s ease-in-out;
   border-radius: 8px;
   z-index: 1;
 }

 #hero .icon-box .title {
   font-weight: 700;
   margin-bottom: 15px;
   font-size: 30px;
 }

 #hero .icon-box .title {
   color: #fff;
   transition: 0.3s;
 }

 #hero .icon-box .description {
   font-size: 15px;
   line-height: 28px;
   margin-bottom: 0;
   color: #fff;
 }



 #hero .icon-box:hover {
   transform: scale(1.08);
 }

 #hero .icon-box:hover .title a {
   color: #fff;
 }

 @media (min-width: 1024px) {
   #hero {
     background-attachment: fixed;
   }
 }

 @media (max-height: 800px) {
   #hero {
     height: auto;
   }
 }

 @media (max-width: 992px) {
   #hero {
     height: auto;
   }

   #hero p {
     font-size: 28px;
     line-height: 36px;
   }

   #hero p {
     font-size: 18px;
     line-height: 24px;
   }
 }

 /*  */

 #hero {
   width: 100%;
   height: 100vh;
   position: relative;
   background: url("../img/hero-bg.jpg") top center;
   background-size: cover;
   position: relative;
 }

 #hero:before {
   content: "";
   background: linear-gradient(to right, rgba(242, 241, 241, 0.2), rgba(0, 0, 0, 0.8));
   position: absolute;
   bottom: 0;
   top: 0;
   left: 0;
   right: 0;
 }

 #hero .container {
   padding-top: 80px;
 }



 #hero h1 {
   margin: 0;
   font-weight: 500;
   line-height: 72px;
   color: #fff;
   font-family: Arial, Helvetica, sans-serif;
   letter-spacing: 1px;
 }


 #hero .btn-get-started {
   font-family: Arial, Helvetica, sans-serif;
   font-weight: 500;
   font-size: 25px;
   letter-spacing: 0.5px;
   display: inline-block;
   padding: 14px 50px;
   border-radius: 5px;
   transition: 0.5s;
   margin-top: 30px;
   color: #fff;
   background: #2487ce;
 }

 #hero .btn-get-started:hover {
   background: #3194db;
 }

 #hero .icon-boxes {
   margin-top: 100px;
 }

 #hero .icon-box {
   padding: 50px 30px;
   position: relative;
   overflow: hidden;
   background: rgba(36, 135, 206, 0.5);
   box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
   transition: all 0.3s ease-in-out;
   border-radius: 8px;
   z-index: 1;
 }

 #hero .icon-box .title {
   font-weight: 700;
   margin-bottom: 15px;
   font-size: 30px;
 }

 #hero .icon-box .title {
   color: #fff;
   transition: 0.3s;
 }

 #hero .icon-box .description {
   font-size: 15px;
   line-height: 28px;
   margin-bottom: 0;
   color: #fff;
 }



 #hero .icon-box:hover {
   transform: scale(1.08);
 }

 #hero .icon-box:hover .title a {
   color: #fff;
 }

 @media (min-width: 1024px) {
   #hero {
     background-attachment: fixed;
   }
 }

 @media (max-height: 800px) {
   #hero {
     height: auto;
   }
 }

 @media (max-width: 992px) {
   #hero {
     height: auto;
   }

   #hero p {
     font-size: 28px;
     line-height: 36px;
   }

   #hero p {
     font-size: 18px;
     line-height: 24px;
   }
 }

 /* installation */
 .install {
   width: 100%;
   height: 100vh;
   position: relative;
   background: url("../img/garage-door-installation.jpg") top center;
   background-size: cover;
   position: relative;
 }

 .install:before {
   content: "";
   background: linear-gradient(to right, rgba(242, 241, 241, 0.2), rgba(0, 0, 0, 0.8));
   position: absolute;
   bottom: 0;
   top: 0;
   left: 0;
   right: 0;
 }

 .install .container {
   padding-top: 80px;
 }



 .install h1 {
   margin: 0;
   font-weight: 500;
   line-height: 72px;
   color: #fff;
   font-family: Arial, Helvetica, sans-serif;
   letter-spacing: 1px;
 }


 .install .btn-get-started {
   font-family: Arial, Helvetica, sans-serif;
   font-weight: 500;
   font-size: 25px;
   letter-spacing: 0.5px;
   display: inline-block;
   padding: 14px 50px;
   border-radius: 5px;
   transition: 0.5s;
   margin-top: 30px;
   color: #fff;
   background: #2487ce;
 }

 .install .btn-get-started:hover {
   background: #3194db;
 }

 .install .icon-boxes {
   margin-top: 100px;
 }

 .install .icon-box {
   padding: 50px 30px;
   position: relative;
   overflow: hidden;
   background: rgba(36, 135, 206, 0.5);
   box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
   transition: all 0.3s ease-in-out;
   border-radius: 8px;
   z-index: 1;
 }

 .install .icon-box .title {
   font-weight: 700;
   margin-bottom: 15px;
   font-size: 30px;
 }

 .install .icon-box .title {
   color: #fff;
   transition: 0.3s;
 }

 .install .icon-box .description {
   font-size: 15px;
   line-height: 28px;
   margin-bottom: 0;
   color: #fff;
 }



 .install .icon-box:hover {
   transform: scale(1.08);
 }

 .install .icon-box:hover .title a {
   color: #fff;
 }

 @media (min-width: 1024px) {
   .install {
     background-attachment: fixed;
   }
 }

 @media (max-height: 800px) {
   .install {
     height: auto;
   }
 }

 @media (max-width: 992px) {
   .install {
     height: auto;
   }

   .install p {
     font-size: 28px;
     line-height: 36px;
   }

   .install p {
     font-size: 18px;
     line-height: 24px;
   }
 }

 /* repair */

 .repair {
   width: 100%;
   height: 100vh;
   position: relative;
   background: url("../img/garage-repair.jpg") top center;
   background-size: cover;
   position: relative;
 }

 .repair:before {
   content: "";
   background: linear-gradient(to right, rgba(242, 241, 241, 0.2), rgba(0, 0, 0, 0.8));
   position: absolute;
   bottom: 0;
   top: 0;
   left: 0;
   right: 0;
 }

 .repair .container {
   padding-top: 80px;
 }



 .repair h1 {
   margin: 0;
   font-weight: 500;
   line-height: 72px;
   color: #fff;
   font-family: Arial, Helvetica, sans-serif;
   letter-spacing: 1px;
 }


 .repair .btn-get-started {
   font-family: Arial, Helvetica, sans-serif;
   font-weight: 500;
   font-size: 25px;
   letter-spacing: 0.5px;
   display: inline-block;
   padding: 14px 50px;
   border-radius: 5px;
   transition: 0.5s;
   margin-top: 30px;
   color: #fff;
   background: #2487ce;
 }

 .repair .btn-get-started:hover {
   background: #3194db;
 }

 .repair .icon-boxes {
   margin-top: 100px;
 }

 .repair .icon-box {
   padding: 50px 30px;
   position: relative;
   overflow: hidden;
   background: rgba(36, 135, 206, 0.5);
   box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
   transition: all 0.3s ease-in-out;
   border-radius: 8px;
   z-index: 1;
 }

 .repair .icon-box .title {
   font-weight: 700;
   margin-bottom: 15px;
   font-size: 30px;
 }

 .repair .icon-box .title {
   color: #fff;
   transition: 0.3s;
 }

 .repair .icon-box .description {
   font-size: 15px;
   line-height: 28px;
   margin-bottom: 0;
   color: #fff;
 }



 .repair .icon-box:hover {
   transform: scale(1.08);
 }

 .repair .icon-box:hover .title a {
   color: #fff;
 }

 @media (min-width: 1024px) {
   .repair {
     background-attachment: fixed;
   }
 }

 @media (max-height: 800px) {
   .repair {
     height: auto;
   }
 }

 @media (max-width: 992px) {
   .repair {
     height: auto;
   }

   .repair p {
     font-size: 28px;
     line-height: 36px;
   }

   .repair p {
     font-size: 18px;
     line-height: 24px;
   }
 }

 /* opener */

 .opener {
   width: 100%;
   height: 100vh;
   position: relative;
   background: url("../img/wall-mount-opener.webp") top center;
   background-size: cover;
   position: relative;
 }

 .opener:before {
   content: "";
   background: linear-gradient(to right, rgba(242, 241, 241, 0.2), rgba(0, 0, 0, 0.8));
   position: absolute;
   bottom: 0;
   top: 0;
   left: 0;
   right: 0;
 }

 .opener .container {
   padding-top: 80px;
 }



 .opener h1 {
   margin: 0;
   font-weight: 500;
   line-height: 72px;
   color: #fff;
   font-family: Arial, Helvetica, sans-serif;
   letter-spacing: 1px;
 }


 .opener .btn-get-started {
   font-family: Arial, Helvetica, sans-serif;
   font-weight: 500;
   font-size: 25px;
   letter-spacing: 0.5px;
   display: inline-block;
   padding: 14px 50px;
   border-radius: 5px;
   transition: 0.5s;
   margin-top: 30px;
   color: #fff;
   background: #2487ce;
 }

 .opener .btn-get-started:hover {
   background: #3194db;
 }

 #hero .icon-boxes {
   margin-top: 100px;
 }

 .opener .icon-box {
   padding: 50px 30px;
   position: relative;
   overflow: hidden;
   background: rgba(36, 135, 206, 0.5);
   box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
   transition: all 0.3s ease-in-out;
   border-radius: 8px;
   z-index: 1;
 }

 .opener .icon-box .title {
   font-weight: 700;
   margin-bottom: 15px;
   font-size: 30px;
 }

 .opener .icon-box .title {
   color: #fff;
   transition: 0.3s;
 }

 .opener .icon-box .description {
   font-size: 15px;
   line-height: 28px;
   margin-bottom: 0;
   color: #fff;
 }



 .opener .icon-box:hover {
   transform: scale(1.08);
 }

 .opener .icon-box:hover .title a {
   color: #fff;
 }

 @media (min-width: 1024px) {
   .opener {
     background-attachment: fixed;
   }
 }

 @media (max-height: 800px) {
   .opener {
     height: auto;
   }
 }

 @media (max-width: 992px) {
   .opener {
     height: auto;
   }

   .opener p {
     font-size: 28px;
     line-height: 36px;
   }

   .opener p {
     font-size: 18px;
     line-height: 24px;
   }
 }

 /* spring */
 .spring {
   width: 100%;
   height: 100vh;
   position: relative;
   background: url("../img/spring-repairr.jpg") top center;
   background-size: cover;
   position: relative;
 }

 .spring:before {
   content: "";
   background: linear-gradient(to right, rgba(242, 241, 241, 0.2), rgba(0, 0, 0, 0.8));
   position: absolute;
   bottom: 0;
   top: 0;
   left: 0;
   right: 0;
 }

 .spring .container {
   padding-top: 80px;
 }



 .spring h1 {
   margin: 0;
   font-weight: 500;
   line-height: 72px;
   color: #fff;
   font-family: Arial, Helvetica, sans-serif;
   letter-spacing: 1px;
 }


 .spring .btn-get-started {
   font-family: Arial, Helvetica, sans-serif;
   font-weight: 500;
   font-size: 25px;
   letter-spacing: 0.5px;
   display: inline-block;
   padding: 14px 50px;
   border-radius: 5px;
   transition: 0.5s;
   margin-top: 30px;
   color: #fff;
   background: #2487ce;
 }

 .spring .btn-get-started:hover {
   background: #3194db;
 }

 #hero .icon-boxes {
   margin-top: 100px;
 }

 .spring .icon-box {
   padding: 50px 30px;
   position: relative;
   overflow: hidden;
   background: rgba(36, 135, 206, 0.5);
   box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
   transition: all 0.3s ease-in-out;
   border-radius: 8px;
   z-index: 1;
 }

 .spring .icon-box .title {
   font-weight: 700;
   margin-bottom: 15px;
   font-size: 30px;
 }

 .spring .icon-box .title {
   color: #fff;
   transition: 0.3s;
 }

 .spring .icon-box .description {
   font-size: 15px;
   line-height: 28px;
   margin-bottom: 0;
   color: #fff;
 }



 .spring .icon-box:hover {
   transform: scale(1.08);
 }

 .spring .icon-box:hover .title a {
   color: #fff;
 }

 @media (min-width: 1024px) {
   .spring {
     background-attachment: fixed;
   }
 }

 @media (max-height: 800px) {
   .opener {
     height: auto;
   }
 }

 @media (max-width: 992px) {
   .spring {
     height: auto;
   }

   .spring p {
     font-size: 28px;
     line-height: 36px;
   }

   .spring p {
     font-size: 18px;
     line-height: 24px;
   }
 }

 /*  */
 .head {

   font-weight: 900;
   text-align: center;
   font-size: 30px;
   font-family: Hack, sans-serif;
   text-transform: uppercase;
   background: linear-gradient(90deg, #fff, #fff, #fff);
   letter-spacing: 5px;
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
   background-repeat: no-repeat;
   background-size: 80%;
   animation: shine 5s linear infinite;

 }

 @keyframes shine {
   0% {
     background-position-x: -500%;
   }

   100% {
     background-position-x: 500%;
   }
 }



 .head2 {

   font-weight: 900;
   text-align: start;
   font-size: 40px;
   font-family: Hack, sans-serif;
   text-transform: uppercase;
   background: linear-gradient(90deg, #000, #000, #000);
   letter-spacing: 5px;
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
   background-repeat: no-repeat;
   background-size: 80%;
   animation: shine 5s linear infinite;

 }

 @keyframes shine {
   0% {
     background-position-x: -500%;
   }

   100% {
     background-position-x: 500%;
   }
 }


 .textt {
   line-height: 33px;
   font-size: 18px;
   letter-spacing: 1px;
   text-align: center;
   font-weight: 400;
   color: #fff;
 }



 .btn2 {
   position: relative;
   display: inline-block;
   padding: 15px 30px;
   border: 2px solid #fefefe;
   text-transform: uppercase;
   color: #fefefe;
   text-decoration: none;
   font-weight: 600;
   font-size: 20px;
   transition: 0.3s;
 }

 .btn2::before {
   content: '';
   position: absolute;
   top: -2px;
   left: -2px;
   width: calc(100% + 4px);
   height: calc(100% - -2px);
   background-color: #212121;
   transition: 0.3s ease-out;
   transform: scaleY(1);
 }

 .btn2::after {
   content: '';
   position: absolute;
   top: -2px;
   left: -2px;
   width: calc(100% + 4px);
   height: calc(100% - 50px);
   background-color: #212121;
   transition: 0.3s ease-out;
   transform: scaleY(1);
 }

 .btn2:hover::before {
   transform: translateY(-25px);
   height: 0;
 }

 .btn2:hover::after {
   transform: scaleX(0);
   transition-delay: 0.15s;
 }

 .btn2:hover {
   border: 2px solid #fefefe;
   color: #fff;
 }

 .btn2 span {
   position: relative;
   z-index: 3;
 }

 .offer {
   text-decoration: none;
   border: none;
   background-color: transparent;
 }




 /**********BRANDS************/
 /*marquee*/
 .marquee {
   width: 100%;
   margin: 0 auto;
   overflow: hidden;
   white-space: nowrap;
   box-sizing: border-box;
   animation: marquee 50s linear infinite;
   color: #fff
 }

 .marquee:hover {
   animation-play-state: paused
 }

 /* Make it move */
 @keyframes marquee {
   0% {
     text-indent: 27.5em
   }

   100% {
     text-indent: -105em
   }
 }

 /**********End of BRANDS************/


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

 .section-bg {
   background-image: linear-gradient(to right, rgb(100, 102, 106, 0.2), rgba(102, 101, 106, 0.3)), url('../img/pattern.jpg');
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
 }

 .section-title {
   text-align: center;
   padding-bottom: 30px;
 }

 .section-title h2 {
   font-size: 32px;
   font-weight: bold;
   text-transform: uppercase;
   margin-bottom: 20px;
   padding-bottom: 0;
   color: #124265;
 }

 .section-title p {
   margin-bottom: 0;
   font-size: 14px;
   color: #124265;
 }

 /*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
 .about .content h3 {
   font-weight: 600;
   font-size: 26px;
 }

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

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

 .about .content ul li+li {
   margin-top: 10px;
 }

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

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

 .about .content .btn-learn-more {
   font-family: "Raleway", sans-serif;
   font-weight: 600;
   font-size: 25px;
   letter-spacing: 1px;
   display: inline-block;
   padding: 12px 32px;
   border-radius: 5px;
   transition: 0.3s;
   line-height: 1;
   color: #2487ce;
   animation-delay: 0.8s;
   margin-top: 6px;
   border: 2px solid #2487ce;
 }

 .about .content .btn-learn-more:hover {
   background: #2487ce;
   color: #fff;
   text-decoration: none;
 }


 @keyframes pulsate-btn {
   0% {
     transform: scale(0.6, 0.6);
     opacity: 1;
   }

   100% {
     transform: scale(1, 1);
     opacity: 0;
   }
 }

 /*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
 .testimonials .testimonials-carousel,
 .testimonials .testimonials-slider {
   overflow: hidden;
 }

 .testimonials .testimonial-item {
   box-sizing: content-box;
   text-align: center;
   min-height: 320px;
 }

 .testimonials .testimonial-item .testimonial-img {
   width: 90px;
   border-radius: 50%;
   margin: 0 auto;
 }

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

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

 .testimonials .testimonial-item .quote-icon-left,
 .testimonials .testimonial-item .quote-icon-right {
   color: #c9e3f5;
   font-size: 26px;
 }

 .testimonials .testimonial-item .quote-icon-left {
   display: inline-block;
   left: -5px;
   position: relative;
 }

 .testimonials .testimonial-item .quote-icon-right {
   display: inline-block;
   right: -5px;
   position: relative;
   top: 10px;
 }

 .testimonials .testimonial-item p {
   font-style: italic;
   margin: 0 15px 15px 15px;
   padding: 20px;
   background: #f3f9fd;
   position: relative;
   margin-bottom: 35px;
   border-radius: 6px;
 }

 .testimonials .testimonial-item p::after {
   content: "";
   width: 0;
   height: 0;
   border-top: 20px solid #f3f9fd;
   border-right: 20px solid transparent;
   border-left: 20px solid transparent;
   position: absolute;
   bottom: -20px;
   left: calc(50% - 20px);
 }

 .testimonials .swiper-pagination {
   margin-top: 20px;
   position: relative;
 }

 .testimonials .swiper-pagination .swiper-pagination-bullet {
   width: 12px;
   height: 12px;
   background-color: #fff;
   opacity: 1;
   border: 1px solid #2487ce;
 }

 .testimonials .swiper-pagination .swiper-pagination-bullet-active {
   background-color: #2487ce;
 }

 /*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
 .services .icon-box {
   text-align: center;
   padding: 70px 20px 80px 20px;
   transition: all ease-in-out 0.3s;
   background: #fff;
   box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
   width: 600px;
 }

 .services .icon-box .icon {
   margin: 0 auto;
   width: 100px;
   height: 100px;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: ease-in-out 0.3s;
   position: relative;
 }

 .services .icon-box .icon i {
   font-size: 36px;
   transition: 0.5s;
   position: relative;
 }


 .services .icon-box h4 {
   font-weight: 600;
   margin: 10px 0 15px 0;
   font-size: 22px;
 }

 .services .icon-box h4 a {
   color: #124265;
   transition: ease-in-out 0.3s;
 }

 .services .icon-box p {
   line-height: 24px;
   font-size: 14px;
   margin-bottom: 0;
 }

 .services .icon-box:hover {
   border-color: #fff;
   box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
 }



 /*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
 .cta {
   background-image: linear-gradient(to right, rgb(100, 102, 106, 0.2), rgba(102, 101, 106, 0.3)), url('../img/pattern.jpg');
   background-size: cover;
   padding: 60px 0;
 }

 .cta h3 {
   color: #000;
   font-size: 28px;
   font-weight: 700;
 }

 .cta p {
   color: #000;
 }

 .cta .cta-btn {
   font-family: "Raleway", sans-serif;
   font-weight: 600;
   font-size: 25px;
   letter-spacing: 1px;
   display: inline-block;
   padding: 10px 35px;
   border-radius: 5px;
   transition: 0.5s;
   margin-top: 10px;
   border: 2px solid #000;
   color: #000;
 }

 .cta .cta-btn:hover {
   background: #2487ce;
   color: #fff;
   border: none;
 }

 /*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
 .faq .faq-list {
   padding: 0 100px;
 }

 .faq .faq-list ul {
   padding: 0;
   list-style: none;
 }

 .faq .faq-list li+li {
   margin-top: 15px;
 }

 .faq .faq-list li {
   padding: 20px;
   background: #fff;
   border-radius: 4px;
   position: relative;
 }

 .faq .faq-list a {
   display: block;
   position: relative;
   font-family: Arial, Helvetica, sans-serif;
   ;
   font-size: 16px;
   line-height: 24px;
   font-weight: 500;
   padding: 0 30px;
   outline: none;
   cursor: pointer;
 }

 .faq .faq-list .icon-help {
   font-size: 24px;
   position: absolute;
   right: 0;
   left: 20px;
   color: #87c1ea;
 }

 .faq .faq-list .icon-show,
 .faq .faq-list .icon-close {
   font-size: 24px;
   position: absolute;
   right: 0;
   top: 0;
 }

 .faq .faq-list p {
   margin-bottom: 0;
   padding: 10px 0 0 0;
 }

 .faq .faq-list .icon-show {
   display: none;
 }

 .faq .faq-list a.collapsed {
   color: #343a40;
 }

 .faq .faq-list a.collapsed:hover {
   color: #2487ce;
 }

 .faq .faq-list a.collapsed .icon-show {
   display: inline-block;
 }

 .faq .faq-list a.collapsed .icon-close {
   display: none;
 }

 @media (max-width: 1200px) {
   .faq .faq-list {
     padding: 0;
   }
 }

 /*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
 .contact .info {
   width: 100%;
   background: #fff;
 }

 .contact .info i {
   font-size: 20px;
   color: #2487ce;
   float: left;
   width: 44px;
   height: 44px;
   background: #e3f0fa;
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 5px;
   transition: all 0.3s ease-in-out;
 }

 .contact .info h4 {
   padding: 0 0 0 60px;
   font-size: 22px;
   font-weight: 600;
   margin-bottom: 5px;
   color: #124265;
 }

 .contact .info p {
   padding: 0 0 0 60px;
   margin-bottom: 0;
   font-size: 14px;
   color: #217bbc;
 }

 .contact .info .email,
 .contact .info .phone {
   margin-top: 40px;
 }

 .contact .info .email:hover i,
 .contact .info .address:hover i,
 .contact .info .phone:hover i {
   background: #2487ce;
   color: #fff;
 }

 .contact .contact-details {
   width: 100%;
   background: #fff;
 }

 .contact .contact-details .form-group {
   padding-bottom: 8px;
 }


 .contact .contact-details input,
 .contact .contact-details textarea {
   border-radius: 0;
   box-shadow: none;
   font-size: 14px;
   border-radius: 4px;
 }

 .contact .contact-details input:focus,
 .contact .contact-details textarea:focus {
   border-color: #2487ce;
 }

 .contact .contact-details input {
   height: 44px;
 }

 .contact .contact-details textarea {
   padding: 10px 12px;
 }

 .contact .contact-details button[type=submit] {
   background: #2487ce;
   border: 0;
   padding: 10px 30px;
   color: #fff;
   transition: 0.4s;
   border-radius: 4px;
 }

 .contact .contact-details button[type=submit]:hover {
   background: #3194db;
 }

 @keyframes animate-loading {
   0% {
     transform: rotate(0deg);
   }

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

 /*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
 .breadcrumbs {
   padding: 15px 0;
   background: #f8fbfe;
   min-height: 40px;
   margin-top: 72px;
 }

 @media (max-width: 992px) {
   .breadcrumbs {
     margin-top: 58px;
   }
 }

 .breadcrumbs h2 {
   font-size: 24px;
   font-weight: 300;
 }

 .breadcrumbs ol {
   display: flex;
   flex-wrap: wrap;
   list-style: none;
   padding: 0;
   margin: 0;
   font-size: 14px;
 }

 .breadcrumbs ol li+li {
   padding-left: 10px;
 }

 .breadcrumbs ol li+li::before {
   display: inline-block;
   padding-right: 10px;
   color: #1a5e90;
   content: "/";
 }

 @media (max-width: 768px) {
   .breadcrumbs .d-flex {
     display: block !important;
   }

   .breadcrumbs ol {
     display: block;
   }

   .breadcrumbs ol li {
     display: inline-block;
   }
 }

 /*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
 #footer {
   color: #444444;
   font-size: 14px;
   background: #f8fbfe;
   box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
 }

 #footer .footer-top {
   padding: 60px 0 30px 0;
   background: #fff;
 }

 #footer .footer-top .footer-contact {
   margin-bottom: 30px;
 }

 #footer .footer-top .footer-contact h3 {
   font-size: 26px;
   margin: 0 0 10px 0;
   padding: 2px 0 2px 0;
   line-height: 1;
   font-weight: 300;
 }

 #footer .footer-top .footer-contact p {
   font-size: 14px;
   line-height: 24px;
   margin-bottom: 0;
   font-family: "Raleway", sans-serif;
   color: #777777;
 }

 #footer .footer-top h4 {
   font-size: 16px;
   font-weight: bold;
   color: #124265;
   position: relative;
   padding-bottom: 12px;
 }

 #footer .footer-top .footer-links {
   margin-bottom: 30px;
 }

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

 #footer .footer-top .footer-links ul i {
   padding-right: 2px;
   color: #2487ce;
   font-size: 18px;
   line-height: 1;
 }

 #footer .footer-top .footer-links ul li {
   padding: 10px 0;
   display: flex;
   align-items: center;
 }

 #footer .footer-top .footer-links ul li:first-child {
   padding-top: 0;
 }

 #footer .footer-top .footer-links ul a {
   color: #777777;
   transition: 0.3s;
   display: inline-block;
   line-height: 1;
 }

 #footer .footer-top .footer-links ul a:hover {
   text-decoration: none;
   color: #2487ce;
 }




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

 #footer .social-links a:hover {
   background: #3194db;
   color: #fff;
   text-decoration: none;
 }


 .info-btn {
   width: 150px;
   background-color: #3194db;
   color: #fff;
   font-weight: 700;
 }


 .btn-section {
   font-family: "Raleway", sans-serif;
   font-weight: 600;
   font-size: 25px;
   letter-spacing: 1px;
   display: inline-block;
   padding: 12px 32px;
   border-radius: 5px;
   transition: 0.3s;
   line-height: 1;
   color: #2487ce;
   animation-delay: 0.8s;
   margin-top: 6px;
   border: 2px solid #2487ce;
 }

 .btn-section:hover {
   background: #2487ce;
   color: #fff;
   text-decoration: none;
 }




 /*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
 .resume .resume-title {
   font-size: 26px;
   font-weight: 700;
   margin-top: 20px;
   margin-bottom: 20px;
   color: #45505b;
 }

 .resume .resume-item {
   padding: 0 0 20px 20px;
   margin-top: -2px;
   border-left: 2px solid #0563bb;
   position: relative;
 }

 .resume .resume-item h4 {
   line-height: 18px;
   font-size: 18px;
   font-weight: 600;
   text-transform: uppercase;
   font-family: "Poppins", sans-serif;
   color: #0563bb;
   margin-bottom: 10px;
 }

 .resume .resume-item h5 {
   font-size: 16px;
   background: #f7f8f9;
   padding: 5px 15px;
   display: inline-block;
   font-weight: 600;
   margin-bottom: 10px;
 }

 .resume .resume-item ul {
   padding-left: 20px;
 }

 .resume .resume-item ul li {
   padding-bottom: 10px;
 }

 .resume .resume-item:last-child {
   padding-bottom: 0;
 }

 .resume .resume-item::before {
   content: "";
   position: absolute;
   width: 16px;
   height: 16px;
   border-radius: 50px;
   left: -9px;
   top: 0;
   background: #fff;
   border: 2px solid #0563bb;
 }


 .spam {
   display: none;
 }