@charset "UTF-8";

/* CSS Document */


/***************************************************************************/


/***************************** GENERAL STYLES *******************************/


/***************************************************************************/

body {
	font-family: 'Roboto';
}


.wrapper {
	width: 100%;
	margin: 0px auto;
	padding: 0px 80px;
	position: relative;
	display: block;
}


.innerWrapper{
	max-width: 1000px;
	width: 100%;
	margin: 0px auto;
	padding: 0px 0px;
	position: relative;
	text-align: center;
	display: block;
	z-index: 1;
}

.section {
	padding: 90px 0px;
	position: relative;
}

.section + .section{
	padding-top: 0;
}

.section.grey + .section,.section + .section.grey, .section + .section.lightBlue{
	padding-top:90px;
}


.col-1-4 {
	width: 23%;
	margin: 1%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-3-4 {
	width: 73%;
	margin: 1%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-1-3 {
	width: 31.333%;
	margin: 1%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-2-3 {
	width: 64.66%;
	margin: 1%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-1-2 {
	position: relative;
	display: inline-block;
	vertical-align: top;
	padding: 80px 0px;
	gap: 80px;
	right: 110px;
	font-size: 20px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 115%;
}
.col-1-5 {
	width: 18%;
	margin: 1%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-2-5 {
	width: 38%;
	margin: 1%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-3-5 {
	width: 58%;
	margin: 1%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-4-5 {
	width: 78%;
	margin: 1%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-1-10 {
	width: 8%;
	margin: 1%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-9-10 {
	width: 88%;
	margin: 1%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-1 {
	margin: 1%;
	width: 98%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-1-6 {
	width: 14.66%;
	margin: 1%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-1-7 {
	width: 12%;
	margin: 1%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-1-10 img, .col-1-4 img, .col-1-2 img, .col-1-3 img, .col-1-5 img, .col-1 img {
	width: 100%;
	height: auto;
	margin: 0px;
	display: block;
	padding: 0px;
}
.middle {
	vertical-align: middle;
}
.bottom {
	vertical-align: bottom;
}
.parallax-window img {
	width: 100%;
	height: 100%;
	margin: 0px;
	display: block;
	padding: 0px;
}
.center {
	text-align: center;
}
.grey {
	background: #f2f2f2;
}
.navy {
	background: #2a2247;
}

.green{
	background: #00B388;
}

.lightBlue {
	background: #33bfcf;
}


.navy *,.green *, .lightBlue *{
	color: #fff;
}


.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    margin-top:30px;
    margin-bottom: 30px;
}

.wrapper .video-container,.innerWrapper .video-container{
	margin-top:0;
}

.video-container embed, .video-container iframe, .video-container object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.button {
	display: inline-block;
    padding: 10px 40px;
    background: transparent;
    color: #3d5074;
    border: 2px solid #3d5074;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    text-transform: capitalize;
    text-align: center;
    margin-bottom:20px;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.lightBlue .button {
	color: #fff;
}


p + .button {
	margin-top: 50px;
}


/***************************************************************************/


/***************************** HEADER STYLES *******************************/


/***************************************************************************/

.header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 50%;
}

.header a {
	position: relative;
	text-decoration: none;
	color: rgb(0, 0, 0);
	font-size: 18px;
	font-weight: 600;
	padding: 10px 15px;
	display: inline-block;
	-webkit-transition: -webkit-transform 0.3s ease-in-out;
	transition: -webkit-transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.header a:hover {
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
}

.header a::after{
	content: "";
	position: absolute;
	left: 50%;
	bottom: -5px;
	width: 0;
	height: 4px;
	background: rgb(188, 12, 12);
	border-radius: 2px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}

.header a:hover::after {
	width: 100%;
}

.logo img {
	max-width: 230px;
	height: auto;
}

.logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin: 0px;
}

.search-bar {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
   border: 1px solid #ccc;
   border-radius: 20px;
   padding: 5px;
   background: #f9f9f9;
}

.search-bar input {
    border: none;
    outline: none;
    padding: 5px 10px;
    width: 90px; /* Adjust width as needed */
    background: transparent;
}

.search-bar button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
}

.header-container1 .wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 0 20px;
}

.header-container2 .wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 0 20px;
}

.header-container2 {
	position: absolute;
	width: 100%;
	padding: 15px 0;
	z-index: 10;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.header-container1 {
	position: relative;
	width: 100%;
	padding: 15px 0;
	z-index: 10;
	border-radius: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.logo img {
	width: 230px;
}

.logo img:hover {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

/************** MOBILE NAV STYLES ***************/

#mobile-header {
	display: none;
	vertical-align: middle;
}
#mobile-header svg {
	width: 80px;
	height: 100%;
	cursor: pointer;
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
#mobile-header path {
	fill: none;
	-webkit-transition: stroke-dashoffset 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25), stroke-dasharray 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25);
	transition: stroke-dashoffset 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25), stroke-dasharray 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25);
	stroke-width: 30px;
	stroke-linecap: round;
	stroke: #3d5074;
	stroke-dashoffset: 0px;
}

header.home #mobile-header path {
	stroke: #fff;
}



#mobile-header .cross path#top, #mobile-header .cross path#bottom {
	stroke-dashoffset: -650px;
	stroke-dashoffset: -650px;
}
#mobile-header .cross path#middle {
	stroke-dashoffset: -115px;
	stroke-dasharray: 1px 220px;
}
#mobile-header path#top, #mobile-header path#bottom {
	stroke-dasharray: 240px 950px;
}
#mobile-header path#middle {
	stroke-dasharray: 240px 240px;
}
#mobile-header .cross path#top, #mobile-header .cross path#bottom {
	stroke-dashoffset: -650px;
	stroke-dashoffset: -650px;
}
#mobile-header .cross path#middle {
	stroke-dashoffset: -115px;
	stroke-dasharray: 1px 220px;
}

.sidr {
	display: block;
	position: fixed;
	top: 0;
	left: -100%;
    min-height: 100vh;
	height: 100%;
	height: -webkit-fill-available;
	min-height: -webkit-fill-available;
	z-index: 999999;
	width: 100%;
	overflow-x: none;
	overflow-y: auto;
	background: #33bfcf;
	color: #fff;
	-webkit-box-shadow: -2px 0px 6px 0px rgba(0, 0, 0, 0.3);
	box-shadow: -2px 0px 6px 0px rgba(0, 0, 0, 0.3);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.sidr .main{
    height: 100vh;
    height: -webkit-fill-available;
    height: calc(100vh - 371.5px);
    padding: 30px;
    margin-top: 150px;
    overflow: scroll;
}

.sidr .main .menu{
    padding: 0;
    margin: 0;
}

.sidr .main .menu li{
	padding:0;
	margin:0;
	list-style: none;
}

.sidr .main .menu li a{
	display: block;
	text-align: center;
	padding:10px 0;
	color: #fff;
}

.sidr .contactBar{
	padding: 20px 30px;
    background: #f7f6f7;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

}

.sidr .contactBar .tel{
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    display: block;
}

.sidr .contactBar .tel i{
	font-size: 30px;
    margin-right: 10px;
}

.sidr .footer{
	background: #33bfcf;
	padding: 20px 40px;
    position: absolute;
    
    bottom: 72.5px;
    left: 0;
    right: 0;
}

.sidr .footer .details .button {
	display: block;
	color: #fff;
}

.sidr .footer .details .button + .button {
	margin: 0;
}

.sidr .footer input{
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    background: transparent;
    color: #fff;
    border: 0;
    border-bottom: 1px solid #fff;
    -webkit-appearance:none;
    border-radius: none;
}

.sidr .footer input::-webkit-input-placeholder {
	color: #fff;
}
.sidr .footer input:-moz-placeholder {
	color: #fff;
}
.sidr .footer input::-moz-placeholder {
	color: #fff;
}
.sidr .footer input:-ms-input-placeholder {
	color: #fff;
}

.sidr .footer input[type="submit"]{
	    display: none;
}

/*************************************************************************/


/***************************** MAIN STYLES *******************************/


/*************************************************************************/

.course-button {
	background-size: cover;
	background-position: center;
	height: 290px;
	width: 48%;
	position: relative;
	color: white;
	text-align: center;
	padding: 15px;
	text-decoration: none;
	-webkit-transition: all 0.3 ease;
	transition: all 0.3 ease;
	border-radius: 8px;
	border-color: none;
	-webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.8);
	        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.8);
}

.course-button p {
	position: absolute;
	top: 50%;
	left: 43%; 
	-webkit-transform: translateX(-50%, -50%); 
	    -ms-transform: translateX(-50%, -50%); 
	        transform: translateX(-50%, -50%);
	margin: 0;
	font-size: 18px;
	font-weight: bold;
	color: rgb(188, 12, 12);
	scale: 3;
	
}

.course-button:hover {
	opacity: 0.8;
	cursor: pointer;
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	-webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.8);
	        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.8);
	
}

.col-1-2  {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
left: 0px;
font-family: Roboto;
font-weight: 400;
line-height: 28px;
}


.col-1-3{
	width: 31.333%;
	position: relative;
	max-height: 300px;
	height: 259px;
}




/************************ STFC ICUIL Project ****************************/

.hero-section {
  position: relative;   /* make this container the reference for absolute positioning */
  width: 100%;
  height: auto;
}

.hero-section .background {
  width: 100%;
  height: auto;
  display: block;
}

.hero-section .Logo {
  position: absolute;
  top: 40px;    /* distance from the top */
  right: 40px;  /* distance from the right */
  width: 10%; /* adjust logo size */
  height: auto;
}

.title-section {
  position: absolute;
  bottom: 60px; /* pushes the block upwards */
  color: #fff;
  text-align: left;
  font-family: 'Moderat', sans-serif;
  font-weight: bold;
}

@font-face {
  font-family: 'Moderat';
  src: url('fonts/Moderat-Extended-Bold.woff2') format('woff2'),
       url('fonts/Moderat-Extended-Bold.woff') format('woff'),
       url('fonts/Moderat-Extended-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

h1.ICUIL{
	font-size: 150px;
	margin-bottom: 0px;
	font-weight: 500;
}

h3.Date{
	font-size: 60px;
	font-weight: 500;
}

h5.Hosting{
	font-size: 30px;
	font-weight: 500;
}

.wrapper-info{
	padding: 50px 20px;
}

.Info-section{
	font-size: 30px;
	font-family: big carson;
	padding: 20px 40px;
	line-height: 30pt;
	font-weight: 500;
}

p.two{
	left: 30px;
}

p.Welcoming{
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-family: roboto;
}

p.Intro{
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-family: Roboto;
}

.footer-contact{
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.footer-logo img{
	display: block;
	width: 50%;
}

.icon-section{
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.col-1-2-1{
	margin: 1%;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	vertical-align: top;
	gap: 60px;
	text-align: center;
	scale: 2.2;
	bottom: 30px;
}


.icon-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;   /* centers horizontally */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;       /* aligns vertically */
  gap: 20px;                 /* space between email + logo */
  text-align: center;
}

.icon-section p {
  margin: 0;
  color: rgb(255, 255, 255);              /* adjust to match footer */
  font-size: 13px;
  top: 5px;
	position: relative;
}

.icon-section a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 9px;
  font-family: roboto;
  margin-right: 26px;
}

.icon-section a:hover {
  text-decoration: underline;
  color: #002B80;
}

.icon-section i {
  margin-right: 8px;
  color: #2b3a65; /* red accent for envelope */
}

.icon-section .footer-logo img {
  width: 120px; /* resize logo */
  height: auto;
}



@font-face {
  font-family: 'Moderat';
  src: url('fonts/Moderat-ExtendedBold.woff2') format('woff2'),
       url('fonts/Moderat-ExtendedBold.woff') format('woff'),
       url('fonts/Moderat-ExtendedBold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}




/***** footer ******/

/* Footer Base */
    footer {
      background-color: #514f4f;
      color: #fff;
      padding: 40px 20px 20px;
    }

    .footer-container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin: 40px;
    }

    .footer-left,
    .footer-right {
      -webkit-box-flex: 1;
          -ms-flex: 1 1 200px;
              flex: 1 1 200px;
      margin: 10px;
    }

    .footer-right {
    	text-align: right;
    }

    .footer-left img,
    .footer-right img {
      max-width: 120px;
      margin-bottom: 10px;
    }



    .footer-links {
		position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
     gap: 160px;
	 padding-top: 20px;
    }

    .footer-links ul {
      list-style: none;
      padding: 15px;
    }

    .footer-links li {
      margin: 6px 0;
    }

    .footer-links a {
      text-decoration: none;
      color: #fff;
      font-size: 14px;
    }

    .footer-links a:hover {
      text-decoration: underline;
    }

    .social-icons {
     margin-top: 50px;
	  
    }

    .social-icons a {
      margin-right: 15px;
      font-size: 20px;
      color: #fff;
    }

    .footer-bottom {
      border-top: 1px solid #aaa;
      margin-top: 20px;
      padding-top: 15px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      font-size: 14px;
    }

    .footer-bottom .extra-links a {
      margin-left: 20px;
      text-decoration: none;
      color: #fff;
      font-weight: bold;
    }

    .footer-bottom .extra-links a:hover {
      text-decoration: underline;
    }


	.footer-left{
		margin: 0px;
		display: block;
		position: relative;
		top: 17px;
		right: 8px;
	}




/*************************************************************************/


/************************** Cookie Law STYLES ****************************/


/*************************************************************************/

#cookie-law{
	border-top: 1px solid #000;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 400;
	background:#fff;
}

/*******************************************************************************/


/***************************** FLEXSLIDER STYLES *******************************/


/*******************************************************************************/


/********************** GENERIC FLEXSLIDER STYLES ***********************/

.flexslider {
	margin: 0px;
	padding: 0px;
	border: 0px;
	position: relative;
	overflow: hidden;
	background-color: transparent;
	border-radius: 0;
}
.flexslider .slides {
	margin: 0;
	padding: 0;
}
.flexslider .slides li {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
}
.flexslider .slides li img {
	width: 100%;
	display: block;
	height: auto;
}
.flexslider .flex-direction-nav a {
	width: 33px;
	height: 53px;
	top: 50%;
	top: calc(50% - 27.5px);
	opacity: 1;
	color: transparent;
	text-shadow: none;
}
.flexslider:hover .flex-direction-nav .flex-prev {
	opacity: 1;
	left: 20px;
}
.flexslider:hover .flex-direction-nav .flex-next {
	opacity: 1;
	right: 20px;
}
.flex-direction-nav {
	height: 0px;
}
.flex-direction-nav .flex-prev {
	left: -60px;
	background-repeat: no-repeat;
}
.flex-direction-nav .flex-next {
	right: -60px;
	text-align: right;
	background-repeat: no-repeat;
}

/********************** BASIC FLEXSLIDER STYLES ***********************/

.flexslider.basicSlider {
	width: 100%;
	border-radius: 0px;
	/*overflow: visible;*/
}
.flexslider.basicSlider.mainPage {
	margin-top: -50px;
}
.flexslider.basicSlider.testimonials {
	margin-top: 35px;
}
a.flex-active {
	background: #dc0622 !important;
}
.flex-direction-nav, .flex-direction-nav li {
	list-style: none;
	margin-bottom: 0;
}
.flex-control-nav {
	width: 100%;
	position: relative;
	bottom: -10px;
	margin-top: 30px;
	text-align: center;
}
.flex-control-paging li a {
	width: 15px;
	height: 15px;
	border: solid 1px rgba(0, 0, 0, 0.3);
	background: transparent;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.flexslider .flex-direction-nav a {
	width: 33px;
	height: 53px;
	top: 50%;
	top: calc(50% - 27.5px);
	opacity: 1;
	color: transparent;
	text-shadow: none;
}
.flex-direction-nav a.flex-prev:before {
	content: "\f053";
	    font-family: "Font Awesome 5 Free";
	        font-weight: 900;
	    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
	font-size: 90px;
	color: rgba(0, 0, 0, 0.6);
	margin-top: -22px;
}
.flex-direction-nav a.flex-next:before {
	content: "\f054";
	    font-family: "Font Awesome 5 Free";
	        font-weight: 900;
	-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
	font-size: 90px;
	color: rgba(0, 0, 0, 0.6);
	margin-top: -22px;
}

/***************************************************************************/


/********************* ADDITIONAL FLEXSLIDER STYLES ************************/


/***************************************************************************/




/***************************************************************************/


/***************************** FOOTER STYLES *******************************/


/***************************************************************************/

footer {

}

.footer-container {

}

/* Footer Logo */
.footer-logo img {

}

/* Footer Sections */
.footer-links, .footer-contact, .footer-social {

}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    font-size: 18px;
    margin-bottom: 10px;
	color: #ffffff;
}

.footer-links a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 5px 0;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Contact Info */
.footer-contact p {
    margin: 5px 0;
	text-align: center;
	color: white;
}

/* Social Icons */
.footer-social a {
    color: white;
    font-size: 20px;
    margin-right: 10px;
}

.footer-social a:hover {
    color: #00aaff;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #eaeaea;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: 30px;
	margin-right: 30px;
}

.footer-bottom p {
	color: white;
}

.fab {
	color: white;
}

.contact-us {
	color: white;
	text-align: center;
}

.cont {
	color: white;
	text-align: center;
}

.extra-links{
	float: right;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.footer-right img{

}


/* Mobile layout */
@media screen and (max-width: 768px) {
  .wrapper-info {
  	padding: 45px 5px;
  }
  .Info-section{
		font-size: 24px;
		padding: 20px 15px;
		line-height: 30px;
	}

  .col-1-2 {
    display: block;   /* stack into one column */
    padding: 40px 0px;
  }

  p.two {
    padding-top: 40px;
  }

  p.one{
	padding-top: 20px;
  }

  .wrapper-info, 
  .icon-section .col-1-2-1 {
    display: block;  /* ensure they also stack */
  }

  .hero-section img.background {
  width: 100%;          /* take full width */
  height: 400px;        /* fixed height */
  -o-object-fit: cover;
     object-fit: cover;    /* crop instead of squish */
  -o-object-position: center;
     object-position: center; /* keep it centered */
}

  .Logo {
    max-width: 150px; 
    height: auto;
    display: block;
    margin: 0 auto;  /* center logo on small screens */
  }

 .title-section {
	bottom: 25px;
}

  .footer-logo img{
	position: relative;
	display: block;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
 }

  .icon-section p{
	position: relative;
	margin-bottom: 10px;
  }

  .footer-container{
	position: relative;
	display: block;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
  }

  .footer-links{
	position: relative;
	display: block;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
  }

.footer-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* horizontal center */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;     /* vertical center */
}

.footer-right img {
  max-width: 40%; /* responsive */
  height: auto;
  padding-top: 20px;
}

.footer-bottom{
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 10px;
}

p.Welcoming{
	
}

h1.ICUIL{
	font-size: 60px;
}

h3.Date{
	font-size: 24px;
}

h5.Hosting{
	font-size: 15px;
}

.col-1-2-1{
	position: relative;
	display: block;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-line-pack: center;
	    align-content: center;
}

.hero-section .Logo{
	display: block;
	right: 10px;
	top: 20px;
	width: 24%;
}

.social-icons{
      margin-top: 20px;
	  -webkit-box-pack: center;
	      -ms-flex-pack: center;
	          justify-content: center;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
    }

	.footer-right img{
	position:relative;
	display: block;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-line-pack: center;
	    align-content: center;
	left: 0px;
	margin-left: 0px;
}

.footer-left{
		margin: 0px;
		display: block;
		position: relative;
		top: 0px;
		right: 0px;
	}


}







/***************************************************************************/


/***************************** PAGE STYLES *******************************/


/***************************************************************************/


/************** About Page ****************/

.hero {
	height: 78vh;
    background-size: cover;
    background-position: center;
	background-repeat: no-repeat;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
    text-align: center;
    color: white;
    padding: 100px 20px;
}

.hero .wrapper {
	z-index: 2;
	background-color: #f4f4f4;
}

.hero h1 {
    font-size: 48px;
    margin: 0;
	color: white;
}

.hero p {
    font-size: 18px;
    margin-top: 10px;
	color: white;
}

/* Mission Section */
.mission {
    text-align: center;
    padding: 50px 20px;
    background: white;
}

.mission p{
	text-align: center;
}

.mission h2 {
    font-size: 32px;
    margin-bottom: 10px;
	text-align: center;
}

/* Team Section */
.team {
    text-align: center;
    padding: 50px 20px;
    background: #f4f4f4;
}

.team h2{
	text-align: center;
}
.team-members {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.team-members p {
	color: rgb(188, 12, 12);
}

.member {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 250px;
    -webkit-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.member:hover {
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

.member img {
    width: 100%;
    border-radius: 8px;
}

.member h3 {
    margin: 10px 0 5px;
}

/* Why Choose Us Section */
.why-us {
    text-align: center;
    padding: 50px 20px;
    background: white;
}

.why-us ul {
    list-style: none;
    padding: 0;
}

.why-us li {
    font-size: 18px;
    padding: 10px 0;
}




/************** MOBILE STYLES ***************/


@media only screen and (max-width: 1200px) {
	.wrapper {
		padding: 0 20px;
	}
}

@media only screen and (max-width: 1000px) {
	.innerWrapper {
		padding: 0 20px;
	}
}

@media only screen and (max-width: 800px) {
	.col-2-5, .col-1-5, .col-1-2, .col-1-3, .col-2-3, .col-1-4, .col-3-4, footer .col-1-4, .col-3-5, .col-4-5, .col-1-7 {
		width: 98%;
		margin: 1%;
		margin-bottom: 40px;
	}

	.col-2-5:last-child, .col-1-5:last-child, .col-1-2:last-child, .col-1-3:last-child, .col-2-3:last-child, .col-1-4:last-child, .col-3-4:last-child, footer .col-1-4:last-child, .col-3-5:last-child, .col-4-5:last-child, .col-1-7:last-child {
		margin-bottom: 1%;
	}
}