@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
 /**
  font-family: "Jost", sans-serif;
 **/
 

:root {
	--body-font: "Jost", sans-serif;
	--body-color: #FFF;
	--primary-color: #1242A8;
	--secondary-color: #00A2D9;
	--tertiary-color: #0088CC;
	--quaternary-color:#0966B6;	
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;	
	--grey-light: #F8F8F8;
	--grey-dark: #6D6D6D;		 	 
	--font-light:300;
	--font-medium:400;
	--font-semi-bold:500;
	--font-bold:800;
}

body {
	font-family: var(--body-font);
	font-size: 18px;
	font-style: normal;
	line-height: 28px;
	/*letter-spacing: -.1em;*/
	font-weight: var(--font-normal);
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background: var(--white);
	 
}
body {
	margin:0;
	padding:0;
}
 /*min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;*/
html {
	scroll-behavior: smooth;
	overflow-x:hidden;
} 
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}
/* *********Scrollbar Styling *************/

::-webkit-scrollbar {
    width: 5px;
}
 
::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-border-radius: 10px;
    border-radius: 10px;
 
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background:  var(--primary-color);
}



* {
	-webkit-box-sizing: border-box;
	-mox-box-sizing: border-box;
	box-sizing: border-box;
}

::selection {
	background: var(--primary-color);
	/* Safari */
	color:var(--white);
}

::-moz-selection {
	background: var(--primary-color);
	/* Firefox */
	color:var(--white);
}

a {
	color: var(--body-color);
	text-decoration: none;
	transition: all 0.4s ease;
}

a:hover {
	color: var(--primary-color);
}

p {
	margin: 0px 0 30px 0;
	clear: left;
	padding: 0;
	 
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 10px 0;
	padding: 0;
	font-weight: normal;
}

.hr {
	margin: 30px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0 ,0.2);
	display: block;
	width: 100%;
	height:1px;
	position: relative;
}
 
img {
	border: 0;
	transition: all 0.4s ease;
}

a img {
	border: 0;
}
 
/*************** PRELOADER ***************/
 
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #ffffff;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
        }

        /* The Spinner */
        .spinner {
            width: 30px;
            height: 30px;
            border: 4px solid var(--primary-color);
            border-top: 3px solid var(--secondary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        /* Keyframes for rotation */
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Hide class to be added via JS */
        #preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

/***************************/
 
 
.link, .link-fill {}

.link a, .link-fill a {
	
	color:var(--white);
	height:50px;
	font-size: 16px; 
	padding: 0    30px;
	font-style: normal;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow:hidden;
	margin:0;
	border:1px solid var(--white);	 
	font-family:var(--font-medium);
	transition: all 0.4s ease;
	border-radius: 50px;

}
.link a:hover {
	color:var(--white);
	border:1px solid var(--primary-color);	 
}
  .link a span{
 	position:relative;
	z-index:2;
	display:inline-block;
 }
 .link a:before{
	width:0;
	height:100%;
	border-radius: 0;
	position:absolute;
	right:0;
	top:0;
	/* background-color:var(--primary-color);	  */
	content:'';
	z-index:1;
	transition: all 0.4s ease;
	
} 
.link a:hover:before{
	 width:100%;
	 left:0;
	 right:auto;	 
}
.link-fill a {
	border:1px solid var(--secondary-color);
	background-color:var(--secondary-color);
	border:0;	 
}
.link-fill a:hover {
	border:1px solid var(--secondary-color);
}


.panel1 .link a:before{
	background-color: #e4222b;	
}
.panel2 .link a:before{
	background-color:#dd4e0d;	
} 
.panel3 .link a:before{
	background-color: #af0e14;	
} 
.panel1 .link a:hover{
	border:1px solid #e4222b;	
}
.panel2 .link a:hover{
	border:1px solid#dd4e0d;	
} 
.panel3 .link a:hover{
	border:1px solid #af0e14;	
}




 /*****************************/
 
 
.header{
	 display: flex;
     flex-wrap: wrap; 
	 transition: all 0.4s ease;
	 justify-content: center;
	 padding:15px 0;
}
.logo { 
	width:200px;
	position:relative;
	transition: all 0.4s ease; 
}
 
.logo img {
	width:100%;
	display:block;
}

.intro{
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
	text-align:center;
	flex-direction:column;
	padding:0 15%;
	color:var(--black);
	margin:35px 0 30px 0;
 
}
.intro h2 {
    font-size: 32px;
    font-weight: var(--font-bold);
    margin: 0 0 15px 0;
    line-height: 37px;
}
.intro p {
	font-size: 18px;
}
.intro p:last-child{
	margin:0;

}
 
/********/
 
 section {
	width: 100%;
	display:block;
	position: relative;
}
.container {
	width: 1600px;
	margin: 0 auto;
	 
}
.panel-container {
  width: 100%;
  height:70vh;
  display: flex;
  overflow: hidden;
  gap:4px;
  border-radius: 20px;
}

/* Panels */
.panel {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: flex 0.7s ease;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center center;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* Background colors */
.panel1 {
  
  background-image: url(../images/backgrounds/bg1.jpg);
}
.panel2 {
	background-image: url(../images/backgrounds/bg2.jpg);
	/*border-left:2px solid #fff;
	border-right:2px solid #fff;*/  
}
.panel3 {
  background-image: url(../images/backgrounds/bg3.jpg);
}

/* Grow panel on hover */
.panel:hover {
  flex: 3;
}

/* Panel text styling */
.panel h2 {
  pointer-events: none;
}
.brand{
	 width:380px;
	 padding:20px 10px;
	 line-height:24px;
	 text-align:center;
	 flex-direction:column;
	 display:flex;
	 justify-content: center;
	 gap:20px 0;
	 
}

.brand p{
	margin:0;
}
.brand img{
	 width:250px;
	 display:inline-block;
	 background-color:#fff;
	 padding:10px;
	 border-radius: 10px;
}

/************************************* 1400px *************************************/

@media only screen and (max-width: 1600px) {
.container {
	width: 100%;
	padding:0 15px;
	}
 
 
  
}


/**********second style*************/

 
@media only screen and (max-width: 768px) {
 
.panel-container {
  height:auto;
  flex-direction:column;
  
}
.panel {
  width:100%;
  display:flex;
  flex-direction:column;
 
}
.intro{
	padding:0 5%;
	margin:30px 0;
 
}
.intro h2{
	font-size:24px;
	line-height:normal;
 
}
.intro p {
    font-size: 16px;
    line-height: 25px;
}
}
 
 