@import url('https://fonts.googleapis.com/css?family=Proxima+Nova');


body {
    font-family: 'Proxima Nova', sans-serif;
}

html{
    scroll-behavior: smooth;
}
body{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-size:1.1rem;
    font-family: 'Proxima Nova', sans-serif; 

}


/* Upper Area */
.upper-haeder{
    width: 100%;
    align-items: center;
    justify-content: center;
}

.logo {
	margin-left:5px;
}

.flex-upper-area{
    width: 100%;
    background-color: #039be5;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upper-haeder h1 {
    color: #039be5;
    font-weight: 300;
    display: inline;
    font-size: 2.5rem;
}

.upper-haeder span{
    font-size: 1.5rem;
    color: #039be5;
}

.upper-haeder p {
    font-size: 1.1rem;
    color: #039be5;
}
.ms-2 {
    margin-left: -1.5rem !important;
}
.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 1rem !important;
}

/* header */ 
.collapse-justify {
    justify-content: center;
}


.nav-item {
    text-align: center;
}

.nav-item a {
    color: #039be5;
	font-size:18px;
}

.nav-item a:hover {
    text-decoration: underline;
    color: #039be5; 
}

.diveder{
    position: relative;
    width: 100%;
    background-color: #cfcfcf;
    height: 1px;
    
 }

@media only screen and (max-width: 768px) {
    .only_mobile {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
}
.uline {
 text-decoration: underline !important;
}

.navbar-nav .nav-item:not(:last-child){
    position: relative;
}

.navbar-nav .nav-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 32%;
    width: 1px;
    background-color: #039be5;
}

 /* Hero area */
 .hero-area h2{
    color: #039be5;
 }
 .accordion {
    background-color: white;
    color: black;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
  }
  
  .active, .accordion:hover {
    background-color: white; 
  }
  
  .panel {
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden;
  }

  .me-2 {
    margin-right: 9rem !important;
}
  .ms-1 {
    margin-left: -1.5rem !important;
}


  /* Footer */

  footer {
    color: #039be5;
    font-family: 'Proxima Nova', sans-serif; 
}

.footer-links a {
    color: #039be5;
    text-decoration: none;
    font-weight: bold;
	font-size:18px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-note a {
    color: #039be5;
    text-decoration: underline;
}

.footer-note small {
    color: #888888;
}
.col-text{
    color: #039be5;
}



/* arrow */
.accordion {
    display: flex;
    align-items: center;
}
.arrow {
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3.5px;
    transition: transform 0.3s ease, opacity 0.3s ease; 
    opacity: 0;
}
.arrow-container {
    width: 30px;
    height: 30px;
    background: #49677617;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin: 0 0px 0 -8px;
    opacity: 0; 
    transition: opacity 0.3s ease; 
}
.accordion:hover .arrow-container{
    opacity: 1;
}
.arrow.right{
    transform: rotate(45deg);
}
.arrow.down{
    transform: rotate(-45deg);
}
.accordion:hover .arrow{
    opacity: 1;
}

/* About area */
.flex-about-area{
    width: 100%;
    background-color: #039be5;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.text-justify {
    text-align: justify;
}

.morelink{

font-weight:900;

}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 780px;
    }
}