*{
	text-decoration: none !important;
}
.text ul{
	list-style-type:circle;
}
.about-section{
	position:relative;
	padding:120px 0px;
}

.about-section .content-column{
	position:relative;
	margin-bottom:40px;
}

.about-section .content-column .inner-column{
	position:relative;
	padding-top:50px;
	padding-right:100px;
}

.about-section .image-column .inner-column{
	position:relative;
	padding:40px 40px 0px 0px;
	margin-left:50px;
}

.about-section .image-column .inner-column:after{
	position:absolute;
	content:'';
	right:0px;
	top:0px;
	left:40px;
	bottom:100px;
	z-index:-1;
	border:2px solid var(--first-color);
}

.about-section .image-column .inner-column .image{
	position:relative;
}

.about-section .image-column .inner-column .image:before{
	position:absolute;
	content:'';
	left:-50px;
	bottom:-50px;
	width:299px;
	height:299px;
}

.about-section .image-column .inner-column .image img{
	position:relative;
	width:100%;
	display:block;
}

.about-section .image-column .inner-column .image .overlay-box{
	position:absolute;
	left:40px;
	bottom:48px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box{
	position:relative;
	color:var(--title-color);
	font-size:24px;
	font-weight:700;
	line-height:1.4em;
	padding-left:125px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box .number{
	position:absolute;
	left:0px;
	top:0px;
	width:110px;
	height:110px;
	font-size:68px;
	font-weight:700;
	line-height:105px;
	text-align:center;
}
.about-section .btn-style-three:before {
    position: absolute;
    content: '';
    left: 10px;
    top: 10px;
    z-index: -1;
    right: -10px;
    bottom: -10px;
}
.about-section .btn-style-three:hover {
    color: var(--body-color);
    background: var(--first-color);
}
.about-section .btn-style-three {
    position: relative;
    line-height: 24px;
    color: var(--title-color);
    font-size: 15px;
    font-weight: 700;
    background: none;
    display: inline-block;
    padding: 11px 40px;
    background-color: var(--body-color);
    text-transform: capitalize;
    border: 2px solid var(--first-color);
}
.sec-title2{
	color:var(--title-color);
}
.sec-title {
    position: relative;
    padding-bottom: 40px;
}
.sec-title .title {
    position: relative;
    color: var(--first-color);
    font-size: 18px;
    font-weight: 700;
    padding-right: 50px;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: capitalize;
}
.sec-title .title:before {
    position: absolute;
    content: '';
    right: 0px;
    bottom: 7px;
    width: 40px;
    height: 1px;
}
h2{
color: var(--text-color);
font-size: 20px;
}

.imgabout1{
    position: relative;
    right: 100px;
}
.textabout1{
    position: relative;
    left: 45px;
}
@media only screen and (max-width:639px) {
    .imgabout1{
        position: relative;
        right:50px;
    }
    .textabout1{
        position: relative;
        left: 25px;
    }
    .textabout2{
        position: relative;
        left:20px;
    }
}
/* about */
/*========== NAV ==========*/
.nav {
	max-width: 1024px;
	height: var(--header-height);
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  
  @media screen and (max-width: 768px) {
	.nav__menu {
	  position: fixed;
	  top: -100%;
	  left: 0;
	  width: 100%;
	  padding: 1.5rem 0 1rem;
	  text-align: center;
	  background-color: var(--body-color);
	  transition: .4s;
	  box-shadow: 0 4px 4px rgba(0, 0, 0, .1);
	  border-radius: 0 0 1rem 1rem;
	  z-index: var(--z-fixed);
	}
  }
  
  .nav__item {
	margin-bottom: var(--mb-2);
  }
  
  .nav__link,
  .nav__logo,
  .nav__toggle {
	color: var(--text-color);
	font-weight: var(--font-medium);
	list-style: none;
	text-decoration: none;
  }
  
  .nav__logo:hover {
	color: var(--first-color);
  }
  
  .nav__link {
	transition: .3s;
  }
  
  .nav__link:hover {
	color: var(--first-color);
  }
  
  .nav__toggle {
	font-size: 1.3rem;
	cursor: pointer;
  }
  
  /* Show menu */
  .show-menu {
	top: var(--header-height);
  }
  
  /* Active menu */
  .active-link {
	color: var(--first-color);
  }
  
  /* Change background header */
  .scroll-header {
	box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
  }
  
  /* Scroll top */
  .scrolltop {
	position: fixed;
	right: 1rem;
	bottom: -20%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: .3rem;
	background: var(--f);
	border-radius: .4rem;
	z-index: var(--z-tooltip);
	transition: .4s;
	visibility: hidden;
  }
  
  .scrolltop:hover {
	background-color: var(--first-color-alt);
  }
  
  .scrolltop__icon {
	font-size: 1.8rem;
	color: var(--body-color);
  }
  
  /* Show scrolltop */
  .show-scroll {
	visibility: visible;
	bottom: 1.5rem;
  }