/*@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');*/
@font-face {
    font-family: "gotham";
    src: url('../fonts/Gotham-Book.woff') format('woff'),
         url('../fonts/Gotham-Book.woff2') format('woff2'),
         url('../fonts/Gotham-Book.ttf') format('truetype');
    font-weight: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gotham', sans-serif !important;
/*    line-height:1.5!important;*/
}

 
:root {
/*    --primary-color: #065759;*/
    font-family: 'Gotham', sans-serif !important;
    --primary-color:#23CE6B;
}
dl, ol, ul {
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
header {
    position: absolute;
    width: 100%;
    padding-top: 48px;
    z-index: 999;
}
header nav {
/*    background: rgba(255, 255, 255, 0.6);*/
    background: rgba(255, 255, 255, 1);
    padding: 16px 40px !important;
    border-radius: 10px;
}
header nav div#navbarNav {
    justify-content: flex-end;
}
header .navbar-expand-lg .navbar-nav .nav-link {
    color: #181A27;
    /* font-size: 24px; */
    font-size: 20px;
    font-weight: 600;
    /* line-height: 1.4; */
    line-height: 1;
}
header .navbar-expand-lg .navbar-nav li {
    padding: 0 35px;
}
header .navbar-expand-lg .navbar-nav li:last-child {
    padding-right: 0;
}
header .navbar-expand-lg .navbar-nav .nav-link.active,
header .navbar-expand-lg .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}
.home-banner {
    /* background-image: url(../images/Home-banner.jpg); */
    /* height: 1024px;     */
    /* background-color: #08212b;*/
    height: 100vh; 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-bottom: 56.2%;
}
.home-banner-content h1 {
    text-align: center;
    color: #ffffff;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.5;
    z-index: 99;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.home-banner-content .banner-arrow {
    position: absolute;
    bottom: 60px;
    /* bottom: 30px; */
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #23CE6B;
    border-radius: 50%;
    background: rgba(256, 256, 256, 0.1);
    cursor: pointer;   
}
.footer-menu ul.navbar-nav .nav-link:hover {
    text-decoration: underline;
}
.home-banner-content .banner-arrow a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#23CE6B;
}
.home-banner-content .banner-arrow img {
    animation-name: ArrowAnimation;
    animation-duration: 3s;
    animation-iteration-count: infinite;  
}
/* @keyframes ArrowAnimation {
	0% {
		transform: translateY(0);
	}

	10% {
		transform: translateY(3px);
	}

	20% {
		transform: translateY(6px);
	}

	30% {
		transform: translateY(9px);
	}

	40% {
		transform: translateY(12px);
	}

	50% {
		transform: translateY(15px);
	}

	60% {
		transform: translateY(18px);
	}

	70% {
		transform: translateY(21px);
	}

	80% {
		transform: translateY(24px);
	}

	90% {
		transform: translateY(27px);
	}

	100% {
		transform: translateY(30px);
	}
} */
.steps-secion {
    margin-bottom: 140px;
}
.steps-row {
    margin: 100px 0;
}
.steps-secion .steps-row {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.steps-secion .steps-row .steps-column {
    width: 33.333%;
    text-align: center;
    position: relative;
    padding: 0 6px;
}
.steps-row .steps-column .steps-icon {
    background: #EBF2FA;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px 30px 30px 0;
    margin-bottom: 16px;  
    border: 4px solid #EBF2FA;
    transition: .4s ease-in-out;  
}
.steps-row .steps-column:hover .steps-icon {
    background: transparent;
    border: 4px solid #EBF2FA;
}
.steps-row .steps-column:nth-of-type(2)::before{
    background: url(../images/step-arrow1.png);
    background-repeat: no-repeat;
    background-size: 178px;
    background-position: center;
    height: 36px;    
    width: 100%;
    right: 50%;
    top: 57px;
    content: "";
    position: absolute;
}
.steps-row .steps-column:nth-of-type(2)::after  {
    background: url(../images/step-arrow2.png);
    background-repeat: no-repeat;
    background-size: 178px;
    background-position: center;
    /* height: 36px; */
    height: 52px; 
    width: 100%;
    left: 50%;
    content: "";
    position: absolute; 
    top: 57px;  
}
.steps-row .steps-column .steps-icon img {
    width: 60px;
    height: 60px;
}
.steps-column .steps-content {
    max-width: 285px;
    margin: 0 auto;
}
.steps-column .steps-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
    margin-bottom: 0;
}
.steps-column .steps-content p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.5;
}
.steps-btn {
    text-align: center;
}
.steps-btn a {
    color: #ffffff;
    /* font-size: 40px; */
    font-size: 32px;
    font-weight: 600;
    text-decoration: none;
    background: #23CE6B;
    border: 2px solid #23CE6B;
    border-radius: 10px;
    /* padding: 28px 110px; */
    padding: 18px 110px;
    padding: 12px 60px;
    transition: .4s ease-in-out;
    /* filter: drop-shadow(0 0px 4px #5ebea9);   */
    filter: drop-shadow(0 0px 2px #5ebea9);  
}
.steps-btn a:hover {
    color: #ffffff;
    /* filter: drop-shadow(0 0px 8px #5ebea9);       */
    filter: drop-shadow(0 0px 6px #5ebea9);      
}
.main-footer, .bottom-footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid #E6E6E6;
}
.bottom-footer {
    border-bottom: none;
    margin: 60px 0px 80px;
    padding-bottom: 0;
}
.footer-menu ul.navbar-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.footer-menu ul.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #545863;
    margin-left: 70px;
    text-transform: uppercase;
}
.bottom-footer .social-icons ul {
    padding: 0;
    display: flex;
    align-items: center;
    margin: 0;
}
.bottom-footer .social-icons ul li a img {
    transition: .3s ease-in-out;
}
.bottom-footer .social-icons ul li a img:hover {
    transform: translateY(-6px);
}
.bottom-footer .social-icons ul li {
    margin-right: 30px;
}
.bottom-footer-links ul {
    display: flex;
    margin: 0;
}
.bottom-footer-links ul li, .bottom-footer-links ul li a {
    font-size: 14px;
/*    color: var(--primary-color);*/
    color:#545863;
    font-weight: 500;
    /* margin-left: 30px; */
    text-decoration: none;
    transition: .3s ease-in-out;
}
.bottom-footer-links ul li:last-child {
    margin-left: 30px;
}
.bottom-footer-links ul li.space {
    padding: 0 6px;
}
.bottom-footer-links ul li a:hover {
    text-decoration: underline;
}
.footer-menu ul.navbar-nav .nav-link.resources {
    display: none;
}
.inner-header {
    background-color: #fff;
    position: unset;
}

.contantinfo{
    font-family: 'Gotham', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: center;
    color: #181A27;
}

.inner-header .navbar {
    max-width: 100%;
    padding: 0 !important;
}
.start-tab-section {
    margin: 80px auto;
}

.modal-tab-section {
    margin: 40px auto;
}

.start-tab-section #tabs-nav {
    display: flex;
    max-width: 1200px;
    justify-content: space-evenly;
}
.start-tab-section #tabs-nav a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    color: rgba(183, 198, 160, 0.6);
    position: relative;
    display: block;
}
.start-tab-section #tabs-nav a::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 290px;
    background: rgba(199, 206, 190, 0.6);
    border-radius: 40px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
.start-tab-section #tabs-nav li {
    width: 100%;
    text-align: center;
}
.start-tab-section #tabs-content {
    max-width: 700px;
    margin: 60px auto;
}
.start-tab-section #tabs-nav li.active a {
    color: #181A27;
}
.start-tab-section #tabs-nav li.active a::before {
    background: #23CE6B;
}
.start-tab-content form {
    display: flex;
    flex-wrap: wrap;  
    align-items: flex-start;
    position: relative;
}
.start-tab-content form .input-group {
    width: 50%;
    margin-bottom: 24px !important;
    padding: 0 12px;
}
.start-tab-content form .input-group.email-margin {
    margin-bottom: 10px !important;
}
.start-tab-content form .input-group .form-label {
    display: block;
    width: 100%;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
    color: #181A27;
}
.start-tab-content form .input-group .form-select,
.start-tab-content form .input-group .form-control {
    border: 1px solid #545863;
    border-radius: 10px !important;
    /* padding: 16px 24px; */
    padding: 16px 16px;
    font-size: 16px;       
}
.start-tab-content form .input-group .form-control::placeholder,
.start-tab-content form .input-group .form-select::placeholder {
    color: #545863;
    font-size: 14px;
}

.start-tab-content form .input-group textarea {
    height: 130px;
    resize: none;
}

.start-tab-content form .start-tab-btn .primary-btn,
.tab-content.tab-team-content .start-tab-btn.back .primary-btn:hover {
    display: inline-block;
    width: 100%;
    background: #DCDCDC !important; 
    border: 2px solid #DCDCDC;
    color: #fff;
    border-radius: 10px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    /* padding: 12px 140px; */
    padding: 12px 100px;
    line-height: 1.4;
    max-width: 326px;
    border: 2px solid #DCDCDC;
    transition: .4s ease-in-out;
}

.start-tab-content form .start-tab-btn .primary-btn-outline,
.tab-content.tab-team-content .start-tab-btn.back .primary-btn-outline:hover {
    display: inline-block;
    width: 100%;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    border-radius: 10px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    /* padding: 12px 140px; */
    padding: 12px 100px;
    line-height: 1.4;
    max-width: 326px;
    transition: .4s ease-in-out;
}

.start-tab-content form .start-tab-btn .primary-btn:hover  {
    background: var(--primary-color) !important;
    border: 2px solid #DCDCDC;
    color: #ffffff !important;
}
.tab-content.tab-team-content .start-tab-btn.back .primary-btn:hover {
    background-color: #065759 !important;
    color: #ffffff;
    border: 2px solid #065759;
}
.tab-content.tab-team-content .start-tab-btn.back .primary-btn {
    background: transparent !important;
    border: 2px solid #065759;
    color: #000000;
    transition: .2s ease-in-out;
}

.start-tab-content form .start-tab-btn .primary-btn-outline:hover  {
    background: var(--primary-color) !important;
    border: 2px solid #DCDCDC;
    color: #ffffff !important;
}
.tab-content.tab-team-content .start-tab-btn.back .primary-btn-outline:hover {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    border: 2px solid #065759;
}
.tab-content.tab-team-content .start-tab-btn.back .primary-btn-outline {
    background: transparent !important;
    border: 2px solid #065759;
    color: #000000;
    transition: .2s ease-in-out;
}
.start-tab-content form .participation-free {
    display: flex;
    grid-gap: 24px;
}
.start-tab-content form .participation-free select.form-select {
    max-width: 100px;
    width: 100%;
}

@media (min-width: 992px) {
    header nav div#navbarNav {
        height: 50px;
    }
}

input.ng-invalid.ng-touched {
    border: 1px solid red;
  }
  
.ng-submitted input.ng-invalid {
border: 1px solid red;
}



select.ng-invalid.ng-touched {
border: 1px solid red;
}

.ng-submitted select.ng-invalid {
border: 1px solid red;
}
  

.start-tab-content form .start-tab-btn {
    max-width: 100%;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    /* margin-bottom: 80px; */
}
.tab-content.tab-team-content {
    max-width: 345px;
    margin: 0 auto;
}
.tab-content.tab-team-content .input-group {
    width: 100%;
}
/* .tab-content.tab-team-content .start-tab-btn {
    margin: 16px 0;
}
.tab-content.tab-team-content .start-tab-btn.back {
    margin: 0;
} */
.participation-free.contact-number select.form-select {
    max-width: 142px !important;
    width: 100%;
}
.participation-free.contact-number {
    grid-gap: 10px !important;
}
.billingform input {
    padding-left: 40px !important;
}

.invalid-feedback{
    display: block !important;
}

.home-banner video {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.home-banner::before {
    position: absolute;
    content: "";
    background-color: rgba(0,0,0,0.3);
    height: 100%;
    width: 100%;
    z-index: 99;
    top: 0;
    left: 0;
}
.home-banner-content h1 {
    z-index: 99;
    position: absolute;
    left: 50%;
    top: 50%;   
    transform: translate(-50%, -50%);
}




.start-tab-section .mat-step-header:hover {
    background: transparent !important;
}
.start-tab-section .mat-step-header .mat-step-icon.mat-step-icon-state-number,
.start-tab-section .mat-stepper-horizontal-line {
    display: none;
}
.start-tab-section .mat-horizontal-stepper-header-container {
    justify-content: space-around;
    margin-bottom: 20px;
}
.start-tab-section .mat-horizontal-stepper-header-container .mat-step-text-label {
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
/*    color: rgba(183, 198, 160, 0.6);*/
    color:#EBF2FA;
    position: relative;
    display: block;
    width: 100% !important;
    margin-bottom: 20px;
    text-align: center;
    overflow: visible;
}
.start-tab-section .mat-horizontal-stepper-header-container .mat-step-text-label::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 290px;
    background:#EBF2FA;
/*    background: rgba(199, 206, 190, 0.6);*/
    border-radius: 40px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    /* z-index: 9999 !important; */
    z-index: 100 !important;
}
.start-tab-section .mat-step-header {
    position: relative;
}
.start-tab-section .mat-step-label {
    width: 100%;
    max-width: 100%;
    min-width: 290px;
}
.start-tab-section .mat-step-header .mat-step-label.mat-step-label-active .mat-step-text-label {
    color: #181A27;
}
.start-tab-section .mat-step-header .mat-step-label.mat-step-label-active .mat-step-text-label::before {
    background: #23CE6B;
}
.start-tab-content form .input-group .form-label {
    margin-bottom: 6px;
}
.start-tab-content form .start-tab-btn .primary-btn {
    margin: 1rem auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.start-tab-content form {
    max-width: 700px;
    margin: 0 auto;
}
.start-tab-content form .start-tab-btn .primary-btn span.mat-ripple.mat-button-ripple,
.start-tab-content form .start-tab-btn .primary-btn:hover span.mat-ripple.mat-button-ripple {
    background-color: transparent;
}
.start-tab-content form .start-tab-btn .primary-btn-outline {
    margin: 0 auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.start-tab-content form {
    max-width: 700px;
    margin: 0 auto;
}
.start-tab-content form .start-tab-btn .primary-btn-outline span.mat-ripple.mat-button-ripple,
.start-tab-content form .start-tab-btn .primary-btn-outline:hover span.mat-ripple.mat-button-ripple {
    background-color: transparent;
}

.contact-social-icon{
    display: inline-block;
}

@media (max-width: 1199px) {
    .start-tab-section .mat-horizontal-stepper-header-container .mat-step-text-label::before {
        width: 200px;
    }   
}
@media (max-width: 991px) {
    .start-tab-section .mat-horizontal-stepper-header-container .mat-step-text-label::before {
        width: 150px;
    }
    .start-tab-section mat-step-header {
        padding: 0 !important;
    }
}
@media (max-width: 767px) {
    .start-tab-section .mat-horizontal-stepper-header-container .mat-step-text-label::before {
        width: 90px;
       height: 5px;
    }
    .start-tab-section .mat-step-label {
        min-width: 90px;
    }
}




@media (max-width: 1199px) {
    header .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 18px;
    }    
    header .navbar-expand-lg .navbar-nav li {
        padding: 0 20px;
    }
    .home-banner-content h1 {
        font-size: 48px;
    }    
    .home-banner-content .banner-arrow {
        width: 100px;
        height: 100px;
    }    
    .home-banner-content .banner-arrow img {
        height: 50px;
    }
    .footer-menu ul.navbar-nav .nav-link {
        margin-left: 30px;
    }
    .bottom-footer {
        margin: 20px 0px 20px;
    }
    .steps-btn a {
        font-size: 20px;
        padding: 14px 80px;
    }
    .steps-row {
        margin: 60px 0;
    }
    .steps-row .steps-column:nth-of-type(2)::after,
    .steps-row .steps-column:nth-of-type(2)::before {        
        background-size: 130px;
    }
}
@media (max-width: 991px) {
    .start-tab-section #tabs-nav a::before {
        width: 200px;
    }
    /* .bottom-footer-links ul li, .bottom-footer-links ul li a {
        margin-left: 20px;
    } */
    .inner-header .navbar {
        padding: 0 15px !important;
    }
    .steps-row .steps-column .steps-icon {
        width: 100px;
        height: 100px;
    }    
    .steps-row .steps-column .steps-icon img {
        height: 40px;
        width: 40px;
    }    
    .steps-row .steps-column:nth-of-type(2)::after,
    .steps-row .steps-column:nth-of-type(2)::before {
        top: 30px;
        background-size: 100px;
    }
    header {
        padding-top: 0;
    }
    header.home-header .container {
        padding: 0;
        max-width: 100%;
    }    
    header .navbar {
        border-radius: 0;
        padding: 16px !important;
    }
    header button.navbar-toggler {
        border: none;
        padding: 0;
    }
    header .navbar-toggler-icon {
        background-image: url(../images/mobile-header-icon.svg);
        height: 24px;
        width: 24px;
    }
    header button.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: url(../images/header-close-icon.svg);
    }
    header .navbar-toggler-icon:focus-visible,
    .navbar-toggler:focus {
        outline: none;
        border: none;
        box-shadow: unset !important;
    }
    header.mobile-header {
        background: #ffffff;
        height: 100vh;  
    }
    header .navbar-expand-lg .navbar-nav li {
        text-align: center;
    }
    header .navbar-expand-lg .navbar-nav li:last-child {
        padding-right: 20px;
        margin-top: 5px;
    }
    header.mobile-header div#navbarNav {
        top: calc(50vh - 70px) !important;
        position: absolute;
        left: 0;
        right: 0;    
    }   
    .inner-header {
        padding-top: 10px;
    }
    .step3-img{
        width:80px!important;
        height:80px!important;
    }   
}

@media (min-width: 767.98px) {
    .divider{
        display: none;
    }

}

@media (max-width: 767.98px) { 

    
    
    .bottom-footer-links ul li.space {
        display: none;
    }
    .start-tab-content form .input-group .form-label {
        font-size: 16px;
    }
    .start-tab-content form .start-tab-btn .primary-btn {
        padding: 12px 80px;
    }
    .start-tab-content form .start-tab-btn .primary-btn-outline {
        padding: 12px 80px;
    }
    .start-tab-section {
        margin: 20px auto 60px;
    }
    .start-tab-section #tabs-content {
        margin: 30px auto;
    }
    .start-tab-content form .start-tab-btn {
        margin-bottom: 0;
    }
    .start-tab-content form .input-group .form-select, .start-tab-content form .input-group .form-control {
        font-size: 14px;
    }
    .start-tab-section #tabs-nav a {
        font-size: 16px;
    }
    .start-tab-content form .input-group {
        width: 100%;
        margin-bottom: 16px !important;
    }
    .start-tab-section #tabs-nav a::before {
        width: 90px;
        height: 5px;
    }
    .home-banner-content .banner-arrow {
        width: 80px;
        height: 80px;
        bottom: 40px;
    }
    .home-banner {
        height: 100vh;
    }
    .steps-secion .steps-row .steps-column {
        width: 100%;
        margin-bottom: 20px;
    }
    .steps-row {
        margin: 40px 0 80px;
    }
    .steps-secion {
        margin-bottom: 60px;
    }
    .footer-logo {
        margin: 0 auto;
        width: 100px;
/*        display: flex;*/
        justify-content: center;
        padding-bottom: 20px;
    }

    .bottom-footer .social-icons {
        width: 100%;
    }
    .footer-menu ul.navbar-nav .nav-link.resources {
        display: block;
        font-weight: 700;
        text-transform: capitalize;
/*        line-height:1.5!important;*/
    }
    .footer-menu ul.navbar-nav li {
        width: 100%;
    }
    .footer-menu ul.navbar-nav {
        margin-top: 20px;
    }
    .footer-menu ul.navbar-nav .nav-link {
        margin-left: 0;
        text-transform: capitalize;
/*        line-height:2.5!important;*/
    }
    .bottom-footer {
        justify-content: center;
        margin-top: 0;
    }    
    .bottom-footer .social-icons ul {
        justify-content: center;
        margin-bottom: 10px !important;
    }    
    .bottom-footer-links ul {
        flex-direction: column;
        justify-content: center;
        padding: 0;
    }    
    .bottom-footer-links ul li, 
    .bottom-footer-links ul li a {
        margin-left: 0;
        padding: 4px 0 0;
        text-align: center;
    }    
    .main-footer {
        border: none;
    }
    .bottom-footer .social-icons ul li {
        margin: 0 15px;
    }
    .steps-secion .steps-row .steps-column:nth-of-type(2) {
        margin: 100px 0;
    }
    .steps-row .steps-column:nth-of-type(2)::after {
        background: url(../images/mobile-step-arrow1.png);
        background-repeat: no-repeat;
        left: 50%;
        top: -55px;
        height: 90px;
        width: 12%;
        transform: translateY(-50%);     
    }
    .steps-row .steps-column:nth-of-type(2)::before {
        background: url(../images/mobile-step-arrow2.png);
        background-repeat: no-repeat;
        left: 40%;
        top: 120%;
        bottom: 0;
        height: 90px;
        width: 12%;
        transform: translateY(-50%);
    }
    .steps-column .steps-content {
        max-width: 320px;
    }
    .bottom-footer-links ul li:last-child {
        margin-left:0;
    }
}
 


.start-tab-content form .start-tab-btn .primary-btn, .tab-content.tab-team-content .start-tab-btn.back .primary-btn:hover{
    background:var(--primary-color)!important;
}
.step3-img{
    width:120px!important;
    height:120px!important;
}

.mat-step-icon.mat-step-icon-state-edit{
  display:none!important;
}

.navbar-brand{
    width: 100px;   
}
.navbar-brand img{
    max-width: 100%; 
}

@media (max-width: 470px){
    /* .navbar-brand{
        width:80%;
    } */
    .navbar-toggler{
        margin-left:auto;
    }
}