/********** Template CSS **********/
:root {
    --primary: #015FC9;
    --primary-light:rgb(5, 94, 158);
    --secondary: #0DD3F1;
    --light: #F6F7FC;
    --dark: #15233C;
    --primary-alt:#ca970b;
    --font-family-sans-serif: "Open Sans", Helvetica, Arial, sans-serif;
    --font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace;
}
body{
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    -webkit-text-size-adjust: none;
    color: #000;
    background-color: #fff;
    font-weight: 400;
    -webkit-font-smoothing: subpixel-antialiased;
    text-rendering: optimizeLegibility;
}
/* .btn-primary{
    background: var(--primary-alt);
} */

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/

.navbar {
    background-color: #ffffff;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 12vh;
    gap: 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.sidenav{
    width: 60%;
    z-index: 2;
}
.sidenav ul{
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    align-items: center;
}

.logo {
    font-size: 24px;
    width: 20%;
    padding-left: 10px;
}

.logo img{
    width: 70px;
}

.menu-button {
    font-size: 20px;
    display: none; 
    cursor: pointer;
    color: var(--primary);
    font-weight: 600;
    padding-right:10px ;
}

.close-icon{
    color: var(--primary);
    font-size: 25px;
    font-weight: 600;
    padding: 5px 20px;
    display: none;
}

.sidenav li {
    margin: 20px 0;
}

.sidenav a {
    color: #696E77;
    text-decoration: none;
    font-size: 18px;
    color: #696E77;
    font-weight: 500;
    outline: none;
}
.sidenav a:hover,.sidenav a.active {
    color: var(--primary);
}

.navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background-color: #ffffff; /* Change the background color for the sticky navbar */
}

.nav-links.sticky a {
    color: #696E77; /* Change the text color for the sticky links */
}

.drop{
    position: relative;
}

.drop-menu{
    position: absolute;
    padding: 10px;
    width: 200px;
    display: none;
    background: #FFFFFF;
}

.menu-button .drop-menu{
    right: -5px;
}

.menu-button .drop-menu a{
    color: var(--primary);
}

.drop:hover .drop-menu{
    display: block;
}

.drop-menu a{
    display: block;
    margin-bottom: 10px;
}


.content {
    padding: 20px;
    margin-top: 60px; /* Adjust as needed */
}

@media screen and (max-width: 998px) {
    .menu-button {
        display: flex;
        gap: 1rem;
        align-items: center;
    }
    .close-icon{display: block;}
    .navbar {
        justify-content: space-between;
        height: 10vh;
    }
    
    .sidenav ul {
        flex-direction: column;
        height: 100%;
        gap: 1rem;
        align-items: flex-start;
        padding-left: 20px;
    }

    .sidenav li{
        margin: 10px 0;
    }


    .sidenav {
        width: 0;
        height: 100%;
        position: fixed;
        top: 10vh;
        left: 0;
        background-color: #ffffff;
        overflow-x: hidden;
        transition: 0.3s;
        color: #696E77;
        z-index: 3000;
    }

    .logo{
        width: 100px;
    }

    .logo img{
        width: 80px;
    }

}

@media screen and (max-width: 365px) {
    .menu-button {
        padding: 0;
    }
    .logo{
        padding: 0;
    }
    .navbar{
        gap: 0;
        padding: 0;
        justify-content:none ;
    }
}





/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 50px;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-control-prev,
    .carousel-control-next {
   z-index: 0;
}
}

.page-header {
    background: url(../img/education-powerpoint-background-download-hq-116244799251tha6t1xxr.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #696E77;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--primary);
}

.facts{
    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);
}

/*** Facts ***/
@media (min-width: 992px) {
    .container.facts {
        max-width: 100% !important;
    }

    .container.facts .facts-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.facts .facts-counter {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.facts .facts-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .container.facts .facts-counter  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.facts .facts-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.facts .facts-counter  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.facts .facts-text {
    background: linear-gradient(rgba(1, 95, 201, .9), rgba(1, 95, 201, .9)), url(../img/carousel-1.jpg) center right no-repeat;
    background-size: cover;
}

.container.facts .facts-counter {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-2.jpg) center right no-repeat;
    background-size: cover;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}

.service-item a.btn {
    color: var(--primary);
}

.service-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(1, 95, 201, .9), rgba(1, 95, 201, .9)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    bottom: 0;
    opacity: 1;
}

.team-item a.btn {
    color: var(--primary);
}

.team-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Testimonial ***/
.animated.pulse {
    animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    padding: 5px;
    border: 1px dashed var(--primary);
    border-radius: 10px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 10px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}


/*** Footer ***/
.footer {
    color: #A7A8B4;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #A7A8B4;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-weight: 900;
    color: #A7A8B4;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: #A7A8B4;
    border: 1px solid#A7A8B4;
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

/* Styling google translation */

.goog-te-gadget {
    color: transparent !important;
}
/* .goog-te-gadget-simple{background-color: transparent !important; border: none !important;;}
.goog-te-gadget-icon{display:none !important;} */
#google_translate_element select {border: none;}
/* #google_translate_element div {} */
#google_translate_element span {display: none;}

/* Users Plan */
.plan-row{
    width: 100%;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    gap: 1.5rem;
}

.plan-item form{
    width: 100%;
    background: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.372);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    border-radius: 10px;
    margin-bottom: 20px;
}

.plan-item h1{
    font-size: 20px;
    font-weight: 800;
    margin-top: 20px;
}

.rate{
    font-size: 10px;
    display: flex;
    gap: .5rem;
    align-items: center;
    position: relative;
}


.rate .dash{
    font-size: 35px;
    font-weight: 600;
    color:var(--primary);
}

.seperator{
    height: 3px;
    width: 50px;
    background:var(--primary);
    margin-bottom: 10px;
    position: relative;
}


.seperator::after{
    content: "";
    width: 10px;
    height: 10px;
    background: var(--primary);
    position: absolute;
    left: 35%;
    top: -3px;
    border-radius: 50%;
    box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.526) ;
}

.rate span b{
    font-size: 15px;
    font-weight: 600;
}

.rate span strong{
    padding-right: 5px;
    font-size: 12px;
}


.plan-item button{
    border: none;
    color: white;
    background: var(--primary) !important;
    padding: 10px 20px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 2px;
}


@media (max-width:1050px) {
    .plan-row{
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width:765px) {
    .plan-row{
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width:465px) {
    .plan-row{
        width: 80%;
        margin: 0 auto;
        grid-template-columns: 1fr;
    }
}


.faq-card-row{
    display:grid;
    grid-template-columns: 1fr 1fr;
}

.faq-card-content{
    width: 90%;
    margin: 0 auto;
}

.faq-card-item{
    width:100%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.372);
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.faq-card-item .faq-head{
    display: flex;
    flex-direction: column;
    position: relative;
}

.faq-card-item .faq-head::after{
    content: "";
    height: 10px;
    width: 10px;
    background: #ffffff;
    position: absolute;
    top: 0px;
    left: 5px;
    border-radius: 50%;
}

.faq-card-item .faq-head button{
    border: none;
    height: 10vh;
    background: var(--primary);
    color: #ffffff;
}

.faq-card-item .faq-head p{
    border-top: 1px solid rgba(178, 177, 177, 0.392);
    padding: 20px;
    display: none;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

@media (max-width:450px) {
    .faq-card-row{
        grid-template-columns: 1fr;
    }

    
.faq-card-item .faq-head button{
    height: 10vh;
}
}

@media (max-width:900px) {
    .faq-card-row{
        grid-template-columns: 1fr;
    }

    
.faq-card-item .faq-head button{
    height: 8vh;
}
}

.more-link{
    height: 600px;
    background-image:linear-gradient(rgba(7, 7, 67, 0.5),rgba(31, 25, 219, 0.5)), 
    url('../img/use.jpg');
    background-size: cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
}

.more-link ul{
    list-style:none ;
}

.more-link ul li{
    margin-left: -10px;
    font-size: 20px;
    padding-bottom: 10px;
}

.more-link ul li::before {
    content: "\2713";
    color: gold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
  }

@media (max-width:600px) {
    .more-link{
        height: 600px;
    }
    .more-link ul li{
      font-size: 16px;
  }
}

.unique-about{
    display: flex;
    gap: 1rem;
}

.unique-about p i{
    font-size: 40px;
    color: var(--primary);
}

/* How it works  */

.golden-text{
    background: var(--light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-family-sans-serif);
}

  .how-it-works .box-1  {
      margin-left: 50px;
      margin-right: 0;
  }
  
  .how-it-works.rtl .box-1  {
      margin-right: 50px;
      margin-left: 0;
  }
  
  .how-it-works .box-1::before {
      left: -94px;
      right: -94px;
  }
  
  .how-it-works.rtl .box-1::before {
      left: -94px;
  }
  
  .how-it-works .box-1::after {
      left: -65px;
  }
  
  .how-it-works.rtl .box-1::after {
      left: -65px;
  }
  
  .how-it-works .box-1::before {
              content: "1";
  }
  
  .how-it-works.rtl .box-2::after {
      left: -65px;
      right: auto;
  }
  
  .how-it-works.rtl .box-2::before {
      left: -94px;
      right: auto;
  }
  
  .how-it-works .box-2  {
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: end;
      text-align: right;
  }
  
  
  .how-it-works.rtl .box-2  {
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: start;
      text-align: left;
      margin-left: 50px;
  }
  
  .how-it-works .box-2::before {
              content: "2";
  }
  .how-it-works .box-3  {
      margin-left: 50px;
      margin-right: 0;
  }
  
  .how-it-works.rtl .box-3  {
      margin-right: 50px;
      margin-left: 0;
  }
  
  .how-it-works .box-3::before {
      left: -94px;
      right: -94px;
  }
  
  .how-it-works.rtl .box-3::before {
      left: -94px;
  }
  
  .how-it-works .box-3::after {
      left: -65px;
  }
  
  .how-it-works.rtl .box-3::after {
      left: -65px;
  }
  
  .how-it-works .box-3::before {
              content: "3";
  }
  
  .how-it-works.rtl .box-4::after {
      left: -65px;
      right: auto;
  }
  
  .how-it-works.rtl .box-4::before {
      left: -94px;
      right: auto;
  }
  
  .how-it-works .box-4  {
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: end;
      text-align: right;
  }
  
  
  .how-it-works.rtl .box-4  {
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: start;
      text-align: left;
      margin-left: 50px;
  }
  
  .how-it-works .box-4::before {
              content: "4";
  }
  .how-it-works .box.box-last::after {
      width: 0;
  }

.how-it-works {
    padding: 100px 0;
}

.how-it-works .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: var(--primary);
    border-radius: 10px;
    padding: 30px;
    border: 2px solid transparent;
    margin-right: 50px;
    margin-bottom: 50px;
    position: relative;
    font-family: var(--font-family-sans-serif);
}

.how-it-works .box::before {
    content: "2";
    position: absolute;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
    color: #f7f7f8;
    right: -94px;
    padding: 17px;
    text-align: center;
    width: 60px;
    height: 60px;
    background: var(--primary) border-box;
    border: 2px solid transparent;
    border-radius: 200px;
    -webkit-box-shadow: inset 0 0 0px 10px #000;
    box-shadow: inset 0 0 0px 10px #000;
    overflow: hidden;
}

.how-it-works .box::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 134px;
    right: -65px;
    top: 90px;
    background: var(--primary);
}

.how-it-works .box.box-last::after {
    width: 0;
}

.how-it-works .box .img {
    margin: 0;
    -webkit-clip-path: polygon(30% 0, 70% 0, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    clip-path: polygon(30% 0, 70% 0, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    background: #111;
    width: 80px;
    height: 65px;
    display: inline-block;
    text-align: center;
    padding-top: 20px;
}

.how-it-works .box .img img{
    width: 40px;
    margin-top: -5px;
}

.how-it-works .box .text {
    width: calc(100% - 80px);
    padding: 0 15px;
}

.how-it-works .box .text p {
    margin-bottom: 0;
    color: #f7f7f8;
    font-family: var(--font-family-sans-serif);
}

.how-it-works .box:hover {
    background: var(--primary-light) border-box;
    border: 2px solid transparent;
}
.how-it-works.rtl {
    direction: rtl;
}

@media (max-width:991px) {
    .how-it-works .box {
        margin: 0;
        margin-bottom: 25px;
    }

    .how-it-works .box::after {
        display: none;
    }

    .how-it-works .box::before {
        display: none;
    }
}


.bg-whisperapprox {
    background: #f2f3f8;
    fill: #f2f3f8;
  }


  .inset-lg-left-15 {
    z-index: 1;
  }  

  .section-image-aside-img .section-bordered-inside {
    background-color: rgba(5, 5, 33, 0.9);
}

  @media (min-width: 768px) {
    .section-image-aside {
      position: relative;
    }
  }
  
  .section-image-aside-img {
    background-image: url(../img/bg-image-3.jpg);
    position: absolute;
    top: 0;
    bottom: 0;
    width: 190%;
    -webkit-background-size: cover;
    background-size: cover;
  }
  
  @media (min-width: 768px) {
    .section-image-aside-img {
      width: 50vw;
    }
  }
  
  .section-image-aside-left .section-image-aside-img {
    right: -50%;
  }
  
  @media (min-width: 768px) {
    .section-image-aside-left .section-image-aside-img {
      right: 0;
    }
  }
  
  .section-image-aside-right .section-image-aside-img {
    left: -50%;
  }
  
  @media (min-width: 768px) {
    .section-image-aside-right .section-image-aside-img {
      left: 0;
    }
  }
  
  .ie-10 .section-image-aside-img + *,
  .ie-11 .section-image-aside-img + *,
  .ie-edge .section-image-aside-img + * {
    width: 100%;
  }
  
  .section-bordered-inside {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .section-bordered-inside:after {
    content: "";
    position: absolute;
    top: 33px;
    bottom: 33px;
    right: 33px;
    left: 33px;
    border: 1px solid #3b4a59;
  }
  
  @media (max-width: 991px) {
    .section-bordered-inside:after {
      border: none;
    }
  }
  .inset-lg-left-15 {
    padding-left: 15px;;
  } 
  
  .inset-lg-left-15 p {
    font-size: 13px;
    color: white;
    z-index: 2;
  }  

  .unit {
    display: flex;
    flex: 0 1 100%;
  }
  
  [class*="unit"]:empty {
    margin-bottom: 0;
    margin-left: 0;
  }
  
  .unit-body {
    flex: 0 1 auto;
  }
  
  .unit-left,
  .unit-right {
    flex: 0 0 auto;
    max-width: 100%;
  }
  
  .unit {
    margin-bottom: -30px;
    margin-left: -20px;
  }
  
  .unit > * {
    margin-bottom: 30px;
    margin-left: 20px;
  }
  
  @media (min-width: 576px) {
    .unit-sm {
      margin-bottom: -30px;
      margin-left: -20px;
    }
    .unit-sm > * {
      margin-bottom: 30px;
      margin-left: 20px;
    }
  }
  
  @media (min-width: 768px) {
    .unit-md {
      margin-bottom: -30px;
      margin-left: -20px;
    }
    .unit-md > * {
      margin-bottom: 30px;
      margin-left: 20px;
    }
  }
  
  @media (min-width: 992px) {
    .unit-lg {
      margin-bottom: -30px;
      margin-left: -20px;
    }
    .unit-lg > * {
      margin-bottom: 30px;
      margin-left: 20px;
    }
  }
  
  @media (min-width: 1200px) {
    .unit-xl {
      margin-bottom: -30px;
      margin-left: -20px;
    }
    .unit-xl > * {
      margin-bottom: 30px;
      margin-left: 20px;
    }
  }
  
  @media (min-width: 1600px) {
    .unit-xxl {
      margin-bottom: -30px;
      margin-left: -20px;
    }
    .unit-xxl > * {
      margin-bottom: 30px;
      margin-left: 20px;
    }
  }
  
  .unit-spacing-xs.unit {
    margin-bottom: -8px;
    margin-left: -8px;
  }
  
  .unit-spacing-xs.unit > * {
    margin-bottom: 8px;
    margin-left: 8px;
  }
  
  @media (min-width: 576px) {
    .unit-spacing-xs.unit {
      margin-bottom: -8px;
      margin-left: -8px;
    }
    .unit-spacing-xs.unit > * {
      margin-bottom: 8px;
      margin-left: 8px;
    }
  }
  
  @media (min-width: 768px) {
    .unit-spacing-xs.unit {
      margin-bottom: -8px;
      margin-left: -8px;
    }
    .unit-spacing-xs.unit > * {
      margin-bottom: 8px;
      margin-left: 8px;
    }
  }
  
  @media (min-width: 992px) {
    .unit-spacing-xs.unit {
      margin-bottom: -8px;
      margin-left: -8px;
    }
    .unit-spacing-xs.unit > * {
      margin-bottom: 8px;
      margin-left: 8px;
    }
  }
  
  @media (min-width: 1200px) {
    .unit-spacing-xs.unit {
      margin-bottom: -8px;
      margin-left: -8px;
    }
    .unit-spacing-xs.unit > * {
      margin-bottom: 8px;
      margin-left: 8px;
    }
  }
  
  @media (min-width: 1600px) {
    .unit-spacing-xs.unit {
      margin-bottom: -8px;
      margin-left: -8px;
    }
    .unit-spacing-xs.unit > * {
      margin-bottom: 8px;
      margin-left: 8px;
    }
  }
  
  .unit-spacing-sm.unit {
    margin-bottom: -15px;
    margin-left: -15px;
  }
  
  .unit-spacing-sm.unit > * {
    margin-bottom: 15px;
    margin-left: 15px;
  }
  
  @media (min-width: 576px) {
    .unit-spacing-sm.unit {
      margin-bottom: -15px;
      margin-left: -15px;
    }
    .unit-spacing-sm.unit > * {
      margin-bottom: 15px;
      margin-left: 15px;
    }
  }
  
  @media (min-width: 768px) {
    .unit-spacing-sm.unit {
      margin-bottom: -15px;
      margin-left: -15px;
    }
    .unit-spacing-sm.unit > * {
      margin-bottom: 15px;
      margin-left: 15px;
    }
  }
  
  @media (min-width: 992px) {
    .unit-spacing-sm.unit {
      margin-bottom: -15px;
      margin-left: -15px;
    }
    .unit-spacing-sm.unit > * {
      margin-bottom: 15px;
      margin-left: 15px;
    }
  }
  
  @media (min-width: 1200px) {
    .unit-spacing-sm.unit {
      margin-bottom: -15px;
      margin-left: -15px;
    }
    .unit-spacing-sm.unit > * {
      margin-bottom: 15px;
      margin-left: 15px;
    }
  }
  
  @media (min-width: 1600px) {
    .unit-spacing-sm.unit {
      margin-bottom: -15px;
      margin-left: -15px;
    }
    .unit-spacing-sm.unit > * {
      margin-bottom: 15px;
      margin-left: 15px;
    }
  }
  
  .unit-spacing-md.unit {
    margin-bottom: -22px;
    margin-left: -22px;
  }
  
  .unit-spacing-md.unit > * {
    margin-bottom: 22px;
    margin-left: 22px;
  }
  
  @media (min-width: 576px) {
    .unit-spacing-md.unit {
      margin-bottom: -22px;
      margin-left: -22px;
    }
    .unit-spacing-md.unit > * {
      margin-bottom: 22px;
      margin-left: 22px;
    }
  }
  
  @media (min-width: 768px) {
    .unit-spacing-md.unit {
      margin-bottom: -22px;
      margin-left: -22px;
    }
    .unit-spacing-md.unit > * {
      margin-bottom: 22px;
      margin-left: 22px;
    }
  }
  
  @media (min-width: 992px) {
    .unit-spacing-md.unit {
      margin-bottom: -22px;
      margin-left: -22px;
    }
    .unit-spacing-md.unit > * {
      margin-bottom: 22px;
      margin-left: 22px;
    }
  }
  
  @media (min-width: 1200px) {
    .unit-spacing-md.unit {
      margin-bottom: -22px;
      margin-left: -22px;
    }
    .unit-spacing-md.unit > * {
      margin-bottom: 22px;
      margin-left: 22px;
    }
  }
  
  @media (min-width: 1600px) {
    .unit-spacing-md.unit {
      margin-bottom: -22px;
      margin-left: -22px;
    }
    .unit-spacing-md.unit > * {
      margin-bottom: 22px;
      margin-left: 22px;
    }
  }
  
  .unit-spacing-lg.unit {
    margin-bottom: -30px;
    margin-left: -30px;
  }
  
  .unit-spacing-lg.unit > * {
    margin-bottom: 30px;
    margin-left: 30px;
  }
  
  @media (min-width: 576px) {
    .unit-spacing-lg.unit {
      margin-bottom: -30px;
      margin-left: -30px;
    }
    .unit-spacing-lg.unit > * {
      margin-bottom: 30px;
      margin-left: 30px;
    }
  }
  
  @media (min-width: 768px) {
    .unit-spacing-lg.unit {
      margin-bottom: -30px;
      margin-left: -30px;
    }
    .unit-spacing-lg.unit > * {
      margin-bottom: 30px;
      margin-left: 30px;
    }
  }
  
  @media (min-width: 992px) {
    .unit-spacing-lg.unit {
      margin-bottom: -30px;
      margin-left: -30px;
    }
    .unit-spacing-lg.unit > * {
      margin-bottom: 30px;
      margin-left: 30px;
    }
  }
  
  @media (min-width: 1200px) {
    .unit-spacing-lg.unit {
      margin-bottom: -30px;
      margin-left: -30px;
    }
    .unit-spacing-lg.unit > * {
      margin-bottom: 30px;
      margin-left: 30px;
    }
  }
  
  @media (min-width: 1600px) {
    .unit-spacing-lg.unit {
      margin-bottom: -30px;
      margin-left: -30px;
    }
    .unit-spacing-lg.unit > * {
      margin-bottom: 30px;
      margin-left: 30px;
    }
  }
  
  .unit-middle .unit-left {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  @media (max-width: 767px) {
    .pos-relative-before-sm {
      position: relative;
    }
    .section-md-0 {
        padding-top: 0;
        padding-bottom: 0;
      }
  } 

  * + .offset-top-0 {
    margin-top: 0;
  }

  .to-front {
    position: relative;
    z-index: 5;
  }
  
  @media (min-width: 767px) {
    .section-md-0 {
        padding-top: 0;
        padding-bottom: 0;
      }
  }

  
.section-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .box-photo-frame .embed-responsive {
    padding-bottom: 66%;
  }

  .box-photo-frame + h6 {
    margin-top: 22px;
  }

  
.box-photo-frame {
    display: inline-block;
    border: 7px solid #fff;
    box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.1);
    z-index: 10;
    position: relative;
  }
  
  .box-photo-frame .embed-responsive {
    padding-bottom: 66%;
  }
  
  @media (min-width: 992px) {
    .box-photo-frame {
      border-width: 14px;
    }
    .text-dusty-gray{
        margin-top: -200px;
    }
  }

  @media (max-width: 562px) {
    .box-photo-frame {
      width: 270px !important;
      margin-left: 10px;
    }
    .box-photo-frame .embed-responsive {
      width: 100% !important;
    }
  }

  .quote-review * + .quote-body {
    margin-top: 10px;
  }

  .quote-bordered .quote-body {
    position: relative;
    padding-bottom: 10px;
  }
  
.quote-bordered .quote-body-inner {
    position: relative;
    padding: 37px 22px 29px 34px;
    border-style: solid;
    border-width: 1px 1px 0 1px;
    border-color: #e5e7e9;
  }

  .page .text-dusty-gray {
    color: #9b9b9b;
  }
  
  .page a.text-dusty-gray:focus,
  .page a.text-dusty-gray:hover {
    color: #828282;
  }
  
  .quote-bordered .quote-body-inner:before,
  .quote-bordered .quote-body-inner:after {
    content: "";
    position: absolute;
    bottom: -10px;
    height: 10px;
    border-style: solid;
    border-color: #e5e7e9;
    background-color: transparent;
  }
  
  .quote-bordered .quote-body-inner:before {
    left: 10px;
    width: 46px;
    border-width: 1px 1px 0 0;
    transform: skew(45deg);
    transform-origin: 100% 100%;
  }
  
  .quote-bordered .quote-body-inner:after {
    right: 10px;
    width: calc(100% - 66px);
    border-width: 1px 0 0 1px;
    transform: skew(-45deg);
    transform-origin: 0 100%;
  }

  
.quote-simple .quote-body {
    padding-left: 75px;
    position: relative;
  }

  .quote-simple q {
    font-size: 22px;
    line-height: 1.27273;
    font-weight: 700;
    font-style: italic;
    color: #050521;
  }
  
  .quote-simple .quote-body:before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 50px;
    height: 36px;
    top: 10px;
    left: 0;
    opacity: 0.5;
    background: url("../img/icon-quote.png") no-repeat top left;
  }
  
  
blockquote {
  font: inherit;
  padding: 0;
  margin: 0;
  border: 0;
}

blockquote q:before,
blockquote q:after {
  content: none;
}

blockquote cite {
  font-style: normal;
}

  