@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;400;600;700&display=swap");
*,
*::after,
*::before {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
}
body {
	font-family: "Poppins", sans-serif;
	overflow-x: hidden;
  /* background-image: url("../img/kampushavadan.jpg"); */
}

h1 {
	width: 100%;
	padding: 3rem 0;
	display: flex;
	justify-content: center;
	gap: 1rem;
	/* font-size: calc(1rem + 2vw); */
	 text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5),
		2px 2px 2px rgba(0, 0, 0, 0.5), 3px 3px 2px rgba(255, 255, 255, 0.7),
		4px 4px 2px rgba(0, 0, 0, 0.7); 
	justify-content: center;
	align-items: center;
	/* background: orange; */
  background:linear-gradient(to right, #f0eeef , #1a4f94) !important;
	color: white;
  margin-top: 0px!important;
}

h1 span {
	text-transform: uppercase;
	/* font-size: calc(4rem + 2vw); */
	font-weight: 700;
	/* background: url("https://c.tenor.com/AaPeZRxwOuQAAAAC/fire-flames.gif"); */
	color: transparent;
	text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.2);
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
	background-size: cover;
}

.menu {
	position: sticky;
	top: 0;
}

.menu > ul {
	position: relative;
	display: inline-flex;
	width: 100%;
	/* background-color: #293b80; */
	color: white;
	font-weight: 600;
	justify-content: center;
	flex-wrap: wrap;
  margin-top: 6px !important;
  height: 50px;
}
.menu > ul > li {
	cursor: pointer;
    padding: 2rem 12rem;
    transition: ease-in 300ms;
    background-color: #293b80;
    border: solid 2px;
    border-radius: 30px;

}
.menu > ul > li:hover {
	background-color: #3f3f3f;
}
.menu ul li:hover .sub-menu {
	opacity: 1;
	transform: translatex(0);
	pointer-events: auto;
}
.sub-menu {
	position: absolute;
	background: #293b80de;
	width: 100%;
	padding: 1rem 2rem;
	pointer-events: none;
	left: 0;
	right: 0;
	top: 100%;
	opacity: 0;
	transform: translatex(-100%);
	transition: cubic-bezier(0.5, -0.15, 0.56, 1.51) 700ms;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top:22px;
}
.sub-menu > li,
.sub-menu > li > ul > li {
	cursor: pointer;
	position: relative;
}
.sub-menu > li {
	padding: 0.5rem 0;
}
.sub-menu > li > ul > li {
	padding: 0.2rem 0;
	margin: 0 0.5rem;
}
.sub-menu > li::after,
.sub-menu > li > ul > li::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 5px;
	/* background: orange; */
  background: linear-gradient(to right, #f0eeef , #1a4f94) !important;
	width: 50px;
	transform: scalex(0);
	transition: ease-in 100ms;
}
.sub-menu > li:hover::after,
.sub-menu > li > ul > li:hover::after {
	transform: scalex(1);
}

.grid-2 {
	display: grid;
	grid-template:
		"a a" auto
		"b b" auto;
	justify-content: space-evenly;
	justify-items: start;
	align-items: start;
	align-content: center;
}
.grid-2 > li {
	position: static !important;
	color: orange;
	font-weight: 700;
}
.grid-2 > li > ul > li {
	color: white;
	font-weight: 400;
}
.grid-2 > li::after {
	position: static;
}
.article {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 1630px;
	margin: 0 auto;
	padding: 4rem 2rem 2rem 2rem;
}
.article1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1630px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem 2rem;
    background-color: #9e9e9e59;
    border-radius: 10px;
}

.article2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1630px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem 2rem;
    background-color: #9e9e9e59;
    border-radius: 10px;
	margin-top: 20px;
    margin-bottom: 20px;
}
/* img {
	border-radius: 1rem;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
	margin: 2rem auto;
	width: 100%;
	height: 400px;
	object-fit: cover;
} */
#close,
#menu-icon {
	display: none;
}
@media screen and (max-width: 600px) {
	h1 {
		display: flex;
		gap: 0;
		flex-direction: column;
		/* background: orange; */
		color: white;
	}
	.menu {
		position: fixed;
		transform: translatex(100%);
		transition: ease-in-out 300ms;
		/* background: orange; */
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		padding: 1rem;
		height: 100%;
		overflow-y: auto;
	}
	.menu > ul {
		display: flex;
		justify-content: strech;
		align-items: strecht;
		flex-direction: column;
		gap: 1rem;
		margin-top: 2rem;
	}

	.sub-menu {
		position: static;
		opacity: 1;
		transform: translatex(0);
		display: flex;
		flex-direction: column;
	}

	.sub-menu > ul > li {
		padding: 0.5rem;
		border-radius: 0.5rem;
		/* background: orange; */
	}
	.grid-2 {
		display: flex;
		flex-direction: column;
		align-content: flex-start;
	}
	#close {
		display: flex;
		justify-content: center;
		position: absolute;
		top: 0.5rem;
		left: 0.5rem;
		z-index: 1;
		background: #3f3f3f;
		color: white;
		font-weight: 700;
		height: 25px;
		width: 25px;
		border-radius: 50%;
		cursor: pointer;
		transition: ease-in-out 300ms;
	}
	.menu.active {
		transform: translatex(0);
	}

	#menu-icon {
		display: flex;
		justify-content: center;
		cursor: pointer;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 99;
		background: #3f3f3f;
		color: white;
		padding: 0.5rem 1rem;
		border-radius: 0 0 0 0.5rem;
	}
	#menu-icon.active {
		display: none;
	}
	.menu > ul > li {
		background-color: #3f3f3f00;
		border-radius: 0.3rem;
	}
}
/* #wrapper #main .fullwidth-box .fusion-row {
  padding-left: 0;
  padding-right: 0;
}
.fusion-title {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin: 0 0 31px;
}

.comment-respond .fusion-title .comment-reply-title, .fusion-title h1, .fusion-title h2, .fusion-title h3, .fusion-title h4, .fusion-title h5, .fusion-title h6 {
  flex-grow: 0;
  padding: 0 8px 0 0;
}

.fusion-title .title-sep-container {
  position: relative;
  height: 6px;
  flex-grow: 1;
}
strong {
  font-weight: 700;
}

.post-content p {
  margin-top: 0;
  margin-bottom: 20px;
} */


.wpb_content_element{
  margin-bottom: 35px;
}


#content .wpb_alert p:last-child,
 #content .wpb_text_column :last-child,
  #content .wpb_text_column p:last-child, .wpb_alert p:last-child, .wpb_text_column :last-child, .wpb_text_column p:last-child {
    margin-bottom: 0;
}

.vc_row {
  margin-left: -15px;
  margin-right: -15px;
}
.vc_column_container {
  padding-left: 0;
  padding-right: 0;
}

.vc_column_container>.vc_column-inner {
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

.sayfa {
  display: block;
  width: 100%;
  padding: 24px;
  background: #FFF;
}
.sayfa .gorsel {
  display: block;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  box-shadow: 0 1px 3px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);
  border-radius: 2px;
}

.footer{
  background-color:#293b80;
  padding: 35px 0 0 0;
}

/**/
.serviceBox{
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  padding: 25px 25px 55px;
  position: relative;
  z-index: 1;
}
.serviceBox:before,
.serviceBox:after{
  content: '';
  background: linear-gradient(#a64cef, #882FD5);
  border-radius: 20px;
  position: absolute;
  left: 10px;
  right: 0;
  top: 15px;
  bottom: 0;
  z-index: -1;
}
.serviceBox:after{
  background: #fff;
  left: 0;
  right: 10px;
  top: 0;
  bottom: 15px;
  clip-path: polygon(30% 0, 100% 0, 100% 85%, 75% 100%, 0 100%, 0 20%);
}
.serviceBox .service-icon{
  color: #882FD5;
  font-size: 35px;
  text-shadow: 4px 4px rgba(0,0,0,0.1);
  margin: 0 0 10px;
}
.serviceBox .title{
  color: #882FD5;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.serviceBox .title span{ font-weight: 700; }
.serviceBox .description{
  color: #888;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.5px;
  margin: 0;
}
.serviceBox .read-more{
  color: #fff;
  font-size: 22px;
  line-height: 22px;
  position: absolute;
  right: 15px;
  bottom: 9px;
  transition: all 0.3s ease 0s;
}
.serviceBox .read-more:hover{
  color: rgba(255,255,255,0.7);
  text-shadow: 3px 3px rgba(255,255,255,0.1);
}
.serviceBox.darkgreen:before{ background: linear-gradient(#00A28D, #007385); }
.serviceBox.darkgreen .service-icon,
.serviceBox.darkgreen .title{
  color: #007385;
}
.serviceBox.blue:before{ background: linear-gradient(#293b8047, #293b80); }
.serviceBox.blue .service-icon,
.serviceBox.blue .title{
  color: #334486;
}
.serviceBox.green:before{ background: linear-gradient(#93c916, #3AB447); }
.serviceBox.green .service-icon,
.serviceBox.green .title {
  color: #3AB447;
}
@media only screen and (max-width:990px){
  .serviceBox{ margin: 0 0 30px; }
}
/**/

.blurred-container {
  position: relative;
  width: 100%;
  height: 540px;
  top: 0;
  left: 0;
}

.blurred-container .motto {
  color: #fff;
  font-size: 76px;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 0 10px rgb(0 0 0 / 33%);
  text-transform: uppercase;
  top: 100px;
  z-index: 3;
  display: block;
  margin: 0 auto;
  position: relative;
  width: 306px;
  height: 0;
}


.blurred-container>.img-src {
  width: 100%;
  height: 540px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url("../img/kampushavadan.jpg");
  z-index: -2;
}

#hero {
	width: 100%;
    height: 100vh;
    background-image: url(../img/kampus3.png);
    background-size: cover;
    background-repeat: no-repeat;
}
#hero .container {
    padding-top: 72px;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}
.center {
	margin: auto;
	width: 50%;
	border: 3px solid green;
	padding: 10px;
  }

  .brands_slider_container {
    height: 244px;
    border: solid 1px #e7e7e7;
    /* box-shadow: 0px 1px 5px rgb(0 0 0 / 10%); */
    padding-left: 97px;
    padding-right: 97px;
    background: rgb(231, 231, 231);
    color: #ccc;
}

.no-js .owl-carousel, .owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0,0,0);
}

@media screen and (min-device-width: 312px) and (max-device-width: 820px) { 
    #hero {
		width: 100%;
		height: 64vh;
		/* background-image: url(../img/kampus4.png);
		background-size: contain;
		background-repeat: no-repeat; */
	}

	.article {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		max-width: 1630px;
		margin: 0 auto;
		padding: 19rem 2rem 2rem 2rem;
	}
}



/**/


.navbar-custom-global {
	background:linear-gradient(to right, #f0eeef , #1a4f94) !important;
	border: 0;
	border-radius: 0;
	min-height: 120px;
	border-bottom: 6px solid #334486;
	font-family: Arial, sans-serif;
	box-sizing: content-box; /* for bottom border */
  }
  
  .navbar-custom-global .container {
	position: relative;
  }
  
  .navbar-custom-global .navbar-nav>li>a,
  .navbar-custom-global .navbar-nav>li>a:visited {
	color: #ffffff;
  }
  
  .navbar-custom-global .navbar-nav>li>a:hover {
	color: #6BD69B;
  }
  
  .navbar-brand {
	position: absolute;
	top: 20px;
	padding: 0;
	margin: 0;
	height: auto;
  }
  @media only screen and (max-width : 992px) {
	.navbar-brand {
	  top: 15px;
	  left: 15px;
	  font-size: 18px;
	  margin: 0;
	}
  }
  
  .navbar-custom-global .brand-skcc {
	position: absolute;
	top: 25px;
	left: 150px;
	color: #ffffff;
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: 1px;
  }
  @media only screen and (max-width : 992px) {
	.navbar-custom-global .brand-skcc {
	  top: 40px;
	  left: 15px;
	  font-size: 8px;
	}
  }
  
  .navbar-nav>li>a {
	padding-top: 20px;
	padding-bottom: 20px;
  }
  
  .navbar-nav {
	
  }
  
  .navbar-custom-global .navbar-collapse {
  
  }
  @media only screen and (max-width : 768px) {
	.navbar-custom-global .navbar-collapse {
	  border: 0;
	  box-shadow: none;
	}
  }
  
  .navbar-custom-global .navbar-collapse .nav {
  
  }
  @media only screen and (max-width : 768px) {
	.navbar-custom-global .navbar-collapse .nav {
	  padding-top: 40px;
	  padding-bottom: 40px;
	  width: 80%;
	  max-width: 300px;
	  text-align: center;
	  font-size: 16px;
	  text-transform: uppercase;
	  letter-spacing: 4px;
	  margin: 0 auto;
	}
	
	.navbar-custom-global .navbar-collapse .nav a:link,
	.navbar-custom-global .navbar-collapse .nav a:visited {
		color: #000000;
		border-bottom: 2px solid #000000;
	}
	
  }
  
  /* Large Devices, Wide Screens */
  @media only screen and (max-width : 1200px) {
  
  }
  
  /* Medium Devices, Desktops */
  @media only screen and (max-width : 992px) {
  
  }
  
  /* Small Devices, Tablets */
  @media only screen and (max-width : 768px) {
  
  }
  
  /* Extra Small Devices, Phones */ 
  @media only screen and (max-width : 480px) {
  
  }
  
  /* Custom, iPhone Retina */ 
  @media only screen and (max-width : 320px) {
  
  }
  
  .navbar-custom-global .navbar-toggle {
	padding: 8px;
    margin-top: 25px;
    margin-right: 20px;
    background-color: #217ff3;
    border-radius: 12px;
    border-width: 0px;
  }
  
  .navbar-custom-global .navbar-toggle:hover,
  .navbar-custom-global .navbar-toggle:focus {
	background-color: #6BD69B;  
  }
  
  .navbar-custom-global .navbar-toggle .icon-bar {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 4px;
	margin: 2px;
	background-color: #ffffff;
  }