/*-----------HOMEPAGE----------*/
.footer{
	text-align: center;
	font-size: 13px;
	background-color:#2C2F34;
	padding:75px;
}
body {
	margin: 0;
	padding: 0;
    font-family: Trebuchet MS, sans-serif;
    background-color: #1F2123;
    color: white;
}
.topnav {
    background-color: black;
	overflow:hidden;
  	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 30px;
    color: #fff;
	z-index: 1000;
}
.topnav a {
  float: left;
  text-align: left;
  padding: 5px 16px;
  text-decoration: none;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
}
.topnav a:hover {
  background-color: black;
  color: orange;
}
.topnav a.active {
  background-color: #5D6D7E;
  color: black;
}
div .upcon{
	margin-left:145px;
}
h1{
	text-align:center;
}
.hmpg{
	padding-top: 150px;
	font-size:30px;
}
.srvcs{
	padding-top: 20px;
	font-size:25px;
}

.btn1 {
	transition: background-color .8s;
	font-family:'Poppins', sans-serif;
    cursor: pointer;
    border: 1px solid orange;
    background-color: transparent;
    height: 43px;
    width: 180px;
    color: white;
    font-size: 0.8rem;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.6);
}
.btn1:hover{
	font-weight:bold;
	color: #050801;
	background-color:orange;
	box-shadow: 0 0 5px orange,
				0 0 25px orange,
				0 0 50px orange,
				0 0 200px orange;
	-webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
}
li {
	list-style: none;
}
a{
    text-decoration: none;
    color: white;
	font-size: 1rem;
}
a:hover {
    color: orange;
}
header{
	overflow: hidden;
	margin-top:30px;
	min-height: 96vh;
	width: 100%;
    position: relative;
    padding: 0rem;
	background: linear-gradient(rgba(0,0,0,0.7),rgba(105,106,111,0.7)),
	url(https://addepto.com/wp-content/uploads/2022/06/NLP_background_1_.webp)
	no-repeat 50% 50%;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	text-align: center;
}
.navbar {
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.navbar .logo a {
    font-size: 1rem;
    font-weight: bold;
	font-family: Copperplate, Papyrus, fantasy;
}
.navbar .links {
    display: flex;
    gap: 2rem;
	margin-left:160px;
}
.navbar .links a {
	position: relative;
	font-size:1rem;
	text-decoration: none;
	font-weight: bold;
}
.navbar .links a::after {
	content: '';
	position: absolute;
	left:0;
	bottom: -6px;
	width: 100%;
	height: 3px;
	background: orange;
	border-radius: 5px;
	transform-origin: right;
	transform: scaleX(0);
	transition: transform 0.5s;
}
.navbar .links a:hover::after {
	transform-origin: left;
	transform: scaleX(1);
}
.navbar .links-srvc {
    display: flex;
    gap: 2rem;
	margin-right:130px;
}
.navbar .links-srvc a {
	position: relative;
	font-size:1rem;
	text-decoration: none;
	font-weight: bold;
}
.navbar .links-srvc a::after {
	content: '';
	position: absolute;
	left:0;
	bottom: -6px;
	width: 100%;
	height: 3px;
	background: orange;
	border-radius: 5px;
	transform-origin: right;
	transform: scaleX(0);
	transition: transform 0.5s;
}
.navbar .links-srvc a:hover::after {
	transform-origin: left;
	transform: scaleX(1);
}

.navbar .toggle_btn {
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
	margin-right:10px;
}
.navbar .btnLogin-popup {
	text-align:center;
	width: 200px;
	height: 32.9px;
	background: orange;
	border: 2px solid orange;
	outline:none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 1em;
	color: white;
	font-weight: bold;
	margin-left: 40px;
	transition: scale 0.2s ease;
	font-family: Trebuchet MS, sans-serif;

}
.navbar .btnLogin-popup:hover {
	background: orange;
	color: white;
	transform: scale(1.05);
}
.action_f {
	background-color:orange;
    color: #fff;
    padding: 0rem 0.5rem;
    border: none;
    outline: none;
    border-radius: 5px;
    font-size: 1.8rem;
    cursor: pointer;
    transition: scale 0.2s ease;
}
.action_f:hover {
	color: white;
    transform: scale(1.05);
}
.action_f:active {
	transform: scale(0.95);
}

.action_btn {
	background-color:orange;
    color: #fff;
    padding: 0.5rem 0.5rem;
    border: none;
    outline: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: scale 0.2s ease;
}
.action_btn:hover {
	color: white;
    transform: scale(1.05);
}
.action_btn:active {
	transform: scale(0.95);
}

.dropdown_menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    height: 0;
    width: 300px;
    background: rgba(255, 255, 255, 0.1);
	-webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}
.dropdown_menu.open {
    height: 240px;
}
.dropdown_menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
	margin-right:36px;
}
.dropdown_menu .action_btn {
    width: 100%;
    display: flex;
    justify-content: center;
}
@media (max-width: 992px) {
    .navbar .links,
    .navbar .btnLogin-popup,
	.navbar .action_f,
	.navbar .links-srvc{
        display: none;
    }
    .navbar .toggle_btn {
        display: block;
    }

    .dropdown_menu {
        display: block;
    }
}
.center{
	text-align: center;
	align-items: center;
}
@media (max-width: 576px) {
	.dropdown_menu {
		left: 2rem;
		width: unset;
	}
}
div .pagination{
	display: inline-block;
	align-items: center;
}
.pagination a{
	color: white;
	float: left;
	padding: 8px 16px;
	text-decoration: none;
	transition: background-color .3s;
	border: 1px solid #ddd;
	margin: 0 4px;
}
.pagination a.active{
	background-color: #5D6D7E;
	color: white;
	border: 1px solid #5D6D7E;
}
.pagination a:hover:not(.active){
	background-color: #ddd;
}

.container-123{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10vmin;
  overflow: hidden;
  transform: skew(5deg);

  .card {
    flex: 1;
    transition: all 1s ease-in-out;
    height: 75vmin;
    position: relative;
    .card__head {
      color: black;
      background: orange;
      padding: 0.5em;
      transform: rotate(-90deg);
      transform-origin: 0% 0%;
      transition: all 0.5s ease-in-out;
      min-width: 100%;
      text-align: center;
      position: absolute;
      bottom: 0;
      left: 0;
      font-size: 1em;
      white-space: nowrap;
    }

    &:hover {
      flex-grow: 10;
      img {
        filter: grayscale(0);
      }
      .card__head {
        text-align: center;
        top: calc(100% - 2em);
        color: white;
        background: rgba(0, 0, 0, 0.5);
        font-size: 2em;
        transform: rotate(0deg) skew(-5deg);
      }
    }
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 1s ease-in-out;
      filter: grayscale(100%);
    }
    &:not(:nth-child(5)) {
      margin-right: 1em;
    }
  }
}
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: -400vh;
	padding-bottom: -50px;
}
.wrapper{
	font-family: 'Poppins', sans-serif;
	position: relative;
	width: 400px;
	height: 480px;
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 20px;
	backdrop-filter: blur(20px);
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	transform: scale(0)translate(50%, 50%);
	transition: transform .3s ease, height .2s ease;
}
.wrapper.active-popup {
	transform: scale(1) ;
	position: absolute;
    top: 15%;
    left: 35%;
    z-index: 999;
}

.wrapper.active {
	height: 520px;
}
.wrapper .form-box{
	width: 80%;
	padding: 40px;
}
.wrapper .form-box.login{
	transition: transform .18s ease;
	transform: translateX(0);
}
.wrapper.active .form-box.login {
	transition: none;
	transform: translateX(-400px);
}
.wrapper .form-box.register {
	position: absolute;
	transition: none;
	transform:translateX(400px);
}
.wrapper.active .form-box.register {
	transition: transform .18s ease;
	transform:translateX(0);
}
.wrapper .icon-close {
	position: absolute;
	top: 0;
	right: 0;
	width: 45px;
	height: 45px;
	background: orange;
	font-size: 2em;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom-left-radius: 20px;
	cursor: pointer;
	z-index: 1;
}
.form-box h2{
	font-size: 2em;
	color: orange;
	text-align: center;
}
.input-box{
	position: relative;
	width: 100%;
	height: 50px;
	border-bottom: 2px solid #2C2F34;
	margin: 30px 0;
}
.input-box label{
	position: absolute;
	top: 50%;
	left: 5px;
	transform: translateY(-50%);
	font-size: 1em;
	color: orange;
	font-weight: 500;
	pointer-events: none;
	transition: 0.5s; 
}
.input-box input:focus~label,
.input-box input:valid~label {
	top: -5px;
}

.input-box input{
	width: 100%;
	height: 100%;
	background: transparent;
	border: none;
	outline: none;
	font-size: 1em;
	color: orange;
	font-weight: 550;
	padding: 0 35px 0 5px;
}
.input-box .icon{
	position: absolute;
	right: 8px;
	font-size: 1.2em;
	color: orange;
	line-height: 57px;
}
.remember-forgot {
	font-size: .9em;
	color: orange;
	font-weight: 500;
	margin: -15px 0 15px;
	display: flex;
	justify-content: space-between;
}
.remember-forgot label input {
	accent-color: orange;
	margin-right: 3px;
}
.remember-forgot a {
	color: orange;
	text-decoration: none;
}
.remember-forgot a:hover {
	text-decoration: underline;
}
.btn {
	width: 100%;
	height: 45px;
	background: #2C2F34;
	border: none;
	outline: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 1em;
	color: #fff;
	font-weight: 600;
}
.login-register {
	font-size: .9em;
	color: orange;
	text-align: center;
	font-weight: 500;
	margin: 25px 0 10px;
}
.login-register p a {
	color: orange;
	text-decoration: none;
	font-weight: 600;
}
.login-register p a:hover{
	text-decoration: underline;
}
/*-----------SERVICES----------*/
.roundedtablefr {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  border-collapse: separate;
  border: solid white 2px;
  border-radius: 6px;
}
td,
th {
  border-left: solid white 1px;
  border-top: solid white 1px;
}

td {
  padding: 1%;
}

th {
  border-top: none;
  font-weight: bold;
  padding: 1%;
}

td:first-child,
th:first-child {
  border-left: none;
}
.marginsidesfr {
  margin-left: 10%;
  margin-right: 10%;
  text-align: justify;
  color:#ababab;
}

.container-1{
  display: flex;
  width: 100%;
  padding: 4% 8%;
  box-sizing: border-box;
  height: 100vh;
}

.box {
  flex: 1;
  overflow: hidden;
  transition: .5s;
  margin: 0 2%;
  box-shadow: 0 20px 30px rgba(0,0,0,0.4);
  line-height: 0;
}

.box > img {
  width: 200%;
  height: calc(100% - 10vh);
  object-fit: cover; 
  transition: .5s;
}

.box > span {
  font-size: 3.8vh;
  display: block;
  text-align: center;
  height: 10vh;
  line-height: 2.6;
}

.box:hover { flex: 1 1 50%; }
.box:hover > img {
  width: 100%;
  height: 100%;
}


/*-----------ABOUT----------*/
.container-abt {
    padding: 10px 10%;
	text-align: center;
	align-items: center;
}

#about {
    padding: 80px 0;
    color:#ababab;
}

.row {
    display:flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-col-1 {
    flex-basis: 35%;
}

.about-col-1 img {
    width: 110%;
    border-radius: 10px;
	float: left;
}

.about-col-2 {
    flex-basis: 60%;
}

.sub {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
}

.tab-titles {
    display: flex;
    margin: 20px 0 40px;
}

.tab-links {
    margin-right: 80px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.tab-links::after{
    content: '';
    width: 0;
    height: 3px;
    background: orange;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}

.tab-links.active-link::after {
    width: 50%;
}

.tab-contents ul li{
    list-style: none;
    margin: 10px 0;
	margin-right: 130px;
}

.tab-contents{
    display: none;
	text-align: left;
	margin-left: -40px;
}

.tab-contents.active-tab {
    display: block;
}

@media only screen and (max-width: 600px) {

.sub {
    font-size:30px;
}

.about-col-1, .about-col-2{
    flex-basis: 100%;
}

.about-col-1 {
    margin-bottom: 30px;
}

.about-col-2 {
    font-size: 14px;
}

.tab-links{
    font-size: 16px;
    margin-right: 20px;
}

.agm {
    width: 200px;
    height: auto;
}

}
/*-----------CONTACTS----------*/
.map {
	padding-top: 20px;
	text-align: center;
}
iframe {
	border-radius: 10px;
	border: 2px orange solid;
	width:65%;
	height: 550px;
}
.text {
	padding: 50px;
}
.text p{
	padding: 10px;
}
.container-cu{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px 0px;
	margin-top:-430px;
}
.container-cu::after{
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: -1;
}
.contact-box{
    max-width: 999px;
	height: 800px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: transparent;
    box-shadow: 0px 0px 19px 5px rgba(0, 0, 0, .20);
	border-radius: 10px;
}
.Contact{
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	height: 600px;
    position: relative;
    min-height: 80vh;
    padding: 100px 10px;
    display: flex;
    justify-content:center ;
    align-items: center;
    flex-direction: column;
    background: url(https://hannercomputer.com/wp-content/uploads/tech-background-misc-items-e1645034639571.jpg);
    background-size: cover;
    font-size: 1.2rem;
    color: orange;
}
.ContactInfo{
    max-width: 800px;
    text-align: center;
}
.Form{
    padding: 25px 100px;
	margin-left: -50px;
	margin-right: -15px;
}
.cu h1 {
	color: orange;
}

.cu{
    position: relative;
    padding-bottom: 1px;
    margin-bottom: 10px;
	color: black;
}
.cu:after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 50px;
    border-radius: 2px;
    background-color: orange;
}
.field{
    width: 100%;
    padding: 0.5rem 1rem;
    outline: none;
    border: 2px solid rgba(0, 0, 0, 0);
    background-color: rgba(230, 230, 230, 0.6);
    font-size: 1.1rem;
    margin-bottom: 22px;
    transition: .3s;
}
.field:hover{
    background-color: rgba(0, 0, 0, .1);
}
.field:focus{
    background-color: white;
    border: 2px solid rgba(30, 85, 250, 0.47);
}
.area{
    min-height: 150px;
    resize: none;
}
.container-cu .inputBox input[type="submit"]{
    width: 110%;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    background-color: orange;
    cursor: pointer;
    outline:none;
    border: none;
    transition: 0.3s;
    color: white;
	
}
.container-cu .inputbox:.btn:hover{
    background-color: #27ae60;
}


@media screen and (max-width:880px){
    .contact-box{
        grid-template-columns: 1fr;
    }
    .Contact{
        height: 1px;
    }
}
.text h2{
	margin-top: -25px;
}
.cticon {
	margin-top: 40px;
}
