/* Exporting Fonts */

@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v4-shims.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v5-font-face.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v4-font-face.min.css?token=7ca6a895ef);
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
* {
    box-sizing: border-box;
}

:root {
    --primarycolor: #134FC9;
    --black: #000000;
    --white: #ffffff;
}

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    color: var(--subtittle);
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
}

p {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
}

.site-btn {
    background: var(--primarycolor);
    border-radius: 78px;
    font-size: 16px;
    font-weight: 500;
    min-width: 157px;
    padding: 13px 12px;
    color: #ffffff;
}

.site-btn:hover {
    background: var(--white);
    color: var(--primarycolor);
}

.header {
    padding: 20px 0 50px;
}

.header .logo {
    max-width: 160px;
}

.header li.nav-item a {
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
    margin-right: 80px;
    cursor: pointer;
}

.header li.nav-item a:hover {
    color: var(--primarycolor);
}

.header-btn .site-btn {
    border: 1px solid var(--primarycolor);
    background: var(--white);
    color: var(--primarycolor);
    min-width: 183px;
    padding: 12px 12px;
}

.header-btn .site-btn:hover {
    background: var(--primarycolor);
    color: var(--white);
}

.header .container {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 24px;
}

.header .navbar-toggler {
    padding: 12px 16px;
}

.navbar-toggler:focus {
    box-shadow: unset;
}


/* Banner */

.banner {
    margin-bottom: 100px;
}

h1 {
    font-size: 54px;
    font-weight: 700;
    color: var(--black);
}

.banner-text h1 span {
    font-size: 80px;
}

.banner-text p {
    margin: 15px 0 40px;
}

.banner-btn .site-btn {
    min-width: 212px;
    padding: 12px 12px;
}

.banner-btn .site-btn:hover {
    background: var(--white);
    border: 1px solid var(--primarycolor);
    color: var(--primarycolor);
}

.banner .img {
    position: relative;
    z-index: 1;
}

.banner .img .grid-lines {
    width: 100%;
    margin: auto;
    display: block;
}

.banner .rotate-logo {
    width: 57px;
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: 0px 4px 24px 0px #0000001A;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner .rotate-logo img {
    width: 40px;
}

.banner .rotating-outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#rotatingLogos {
    width: 526px;
    height: 526px;
    position: relative;
}

@media (max-width:1199px) {
    .header li.nav-item a {
        margin-right: 40px;
    }
    #rotatingLogos {
        width: 450px;
        height: 450px;
    }
    h1 {
        font-size: 40px;
    }
    .banner-text h1 span {
        font-size: 55px;
    }
}

@media (max-width:991px) {
    .header li.nav-item a {
        font-size: 16px;
        margin-right: 0;
    }
    .banner-text {
        margin-top: 50px;
    }
    h1 {
        font-size: 35px;
    }
    .banner-text h1 span {
        font-size: 45px;
    }
    #rotatingLogos {
        width: 400px;
        height: 400px;
    }
    .banner .rotate-logo {
        width: 50px;
        aspect-ratio: 1;
    }
    .banner .rotate-logo img {
        width: 30px;
    }
}

@media (max-width:767px) {
    .header .logo {
        max-width: 140px;
    }
    .header-btn .site-btn {
        min-width: 120px;
    }
    .banner-text h1 span {
        font-size: 50px;
        display: block;
    }
    #rotatingLogos {
        width: 300px;
        height: 300px;
    }
    .banner .img .grid-lines {
        max-width: 300px;
    }
    .banner .rotate-logo {
        width: 40px;
        aspect-ratio: 1;
    }
}