/*Nav css goes here*/
*,
*::before,
*::after{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-family: 'Verdana', sans-serif;
	font-size: 10px;
}

body{
	overflow-x: hidden;
	font-family: 'Verdana', sans-serif;
	font-size: 10px;
}

h1,h2,h3,h4,h5,h6{
    font-weight: 600;
    line-height: inherit;
}

h1,h2,h3,h4 {
    letter-spacing: -1px;
}

h5{
    font-weight: 500;
}

h1{
    color: #ffffff;
    font-size: 5em;
}

h2{
    color: #000000;
    font-size: 3em;
    padding-bottom: 10px;
}

h3{
    font-size: 1.8em;
    line-height: 1.2em;
    margin-bottom: 0;
}

h4{
    color: #000000;
    font-size: 1.8em;
    padding-bottom: 2px;
}

h6{
    letter-spacing: 0;
    font-weight: normal;
}

p{
    color: #000000;
    font-size: 14px;
    font-weight: normal;
    line-height: 22px;
    padding-bottom: 10px;
}

a{
	text-decoration: none;
	color: #606060;
}

ul{
	list-style: none;
	line-height: 1.75;
}

header{
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.container{
	width: 100%;
	max-width: 117rem;
	margin: 0 auto;
	padding: 0 1.5rem;
	background-color: #ffffff;
	font-size: 14px;
}

.container a{
	color: #f3832f;
}

.container2{
	width: 100%;
	margin: 8rem 0;
	padding: 0 1.5rem;
}

.menu-icons{
	color: #606060;
	font-size: 4rem;
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translateY(-50%);
	cursor: pointer;
	z-index: 1500;
	display: none;
}

nav{
	display: flex;
	align-items: center;
	width: 100%;
	height: 8rem;
	border-bottom: 1px solid rgba(0,0,0, .1);
	z-index: 10;
	
}

.logo{
	display: flex;
	margin-right: 5rem;
}

.logo i{
	margin: auto;
	font-size: 3rem;
	color: #606060;
}

.nav-list{
	display: flex;
	width: 100%;
	align-items: center;
}

.nav-list li{
	line-height: 8rem;
	position: relative;
}

.sub-menu li{
	line-height: 4rem;
}

.nav-list a{
	display: block;
	color: #f3832f;
	padding: 0 1.5rem;
	font-size: 1.4rem;
	text-transform: uppercase;
	transition: color 650ms;
}

.nav-list a:hover{
	color: #f3832f;
}

.btn{
	padding: 1.3rem;
	display: inline-block;
	background-color: #f3832f;
	border: 2px solid #f3832f;
	border-radius: 5rem;
	transition: background-color 650ms;
}

.btn a{
	color: #000000;
}

.btn:hover{
	color: #f3832f;
	background-color: rgba(0,0,0,.2);
}

.btn:hover a{
	color: #f3832f;
}

.sub-menu{
	width: 20rem;
	display: block;
	position: absolute;
	border-top: 3px solid #f3832f;
	background-color: #606060;
	z-index: 100;
	top: 16rem;
	opacity: 0;
	visibility: hidden;
	transition: all 605ms ease;
}

.sub-menu a{
	color: #eee;
}

.sub-menu::before{
	content: "";
	position: absolute;
	top: -2.5rem;
	left: 3rem;
	border: 1.2rem solid transparent;
	border-bottom-color: #f3832f;
}

.sub-menu .sub-menu::before{
	top: .9rem;
	left: -2.5rem;
	border: 1.2rem solid transparent;
	border-right-color: #f3832f;
}

.sub-menu .sub-menu{
	border-top:none;
	border-left: 3px solid #f3832f;
	top: 0;
	left: 160%;
}

.nav-list li:hover > .sub-menu{
	top: 8rem;
	opacity: 1;
	visibility: visible;
}

.sub-menu li:hover > .sub-menu{
	top: 0;
	left: 100%;
}

li.move-right a{
	color: #ffffff;
}

li.move-right{
	margin: auto 0 auto auto;
	line-height: initial;
	background-color: #ffffff;
}

li.move-right:hover{
	background-color: #ffffff;
}

.pglist1 ul{
	list-style-type: disc;
	font-size: 1.4rem;
	list-style-position: outside;
}

.pglist2 ul{
	list-style-type: disc;
	font-size: 1.4rem;
	list-style-position: inside;
}

.resp-iframe{
    postion: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 1000px;
    border: 1;
}

video {
	width: 100%;
	height: auto;
}

@media screen and (max-width: 1150px){
	.nav-list{
		position: fixed;
		top: 0;
		left: 0;
		height: 100vh;
		display: none;
		flex-direction: column;
		align-items: initial;
		background-color: #606060;
		z-index: 1000;
		overflow-y: scroll;
	}
	
	.nav-list > li{
		line-height: 6rem;
	}
	
	.sub-menu{
		position: initial;
		border: 3px solid transparent;
		border-left-color: #f3832f;
		margin-left: 1rem;
		max-height: 0;
	}
	
	.sub-menu::before{
		display: none;
	}
	
	.nav-list li:hover > .sub-menu{
		opacity: 1;
		visibility: visible;
		max-height: initial;
	}
	
	li.move-right{
		margin: 0 auto 0 0;
		line-height: initial;
		display: none;
	}
	
	.menu-icons{
		display: block;
	}
	
	.ion-md-close{
		display: visible;
		color: #ffffff;
	}
	
	nav.active .ion-md-close{
		display: block;
	}
	
	nav.active .ion-md-menu{
		display: none;
	}
	
	nav.active .nav-list{
		display: flex;
	}
}

/*End nav css*/


/* SLIDER - ROTATING PICTURES ON HOME SCREEN */
  .slider .container {
    width: 100%;
    z-index: 0;
  }

  .slider .owl-dots {
      position: absolute;
      top: 575px;
      width: 100%;
      justify-content: center;
  }

  .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 5px 7px;
    border: 2px solid #d9d9d9;
    background: transparent;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
  }

  .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #ffffff;
    border-color: transparent;
  }

  .slider .caption {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background-color: rgba(20,20,20,0.2);
    height: 100%;
    color: #fff;
    cursor: e-resize;
  }

  .slider .item {
    background-position: inherit;
    background-repeat: no-repeat;
    background-attachment: local;
    background-size: cover;
    height: 650px;
  }

  .slider .item-first {
    background-image: url(slider1.jpg);
  }

  .slider .item-second {
    background-image: url(slider2.jpg);
  }

  .slider .item-third {
    background-image: url(slider3.jpg);	/*From unsplash.com filename daniil-silantev-vJH_a_prTA4-unsplash.jpg*/
  }

  .slider .item-fourth {
    background-image: url(slider4.jpg);	
  }


.sldrbtn{
	padding: 1.3rem;
	display: inline-block;
	background-color: #4267b2;
	border: 2px solid #ffffff;
	border-radius: 1rem;
	transition: background-color 650ms;
	color: #ffffff;
	
}

.sldrbtn:hover{
	color: #f3832f;
	background-color: #ffffff;
	border: 2px solid #f3832f;
	text-decoration: none;
	font-weight: bold;
}


/*MEDIA SCREEN*/
@media screen and (max-width: 1150px){
    .text h1{
        font-size: 4rem;
    }

    .text .btn{
        font-size: 1.2rem;
    }
}
	.slider .item {
		background-position: center;
	}