:root {
    --site-theme-color: #002684;
    /* --site-theme-color: #486ecd; */
    --site-secondary-color: #ff8f43;
}

.site-primary {
    background-color: var(--site-theme-color);
}

.site-secondary {
    background-color: var(--site-secondary-color);
}

.text-orange {
    color: var(--site-secondary-color);
}

.text-blue {
    color: var(--site-theme-color);
}

html,
body {
    font-family: "Inter", sans-serif;
}

.top-header {
    background-color: var(--site-theme-color);
    transition: all 0.6s ease-in-out;
}

.sticky-nav .top-header {
    padding: 0;
    transition: all 0.6s ease-in-out;
    height: 0;
    opacity: 0;
}

.bottom-header {
    background-color: #f5f5f5;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
}

#augment-banner img {
    width: 100%;
    object-fit: cover;
}

.augment-banner-taglines {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    height: 100%;
    width: 100%;
}

.ban-img {
    position: relative;
}

.social-media-icons,
.address-info {
    padding: 0;
    margin: 0;
}

.social-media-icons li,
.address-info li {
    list-style: none;
    display: inline-block;
    margin: 0 10px;
    position: relative;
}

.social-media-icons li a,
.address-info li a {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
}

.top-header {
    padding: 10px 0;
}

.address-info {
    text-align: right;
}

.address-info li a i {
    margin-right: 5px;
    vertical-align: middle;
}

.address-info li:after {
    content: "";
    position: absolute;
    border-right: 2px solid #fff;
    height: 20px;
    right: -12px;
    bottom: 3px;
}

.address-info li:last-child:after {
    border: none;
}

#augment-banner {
    padding-top: 180px;
}

.navbar-brand {
    width: 200px;
    margin: 0;
}

.navbar-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navbar-nav li a {
    font-size: 14px;
    font-weight: 700;
    color: var(--site-theme-color);
    text-transform: uppercase;
}

.navbar-nav li {
    margin: 0 5px;
}

/* .navbar-nav li a.nav-active {
    color: var(--site-secondary-color);
} */

.make-appointment a {
    background: var(--site-secondary-color);
    padding: 15px 15px;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
}

.gg-calendar-dates {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    transform: scale(var(--ggs, 1));
    width: 18px;
    height: 18px;
    border: 2px solid;
    border-radius: 3px
}

.gg-calendar-dates::after,
.gg-calendar-dates::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    border-radius: 3px;
    height: 2px;
    left: 2px
}

.gg-calendar-dates::before {
    background: currentColor;
    width: 2px;
    box-shadow:
        4px 0 0, 8px 0 0, 0 4px 0,
        4px 4px 0, 8px 4px 0;
    top: 6px
}

.gg-calendar-dates::after {
    width: 10px;
    top: -4px;
    box-shadow: 0 6px 0 0
}

.augment-banner-taglines h5 {
    color: var(--site-secondary-color);
    font-weight: 800;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.augment-banner-taglines h1 {
    color: #fff;
    font-size: 30px;
    line-height: 1.5;
    font-weight: 900;
    letter-spacing: 1px;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: radial-gradient(rgb(255 143 67) 60%, rgb(255 255 255) 62%);
    border-radius: 50%;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0px 0px 25px 3px rgb(255 143 67 / 59%);
    border: none;
}

/* triangle */
.play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-40%) translateY(-50%);
    transform: translateX(-40%) translateY(-50%);
    transform-origin: center center;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 1;
    -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* pulse wave */
.play-btn:before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate1 2s;
    animation: pulsate1 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, .75);
    top: -25%;
    left: -25%;
    background: rgba(198, 16, 0, 0);
}

@-webkit-keyframes pulsate1 {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 1;
        box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
        box-shadow: none;

    }
}

@keyframes pulsate1 {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 1;
        box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1);
        opacity: 0;
        box-shadow: none;

    }
}

.play_vid span {
    display: inline-block;
    margin-left: 15px;
    color: var(--site-secondary-color);
    font-size: 18px;
    font-weight: 600;
}

.banner-btn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.learn_more_btn {
    background: var(--site-secondary-color);
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
}

#augment-footer {
    background-image: url('../images/footer-banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.sec-space {
    padding: 100px 0;
}

.footer-logo {}

.footer-logo img {
    width: 70%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-widget p {
    color: #fff;
    font-size: 16px;
}

.footer-widget ul {
    padding: 0;
    margin: 0;
}

.footer-widget h5 {
    font-size: 20px;
    color: var(--site-secondary-color);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    margin-bottom: 40px;
}

.footer-widget h5:after {
    content: "";
    background-image: url('../images/subtitle-separator-orange.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    width: 32px;
    height: 100%;
    position: absolute;
    bottom: -30px;
    left: 0;
}

.footer-widget ul.social_icon-footer li {
    list-style: none;
    display: inline-block;
    margin: 0px 10px;
}

.footer-widget ul li {
    list-style: none;
    margin: 15px 0;
}

.footer-widget ul li a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}

.footer-widget ul.social_icon-footer li a {
    border: 1px solid #fff;
    background: #fff;
    color: var(--site-theme-color);
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    line-height: 1;
    transition: all 0.6s;
}

.footer-widget ul.social_icon-footer li a:hover {
    background: var(--site-secondary-color);
    transition: all 0.6s;
    border-color: var(--site-secondary-color);
    color: #fff;
}

.footer-widget ul.social_icon-footer li:first-child {
    margin-left: 0;
}

.footer-widget.contact-info li a i {
    color: var(--site-secondary-color);
    margin-right: 10px;
    position: absolute;
    left: 0;
}

.footer-widget.contact-info li a i:before {
    font-weight: 900 !important;
}

.footer-widget.contact-info li a {
    position: relative;
}

.footer-widget.contact-info li a {
    padding-left: 30px;
}

.footer_copyrights {
    border-top: 1px solid #f3914896;
    margin-top: 70px;
    text-align: center;
}

.footer_copyrights p {
    color: #fff;
    margin: 30px 0 0 0;
}

#augment-whoweare {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.who_we_img {
    border-radius: 10px;
    overflow: hidden;
    height: 500px;
}

.who_we_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small_title {
    margin-bottom: 35px;
}

.small_title h5 {
    font-size: 18px;
    font-weight: 700;
    position: relative;
}

.small_title h5:after {
    content: "";
    background-image: url('../images/subtitle-separator-orange.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    width: 32px;
    height: 100%;
    position: absolute;
    bottom: -25px;
    left: 0;
}

.head h1 {
    font-size: 25px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.head {
    margin-bottom: 20px;
}

.para p {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.our_mission-content .small_title h5:after {
    left: 50%;
    transform: translateX(-50%);
}

.our_mission-content .para p {
    color: #fff;
    font-weight: 400;
}

.our_mission-content .para {
    width: 80%;
    margin: 0 auto;
}

#augment-mission {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    /* position: relative;
    z-index: 1; */
}

/* #augment-mission:before {
    content: "";
    background-color: #486ecd;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.5;
} */

.mission_shapes {
    background: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    border-radius: 10px;
    margin-top: -40%;
    border-top: 6px solid var(--site-secondary-color);
    padding: 20px;
}

.mission_shapes .mission-shape_image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.mission_shapes .mission-shape_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mission_shapes .mission_para {
    text-align: center;
    margin-top: 25px;
}

.mission_shapes .mission_para h2 {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 20px;
}

.mission_shapes .mission_para p {
    font-size: 16px;
    font-weight: 500;
}

#augment-mission-process,
#augment-faq {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

#augment-faq::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ffff;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.8;
}

.our_strength-content ul {
    padding: 0;
    margin: 0;
}

.our_strength-content ul li {
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 18px;
    font-weight: 500;
    list-style: none;
    position: relative;
    padding-left: 25px;
    vertical-align: middle;
}

.our_strength-content ul li:before {
    content: "\f138";
    font-family: 'bootstrap-icons';
    color: var(--site-theme-color);
    font-weight: 600;
    /* background-image: url('../images/subtitle-separator-blue.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    /* width: 37px;
    height: 17px; */
}

/* FAQ Style */
.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion-item{
    cursor: pointer;
}

.accordion .accordion-item[aria-expanded='true']{
    background-color: var(--site-secondary-color);
}

.accordion .accordion-item[aria-expanded='true'] *{
    color: #fff;
}


.accordion-item[aria-expanded='true'] .accordion-content {
    margin-top: 15px;
    padding-top: 15px;
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
    border-top: 1px solid;
}

.accordion .accordion-item {
    padding: 25px;
    margin-bottom: 50px;
    border: 1px solid #ff903a52;
    border-radius: 50px;
    background-color: #fff;
    box-shadow: rgb(0 0 0 / 17%) 0px 25px 50px -12px;
}

.accordion .accordion-item button {
    background: transparent;
    border: none;
    padding: 0;
    display: inline-block;
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: var(--site-primary-color);
    position: relative;
}

.accordion .accordion-item p {
    width: 100%;
    font-size: 14px;
}

.toggle {
    width: 15px;
    height: 3px;
    background: #fff;
    position: relative;
    transition: 0.25s all cubic-bezier(0.17, 0.67, 0.09, 0.97);
}

.accordion button[aria-expanded='true'] .toggle {
    transform: rotate(90deg);
    height: 0;
}

.accordion button[aria-expanded='true'] .toggle::after {
    transform: rotate(90deg);
    opacity: 1;
}

.toggle::after {
    content: "";
    width: 15px;
    transition: 0.25s all cubic-bezier(0.17, 0.67, 0.09, 0.97);
    transition-delay: 0.1s;
    height: 3px;
    position: absolute;
    opacity: 1;
    transform: rotate(90deg);
    background: #fff;
}

span.icon {
    position: absolute;
    right: -80px;
    top: 0px;
    width: 35px;
    background: var(--site-secondary-color);
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.accordion-content p {
    font-weight: 500;
}

#introvideoModal .modal-content {
    background: transparent;
    border: none;
}

#introvideoModal .modal-content .modal-body,
#introvideoModal .modal-content .modal-header {
    padding: 0;
    border: none;
}

#introvideoModal .modal-content .modal-header .btn-close {
    color: #fff;
    padding: 0;
    margin: 0;
    position: absolute;
    right: -10px;
    top: -60px;
    font-size: 45px;
    background-image: none;
    height: auto;
    width: auto;
    opacity: 1;
}

#introvideoModal .modal-content .modal-header .btn-close:focus,
#introvideoModal .modal-content .modal-header .btn-close:hover {
    outline: none;
    box-shadow: none;
}

/* Custom Radio Button */
.custom_radio {
    display: block;
    position: relative;
    padding-left: 25px;
    font-weight: 400 !important;
    font-size: 14px !important;
    color: #555 !important;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.custom_radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}


.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1.5px solid var(--site-secondary-color);
    border-radius: 50%;
}

.custom_radio:hover input~.checkmark {
    background-color: transparent;
}

.custom_radio input:checked~.checkmark {
    background-color: var(--site-secondary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom_radio input:checked~.checkmark:after {
    display: block;
}

.custom_radio .checkmark:after {
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
}

.appointment-form {
    position: fixed;
    right: -100%;
    width: 40%;
    height: 100%;
    top: 0;
    z-index: 99;
    border-top: 5px solid var(--site-secondary-color);
    background: #fff;
    transition: all 0.6s ease-in-out;
}

.open_appointment {
    right: 0;
    transition: all 0.6s ease-in-out;
}

.appointment-form form {
    height: 100%;
    background: #fff;
    padding: 0 5%;
}

.form_header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
}

.form_header h5 {
    font-size: 25px;
    font-weight: 600;
    color: var(--site-theme-color);
}

.form_header .form_close span {
    font-size: 30px;
    line-height: 1;
    color: #f00;
}

.appointment-form form label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
}

.appointment-form form .row {
    margin-bottom: 15px;
}

.appointment-form form input, .appointment-form form textarea {
    border: 1px solid #ff8f435c;
    border-radius: 3px;
    padding: 10px;
    line-height: 1;
    height: auto;
    color: #555 !important;
    font-size: 14px !important;
}

.appointment-form form input:focus, .appointment-form form textarea:focus{
    outline: none;
    box-shadow: none;
}

.appointment-form form textarea{
    width: 100%;
    height: 150px;
    resize: none;
}

.appointment-form button {
    background: var(--site-theme-color);
    border-color: var(--site-theme-color) !important;
    padding: 20px 15px;
    line-height: 1;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.6s ease-in-out;
    width: 100%;
    display: inline-block;
}

.appointment-form button:hover{
    background-color: var(--site-secondary-color) !important;
    border-color: var(--site-secondary-color) !important;
    transition: all 0.6s ease-in-out;
}

.open_appointment_body:before {
    content: "";
    background-color: #000 !important;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    opacity: 0.5;
}

.open_appointment_body {
    overflow-y: hidden;
    position: relative;
}

.form_close i{
    cursor: pointer;
}

.navbar-nav li a:hover, .navbar-nav li a:focus {
    color: var(--site-theme-color);
}

.navbar-nav li a:focus-visible{
    box-shadow: none !important;
}