@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap');
body{
	box-sizing:border-box; 
	font-family: 'Montserrat', sans-serif;
}
body::-webkit-scrollbar {
  width: .5em;
}
 
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px var(--light-brown-color);
}
 
body::-webkit-scrollbar-thumb {
  background-color: var(--brown-color);
  outline: 1px solid var(--brown-color);
}
html {
  scroll-behavior: smooth;
}
:root {
    --green-color:#cbddb0;
    --light-brown-color:#837269;
    --brown-color:#5a4a42;
}
::selection {
  background:var(--light-brown-color);
  color:#fff;
}
::-moz-selection {
   background:var(--light-brown-color);
    color:#fff;
}
*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

p{
    line-height: 1.5;
    font-size: 16px;
}
ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}
a, button {
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}
a:hover
{
  text-decoration: none;
}
button:focus, input:focus, textarea:focus, select:focus, a:hover
{
  outline: none; box-shadow: none;
}
.wrapper
{
  margin:0px; 
  padding: 0px;
}
section
{
	padding:70px 0;
}
.fixedHeader{
	position: sticky;
	top: 0px;
	width: 100%;
	z-index: 999;
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
	background: #fff;
}
.fixedHeader .logo{
	width: 190px;
}
.heading{
	font-size: 45px;
	line-height: 50px;
}
.sub_heading{
	font-size:34px;
	line-height: 50px;
}
.small_heading{
	font-size: 28px;
	line-height: 40px;
}
.title_heading{
	font-size: 20px;
}
.title{
	font-size: 18px;
}
.inlineHeader{
	padding: 10px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo{
	width: 250px;
	transition: all 0.5s ease-in-out;
}
.logo img{
	max-width: 100%;
}
.rightMenu ul{
	display: flex;
	align-items: center;
}
.rightMenu ul li{
	position: relative;
}
.rightMenu ul li a{
	padding:15px 20px;
	font-size: 15px;
	color: #333;
	text-transform: uppercase;
	display: block;
	position: relative;
	font-weight: 500;
}
.rightMenu ul li a:hover{
	color: var(--green-color);
}
.rightMenu ul li ul{
	width: 250px;
	background:#fff;
	display: block;
	position: absolute;
	top: 70px;
	left: 0px;
	z-index: -1;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out
}
.rightMenu ul li:hover ul{
	top: 50px;
	opacity: 1;
	visibility: visible;
	z-index: 99;
}
.rightMenu ul li ul li a{
	display: block;
}
.rightMenu ul li ul li a:hover{
	background:#f9f9f9;
}
.rightMenu ul li ul li a:after, .rightMenu ul li ul li a:before{
	display: none;
}
.rightMenu ul li a:before{
	content: '';
	position: absolute;
	top: 27px;
	left: 0px;
	opacity: 0;
	width: 100%;
	height: 1px;
	transition: all 0.5s ease-in-out;
	background: var(--green-color);
}
.rightMenu ul li a:after{
	content: '';
	position: absolute;
	transition: all 0.5s ease-in-out;
	bottom: 27px;
	opacity: 0;
	left: 0px;
	width: 100%;
	height: 1px;
	background: var(--green-color);
}
.rightMenu ul li a:hover:before{
	top: 7px;
	opacity: 1;
}
.rightMenu ul li a:hover:after{
	bottom: 7px;
	opacity: 1;
}
.slider{
	position: relative;
	z-index: 1;
}
.slider .carousel-item{
	height: 550px;
	object-fit: cover;
}
.bg1{
	background: var(--light-brown-color);
}
.bg2{
	background: var(--green-color);
}

.bg2 .carousel-caption{
	border-color:#fff;
}
.bg2 .carousel-caption h5, .bg2 .carousel-caption p{
	color: #333;
}
.bg2 .sliderBtn{
	background:#000;
	color: #fff;
}
.bg2 .sliderBtn:hover{
	border-color: #000;
	color: #000;
}
/*.slider:before{
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.2);
	z-index: 1;
}*/
.carousel-caption{
	z-index: 9;
	top: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border:1px solid #ccc;
	left: 50%;
	bottom: 0px;
	padding: 0 40px;
	width: 45%;
	transform: translate(-50%, -50%);
}
.carousel-caption h5{
	letter-spacing: 2px;
}
.carousel-caption p{
	line-height: 24px;
	font-size: 16px;
}
.sliderBtn{
	background:var(--green-color);
	color: #000;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 13px;
	border:1px solid transparent;
	margin-top: 20px;
	display: inline-block;
	padding: 15px 40px;
}
.sliderBtn:hover{
	background: transparent;
	border-color: #fff;
	color: #fff;
}
.inlineAbout{
	display: flex;
	align-items: center;
}
.rightAbout{
	width: 600px;
}
.rightAbout img{
	max-width: 100%;
}
.leftAbout{
	width: calc(100% - 600px);
	background: #fff;
	padding:40px 20px 40px 40px;
	position: relative;
	z-index: 9;
}
.leftAbout:after{
	width: 20px;
	height: 100%;
	top: 0px;
	content: '';
	position: absolute;
	right: -20px;
	background: #fff;
}
.leftAbout h4{
	font-weight: 600;
	color: var(--brown-color);
}
.ribbonTitle h3 span{
	position: relative;
}
.ribbonTitle h3 span:after{
	width: 40px;
	height: 1px;
	background: #333;
	content: '';
	position: absolute;
	top: 50%;
	right: -50px;
	transform: translateY(-50%);
}
.leftAbout p{
	margin-top:20px;
	text-align: justify;
	line-height: 28px;
}
.themeBtn{
	background: var(--light-brown-color);
	text-transform: uppercase;
	font-weight: 600;
	font-size: 13px;
	border:1px solid transparent;
	margin-top: 30px;
	display: inline-block;
	padding: 15px 40px;
	color: #fff;
}
.themeBtn:hover{
	background: var(--brown-color);
	color: #fff;
}
.themeBtnGreen{
	background: var(--green-color);
	text-transform: uppercase;
	font-weight: 600;
	font-size: 13px;
	border:1px solid transparent;
	margin-top: 30px;
	display: inline-block;
	padding: 15px 40px;
	color: #333;
}
.themeBtnGreen:hover{
	background: #fff;
	border-color: var(--green-color);
	color: #333;
}
.bgGrey{
	background: #f5f5f5;
}
.fontWeight-600{
	font-weight: 600;
}
.fontWeight700{
	font-weight: 700;
}
.columnOne{
	padding:40px;
	webkit-box-shadow: 0px 20px 60px 0px rgb(0 11 40 / 6%);
	text-align: center;
    box-shadow: 0px 20px 60px 0px rgb(0 11 40 / 6%);
    transition: all 0.2s ease-in-out;
    border:1px solid #f1f1f1;
    border-radius: 5px;
    height: 430px;
}
.columnOne:hover{
	background: #f9fbf7;
}
.iconService{
	background: #fff;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border:1px solid #e0e0e0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	margin:0 auto 30px;
}
.iconService img{
	max-width: 100%;
}
.columnOne h4{
	margin-bottom: 20px;
	color: var(--brown-color);
}
.columnOne .small_heading{
	font-size: 24px;
}
.eventBg{
	background: url(../images/conference.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
	z-index: 1;
}
.eventBg:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgb(90 74 66 / 58%);
	top: 0px;
	left: 0px;
	z-index: -1;
}
.itemEvent{
	padding:20px;
	border:1px solid var(--green-color); 
	height: 80px;
	display: flex;
	align-items: center;
	margin: 10px 0 40px 0;
}
.itemEvent .title{
	font-size: 20px;
	line-height: 36px;
}
.itemEvent a{
	display: flex;
	width: 100%;
	color: #fff;
	align-items: center;
	justify-content: center;
}
.itemEvent a span{
	width: 80px;
	padding-right: 10px;
	opacity: 0;
	transition: all 0.5s ease-in-out;
	text-align: right;
}
.itemEvent:hover{
	border-color: var(--green-color);
	background: rgb(90 74 66 / 35%);
}
.itemEvent:hover a{
	color: var(--green-color);
}
.itemEvent:hover a span{
	padding-right: 0px;
	opacity: 1;
}
.footer{
	padding:20px 0;
	background: var(--green-color);
}
.inlineFooter{
	display: flex;
	align-items: center;
	justify-content: center;
}
.inlineFooter p{
	font-size: 14px;
	color: #333;
	font-weight: 500;
}
.socialLinks{
	display: flex;
	align-items: center;
	justify-content: center;
}
.socialLinks li a{
	width: 35px;
	height: 35px;
	margin:0 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333;
	background: #fff;
	border-radius: 50%;
}
.borderBottom{
	border-bottom:1px solid #999;
}
.greenBg{
	background: #eaf1df;
}
.cvHeader h4{
	margin-bottom: 10px;
}
.cvHeader p{
	margin:5px 0;
}
.cvHeader p a{
	color: var(--light-brown-color);
	font-weight: 500;
}
.cvHeader p a:hover{
	color: #000;
}
.text-brown{
	color:var(--brown-color);
}
.cvHeader a.mail{
	text-decoration: underline;
}
.itemHeader{
	background:#f8f8f8;
	padding:15px 20px;
	border-bottom: 1px solid #e0e0e0;
}
.aboutContent p{
	margin-top: 15px;
	text-align: justify;
}
.aboutContent h4{
	position: relative;
	color: var(--brown-color);
	margin-bottom: 50px;
}
.aboutContent h4:before{
	content: '';
	position: absolute;
	bottom: -15px;
	width: 100px;
	height: 4px;
	background:var(--green-color);
}
.aboutContent ul{
	margin-top: 20px;
	padding-left: 10px;
}
.aboutContent ul li{
	padding:5px;
}
.arrow li{
	position: relative;
	padding-left: 20px;
	padding-top: 10px;
}
.arrow li:before{
	content: "\f054";
	position: absolute;
	top: 13px;
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	left: 0px;
	font-size: 11px;
}
.caret li{
	position: relative;
}
.caret li:before{
	content: "\f0da";
	position: absolute;
	top: 13px;
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	left: 0px;
	font-size: 13px;
}
a.mail{
	text-decoration: underline;
	color: var(--light-brown-color);
	font-weight: 500;
}
a.mail:hover{
	color: #000;
}
.itemCV{
	margin-bottom: 40px;
}
.listPro{
	padding:0px 20px;
	display: flex;
	margin-top: 0px;
}
.listPro h4{
	margin-right: 20px;
	width: 250px;
	margin-bottom: 20px;
}
.listPro p a{
	font-weight: 500;
	font-size: 15px;
	display: inline-block;
	padding:5px;
	color: var(--light-brown-color);
}
.listPro p a:hover{
	color: #000;
}
.proTitle{
	font-size: 20px;
}
.itemEducation{
	margin-top: 30px;
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 20px;
	padding-left: 20px;
}
.itemEducation h4{
	margin-bottom: 15px;
}
.text{
	font-size: 15px;
}
.listHand{
	padding-left: 15px;
	margin-top:15px;
}
.listHand li{
	padding:10px;
	padding-left: 30px;
	font-size: 15px;
	position: relative;
}
.listHand li:before
{
	position: absolute;
	top: 10px;
	left: 0px;
	content: "\f0a4";
	font-family: "Font Awesome 5 Free";
}
.itemEducation:last-child{
	border-bottom:none;
}
.bgGreen{
	background:var(--green-color);
}
.inlineText h4{
	line-height: 34px;
}
/*letters of recommendation*/
.itemLetters{
	background:var(--green-color);
	padding:10px;
	height: 100%;
}
.imgLetter img{
	max-width: 100%;
}
.itemLetters h2{
	margin-top: 10px;
	color: var(--brown-color);
}
.itemLetters h2.small_heading{
	font-size: 22px;
}
.imgLetter{
	position: relative;
}
.pdfIcon{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	visibility: hidden;
	opacity: 0;
	transition: all 0.5s ease-in-out;
	height: 100%;
	background:rgba(0,0,0,.7);
	display: flex;
	align-items: center;
	justify-content: center;
	color:#ccc;
	font-size: 36px;
}
.itemLetters:hover .pdfIcon{
	opacity: 1;
	visibility: visible;
}
.itemLetters p{
	color: #666;
	font-weight: 600;
	font-size: 15px;
	text-align: center;
}