
@font-face {
    font-family: '.Arimo-VariableFont_wght.';
    src: url("../fonts/Arimo-VariableFont_wght.ttf") format('truetype');
}

* {
    font-family: '.Arimo-VariableFont_wght.';
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}
nav {
    width: 100%;
    display: flex;
    z-index: 10;
    justify-content: space-between;
    padding: 22px 6%;
    background: transparent;
    border-bottom: 1px solid #D9D9D9;
}

/*Styling logo*/
.logo{
  max-width: 170px;
  padding:0;
  text-align: center;
	display:flex;
	align-items:center;
}
.logo img {
    width: 100%;
}
/*Styling Links*/
.nav-links{
    display: flex;
    list-style: none;
    padding: 0 0.7vw;
    justify-content: space-evenly;
    align-items: center;
    text-transform: capitalize;
}
.nav-links li a {
    text-decoration: none;
    margin: 1px 1.7vw;
    font-size: 15px;
    color: #9DA0A7;
    font-weight: 500;
}

.nav-links li a:hover {
    color: #DF0000;
}
.nav-links li {
    position: relative;
    /* padding: 20px 0px; */
}
.nav-links li a::before {
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    /* background-color: #f05454; */
    position: absolute;
    transition: all ease-in-out 250ms;
    margin: 0 0 0 10%;
    bottom: 0;
}
.nav-links li a:hover::before{
    width: 80%;
}

.toggle,
[id^=drop] {
	display: none;
}

nav a:hover { 
	color: #fff;
}
nav ul ul {
	display: none;
	position: absolute; 
	top: 60px;
	background: #fff;
	width: 300px;
	list-style: none;
	border-radius: 2px;
	padding-bottom: 15px;
}
nav ul li:hover > ul {
	display:inherit;
}
nav ul ul li {
	width:100%;
	float:none;
	display:list-item;
	position: relative;
	padding: 7px 0px !important;
}
li > a:only-child:after { content: ''; }



/*Styling Button*/

.join-button {
    color: #fff;
    background-color: #DF0000;
    border: 1.5px solid #DF0000;
    border-radius: 10px;
    padding: 10px 26px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
}
.join-button {
    color: #fff;
    background-color: #DF0000;
    border: 1.5px solid #DF0000;
    border-radius: 10px;
    padding: 10px 26px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
}

/*Styling Hamburger Icon*/
.hamburger div{
    width: 30px;
    height:3px;
    background: #f2f5f7;
    margin: 5px;
    transition: all 0.3s ease;
}
.hamburger{
    display: none;
}

/*Stying for small screens*/
@media screen and (max-width: 991px){
    .logo {
		padding: 0vh 0vw;
		text-align: center;
	}
	.logo img {
		width: 100%;
	}
	
    nav {
        position: absolute;
        z-index: 3;
        padding: 15px 0%;
        /* align-items: center; */
    }
    nav {
        width: 100vw;
        display: flex;
        z-index: 10;
        justify-content: space-between;
        padding: 22px 4%;
        background: transparent;
        margin: 0px auto;
        border-radius: 0;
    }
    .hamburger{
        display:block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: all 0.7s ease;
    }
    .join-button {
        color: #fff;
        background-color: transparent;
        border: 1.5px solid #fff;
        border-radius: 10px;
        padding: 8px 26px;
        font-size: 14px;
        cursor: pointer;
        font-weight: 600;
    }
    .nav-links{
        position: fixed;
        background: #DF0000;
        left: 0;
        height: 102vh;
        width: 100%;
        flex-direction: column;
        top: 0px;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
        justify-content: center;
    }
    .yadirabuton a{
        text-decoration: none;
    }
    .nav-links.open{
        clip-path: circle(1400px at 90% -10%);
        -webkit-clip-path: circle(1400px at 90% -10%);
        pointer-events: all;
        padding: 0px 50px;
    }
    .nav-links li{
        opacity: 0;
    }
    .nav-links li:nth-child(1){
        transition: all 0.5s ease 0.2s;
    }
    .nav-links li:nth-child(2){
        transition: all 0.5s ease 0.4s;
    }
    .nav-links li:nth-child(3){
        transition: all 0.5s ease 0.6s;
    }
    .nav-links li:nth-child(4){
        transition: all 0.5s ease 0.7s;
    }
    .nav-links li:nth-child(5){
        transition: all 0.5s ease 0.8s;
    }
    .nav-links li:nth-child(6){
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }
    .nav-links li:nth-child(7){
        transition: all 0.5s ease 1s;
        margin: 0;
    }
    li.fade{
        opacity: 1;
    }
	.nav-links li a {
		color:#fff;
	}
    .yadirabuton{
        display: flex;
    width: 100%;
    justify-content: flex-start;
    }
	.toggle + a,
	.menu {
		display: none;
	}

	.toggle {
		display: block;
		padding: 14px 0px;
		color:#FFF;
		font-size: 15px;
		text-decoration:none;
		border:none;
	}

	.toggle:hover {
		background-color: transparent;
	}

	[id^=drop]:checked + ul {
		display: block;
		width: 100%;
		background: transparent;
		transition: all 0.3s ease;
	}

	nav ul li {
		display: block;
		width: 100%;
        line-height: 3;
		}

	nav ul ul .toggle,
	nav ul ul a {
		padding: 0 40px;
	}

  
	nav ul li ul li .toggle,
	nav ul ul a{
		padding:14px 20px;	
		color:#FFF;
		font-size:17px; 
	}
	nav ul ul {
		float: none;
		position:static;
		color: #ffffff;
	}
	
	nav ul ul li:hover > ul,
	nav ul li:hover > ul {
		display: none;
	}
		
	
	nav ul ul li {
		display: block;
		width: 100%;
	}

	.hamburger div {
		background: #30475e;
		margin: 5px;
		
	}
}
/*Animating Hamburger Icon on Click*/

@media screen and (min-width: 992px) and (max-width: 1200px){
nav {
    padding: 0px 3%;
}
.logo img {
    width: 100%;
}
.nav-links li a {
    margin: 0 0.7vw;
    font-size: 14px;
}
.nav-links {
    display: flex;
    list-style: none;
    width: 100%;
}
.join-button {
    padding: 0.4rem 0.6rem;
    font-size: 13px;
}



}



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

.logo img {
    width: 100%;
}
.center-text-info {
    padding: 11% 12%;
    width: 100%;
    text-align: center;
}
#digital-sol .list .box h4 {
    font-size: 20px;
    line-height: 28px;
    padding-bottom: 10px;
}
#digital-sol .list .box h3 {
    font-size: 70px;
    line-height: 98px;
}
.digital-rev .right span {
    font-size: 32px;
    line-height: 38px;
}
.digital-rev .right h2 {
    font-size: 48px;
    line-height: 58px;
    margin: 20px 0px 50px;
}

}

@media screen and (min-width: 1366px) and (max-width: 1600px){

.logo img {
    width: 100%;
}
#digital-sol .list .box h4 {
    font-size: 20px;
    line-height: 28px;
    padding-bottom: 10px;
}
#digital-sol .list .box h3 {
    font-size: 70px;
    line-height: 98px;
}
.digital-rev .right span {
    font-size: 32px;
    line-height: 38px;
}
.digital-rev .right h2 {
    font-size: 48px;
    line-height: 58px;
    margin: 20px 0px 50px;
}

}

.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
    transition: all 0.7s ease;
    width:0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}