
/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


/* Google Font Weight Css */

.lato-thin {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .lato-thin-italic {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .lato-light {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .lato-light-italic {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .lato-regular-italic {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .lato-bold-italic {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .lato-black {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .lato-black-italic {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: italic;
  }


/* End Of Google Font */

body {
    font-family: "Lato", sans-serif;
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
    overflow-x: hidden;
}

p {
    color: inherit;
    font-family: "Lato", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "Lato", sans-serif;
}

ul {
    list-style: none;
}

ol {
    list-style: circle;
}

a {
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

a,
a:hover {
    text-decoration: none !important;
}

.list-disc {
    list-style: disc;
}

.bg-red {
    background: #FF1616;
}

/* Navbar */

.navbar-nav li a {
    font-family: Lato;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.navbar-nav li a:hover {
    color: #FFFFFF;
}

.dropdown-menu {
    border: none;
    background-color: #0D1DF1;
}

.dropdown-menu li a:hover {
    background-color: #FF1616;
    color: #FFFFFF;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* remove the gap so it doesn't close */
}

/* End Of Navbar */

/* Custom Styles */

.container-custom {
    max-width: 1100px;
}

.w-80 {
    width: 80%;
}

.navbar-button {
    background: #0D1DF1;
    color: #fff;
    border: none;
    padding: 10px 16px;
}

.navbar-button:hover {
    color: #0D1DF1;
    background: #fff;
    border: none;
}

.nav-bg{
    background: #FF1616;
}


/* Banner Section */

.landing-page-banner {
    background: url(../images/banner/banner-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 684px;
}

.banner-text {
    padding-top: 6rem;
}

.banner-text h1 {
    font-family: "Lato", sans-serif;
    font-size: 65px;
    font-weight: 600;
    text-align: left;
    color: #fff;
}

.banner-text h1 span {
    color: #FF1616;
}

.banner-text p {
    font-family: "Lato", sans-serif;
    font-size: 18px;
    line-height: 30px;
    text-align: left;
    color: #FFFFFF;
    width: 600px;
}

.transparent-box img {
    height: 684px;
}

/* Icon Section */

.text-red {
    color: #FF1616;
}

.heading-text h3 {
    font-family: Lato;
    font-size: 36px;
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
}

.heading-text h3 span {
    color: #FF1616;
}

.heading-text p {
    font-family: Lato;
    font-size: 18px;
    margin-top: 35px;
    font-weight: 500;
    text-align: center;
    color: #3E3E3E;
}

.icon-content h4 {
    font-family: Lato;
    font-size: 22px;
    font-weight: 700;
    text-align: left;
}

.icon-content h4 span {
    color: #FF1616;
}

.icon-content p {
    margin-top: 30px;
    font-family: Lato;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
}


.content-text h5 {
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    color: #FF1616;
}

.content-text h2 {
    font-family: Lato;
    font-size: 34px;
    font-weight: 700;
    text-align: left;
}

.content-text p {
    font-family: Lato;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    color: #3E3E3E;
}

.btn-link-red {
    font-family: Lato;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    color: #FF1616;
}

.btn-link-red:hover {
    color: #3E3E3E;
}

.banner-btn-link-red {
    font-family: Lato;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    color: #FF1616;
}

.complete-text{
    display:none;
}

.more{
    background:lightblue;
    color:navy;
    font-size:13px;
    padding:3px;
    cursor:pointer;
}

.banner-btn-link-red:hover {
    color: #FFFFFF;
}

.content-right-top-padding {
    padding-top: 7rem !important;
}

.img-panel {
    position: absolute;
    right: 0px;
    width: 800px;
}

.text-content h2 {
    font-family: Lato;
    font-size: 36px;
    font-weight: 700;
    text-align: left;
    position: relative;
}

.text-content h2 span {
    color: #FF1616;
}

.text-content p {
    font-family: Lato;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    color: #3E3E3E;
    position: relative;
}

.img-content  {
    width: 500px !important;
    position: absolute;
    left: 50%;
}

.red-position {
    position: absolute;
    right: 0;
    top: 0;
    height: 95%;
    width: 40%;
}

.blue-position {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
}

.bg-blue {
    background: #0D1DF1;
}

.connect-info h2 {
    font-family: Lato;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
}

.connect-info a {
    font-family: Lato;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}

.connect-site-info a {
    font-family: Lato;
    font-size: 20px;
    font-weight: 500;
    text-align: left;
}

.connect-site-info {
    padding-top: 30px !important;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none !important;
}

/* Media Query for Mobile Devices */

@media only screen and (min-width: 320px) and (max-width: 480px) {
    .transparent-box {
        display: none;
    }

    .navbar-button {
        background: #0D1DF1;
        color: #fff;
        border: none;
        padding: 10px 16px;
        margin-left: auto;
        font-size: 12px;
    }

    
    .content-right-top-padding {
        padding-top: 2rem !important;
    }

    .red-position {
        position: absolute;
        right: 0;
        top: 0;
        height: -webkit-fill-available;
        width: 30%;
    }

    .landing-page-banner {
        height: fit-content;
    }

    .banner-text {
        padding-top: 2rem;
    }

    .banner-text h1 {
        font-size: 30px !important;
    }

    .banner-text p {
        font-size: 14px !important;
        line-height: 20px;
        width: fit-content;
    }

    .text-content h2 {
        font-size: 21px;
        position: relative;
    }

    .content-text h2 {
        font-size: 21px;
    }

    .heading-text h3 {
        font-size: 21px;
    }

    .img-panel {
        position: relative;
        right: auto;
        width: 100%;
        padding-right: 15px;
    }

    .icon-content h4 {
        text-align: center;
    }

    .icon-content p {
        text-align: center;
    }

    .navbar-brand img {
        width: 100px;
    }

    .connect-info h2 {
        font-size: 14px;
    }
    
    .connect-info a {
        font-family: Lato;
        font-size: 14px;
    }
    
    .connect-site-info a {
        font-size: 20px;
    }

    .connect-site-info {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
}


/* Media Query for low resolution Mobile Screens and  Tablets, Ipads */

@media only screen and (min-width: 481px) and (max-width: 767px) {
    .transparent-box {
        display: none !important;
    }

    .navbar-button {
        background: #0D1DF1;
        color: #fff;
        border: none;
        padding: 10px 16px;
        margin-left: auto;
    }

    .content-right-top-padding {
        padding-top: 2rem !important;
    }

    .red-position {
        position: absolute;
        right: 0;
        top: 0;
        height: -webkit-fill-available;
        width: 30%;
    }

    .landing-page-banner {
        height: fit-content;
    }

    .banner-text {
        padding-top: 2rem;
    }

    .banner-text h1 {
        font-family: "Lato", sans-serif;
        font-size: 50px;
        font-weight: 600;
        text-align: left;
        color: #fff;
    }

    .banner-text p {
        font-size: 18px;
        width: fit-content;
    }

    .img-panel {
        position: relative;
        right: auto;
        width: 100%;
        padding-right: 0px;
    }

    .icon-content h4 {
        text-align: center;
    }

    .icon-content p {
        text-align: center;
    }

    .connect-site-info {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
}


/* Media Query for Tablets Ipads portrait mode */

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .container-custom {
        max-width: 900px !important;
    }

    .navbar-nav li a {
        font-family: Lato;
        font-size: 10px;
        color: #fff;
    }

    .landing-page-banner {
        height: fit-content;
    }

    .banner-text {
        padding-top: 3rem;
    }

    .banner-text h1 {
        font-size: 50px !important;
    }

    .banner-text p {
        font-size: 20px !important;
        width: fit-content;
    }

    .transparent-box {
        display: none !important;
    }

    .content-text h2 {
        font-family: Lato;
        font-size: 24px !important;
    }

    .content-text p {
        font-family: Lato;
        font-size: 14px !important;
    }

    .content-right-top-padding {
        padding-top: 1rem !important;
    }

    .img-panel {
        position: relative;
        right: 0px;
        width: auto;
    }

    .red-position {
        position: absolute;
        right: 0;
        top: 0;
        height: -webkit-fill-available;
        width: 40%;
    }
}
 
/* Media Query for Small Laptops and Desktops */

@media only screen and (min-width: 1025px) and (max-width: 1200px) {

    .container-custom {
        max-width: 950px !important;
    }

    .navbar-brand img {
        width: 100px;
    }

    .navbar-nav li a {
        font-family: Lato;
        font-size: 10px;
        color: #fff;
    }

    .landing-page-banner {
        height: fit-content;
    }

    .banner-text {
        padding-top: 3rem;
    }
    
    .banner-text h1 {
        font-size: 50px !important;
    }

    .banner-text p {
        font-size: 20px !important;
        width: fit-content;
    }

    .transparent-box {
        display: none;
    }

    .content-text h2 {
        font-family: Lato;
        font-size: 25px !important;
    }

    .content-text p {
        font-family: Lato;
        font-size: 14px !important;
    }

    .content-right-top-padding {
        padding-top: 1rem !important;
    }

    .img-panel {
        position: relative;
        right: 0px;
        width: auto;
    }

    .red-position {
        position: absolute;
        right: 0;
        top: 0;
        height: -webkit-fill-available;
        width: 40%;
    }
}

/* Media Query for Large screens Laptops & Desktops */

@media only screen and (min-width: 1201px) and (max-width: 1365px) {
    .container-custom {
        max-width: 1100px;
    }
    

    .landing-page-banner {
        height: fit-content;
    }

    .transparent-box {
        display: block;
    }
    
    .transparent-box img {
        height: webkit-fill-available;
    }

    .img-panel {
        position: absolute;
        right: 0px;
        width: 50%;
        top: inherit;
    }
}


/* Media Query for More Extra Large screens */
	
@media only screen and (min-width: 1366px) and (max-width: 1600px) {
    .img-panel {
        position: absolute;
        right: 0px;
        width: 750px;
    }
}

@media only screen and (min-width: 1601px) and (max-width: 1900px) {
    .img-panel {
        position: absolute;
        right: 0px;
        width: 850px;
    }
}

@media only screen and (min-width: 1901px) and (max-width: 4000px) {
    .img-panel {
        position: absolute;
        right: 0px;
        width: 950px;
    }
}
