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

html {
    --primary-color: #cb252b;
    --secondary-color: #2f2e7a;
    --font-amiri: 'Amiri', serif;
    --font-open-sans: 'Open Sans', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-amiri)
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

p {
    font-size: 1.5rem;
    color: rgb(83, 83, 83);
    font-weight: 400;
    font-family: var(--font-open-sans);
    margin: 1.5rem 0;
}

/* Typography  */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-amiri);
    text-transform: capitalize;
}

h1 {
    font-size: 4rem;
    font-weight: 500;
}

h2 {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.text-blue {
    color: var(--secondary-color);
    transition: color .3s ease-in-out;
}

.text-blue:hover {
    color: var(--primary-color);
}

/* page titles for each page  */

.page-section {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.bg-cover {
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
}

.overlay {
    position: relative;
}

.overlay::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: .6;
}

.page-title {
    position: relative;
    z-index: 999;
}

.breadcrumb-active {
    color: var(--primary-color);
}

/* dividers border  */

.section-title-border {
    position: relative;
    height: 5px;
    width: 30px;
    background: var(--secondary-color);
    border-radius: 10px;
    margin-bottom: 20px;
}

.section-title-border::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 50%;
    background: var(--primary-color);
    border-radius: 10px;
    right: -60%;
    top: 0;
}

.section-title-border::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 25%;
    background: var(--secondary-color);
    border-radius: 10px;
    right: -100%;
    top: 0;
}

/* social share icons  */

.social-share-icons .bx {
    padding: 10px;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
}

.bxl-facebook {
    background: #3B5998;
    color: white;
}

.bxl-linkedin {
    background: #007bb5;
    color: white;
}

.bxl-whatsapp {
    background: #00b489;
    color: white;
}

.bxl-twitter {
    background: #55ACEE;
    color: white;
}


/* top header  */

.container {
    z-index: 99;
}


.top-header {
    background: var(--secondary-color);
    min-height: 5rem;
    display: flex;
    align-items: center;
}

.top-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.top-left-header {
    display: flex;
}

.top-left-header .phone .bi,
.mail .bi {
    color: white;
    font-size: 1.2rem;
    padding-right: .5rem;
}

.top-left-header .phone a,
.mail a {
    color: white;
    font-size: 1.3rem;
}

.top-left-header .phone {
    padding-right: 1rem;
}

/* button  */

.btn {
    padding: .5rem 1.3rem;
    background: var(--primary-color);
    color: white;
    font-size: 1.5rem;
    border-radius: 0px;
}

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

/* navigation menu  */

nav {
    display: flex;
    justify-content: space-between;
}

.nav-links {
    display: grid;
    place-content: center;
}

.nav-links ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.nav-links a {
    color: var(--secondary-color);
    padding: .5rem 1rem;
    font-size: 1.2rem;
    transition: all .2s linear;
}

.nav-active {
    background-color: var(--primary-color);
    color: white !important;
    padding: .5rem 1rem;
    font-size: 1.2rem;
}

.nav-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

header {
    box-shadow: #5858581c 0px 3px 14px 0px;
    padding: 0;
}

.nav-logo img {
    width: 70%;
}

/* custom dropdown menu  */

.dropbtn {
    background-color: #ffffff;
    color: var(--secondary-color);
    padding: 16px;
    font-size: 16px;
    border: none;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
    font-size: 1rem;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 162px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    
  }
  
  .dropdown-content a:hover {
      color: #fff;
      background-color: var(--secondary-color);
    }
  
  .dropdown:hover .dropdown-content {display: block;}
  
  .dropdown:hover .dropbtn {
      background-color:var(--primary-color);
       color:#fff;}

 

/* custom dropdown menu end */





/*homepage hero section */
.hero {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 90vh;
}

.video-container {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    min-height: 100%;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 99%;
    background: linear-gradient(to left, #cb252ab7, #2f2e7ac0);
    z-index: 0;

}

.hero-content {
    width: 50%;
    z-index: 99;
}

.hero-content h1 {

    font-weight: 600;
    color: white;
    z-index: 1;
    text-shadow: #00000042 1px 4px 17px;
}

.hero-content p {
    color: white;
}

/*homepage what we do?  */

.what-we-do {
    margin: 6rem 0;
}

.heading-title {
    color: var(--primary-color);
    border-left: .4rem solid var(--secondary-color);
    padding: 0rem 1.5rem;
}

.what-we-do p {
    padding-top: 1rem;
}

.icon-box {
    justify-content: space-around;
}

.box-gradient {
    background: linear-gradient(to top, #cb252a, #2f2e7a);
    color: white;
}

.box-gradient p {
    color: white;
}

.box-gradient .bx {
    font-size: 2.5rem;
    color: white;
}

.box-normal h4 {
    color: var(--secondary-color);
}

.box-normal .bx {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.box h2 {
    color: var(--secondary-color);
}


/*homepage about section  */

.about {
    margin: 5rem 0;
}

.about-content {
    background: linear-gradient(to left, #cb252b, #2f2e7a);
    padding: 3rem;
    margin-left: -2.5rem;
}

.about-title {
    color: white;
    border-left: .4rem solid white;
    padding: 0rem 1.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: rgba(255, 255, 255, 0.883);
}

.about-img {
    height: 350px;
    object-fit: cover;
}

/*homepage counter  */

.funfacts {
    background: linear-gradient(to left, #cb252a, #2f2e7a);
    margin: 5rem 0;
}

.stats-icon>i {
    font-size: 4rem;
    margin-right: 1rem;
    color: white;
}

/* counter ends  */


/* homepage blog  */

.card-text {
    font-size: 1rem;
}

.card-title {
    font-size: 1.5rem;
    color: var(--secondary-color)
}

.card-body a {
    color: #cb252b;
}

.card {
    border-radius: 0px;
    border: none;
}

.insights-left {
    margin: 3rem 0;
}

.insights {
    margin: 5rem 0;
}

/*homepage newsletter  */

.newsletter {
    position: relative;
    min-height: 50vh;
    display: grid;
    place-content: center;
    background: url(../images/container3.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}

.newsletter::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #cb252ac9, #2f2e7ac5);
}

.title-newsletter {
    font-size: 3rem;
    font-weight: 600;
}

.newsletter p {
    color: white;
    font-size: 1.2rem;
    margin: 1rem 0;
}

input {
    border-radius: 0px !important;
}

input::placeholder {
    font-size: 1.3rem;
}

.btn-submit:hover {
    background: #2f2e7a;
    color: white;
}


/* footer  */

footer h5 {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
    border-left: .4rem solid var(--primary-color);
    padding: 0rem 1.5rem;
}

footer p {
    margin-top: 1rem;
}

.footer-icon {
    margin-top: 2rem;
    display: flex;
    
    height: 5rem;
}


.footer-icon i {
    color: white;
    background: var(--primary-color);
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    padding-left: 12px;
    border-radius: 50%;
    padding-top: 9px;
    margin-right: 1rem;
    transition: all .3s ease-in-out;
}
.footer-icon i:hover{
    background-color: var(--secondary-color);
    cursor: pointer;
}


.footer-info .mail a,
.footer-info .phone a {
    color: #2f2e7a;
    font-size: 1.5rem;
}

.footer-info .mail .bi, .footer-info .phone .bi {
    color: #cb252b;
    font-size: 1.2rem;
    font-size: 1.8rem;
}
.footer-info .phone .bi {
    color: #cb252b;
    font-size: 1.2rem;
}

.footer-info .phone .bi {
    margin-right: .5rem;
    font-size: 1.8rem;
}

.footer-text {
    margin-top: 1.5rem;
}

.footer-copyright {
    background: var(--secondary-color);
    padding: .5rem 0;
}

.footer-copyright p {
    color: white;
    font-size: 1.2rem;
    padding: 0;
    margin: 0;
}

/* seb blog css  */
a:hover{
    color: var(--primary-color);
}

.card-type {
    position: absolute;
    top: 30px;
    left: 30px;
    padding: 3px 10px;
    color: #fff;
    background: var(--primary-color);
    z-index: 1;
}

.media {
    display: flex;
    align-items: flex-start;
}

.media-body {
    flex: 1;
}

img.mr-3.post-thumb-sm {
    max-width: 8rem;
    margin-right: 1rem;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

a.page-link {
    color: var(--primary-color);
}

.post-tags{
    display: inline-block;
    padding: .3rem .4rem;
    background: var(--secondary-color);
    color: white;
    margin: .2rem;
    transition: background-color .3s ease-in-out;
}

.post-tags:hover{
    background-color: var(--primary-color);
    color: white;
}

/* --------------------- Responsive -------------------- */

.nav-mobile {
    display: none;
}

.mobile-nav-icons .bx {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0 .5rem;
}

.mobile-nav-icons a {
    color: var(--secondary-color);
    font-size: 1rem;
}

.mobile-nav-icons ul {
    margin: 0;
}

/* media Query  */

@media (max-width:1190px) {
    .hero-content {
        width: 70%;
    }
}

@media (max-width:986px) {
    .nav-mobile {
        display: block
    }

    .nav-desktop {
        display: none;
    }

    .navbar-toggler {
        padding: .25rem .75rem;
        font-size: 1.25rem;
        line-height: 1;
        background-color: transparent;
        border: 1px solid transparent;
        border-radius: 0rem;
        color: blue;
        transition: box-shadow .15s ease-in-out;
    }

    .navbar-toggler:focus {
        outline: none;
    }

    a.nav-link.active {
        padding: 1rem;
    }

    .navbar-light .navbar-nav .nav-link {
        color: rgb(24 23 61);
        padding: 0.5rem;
    }

    .navbar-light .navbar-nav .nav-link:hover {
        background: var(--primary-color);
        padding: 0.5rem;
        color: white;
    }

    .hero-content {
        width: 80%;
    }
}

@media (max-width:762px) {

    h2 {
        font-size: 2.5rem;
        font-weight: 600;
        color: var(--primary-color);
    }

    h3 {
        font-size: 1.8rem;
        font-weight: 600;
        color: var(--primary-color);
    }

    h4 {
        font-size: 1.5rem;
        font-weight: 600;
        text-transform: uppercase;
    }

    .top-header {
        display: none;
    }

    .hero-content {
        width: 90%;
    }

    .hero-content {
        width: 90%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    footer .col-md-4 {
        margin: 1rem 0rem;
    }
}
@media (max-width:762px) {
    .bg-light {
    
        display: block;
    }
    nav {
        display: block;
    }
    .top-header-container{
        text-align: center;
        flex-direction: column;
    }
}