/***global - Don't copy the above!****/
section#main.main-ind{
	padding: 0
}
.pcs__row{
    display: flex;
    align-items: center;
}
:root{
    scroll-behavior: smooth;
}
.rec-specs{
    background-color: #000000;
    padding: 60px 0;
}
.landing-wrapper .rec-specs h2{
    text-align: center;
    font-size: 40px;
    padding: 0 35px;
    margin-bottom: 40px;
}
.product .column-ind-holder .column-ind-header {
	background: #0178d4;
    border-radius: 5px 5px 0 0;
  	padding: 20px;
  }
.product .column-ind-holder .column-content .product-image-holder .product-image {
  height:auto;
  padding:10px 0;
}
.product .column-ind-holder .column-content .product-image-holder .product-image img{
  width: 150px;
  height: auto;
}
.product .column-ind-holder .column-content {
  border-radius: 5px;
  border: none;
  padding: 0px!important;
  background: #08214c;
}
.product .column-ind-holder .column-ind-header h3 {
  color: #ffffff;
  text-transform: uppercase;
}
.product .column-ind-holder .column-content .products-points-holder ul li {
  font-size: 14px;
  color: #ffffff;
}
.product .column-ind-holder .column-content .config_button_holder .btn {
  background-color: #0178d4;
  border-color: #0178d4;
  color: #ffffff;
}
.product .column-ind-holder .column-content .products-points-holder {
  padding: 10px 20px 20px 20px;
  background: #08214c;
  margin-top: 0;
}
.product .column-ind-holder .column-content .products-points-holder ul li:before{
  	color: #0078d4;
}
.product .column-ind-holder .column-content .from-inc-price{
  	color: #ffffff;
  	padding: 0 20px;
  	font-size: 16px;
}
.product .column-ind-holder .column-content .from-inc-price span {
  	color: #00a9ea;
}
.product .column-ind-holder .column-content .config_button_holder .btn:hover{
  color: #ffffff;
  background-color: #006dc0;
  border-color: #006dc0;
}
.product .column-ind-holder .column-content .config_button_holder .btn p{
  font-size: 16px;
}


.eclipse-outer {
    position: absolute;
    left: 12%;
    top: 26%;
    height: 200px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    border-radius: 50%;
}
.eclipse-outer p{
    position: absolute;
    bottom: -40px;
}
.eclipse{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    width: 200px;
}
.eclipse span{
    font-size: 44px;
    font-weight: bold;
}

#feat3 .eclipse span {
	font-size: 30px;
}

#feat3 .vas{
    position: absolute;
    bottom: 100px;
    margin-left: auto;
    right: 16%;
    gap: 40px;
}
#feat3 .eclipse-outer{
    position: static;
}
#feat3 .eclipse-outer, #feat3 .eclipse{
    width: 100px;
    height: 100px;
}
/* Glowing effect using box-shadow */
.eclipse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%; /* Keep the glow in a circle */
    box-shadow: 0 0 20px 5px white; /* Glowing effect */
    z-index: 0; /* Make sure the glow stays behind the circle */
}



@font-face {
font-family: 'IntelOne Display Bold';
src: url('/fonts/IntelOneDisplay-Bold.otf');
}
@font-face {
font-family: 'IntelClear Reg';
src: url('/fonts/IntelClear-Regular.woff');
}
.landing-wrapper{
    background-color: #000;
    color: #ffffff;
}
.landing-wrapper a{
    font-family: 'IntelOne Display Bold';
}
.landing-wrapper h1{
    font-family: 'IntelOne Display Bold';
    font-weight: 700;
  	text-transform: none;
    font-size: 70px;
}
.landing-wrapper h2{
    font-family: 'IntelOne Display Bold';
    font-weight: 700;
  	text-transform: none;
    font-size: 30px;
}
.landing-wrapper h3{
    font-family: 'IntelClear Reg';
    font-weight: 700;
  	text-transform: none;
    font-size: 30px;
}
.landing-wrapper sup{
    font-size: 14px;
    vertical-align: super;
}
.landing-wrapper p{
    line-height: 1.5;
}
.lg-container{
    max-width: 1600px;
    margin: 0 auto;
	justify-content: center;
}
.landing-container {
	max-width: 1170px;
	margin: 0 auto;
}
.landing-button {
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    display: inline-block;
    padding: 15px 20px;
    color: #ffffff;
    border: 2px solid white; /* White border */
    background-color: transparent; /* Transparent background */
    cursor: pointer; /* Pointer cursor on hover */
    position: relative; /* Needed for positioning of the pseudo-element */
    transition: border 0.3s ease; /* Smooth transition for the border */
}

/* Glowing border effect */
.landing-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0 0 1px 0px white;
    opacity: 0.6; /* Soft glow */
    z-index: 0; /* Place it behind the button content */
    transition: opacity 0.2s ease, box-shadow 0.2s ease; /* Ensure smooth transition for opacity and glow */
}
.landing-button:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Faded white background */
}

/* Hover effect for glowing border */
.landing-button:hover::before {
    animation: pulse 1.5s infinite ease-in-out; /* Pulsing glow animation */
}

.landing-button:focus::before {
    animation: pulse 1.5s infinite ease-in-out;
}

/* Pulse animation */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 5px 0px white;
        opacity: 0.6;
    }
    50% {
        box-shadow: 0 0 15px 0px white;
        opacity: 1;
    }
}


/**columns**/
.pcs_col-2{ /**2columns**/
    width: 50%;
}
.pcs_col-3{ /**3columns**/
    width: 30%;
}
.pcs_col-4{ /**4columns**/
    width: 25%;
}

/*************for more padding inside div**********/
.col_inner{
    padding: 20px;
}


/**sections**/
.feature{
    padding: 40px;
}

/**feat1**/

.maincontent {
	background: url('/images/landing/intel/intel-arc/main-bg.jpg');
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: cover;
}
.maincontent h2 {
	font-size: 70px;
	line-height: 1.0em;
	padding-bottom: 20px;
}


#feat1{
	background-color: #000;
	background: url('/images/landing/intel/intel-arc/header-bg.jpg');
	background-position: 50%;
	background-repeat: no-repeat;
    background-color: #000;
    color: #fff;
	min-height: 800px;
}
#feat1 .pcs_col-2 {
	display: inline-block;
	width: 75%;
	vertical-align: middle;
}
.headercta {
	margin: 0 auto;
	text-align: center;
}
#product-mob {
	display: none;
}
#feat4 img[src$=".png"], #feat5 img[src$=".png"], #feat6 img[src$=".png"]{
	border-radius: 50%;
	box-sizing: border-box;
	box-shadow: 0 0 15px 0px white;
    opacity: 1;
}

#feat7{
    padding: 40px;
}
#feat7 p {
	font-size: 10px;
}

@media screen and (max-width: 1600px){
	.pcs_col-3{
        width: 40%;
    }

}

@media screen and (max-width: 1450px){
	.pcs_col-3{
        width: 50%;
    }

}


@media screen and (max-width: 1170px){
	#feat1 {
		text-align: center;
		background-size: cover;
	}
	#feat1 .pcs_col-2 {
		width: 100%;
	}
	#feat1 {
		padding: 0;
	}
	#feat1 .landing-container {
		padding: 0 40px 40px 40px;
	}
	#feat1 h1 {
		padding-bottom: 20px;
	}
	.landing-button {
		margin-bottom: 20px;
	}
	#feat1 h2 {
		padding-bottom: 40px;
	}
    .pcs__row{
        flex-wrap: wrap;
    }
	#feat2 .pcs__row, #feat4 .pcs__row, #feat6 .pcs__row{
        flex-wrap: wrap;
		flex-direction: column-reverse;
    }
    .pcs_col-2, .pcs_col-3{
        width: 100%;
    }

}
@media screen and (max-width: 720px){
	.landing-wrapper h1{
		font-size: 50px;
	}
	.maincontent h2 {
		font-size: 50px;
	}
	#product-mob {
		display: block;
		width: 100%;
	}
	#product-full {
		display: none;
	}
	#feat7 {
		padding: 20px;
	}
	.feature {
		padding: 0;
	}
	.col_inner {
		padding: 40px;
	}
    .pcs__row{
        flex-wrap: wrap;
    }
    .pcs_col-2, .pcs_col-3{
        width: 100%;
    }
    .pcs_col-4{
        width: 100%;
    }
	#feat3 .eclipse-outer, #feat3 .eclipse {
		width: 200px;
		height: 200px;
	}
	#feat3 .vas {
		position: revert;
		margin: 0 auto;
		justify-content: center;
	}
	#feat3 .col_inner {
		margin-bottom: 40px;
	}
}
@media screen and (max-width: 600px){

	#feat2 .eclipse-outer {
		left: 5%;
		height: 150px;
		width: 150px;
	}
	#feat2 .eclipse {
		height: 150px;
		width: 150px;
	}
	#feat2 .eclipse span {
		font-size: 36px;
	}
	#feat3 .eclipse-outer, #feat3 .eclipse {
		width: 150px;
		height: 150px;
	}

}
@media screen and (max-width: 450px){

	#feat2 .eclipse-outer {
		height: 100px;
		width: 100px;
	}
	#feat2 .eclipse {
		height: 100px;
		width: 100px;
	}
	#feat2 .eclipse span {
		font-size: 24px;
	}
	#feat3 .eclipse-outer, #feat3 .eclipse {
		width: 120px;
		height: 120px;
	}

}