@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Roboto:wght@300;500;700&display=swap" rel="stylesheet"');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;    
}

/* total width */
::-webkit-scrollbar {
    background-color: #fff;
    width: 16px;
}

/* background of the scrollbar except button or resizer */
::-webkit-scrollbar-track {
    background-color: #fff;
}

/* scrollbar itself */
::-webkit-scrollbar-thumb {
    background-color: #babac0;
    border-radius: 16px;
    border: 4px solid #fff;
}

/* set button(top and bottom of the scrollbar) */
::-webkit-scrollbar-button {
    display:none;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto','Open Sans', sans-serif;
    font-size: 15px;
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

ul {
    list-style: none;
}

a {
    color: #333;
    text-decoration: none;
}

h1,h2 {
    line-height: 1.2;
}

p {
    margin: 1rem 0;
}

img {
    width: 100%;
}

.text-center {
    text-align: center;
}
.text-muted {
    text-align: justify;
}

.container{
    max-width: 1140px;
    margin: 0 auto;
}

.container2 {
    max-width: 1500px;
    margin: 0 auto;
    padding: 1 2;
}

/* mobile menu */
.menu-overlay {
    height: 100%;
    position: fixed;
    z-index: 999;
    top: 0;
    left: -100%;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
    width: 100%;
  }
  
  .menu-overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
  
  .menu-overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 30px;
    color: #818181;
    display: block;
    transition: 0.3s;
  }
  
  .menu-overlay a:hover, .menu-overlay a:focus {
    color: #f1f1f1;
  }
  
  .menu-overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
  }
  
  @media screen and (max-height: 450px) {
    .menu-overlay a {font-size: 20px}
    .menu-overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
    }
  }
/* navbar2 */
.navbar2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    color: black;
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
}

.navbar2 a {
    color:black;
    padding: 25px 15px;
    font-size: 17px;
    outline: none;
    font-weight: 500;
}

.navbar2 a:hover {
    text-decoration: none;
    color: var(--warning);
}

.navbar2 ul {
    display: flex;
}

.navbar2 .navbar2-brand {
    background: var(--secondary);
    font-size: 2rem;
    font-weight: 700 !important;
    color: var(--warning);
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: left !important;
    width: 25%;
    margin: 0;
}

.navbar2 h1 {
    font-size: 2.5rem;
}

.navbar2 span {
    color: var(--warning);
}

.navbar2 .menu-btn{
    padding: 5px;
    font-size: 2rem;
    color:white;
    line-height: 1;
    cursor: pointer;
    display: none;
}

/* slider */

.banner{
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.slider{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
}
#slideImg{
    width: 100%;
    height: 100%;
    animation:reverse;
    /* animation: zoom 3s linear infinite; */
    object-fit: cover;
}

@keyframes zoom{
    0%{
        transform: scale(1.3);
    }
    15%{
        transform: scale(1);
    }
    85%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.3);
    }
}

.slide-overlay{
    width: 100%;
    height: 100vh;
    background:linear-gradient(rgba(0,0,0,0.7));
    position: absolute;
}

/* type css */

#typewriter {
    font-size: 25px;
    color:#fff;
    font-weight:bold;
}

#cursor {
color:#0072ef;
animation: blink 1s linear infinite;
}

@keyframes blink {
    0% {
        opacity:100%;
    }
    50% {
        opacity:0%;
    }
}

.content span {
    text-transform: uppercase !important;
    font-weight: 500 !important;
}

.content a {
    width: 200px;
}

.content h1 {
    color: #fff !important;
    font-size: 40px !important;
    margin-bottom: 1.5rem !important;
    font-weight: 700 !important;
    margin-top: 0;
    margin-top: 0;
}

/* blog */

.main-header.blog {
    border-radius: 5%;
    background-image: url('../img/blog.jpeg');
    background-size: cover;
    height: 50vh;
}

.banner2{
    width: 100%;
    height: 50vh;
    position: relative;
    overflow: hidden;
}

/*--blog--------------------------*/
#blog{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}
.blog-heading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
 
}
.blog-heading span{
    color: #f33c3c;
}
.blog-heading h3{
    font-size: 2.4rem;
    color: #2b2b2b;
    font-weight: 600;
}
.blog-container{
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0px;
    flex-wrap: wrap;    
}
 
.blog-box{
    width:350px;
    background-color: #ffffff;
    border: 1px solid #ececec;
    border-radius: 2%;
    margin: 20px 20px;
    box-shadow: 0 0 10px 0 rgba(154,154,154,.16);
}
.blog-img{
    width:100%;
    height: auto;
    cursor: pointer;
}
.blog-img:hover{
    opacity: 0.7;
}
.blog-img img{
    width:100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 2%;
}
.blog-text{
    padding: 30px;
    display: flex;
    flex-direction: column;
}
.blog-text span{
    color: var(--primary);
    font-size: 0.9rem;
}
.blog-text .blog-title{
    font-size: 1.5rem;
    font-weight: 500;
    color: #272727;
}
.blog-text p{
    color: #757575;
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 20px 0px;
}
.blog-text a{
    color: #0f0f0f;
}
.blog-text a:hover{
    color: var(--primary);
    transition: all ease 0.3s;
}
 
 
@media(max-width:1250px){
 
    .blog-box{
        width: 300px;
    }
} 
@media(max-width:1100px){
    .blog-box{
        width:70%;
    }
}
 
@media(max-width:550px){
   
    .blog-box{
        margin: 20px 10px;
        width: 100%;
    }
    #blog{
        padding:20px;
    }
}


/* header */

.main-header .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  color:white;
}

.main-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6)
}

.main-header * {
  z-index: 5;
}

.main-header .content h1 {
  font-size: 3.5rem;
  z-index: 1;
}

.main-header .content p {
  font-size: 2.0rem;
  max-width: 60rem;
  margin: 2rem 0 1rem;
  z-index: 1;
}

.main-header .content a {
    color: black;
    z-index: 1;
  }

.main-header nav li {
    cursor: pointer;
}

/* icons */
.icons {
    padding: 30px;
}

.icons h3 {
    font-weight: 400;
    margin-bottom: 15px;
}

.icons i {
    background-color: var(--primary);
    color: #fff;
    padding: 1rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

/* about */

.about {
    color: black;
    margin-bottom: -150px;
}

.about h1 {
    color: var(--warning);
}

.about p {
    margin: 2rem 0;
    text-align: justify;
}

.about img {
    background-size: cover;
    height: 70%;
    width: 100%;
    border-radius: 2%;
    
}

/* card slider */
.services{
    position: relative;
    max-width: 1120px;
    width: 100%;
    padding: 40px 0;
    margin: 0 auto;
}
.slide-container .card{
    border-radius: 25px;
    background-color: white;
    color:black;
    box-shadow: 0 0 10px 0 rgba(154,154,154,.16);
}
.slide-container .image-content,
.slide-container .card-content{
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.slide-container .image-content{
    row-gap: 5px;
    position: relative;
    padding: 25px 0;
}
.slide-container .image-content .overlay{
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: var(--secondary);
    border-radius: 25px 25px 0 25px;
}
.slide-container .image-content .overlay::before,
.slide-container .image-content .overlay::after{
    content: '';
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    background-color: var(--secondary);
}
.slide-container .card-content{
    overflow-y: auto;
    max-height: 300px;
    height: 300px;
}
.slide-container .image-content .overlay::after{
    border-radius: 0 25px 0 0;
    background-color: white;
}
.slide-container .slide-content{
    margin: 0 40px;
    overflow: hidden;
    border-radius: 25px;
}
.slide-container .card-image{
    position: relative;
    width: 150px;
    height: 150px;
    border-radius:50%;
    background-color: white;
    padding: 3px;
}
.slide-container .card-image .card-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius:50%;
    border: 4px solid var(--primary);
}
.slide-container .card-content .card-title{
    font-weight: 600;
    font-size: 18px;
    color:#333;
    margin-bottom: 1rem;
}
.slide-container .card-content .card-description{
    color:#707070;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    list-style-type: disc;
    margin-left: 2rem;
}
.slide-container .card-content .more-btn{
    display: none;
    border: none;
    font-size: 15px;
    color: white;
    background-color: var(--secondary);
    padding: 8px 16px;
    border-radius: 6px;
    margin: 14px;
    cursor: pointer;
    transition: all .3s ease;
}
.slide-container .more-btn:hover{
    background-color: var(--lightsecondary);
}

.services .swiper-button-next,
.services .swiper-button-prev{
    color:var(--lightsecondary);
    transition: color .3s ease;
}

.services .swiper-button-next:hover,
.services .swiper-button-prev:hover{
    color:var(--secondary);
}

.services .swiper-button-next::before,
.services .swiper-button-prev::after{
    font-size: 40px;
}
.services .swiper-button-next{
    right: 0;
}
.services .swiper-button-prev{
    left: 0;
}

@media screen and (max-width){
    .slide-content{
        margin: 0 10px;
    }
    .services .swiper-button-next{
        display: none;
    }

}

/* asked question */

.containerFluid {
    width: 100%;
    margin: 0 auto;
    margin-top: 100px;
    padding: 0;
    margin-bottom: 20px;
}
  .containerFluid p {
    text-align:initial;
    color: #707070;
  }
  
  .containerFluid h2 {
    color: 707070;
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 3rem;
    margin: 1rem 0;
    margin-bottom: 40px;
    margin-top: -30px;
    color: #333;
    padding-top: 100px;
  }
  
  .containerFluid h2::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 12px;
    width: 67px;
    height: 2px;
    background-color: 707070;
  }
  
  .accordion {
    width: 100%;
    padding: 0;
    cursor: pointer;
    border-radius: 50px;
    display: flex;
    margin: 10px 0;
    align-items: center;
  }
  
  .accordion .icon {
    margin: 0 10px 0 0;
    width: 30px;
    height: 30px;
    background-image: url('../img/toggle-bg.png');
    background-color: var(--secondary);
    background-repeat: no-repeat;
    background-position: 8px 7px;
    border-radius: 50%;
    float: left;
    transition: all 0.5s ease-in;
  }
  
  .accordion h5 {
    font-size: 17px;
    margin: 0;
    padding: 3px 0 0 0;
    font-weight: normal;
    color: #080808;
  }
  
  .active {
    background-color: var(--warning);
    color: #fff;
  }
  
  .active .icon {
    background-image: url('../img/toggle-bg.png');
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: 8px -25px;
  }
  
  .panel {
    padding: 0 15px;
    border-left: 1px solid var(--primary);
    margin-left: 25px;
    overflow: hidden;
    max-height: 0;
    transition: all 0.3s ease-in;
  }
  

/* service */

.princing-box {
    border-radius: 4px;
    border: solid 2px #f1efef;
    background-color: #fff;
    padding: 70px;
    text-align: left;
    transition: all 1s;
    box-sizing: border-box;
    padding: 0 0;
    list-style-type: disc;
}

.princing-box:hover{
    background-color: #b3b5b9;
    color: white;
}

.service {
    padding: 0;
    left: 0;
}


.service img {
    border-radius: 50%;
}

.service h1 {
    text-align: center;
}

.service img:hover {
    cursor: pointer;
    opacity: 0.8;
}

/* cards */
.card {
    color: #fff;
    font-weight: 700;
}

.card-body {
    padding: 2rem;
    margin-top: -10px;
}

/* teams */
.teams .flex-teams > div{
    box-shadow: 0 9px 15px 0 rgba(7, 42, 68, 0.09);
}
.teams .flex-teams h2{
    font-size: 22px;
}

.teams img {
    border-radius: 50%;
    width: 250px;
}

.teams img:hover {
    opacity: 0.7;
}

/* article */

.articles {
    padding: 3rem 5rem;
}

.articles img{
    border-radius: 2%;
}

.articles h2 {
    font-size: 20px;
    font-weight: normal;
    padding: 0 1rem;
}

.articles p {
    margin-top: 25px;
    margin-bottom: 30px;
}

.article {
    margin-top: 1.5rem;
    color: #fff;
}


/* footer */
.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 200px;
}

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

.footer a:hover {
    opacity: 0.7;
}

.footer .social a {
    margin-right: 10px;
}

/* whatsapp */

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    padding: 10px;
    border-radius: 50%;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 24px;
    border: none;
    transition: .2s all;
    text-align: center;
    cursor: pointer;
    z-index: 999999;
    box-shadow: 0 1px 6px 0 rgba(0,0,0,0.06),0 2px 32px 0 rgba(0,0,0,0.16);
}
.whatsapp-btn:hover {
    background-color: #128C7E;
}

/* top btn */
#goTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 10px;
    border-radius: 50%;
    background-color: var(--warning);
    color: white;
    width: 40px;
    height: 40px;
    font-size: 16px;
    border: none;
    outline: none;
    transition: .2s all;
    text-align: center;
    cursor: pointer;
    z-index: 999999;
    box-shadow: 0 1px 6px 0 rgba(0,0,0,0.06),0 2px 32px 0 rgba(0,0,0,0.16);
}
#goTopBtn:hover{
    opacity: 0.9;
}

/* footer */

footer {
    position: relative;
    width: 100%;
    height: auto;
    padding: 40px 200px 10px;
    background: #fff;
    background-color: #292e33;
}
footer .footer-container {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-gap: 20px;
}
footer .footer-container .sec h2 {
    position: relative;
    font-weight: 500px;
    font-size: 1.7rem;
    margin-bottom: 22px;
    color: var(--warning);
}
footer .footer-container .sci {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4,50px);
}
footer .footer-container .sci li a {
    display: inline-block;
    width: 36px;
    height: 36px;
    display: grid;
    align-content: center;
    justify-content: center;
    text-decoration: none;
}
footer .footer-container .sci li a i {
    color: #fff;
    font-size: 20px;
}
footer .footer-container .sci li a i:hover{
    color: var(--primary);
}
footer .footer-container .quicklinks {
    position: relative;
}
footer .footer-container .quicklinks ul li {
    list-style: none;
    
}
footer .footer-container .quicklinks ul li a {
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
    color: #fff;
}
footer .footer-container .quicklinks ul li a:hover {
    color: var(--primary);
    font-weight: bold;
}
footer .footer-container .footer-contact .info {
    position: relative;
}
footer .footer-container .footer-contact .info li {
    display: grid;
    grid-template-columns: 30px 1fr;
    margin-bottom: 16px;
}
footer .footer-container .footer-contact .info li i{
    display: flex;
    align-items: center;

}
footer .footer-container .footer-contact .info li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}
.copyrightText {
    width: 100%;
    padding: 10px 70px 0px;
    text-align: center;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.copyrightText span {
    color: var(--primary);
}
.foot {
    color: #fff;
}
.foot .sec li {
    color: #fff;
    margin-top: -8px;
    font-size: 1.4rem;
}
/* contact */

.contact{
    padding: 40px;
    padding-top: 100px;
}

.contact .contact-content{
    position: relative;
    margin-left: 200px;
    box-shadow: 0 20px 25px rgba(0,0,0,0.15);
    border-radius: 20px;
    padding: 40px;
    padding-left: 195px;
    background-color: var(--secondary);
}
.contact .contact-content .left-content{
    width: 300px;
    position: absolute;
    height: calc(100% - 80px);
    top: 40px;
    left: -150px;
    box-shadow: 0 20px 25px rgba(0,0,0,0.15);
    border-radius: 20px;
    padding: 30px;
    background-color: white;
}
.contact .contact-content .left-content h2{
    margin-bottom:3rem;
    font-size: 20px;
}
.contact .contact-content .left-content .contact-info{
    display: flex;
    flex-direction: column;
    color:#707070;
    font-size: 15px;
}
.contact .contact-content .left-content .contact-info-column{
    display: flex;
    margin-bottom: 1rem;
}
.contact .contact-content .left-content .contact-info-column i{
    margin-right: 10px;
}

.contact .contact-content .right-content .maps{
    overflow: hidden;
}

.contact .contact-content .right-content .maps iframe{
    width: 100%;
    margin-top: -60px;
    border: 0;
    height: 350px;
}

/* ribbon */

.ribbon {
    width: 40%;
    position: relative;
    background-color: var(--secondary);
    padding: 1em 2em;
}

.ribbon:before {
    content: "";
    position: absolute;
    display: block;
    border: 1.7em solid var(--secondary);
    margin-right: 40px;
    z-index: -1;
    right: -2em;
    border-right-width: 1.5em;
    border-right-color: #fff;
}

@media( max-width: 1200px ) {  

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 18px;
    }
    
    p {
        font-size: 14px;
    }

    .navbar2 .menu-btn{
        display: block;
        color: var(--warning);
        padding-right: 15px;
        font-size: 2rem;
    }
    .navbar2 nav{
        display: none;
    }
    .navbar2 .navbar2-brand {
        font-size: 14px;
        background-color: var(--white);
        color: var(--warning);
        font-size: 1.4rem;
        width: 90%;
    }

    .content span {
        text-transform: uppercase !important;
        font-weight: 500 !important;
        font-size: 20px !important;
    }
    
    .content a {
        width: 150px;
    }
    
    .content h1 {
        color: #fff !important;
        font-size: 30px !important;
        font-weight: 700 !important;
        margin-top: 0;
        margin-top: 0;
    }

    .menu-overlay-content a{
        color: #e0dede;
        font-size: 20px;
    }
    .main-header .content h1{
        font-size: 14px;
    }
    .main-header .content p{
        font-size: 14px;
    }
    .main-header .content a{
        font-size: 14px;
    }

    .teams .flex-teams {
        display: block;
    }

    .teams .flex-teams img {
        width: 150px;
        height: 150px;
    }
    .ribbon:before {
        display: none;
    }
}

@media (max-width:991px) {
    footer {
        padding: 40px;
    }

    footer .footer-container {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-gap: 20px;
    }
    .copyrightText {
        padding: 20px 40px 30px;
    }

    .contact{
        padding: 20px;
        padding-top: 170px;
        margin-top: -20px;
    }
    
    .contact .contact-content{
        margin-left: 0;
        padding: 20px;
        padding-top:125px;
    }
    .contact .contact-content .left-content{
        width: calc(100% - 40px);
        height: auto;
        top: -80px;
        left: 20px;
        right: 20px;
        padding: 20px;
    }
    .contact .contact-content .left-content h2{
        margin-top: 0;
        margin-bottom: 2rem;
        font-size: 18px;
    }
    .contact .contact-content .left-content .contact-info-column{
        font-size: 14px;
    }
    .contact .contact-content .left-content .contact-info-column:last-child{
        margin-bottom: 0
    }
    .contact .contact-content .right-content iframe{
        height: 300px;
    }
    .ribbon:before {
        display: none;
    }
}

@media (max-width:768px) {

    .content span {
        text-transform: uppercase !important;
        font-weight: 500 !important;
        font-size: 18px !important;
    }
    
    .content a {
        width: 150px;
    }
    
    .content h1 {
        color: #fff !important;
        font-size: 22px !important;
        font-weight: 700 !important;
        margin-top: 0;
        margin-top: 0;
    }

    footer .footer-container {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1,1fr);
        grid-gap: 20px;
    }
    .containerFluid {
        width: 100%;
        padding: 6px;
        padding-top: 110px;
        padding-left: 15px;
        text-align: center;
        margin-bottom: 10px;
    }
    .containerFluid p {
        text-align:initial;
        color: #707070;
      }
    .containerFluid h2 {
        position: relative;
        width: 100%;
        margin-bottom: 40px;
        margin-left: 0;
        font-size: 2.5rem;
        color: #333;
        padding-top: 10px;
    }
    .accordion h5 {
        font-size: 14px;
        margin: 0;
        padding: 3px 0 0 5px;
        font-weight: normal;
        color: #080808;
    }
    .about img {
        padding-left: 50px;
        background-size: cover;
        height: 100%;
        width: 80%;
        border-radius: 2%;
    }
    .text-muted {
        text-align: justify;
    }
    .about p {
        text-align: justify;
    }
    .ribbon:before {
        display: none;
    }
}

