@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');
/* font-family: Hanken Grotesk */

:root{
    /* -- Fonts --*/
    --font-han: "Hanken Grotesk";
    /* -- Colors --*/
    --color-brown:#8e7965;
    --color-black:#000000;
    --color-white:#ffffff;
    --color-green: #465b5d;
}
body{
    font-family: var(--font-han);
}
/* ------ Start Navbar --------- */
.nav-bg{
    border-bottom: 1px solid #8e79653d;;
}
.igi-logo{
    width: 150px;
}
/* ------ Start Banner --------- */
.banner-mar{
    margin-top: 30px;
}
.banner-bg{
    background: linear-gradient(45deg, #dedede 0%, #f6f6f6 100%);
    padding: 72px 35px;
}
.banner-head>h1{
    color: var(--color-black);
    font-size: 38px;
    font-weight: 400;
}
.banner-head h3{
    font-size: 20px;
    color: #475467;
    font-weight: 400;
}
.banner-img{
    max-width: 100%;
    height:auto;
}
.input-box{
    position: relative;
}
.form-control{
    border-radius: 0;
    padding: 16px 25px;
}
.form-control:focus{
    border: none;
    box-shadow: none;
}
.input-box button{
    position: absolute;
    right: 0px;
    top: 0px;
    background-color: var(--color-green);
    color: #FFFFFF;
    height: 57px;
    border: none;
    font-size: 16px;
    padding: 5px 25px;
    transition: all .3s ease-in-out;
}
.input-box button:hover{
    background-color: var(--color-black);
    transition: all .3s ease-in-out;
}
/* ------ Start 2nd Banner --------- */
.banner-sec{
    margin: 55px 0px;
}
.banner-sec h3{
    font-size: 45px;
    font-weight: 300;
}
.banner-sec-pad{
    padding: 40px 30px;
}
.banner-sec .banner-logo{
    display: flex;
    justify-content: center;
    margin-top: 25px;
}
.banner-logo>img{
    width: 200px;
    height:auto;
}
/* ------ Start IGI Reports --------- */
.igi-repo{
    padding: 20px 0px 30px 0px;
}
.igi-repo .igi-flex{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;    
}
.all-repo-btn{
    
}
.all-repo-btn>a{
    text-decoration: none;
    font-size: 16px;
    color: var(--color-green);
    border: 1px solid var(--color-black);
    padding: 5px 20px;
    border-radius: 2px;
    text-wrap-mode: nowrap;
    transition: all .3s ease-in-out;
}
.all-repo-btn>a:hover{
    color: var(--color-white);
    background-color: var(--color-green);
    border: 1px solid var(--color-green);
    transition: all .3s ease-in-out;
}
.igi-rep-des{
    
}
.igi-rep-des>h4{
    font-size: 32px;
}
.igi-rep-des p{
    font-size: 20px;
}
.repo-dif{
    margin-top: 40px;
}
.repo-dif img{
    height: 300px;
    object-fit: cover;
	object-position: top;
}
.ver-btn>a{
    text-decoration: none;
    color: var(--color-brown);
    transition: all .3s ease-in-out;
}
.ver-btn>a:hover{
    color: var(--color-black);
    transition: all .3s ease-in-out;
}
.ver-btn>a>i{
    color: var(--color-green);
}
/* ------ Start Footer --------- */
.terms-con{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}
.terms-con a{
    color: var(--color-white);
}
.footer-icon{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}
.footer-icon>li{
    list-style: none;
}
.footer-icon>li>a{

}
.footer-bg{
    padding: 40px;
}
.footer-icon>li>a>i{
    font-size: 20px;
    color: #98a2b3;
}
.footer-icon>li>a>i:hover{
    color: var(--color-white);
}

.whatsapp_icon {
    position: fixed;
    left: 12px;
    line-height: 0;
    top: auto;
    z-index: 99999;
    bottom: 150px;
}
.whatsapp_icon a {
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 20px;
    box-shadow: none;
    z-index: 100;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsapp_icon a.linkwhtasap .countinggp {
    width: 18px;
    height: 18px;
    display: block;
    position: absolute;
    left: 4px;
    top: -7px;
    transition: all ease-in-out 0.2s;
    border: 1px solid #fff;
    border-radius: 50%;
    background: #f20013;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
    padding: 2px;
    line-height: 13px;
}
.whatsapp_icon img {
    width: 32px;
    vertical-align: middle;
}
a.linkwhtasap:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 20px;
    border: 5px solid #00ff5f8c;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    pointer-events: none;
}
@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}