 
@charset "utf-8";
 

 @font-face {
    font-family: 'ppneuemontrealbook_0';
    src: url('../fonts/ppneuemontrealbook_0.eot');
    src: url('../fonts/ppneuemontrealbook_0.eot') format('embedded-opentype'),
         url('../fonts/ppneuemontrealbook_0.woff2') format('woff2'),
         url('../fonts/ppneuemontrealbook_0.woff') format('woff'),
         url('../fonts/ppneuemontrealbook_0.ttf') format('truetype'),
         url('../fonts/ppneuemontrealbook_0.svg#ppneuemontrealbook_0') format('svg');
}
@font-face {
    font-family: 'ppneuemontrealmedium_0';
    src: url('../fonts/ppneuemontrealmedium_0.eot');
    src: url('../fonts/ppneuemontrealmedium_0.eot') format('embedded-opentype'),
         url('../fonts/ppneuemontrealmedium_0.woff2') format('woff2'),
         url('../fonts/ppneuemontrealmedium_0.woff') format('woff'),
         url('../fonts/ppneuemontrealmedium_0.ttf') format('truetype'),
         url('../fonts/ppneuemontrealmedium_0.svg#ppneuemontrealmedium_0') format('svg');
}

@font-face {
    font-family: 'ppneuemontrealbold_0';
    src: url('../fonts/ppneuemontrealbold_0.eot');
    src: url('../fonts/ppneuemontrealbold_0.eot') format('embedded-opentype'),
         url('../fonts/ppneuemontrealbold_0.woff2') format('woff2'),
         url('../fonts/ppneuemontrealbold_0.woff') format('woff'),
         url('../fonts/ppneuemontrealbold_0.ttf') format('truetype'),
         url('../fonts/ppneuemontrealbold_0.svg#ppneuemontrealbold_0') format('svg');
}

 

:root {
	--body-font: 'ppneuemontrealbook_0';
	--body-color: #000;
	--primary-color: #0032C8;
	--secondary-color: #0031B9;
	--tertiary-color: #DEF3FF;
	--quaternary-color:#0F3C96;	
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;	
	--grey-light: #F8F8F8;
	--grey-dark: #6D6D6D;		 	 
	--normal:'ppneuemontrealbook_0';
	--medium:'ppneuemontrealmedium_0';
	--bold:'ppneuemontrealbold_0';
	--transition: all 0.3s ease;
	--gradient:linear-gradient(to top right, var(--primary-color), var(--secondary-color));
}

body {
	font-family: var(--body-font);
	font-size: 20px;
	font-style: normal;
	line-height: 30px;
	/*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); 
	 
}


/* *********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);
}

html {
	scroll-behavior: smooth;
	overflow-x:hidden;
}

* {
	-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;
}

/*-----------text styles------------*/


.text-white {
	color: var(--white) !important;
}

.text-black {
	color: var(--black) !important;
}

.text-primary {
	color: var(--primary-color) !important;
}
  
 .text-secondary {
	color: var(--primary-color) !important;
}
 
.text-center {
	text-align: center;
}
.text-right{
	text-align:right;
}

.text-justify {
	text-align: justify;
}

 

/*-----------background styles------------*/
 
.bg-gradient{
	background-image: linear-gradient(to top right, var(--primary-color), var(--secondary-color));
	color:var(--white)!important;	 
}
.bg-primary {
	background: var(--primary-color);
	color:var(--white);
	 
}
.bg-secondary {
	background: var(--secondary-color);
 
}

.bg-tertiary {
	background: var(--tertiary-color);	
	 
}
.bg-quaternary {
  background: var(--quaternary-color);
 
}
.bg-grey {
	background: var(--grey);
 
}
.bg-grey-light {
	background: var(--grey-light);
 
 }

/**********CANVAS**************/ 
 
 
      
/*************** PRELOADER ***************/
 
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color:var(--primary-color);
            z-index: 9999; /* Ensure it sits on top of everything */
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
			background-image: url(../images/proffin-gcc-logo-icon.svg);
		    background-repeat: no-repeat;
	        background-position: center center;
	       background-size:50px;
        }

        /* The Spinner */
.spinner {
	width:100px;
	height:100px;
    border: 1px solid var(--white);
    border-top: 1px 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;
        }


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

.container {
	width: 100%;
	padding:0 50px;
	margin: 0 auto;
}
.fullheight {
	width: 100%;
	height:100vh;
	overflow:auto;
} 
.fullwidth {
	width: 100%;
	display: block;
} 

.img-rounded{
	border-radius: 50%;
	overflow:hidden;
	}
.corner-radius{
	border-radius: 50%;
	}	
 
/*************HOVER EFFECT*******/

.hover-effect{
	width:100%;
	position:relative;
	overflow:hidden;
 
}

 .hover-effect i{
    width:50px;
    height:50px;
    background-color:var(--primary-color);
	border-radius: 50%;
    color:#fff;
    position:absolute;
    left:50%;
    top:-100px;
    z-index:1;
    line-height:50px;
    text-align:center;
    margin:0 0 0 -25px;
    transition: all 0.4s ease;
}
 .hover-effect:hover i{
    top:50%;
    margin:-25px 0 0 -25px;
}

 .hover-effect i:hover{
	background-color:var(--secondary-color);
	}

.hover-effect img {
 	display:block;
  	width:100%;
	-webkit-filter: none;
    filter: none;
 	-webkit-transition: all .5s;
    transition: all .5s;
}
.hover-effect:hover img {
     -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(70%);
    transition: all 0.4s ease;
	/*-webkit-filter: brightness(70%);*/
	filter: grayscale(60%);
	-webkit-filter: grayscale(60%);
}


 .hover-effect:after {
  background:#FFF;
  width:0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 50%;
  content: '';
  opacity: 0.7;
  transition: all 0.4s ease;
}

.hover-effect:hover:after {
	opacity: 0.1;
	width: 100%;
  	height: 100%;
	left: 0;
    bottom: 0;
}
 
section {
	width: 100%;	 
	display:block;
	position: relative;
 
}

.section-spacing{
   padding:100px 0;
 }
.sticky{
 	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	width:100%; 
}

/*********************************************/ 
  header{
	 width:100%; 
	 position:absolute;
	 left:0;
	 top:0;
	 padding:20px 0;
	 z-index:99;
	 transition: all 0.4s ease;
	 border-bottom:1px solid rgba(255 ,255, 255, 0.1);
	  
}
 header.smaller {
	padding:10px 0;
	position: fixed;
	background-color:var(--primary-color);
	box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1);  
}

.header{
    width:100%;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
 .logo { 
	width:120px;
	position:relative;
	transition: all 0.4s ease; 
}
 
.logo img {
	width:100%;
	display:block;
	transition: all 0.4s ease;
	filter: brightness(0) invert(1);
}
header.smaller .logo {
	width:100px;
}
 
 
 /*********video settings********/
 
 
.video-outer{
	width:100%;
	height:100vh;
	position:relative;
}
.video-wrap{
	width: 100%;
	height: 100%;
	position:absolute;
	left:0;
	top:0;
	display: flex;
	align-items: center;
	justify-content: center;
}
 
 .video-wrap:after{
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:2;
	 inset: 0;
    background:var(--primary-color);
    opacity: 0.65; /* Adjust intensity */
    mix-blend-mode: multiply;
    pointer-events: none;
	}
 .video-wrap:before{
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:3;
	 inset: 0;
    background:var(--primary-color);
    opacity: 0.75;  
    
	}
.video-content{
	width:100%;
	height:100vh;
	position:relative;
	}
 
 video {
    /*position: absolute;*/
    width: 100%;
    height: 100%;
    object-fit: cover;
	transform: scaleX(-1);
 
}

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


.hero{
    width:100%;
    height:100vh;
    position:absolute;
	left:0;
	top:0;
    overflow:hidden;
	z-index:6;
}

/* Background Shape */

.bg{
    position:absolute;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    pointer-events:none;
}

.bg img{
    width:25%;	 
    /*object-fit:cover;*/
    transform:translate3d(0,0,0);
    will-change:transform;
}

/* Bird */

.bird{
    position:absolute;
    left:50%;
    top:50%;
    width:500px;
    transform:translate(-50%,-50%);
    pointer-events:none;
    will-change:transform;
}

.bird img{
    width:100%;
    display:block;
}

.hero-content{
	position:absolute;
	left:0;
	bottom:50px;
	padding:0 50px;
	z-index:4;
	width:100%;
	color:var(--white);
	border-bottom:1px solid var(--white);
	justify-content: space-between;
	display: flex;
    flex-wrap: wrap; 
}
.hero-content h1{
	font-size:60px;
	line-height:60px;
	margin:0 0 20px 0;
	font-family:var(--bold);
	text-transform:uppercase;
}
.hero-content h2{
	font-size:18px;
	letter-spacing:5px;
	line-height:normal;	
	font-family:var(--medium);
}
.hero-left{
	width:50%;
	}

.hero-right{
	width:20%;
	font-size:20px;
	line-height:28px;
}
/***********social ***********/
 
.link {}

.link a {
	
	color:var(--quaternary-color);
	font-size: 16px; 
	padding: 15px  30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	overflow:hidden;
	margin:0;
	border-radius: 50px;
	background-color:var(--secondary-color);
	font-family:var(--font-medium);
	transition: all 0.4s ease;

}
.link a:hover {
	color:var(--white);
}
.link a:before{
	width:100%;
	height:0;
	border-radius: 50px;
	position:absolute;	
	background-color:var(--primary-color);
	bottom:0;
	left:0;
	content:'';
	z-index:1;
	transition: all 0.4s ease;
	 	
} 
 
.link a:hover:before{
	 height:100%;
}
 .link a span{
 	position:relative;
	z-index:2;
	display:inline-block;
 }
 
.caps{
	text-transform:uppercase;
}
 
 
 
.heading{
	font-size:50px;
	line-height:normal;
}
.indent{
	text-indent:200px;
}
.heading span{ 
	font-weight:var(--bold);
	
}
.subheading {
	font-size: 20px;
	line-height:normal; 
	font-family:var(--medium);
}
 
.subtitle{
	font-size: 22px;
	font-family:var(--bold);
 
}
.bold, strong{
	font-family:var(--bold);
}

.section-title{
	display: flex;
    flex-wrap: wrap; 
}
 .section-title span{
	display:inline-flex;
	justify-content: center;
	text-align:center;
	font-family:var(--medium);
	font-size:12px;
	letter-spacing:2px;
	text-transform:uppercase;
	line-height:normal;
	position:relative;
	margin-bottom:20px;
	padding-bottom:15px;
}
 .section-title span:after{
 	width:10px;
	height:1px;
	background-color:var(--grey);
	position:absolute;
	left:0;
	bottom:0;
	content:'';
 }
/****************************/
  
.pos-rel{
	position:relative;
}
 
 
 /****************INDEX PAGE SETTINGS***********/
 
 
 
/****************SCROLLING TEXT***************/
 
 .scrolling-text-wrap {
  width:100%;
  overflow-x:hidden !important;
  overflow-Y:hidden !important;
  overflow:hidden !important;
 }
 
.scroll {
  white-space: nowrap;
  margin: 0;
}

.scroll div {
  display: flex;
    
}

.scroll h2 {
  font-size: 134px;
  line-height:134px;
  color: var(--quaternary-color);
  font-weight:var(--font-bold);
  margin:0;
}
.scroll h2 span{
	width:6px;
	height:6px;
	background-color:var(--primary-color);
	outline-offset: 4px;
	outline:1px solid var(--primary-color);
	border-radius: 50%;
	display:inline-block;
	position:relative;
	margin:0 25px;
	vertical-align:middle
 
	}
.RightToLeft {
  animation: RightToLeft 20s infinite linear;
}

/***********/
 
/*********/
@keyframes  RightToLeft {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

.LeftToRight {
  animation: LeftToRight 20s infinite linear;
}

@keyframes  LeftToRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}

 
 /**********************news**********************/
 
  
  /********************main settings**********************/
  
.facts{
 	 display: grid;
	 grid-template-columns: repeat(3, 1fr);
	 grid-gap:20px;
	 margin-top:25px;
	 
 }
.facts .item{
	font-size:12px;
	line-height:20px;
	text-transform:uppercase;	 
	border:1px solid var(--grey);
	padding:20px;
	transition: all 0.4s ease;
}

.facts .item h2{
	font-size:50px;
	line-height:normal;
	margin:0;
	font-family:var(--bold);
}
.facts .item:hover{
	background-color:var(--primary-color);
	border:1px solid var(--primary-color);
	color:var(--white);
}
  
.underline{
	margin:0;
	padding:20px 0;
	border-bottom:1px solid rgba(0, 0 ,0, 0.3);
	}  
/****************************/
.card-grid{
	 display: grid;
	 grid-template-columns:repeat(2,1fr);
     grid-gap:20px;
	}
.card-grid .col{
	display:grid;
	gap:20px;
	}
.card-grid .col:nth-child(2){
	margin-top:50px;
} 
.card{
    width:100%;
    /*aspect-ratio:3/4;*/
	padding:25px;
	color:var(--white);
	transition: all 0.4s ease;
	 
}
.card:hover{
	margin-top:-10px;
}

.card h2{
	font-size:18px;
	line-height:22px;
	font-family:var(--medium);
	margin:0 0 10px 0;
	line-height:normal;
}
.card h2 span{
	font-size:12px;
}

.card h3{
	font-size:14px;
	line-height:20px;
	font-family:var(--medium);
	margin:10px 0;
	line-height:normal;
}
.card ul, .card ul li{
     margin:0;
	 padding:3px 0;
	 list-style:none;
	 font-size:14px;
	 line-height:normal;
}

.blue{
	background-color:var(--primary-color);
}
.black{
	background-color:var(--black);
} 
/**********************/
  
.display-style{ 
	 transition: all 0.4s ease;
	 background-color:var(--quaternary-color);
	
}
 .display-style .item{ 
	 padding:40px;
	 color:var(--white);
}
 .display-style .item  p:last-child{
 	margin:0;
 } 
.shadow{	   
	  box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
 }
  
.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:50px 50px 50px 25%;
	min-height:200px;
	margin-bottom:50px;
	position:relative;
	z-index:3;
	transition: all 0.4s ease;
 
}
.iconic-outer{
	position:relative;
	overflow:hidden;
 
}
.iconic-outer:hover .iconic{
	color:var(--black);
	
	}
.iconic-outer:before{
	width:100%;
	height:0;
	position:absolute;
	left:0;
	bottom:0;
	content:'';
	background-color:var(--white);
	z-index:1;
	transition: all 0.4s ease;
 
}
.iconic-outer:hover:before{
	height:100%;
	top:0;
 
	}
 
.iconic h2{
	font-size: 30px;
	font-family:var(--medium);
	margin:0 0 15px 0;
	line-height:nomral;
}
.webicon{	
	display: flex;
	justify-content: center;
	align-items: center;
	position:absolute;
	left:50px;
	top:50px;
	width:40px;
	height:40px;
	text-align:center;
	color:var(--white);
	font-size:20px;
	vertical-align:middle;
	margin:0;
	padding:10px;
	border:1px solid var(--white);
	/*background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));*/
	 
	transition: all 0.4s ease;
}

 
.iconic p:last-child{
	margin:0;
}
 .iconic-outer:hover .webicon{
 	color:var(--black);
	border:1px solid var(--black);
 }


/********************gellery**********************/ 
  .portfolio{   
    display: grid;
    grid-gap:10px;
    grid-template-columns: repeat(3, 1fr);
    }
  .portfolio .item img{
	  width:100%;
}
  .portfolio .item .foot{
  	font-size:14px;
	color:var(--black);
	margin:15px 0;
 
  }	
  
  .portfolio .item .foot h2,   .portfolio .item .foot h3{
  	font-size:18px;
	margin:0;
	line-height:normal;
	color:var(--white);
	font-family:var(--bold);
  }	
 .portfolio .item .foot h3{
	 color:rgba(255, 255, 255, 0.2);
 }  
  
  
/**********************Reviews**********************/
 
 
.m0-p0{
	margin:0 !important;
	padding:0 !important;
}
/*********whatsa app*/ 
.float{
	position:fixed;
	width:50px;
	height:50px;
	bottom:80px;
	line-height:50px;
	right:20px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50%;
	text-align:center;
    font-size:30px;
	/*box-shadow: 2px 2px 3px #999;*/
    z-index:99;
}
.float i{
	transition: all 0.4s ease;
 
}
.float:hover i{
	transform: rotate(0.12turn);
}
.float:hover{
	color:#FFF;
	 
} 
.float h5 {
    width: 100px;
    top: 8px;
	right:50px;
    background-color:var(--white);
	color:var(--grey-dark);
	 box-shadow: 0px 0px 5px gray;
	line-height:12px;
    border-radius: 5px;
	font-size:12px;
	padding:10px;
	position:absolute;
	z-index:-1;
	margin:0;
	transition: all 0.4s ease;
	opacity:0;
}
.float:hover h5{
	 opacity:9;
	 right:60px;
}
 
/*************** footer CSS ***************/
 
.footer {
 	margin:0;
	background-color:var(--black);
	color:var(--white);
}

.footer a {
	color:var(--white);
}
 .footer a:hover  {
	color:rgba(255, 255, 255, 0.5);
}  

.lower-footer{
	padding:50px 0 0 0;
	border-top:1px solid rgba(255, 255, 255, 0.2);
	justify-content: space-between;
	margin-top:50px;
	display:flex;
	align-content: center;
	font-size:14px;
}

.copyright{}
.social {
	display:flex;
	vertical-align:middle;
	gap:5px;
 
}
.social a  {
	width:35px;
	height:35px;
	line-height:35px;
	border-radius: 50%;
	text-align:center;
	color:var(--white);
	font-size:16px;
	display:inline-flex;
	justify-content: center;
	align-items: center;	 
	text-align:center;
	border:1px solid rgba(255, 255, 255, 0.2);
}
.social a:hover  {
	color:var(--black);
	border:1px solid var(--white);
	background-color:var(--white);
}

 /**********************/
 
 .address-grid {
 	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap:50px;
 }
  .address-grid .item{
  	font-size:14px;
	line-height:22px;
  }
   .address-grid .item h2{
	   font-size:16px;
	   text-transform:uppercase;
	   font-family:var(--medium);
	   line-height:normal;
	   margin:0 0 20px 0;
   	}
/******************************/

ul.list {
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
}

ul.list li {
	list-style: none;
	padding: 2px 7px 10px 30px;
	line-height: normal;
	position: relative;
}

ul.list li:before {
	/*content: "\f111";*/
	content: "\f138";
	position: absolute;
	top: 4px;
	left: 0;
	font-family: "FontAwesome";
	color: #00DEFF;
	font-size: 16px;
}

/*****************************/
 
 
.table-wrap{
	width:100%;
	position:relative;
	display:flex;
	overflow-x:scroll;
} 
table { 
	min-width:100%;
	width:900px;
	border-collapse: collapse; 
	
	}

/* Zebra striping */
tr:nth-of-type(odd) { 
	background: #eee; 
	}

th { 
	background:var(--secondary-color);
	color: var(--white);
	
	}

td, th { 
	padding: 8px 15px !important; 
	border: 1px solid #ccc; 
	text-align: left; 
	font-size: 14px;
	} 

/******************************team-style*****************/
 
 
/*************** JARALLAX ***************/
.cover {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
 
/**************************/
 
 .bg1 {
	background-image: url(../images/backgrounds/bg1.jpg);
	background-attachment:fixed;
	}
 
/**********forms**************/
 
 input.file{
    display: none;
}

.fa-upload{
	margin:0 15px 0 0;
}
.custom-file-upload {
    border: 0;
    display: block;
    padding: 16px 20px;
    color: #fff;
    cursor: pointer;
    background-color: var(--primary-color);
    /*border-radius: 6px;*/
    border: 1px solid var(--primary-color);
}

.formstyle{}
 
form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	padding:20px 20px;
	border:1px solid var(--grey);
	background-color:var(--white);
	color:var(--black);
	display: block;
	border-radius:7px;
	margin: 0;
	font-size: 16px;
 
}

.sendbutton {
	border-radius: 12px;
	color: var(--white);
	font-size: 30px;
	font-family:var(--font-bold);
	background-color:var(--secondary-color);
	border:0;
	padding: 20px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	 
}

.sendbutton:hover {	
	background-color:var(--primary-color);
 
}
 
::-webkit-input-placeholder {
	color:var(--body-color);
}

:-moz-placeholder {
	/* Firefox 18- */
	color: var(--body-color);
}

::-moz-placeholder {
	/* Firefox 19+ */
	color: var(--body-color);
}

:-ms-input-placeholder {
	color: var(--body-color);
}
 
 

 
/************************************* 1400px *************************************/

@media only screen and (max-width: 1480px) {
.container {
	width: 100%;
	padding:0 25px;
	}
 
 .bird{    
    width:400px;
}
.bg img{
    width:30%;	 
 
}
}

/************************************* 1180px *************************************/
@media only screen and (max-width: 1180px) {
.card-grid{
	 
	 grid-template-columns:repeat(1,1fr);
     grid-gap:20px 0;
	}
}

/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {

 .bird{    
    width:300px;
}
.hero-content h1{
	font-size:30px;
	line-height:30px;
	 
}
.hero-content h2{
	font-size:16px;
}
.hero-content{	 
	bottom:20px;
	padding:0 25px 25px 25px;
}
.hero-right{
	width:30%;
	font-size:18px;
	line-height:24px;
}
 .section-spacing{
	 padding:40px 0;
 }
 
 
   
 
}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
 
   .gallery-grid .hover-effect{
	height: 150px;
}
 
 
}

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {

 
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {
 .heading{
	font-size:30px;
	line-height:34px;
 
	 
}
 
 
 
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 
body {
 
	font-size:18px;
	line-height: 22px;
	 
}

.indent{
	text-indent:80px;
}
.bg{
	background-image:url(../images/proffin-gcc-logo-icon.svg);
	background-repeat:no-repeat;
	background-position:center 25%;
	background-size:50%;
  
}

.bg img{
    display:none;
}

/* Bird */

.bird{
    
    top:30%;
    width:200px;
    transform:translate(-50%,-30%);
    
}

.bird img{
    width:100%;
    display:block;
}
.hero-content{
	gap:20px 0;
}

.hero-left, .hero-right{
	width:100%;
	}

 .card-grid{
	 grid-template-columns:repeat(1,1fr);
     grid-gap:10px 0;
	 margin-top:50px;
	}
	
.card{
	padding:20px;
}
.heading{
	font-size:20px;
	line-height:normal;
}
.facts{
	 grid-template-columns: repeat(1, 1fr);
}
.iconic{
	padding:20px 20px 20px 70px;
	font-size: 14px;
}
.iconic h2{
	font-size: 20px;
}
.webicon{	
 
	left:0;
	top:25px;
	 
}
  .portfolio{       
    grid-template-columns: repeat(2, 1fr);
    }
  .portfolio .item .foot h2,   .portfolio .item .foot h3{
  	font-size:16px;
}
.address-col	{
	width:100%;
}
 .address-grid {
	grid-template-columns: repeat(2, 1fr);
	grid-gap:20px;
 }  	
  .address-grid .item,  .lower-footer{
  	font-size:12px;
}

.lower-footer{
	padding:20px 0 0 0;
	margin-top:30px;
	flex-direction:column;
	gap:20px 0;
 
}

.copyright{
	width:100%;
	 
}
}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
 
}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {}