/***************************
    CUSTOM SCROLL BAR
****************************/
*,html{
  scroll-behavior: smooth;
}
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
:root{
  scrollbar-color: rgb(210,210,210) rgb(46,54,69) !important;
  scrollbar-width: thin !important;
  --white:#fff;
  --black:#131417;
  --dark:#131313;
  --gray:rgba(255,255,255,0.6);
  --lite:rgba(1,1,1,0.6);
  --cream:#f9f9f9;
  --primary:#0b17bb;
  --primary_lite:#ff3e55;
  --default:'Mukta', sans-serif;
  --title:'Montserrat', sans-serif;
  --cursive:'Dancing Script', cursive;
}
::-webkit-scrollbar {
  height: 12px;
  width: 8px;
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: gray;
  -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.75);
}
::-webkit-scrollbar-corner {
  background: var(--dark);
}


/*DEFAULT*/
body{
  margin:0;
  overflow-x:hidden !important;
  font-family:var(--default);
}

a{
  text-decoration:none !important;
  min-width: fit-content;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
}

a, button{
  transition:0.5s;
}

em{
  font-style:normal;
  color:var(--primary);
}

ul{
  padding:0;
  margin:0;
}

figure{
  padding:0;
  margin:0;
}

.flex{
  display:flex;
  align-items:center;
  justify-content:center;
}

.flex-content{
  width:100%;
  position:relative;
}

.title{
  font-family:var(--title);
}

.cursive{
  font-family:var(--cursive);
}

.parallelogram{
  transform: skew(-20deg);
  display:block;
}

.skew-fix{
  display:inline-block;
  transform: skew(20deg);
}

.padding_1x{
  padding:1rem;
}

.padding_2x{
  padding:2rem;
}

.padding_3x{
  padding:3rem;
}

.big{
  font-size:4em;
}

.medium{
  font-size:2.5rem;
}

.small{
  font-size:1.5em;
}

.tag{
  color:var(--primary_lite);
  display:flex;
  align-items:center;
  transition:0.5s;
}

.tag:after{
  content:"\f0da";
  font-family:"FontAwesome";
  margin:0 0.5rem;
  transition:0.5s;
}

.tag:hover:after{
  margin:0 0.3rem;
}

.line{
  border-left:5px solid var(--primary_lite);
  padding-left:1rem;
}

.title_header{
  width:60%;
  margin:auto;
  text-align:center;
}

.title_header .title{
  line-height:0;
}

.title_header p:after{
  content:"";
  width:100px;
  height:2px;
  background-color:var(--primary);
  position:absolute;
  bottom:-50%;
  left:50%;
  transform:translate(-50%, 10%);
}

.title_header p{
  color:var(--lite) !important;
  position:relative;
}

.btn1, .btn2{
  padding:0.5rem 1rem;
  border:0;
  border-radius:5px;
  color:var(--white);
  font-weight:500;
}

.btn1{
  background-color:var(--primary);
}

.btn1:hover{
  background-color:var(--primary_lite);
  color:var(--white);
}

.btn2{
  padding:0.8rem 2rem;
  display:block;
  background-color:transparent;
  border:1px solid var(--white);
}

.btn2:hover{
  background-color:var(--white);
  color:var(--dark);
}

@media (max-width:1280px){
  .big{
      font-size:1.8em;
  }
  
  .medium{
      font-size:1.4em;
  }
  
  .small{
      font-size:1.2em;
  }
}

@media (max-width:920px){
  .title_header{
      width:100%;
      padding:1rem;
  }
  .big{
      font-size:1.8em;
  }
  
  .medium{
      font-size:1.4em;
  }
  
  .small{
      font-size:1.2em;
  }
  
  .flex{
      flex-wrap:wrap;
  }
  
  .padding_1x, .padding_2x, .padding_3x{
      padding:1rem;
  }
  
  .btn2{
      padding:0.5rem 1rem;
  }
}



/*MENU*/
menu{
  padding:0;
  margin:0;
  background-color:var(--dark);
}

menu span a{
  padding:0.5rem 1rem;
  white-space:nowrap;
}

menu span a:hover{
  color:var(--white) !important;
}

menu .flex-content:nth-child(1){
  pointer-events:none;
  width:80%;
}

menu .flex-content:nth-child(1) span a{
color:var(--gray);
}

menu .flex-content:nth-child(1) span a .fa{
  margin:0 0.4rem;
}

menu .flex-content:nth-child(2) span a{
color:var(--gray);
}

menu .flex-content:nth-child(2) span:nth-child(1) a .fa{
  margin:0 0.4rem;
}

menu .parallelogram{
  background-color:var(--primary);
  position:relative;
  left:-25px;
  padding-left:5rem;
  padding-right:1rem;
  min-width: fit-content;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
}

menu .flex-content:nth-child(2) span:nth-child(1) .fa{
  color:var(--primary);
}

menu .flex-content:nth-child(2) span:nth-child(2) a{
  border-right:1px solid rgba(255,255,255,0.07);
}

menu .flex-content:nth-child(2) span:nth-child(2) a:nth-child(1){
  border-left:1px solid rgba(255,255,255,0.07);
}

@media(max-width:1160px){
  menu .flex-content:nth-child(2) span:nth-child(2){
      display:none;
  }
}

@media(max-width:920px){
  menu .flex-content:nth-child(1){
      display:none;
  }
  
  menu .flex-content:nth-child(2){
      text-align:center;
  }
  
  menu .flex-content:nth-child(2) span:nth-child(1){
      text-align:center;
  }
}

@media(max-width:520px){
  menu a{
      font-size:12px;
  }
}



/*NAV*/
nav{
  width:100%;
  background-color:var(--white);
  text-align:center;
  z-index:9;
}

nav .flex-content:nth-child(1){
  pointer-events:none;
}

nav a, nav .dropdown{
  padding:0.6rem 1.3rem;
  white-space:nowrap;
  color:var(--lite);
  display:inline-block;
  position:relative;
}

nav a img{
  width:40px;
}

nav .btn1{
  text-transform:uppercase;
}

nav a:hover{
  color:var(--primary);
}

nav .active{
  color:var(--dark) !important;
}

.dropdown::after{
  content:"\f107";
  font-family:"FontAwesome";
  transform:0.5s;
}

.dropdown-content{
  display:none;
  background-color:var(--white);
  z-index:999;
  position:absolute;
  left:50%;
  top:0%;
  transform:translate(-50%, 45%);
}

.dropdown:hover > .dropdown-content{
  display:block;
}

.dropdown:hover::after{
  content:"\f106";
}

.dropdown-content li{
  list-style:none;
  padding:0.5rem 0;
  border-bottom:1px solid rgba(1,1,1,0.1);
  text-align:left;
}

.dropdown-content li a{
  padding:0 1rem;
}

@media (max-width:920px){
  #nav{
      width:100%;
      position:fixed;
      bottom:0;
      left:0;
      display:flex;
      align-items:center;
      justify-content:center;
      color:var(--white);
      padding:1rem;
      background-color:var(--dark);
      z-index:999;
      text-align:center;
      box-shadow:0px 6px 16px -6px rgba(1,1,1,0.5);
  }
  
  #nav a{
      width:100%;
      color:var(--gray);
  }
  
  #nav a:hover{
      color:var(--white);
  }
  
  nav .flex-content:nth-child(1){
      text-align:center;
  }
  
  nav .flex-content:nth-child(2), nav .flex-content:nth-child(3){
      display:none;
  }
  
  nav .flex-content:nth-child(2) a, nav .flex-content:nth-child(2) .dropdown{
      display:block !important;
      padding:0.5rem 0.8rem;
      text-align:left;
  }
  
  .dropdown-content{
      width:100%;
      left:0%;
      top:auto;
      transform:none;
  }
  
  .dropdown-content li{
      padding:0;
  }
}



/*MAIN*/
main{
  width:100%;
}



/*SECTIONS*/
.sections{
  width:100%;
  position:relative;
}

.padding_1x h1 a{
  color: #ff3e55;
  font-size: 24px;
}

.padding_1x h1:hover{
  text-decoration: underline;
}
.padding_1x h1 {
  color: #ff3e55;
  font-size: 24px;
}

.padding_1x h1:hover{
  text-decoration: underline;
}
/* FOOTER */





.footer-distributed{
	background: #222;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
	width: 100%;
	text-align: left;
	font: bold 16px sans-serif;
	padding: 55px 50px;
}
#foot-address{
  width: 60%;
}
.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
	display: inline-block;
	vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left{
	width: 40%;
}

/* The company logo */

.footer-distributed h3{
	color:  #ffffff;
	text-transform: capitalize;
  font-size: 36px;
	margin: 0;
}

.footer-distributed h3 span{
	color:  lightseagreen;
}

/* Footer links */

.footer-distributed .footer-links{
	color:  #ffffff;
	margin: 20px 0 12px;
	padding: 0;
}

.footer-distributed .footer-links a{
	display:inline-block;
	line-height: 1.8;
  font-weight:400;
	text-decoration: none;
	color:  inherit;
}

.footer-distributed .footer-company-name{
	color:  #222;
	font-size: 14px;
	font-weight: normal;
	margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center{
	width: 35%;
}

.footer-distributed .footer-center i{
	background-color:  #33383b;
	color: #ffffff;
	font-size: 25px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	text-align: center;
	line-height: 42px;
	margin: 10px 15px;
	vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope{
	font-size: 17px;
	line-height: 38px;
}

.footer-distributed .footer-center p{
	display: inline-block;
	color: #ffffff;
  font-weight:400;
	vertical-align: middle;
	margin:0;
}

.footer-distributed .footer-center p span{
	display:block;
	font-weight: normal;
	font-size:14px;
	line-height:2;
}

.footer-distributed .footer-center p a{
	color:  lightseagreen;
	text-decoration: none;;
}

.footer-distributed .footer-links a:before {
  content: "|";
  font-weight:300;
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

.footer-distributed .footer-right{
	width: 20%;
}

.footer-distributed .footer-company-about{
	line-height: 20px;
	color:  #92999f;
	font-size: 13px;
	font-weight: normal;
	margin: 0;
}

.footer-distributed .footer-company-about span{
	display: block;
	color:  #ffffff;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 20px;
}

.footer-distributed .footer-icons{
	margin-top: 25px;
}

.footer-distributed .footer-icons a{
	display: inline-block;
	width: 35px;
	height: 35px;
	cursor: pointer;
	background-color:  #33383b;
	border-radius: 2px;

	font-size: 20px;
	color: #ffffff;
	text-align: center;
	line-height: 35px;

	margin-right: 3px;
	margin-bottom: 5px;
}

/* the footer to be responsive*/

@media (max-width: 880px) {

	.footer-distributed{
		font: bold 14px sans-serif;
	}

	.footer-distributed .footer-left,
	.footer-distributed .footer-center,
	.footer-distributed .footer-right{
		display: block;
		width: 100%;
		margin-bottom: 40px;
		text-align: center;
	}

	.footer-distributed .footer-center i{
		margin-left: 0;
	}

}

/*ADDITIONAL*/
#roll_back{
  position:fixed;
  bottom:5rem;
  right:2rem;
  background-color:var(--dark);
  border-radius:5px;
  border:2px solid var(--primary);
  padding:5px 10px;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999999;
  box-shadow:0px 6px 16px -6px rgba(1,1,1,0.5);
  color:var(--white);
  font-weight:900;
}


/*MAIN*/
main{
  background-image:url("images/main.jpg");
  background-size:cover;
  background-position:center;
  position:relative;
  justify-content:left !important;
}

main::after{
  content:"";
  position:absolute;
  top:0;
  z-index:1;
  width:100%;
  height:100%;
  background:linear-gradient(to right, rgba(1,1,1,0.9) 20%, rgba(1,1,1,0.6) 60%, rgba(1,1,1,0.2) 100%);
}

main article{
  width:55%;
  color:var(--white);
  z-index:11;
}

main article p{
  color:var(--gray);
  font-weight:300;
}

@media (max-width:1020px){
  main article{
      width:70%;
  }
}

@media (max-width:920px){
  main article{
      width:100%;
  }
}


/*SECTION1*/
.section1{
  border-top:2px solid var(--primary);
  background-color:var(--dark);
  color:var(--white);
  pointer-events:auto;
}

.section1 .flex-content:nth-child(1){
  width:60%;
}

.section1 .title{
  line-height:0;
}

.section1 p{
  color:var(--gray);
}

.section1 img{
  width:100%;
  border-radius:0 30px 30px 0;
  position:relative;
}

.section1 .flex-content:nth-child(1):before{
  content:"";
  width:100%;
  height:100%;
  background-image:url("images/dots.png");
  background-repeat:no-repeat;
  position:absolute;
  left:0;
  top:1%;
  z-index:1;
  --delay: 0s;
  animation: arrows 4s var(--delay) infinite ease-in;
}

@media (max-width:620px){
  .section1 .flex-content:nth-child(1){
      width:100%;
  }
}



/*SECTION2*/
.section2{
  padding:2rem 6rem;
}

.section2 .flex:nth-child(1) .flex-content:nth-child(1) h1{
  line-height:0;
}

.section2 .flex:nth-child(1) .flex-content:nth-child(1) p{
  width:80%;
}

.section2 figure{
  background-size:cover;
  padding:1rem;
  overflow:hidden;
  transition:0.5s;
}

.section2 figure article{
  width:100%;
  height:100%;
  background-color:rgba(1,1,1,0.7);
  color:var(--white);
  transition:0.5s;
}

.section2 figure article h1{
  position:relative;
}

.section2 figure article h1::after{
  content:"";
  width:100px;
  height:2px;
  position:absolute;
  bottom:-20%;
  left:0;
  background-color:var(--primary_lite);
}

.section2 figure:hover article{
  background-color:rgba(1,1,1,0.8);
  box-shadow:0px 6px 16px -6px rgba(1,1,1,0.5);
}

.section2 figure article footer{
  background-color:transparent !important;
}

.section2 figure article footer a{
  width:40px;
  height:35px;
  background-color:rgba(255,255,255,0.5);
  border-radius:50%;
  z-index:111;
  color:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
}

.section2 figure article footer p {
  text-align:left;
}

.section2 figure:hover article footer a{
  background-color:var(--primary_lite);
}

.section2 figure article footer a:hover{
  background-color:var(--primary);
}

@media (max-width:920px){
  .section2{
      padding:0rem;
  }
  
  .section2 .flex:nth-child(1) .flex-content:nth-child(1) p{
      width:100%;
  }
  
  .section2 figure article footer{
      margin-bottom:0;
  }
  
  .section2 figure article footer a{
      width:35px;
      height:35px;
  }
}





/*SECTION4*/
.section4{
  background-attachment:fixed;
  background:linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.3)),url("images/sec4-back.png");
}
.section4 section{
  transition:0.5s;
}

.section4 figure{
  position:relative;
  overflow:hidden;
  height:60vh;
}

.section4 figure img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.section4 section:nth-child(odd) figure{
  margin-top:-2rem;
}

.section4 section:nth-child(even) figure{
  margin-top:8rem;
}

.section4 article{
  position:absolute;
  top:100%;
  background-color:rgba(1,1,1,0.7);
  width:100%;
  height:100%;
  z-index:1;
  transition:0.5s;
}

.section4 article span{
  display:block;
  width:100%;
  height:100%;
  position:absolute;
  left:-100%;
  transition:0.5s;
  transition-delay:0.5s;
}

.section4 figure:hover article{
  top:0%;
}

.section4 figure:hover article span{
  left:0;
}

.section4 h2, .section4 p{
  color:var(--white);
}

@media (max-width:920px){
  .section4{
      padding:0rem !important;
  }
  
  .section4 figure{
      height:30vh;
  }
  
  .section4 section{
      margin:0px 0;
  }
  
  .section4 section:nth-child(odd) figure{
      margin-top:0rem;
  }

  .section4 section:nth-child(even) figure{
      margin-top:0rem;
  }
}


/*Animate up & down*/
@keyframes arrows{
  0%, 100%{
      color: black;
      transform: translateY(0);
  }
  50%{
      color: #3AB493;
      transform: translateY(20px);
  }
}



/*ANIMATION*/
.animate{
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom{
  from{
      -webkit-transform: scale(0)
  } 
  to{
      -webkit-transform: scale(1)
  }
}

@keyframes animatezoom{
  from{
      transform: scale(0)
  } 
  to{
      transform: scale(1)
  }
}



