@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

#select_countries img {padding:10px;}
#skillcheck-login {display:none;}
#select_countries {display:none;}
.halfWide1, .halfWide2 {width:50%;float:left;}
#privacypolicy {color:#004a7c; text-decoration:none; margin-top:20px;font-size:0.8em;}
.maincontent {padding:0 15%;}
.title img {width:50%;height:auto;}

::selection {
  color: #000;
  background: #fff;
}
nav {
  position: fixed;
  /*background: #004a7c;*/
  width: 100%;
  padding: 10px 0;
  z-index: 12;
}
nav .menu {
  max-width: 1250px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.menu .logo a {
  text-decoration: none;
  color: #fff;
  font-size: 35px;
  font-weight: 600;
}
.menu ul {
  display: inline-flex;
}
.menu ul li {
  list-style: none;
  margin-left: 7px;
}
.menu ul li:first-child {
  margin-left: 0px;
}
.menu ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.menu ul li a:hover {
  background: #fff;
  color: black;
}
.img {
  background: url("./image/DrakeWizeBG.jpg") no-repeat;
  background-color: #1e343f;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.img::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  /*background: rgba(0, 0, 0, 0.4);*/
}

.noimg {
  background-color: #f3f3f3;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.noimg::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  /*background: rgba(0, 0, 0, 0.4);*/
}

.center {
  position: absolute;
  top: 52%;
  left: 25%;
  transform: translate(-50%, -50%);
  width: 50%;
  padding: 0 0px;
  text-align: center;
}
.center .title {
  color: #004a7c;
  font-size: 56px;
  font-weight: 600;
}
.center .sub_title {
  color: #fff;
  font-size: 52px;
  font-weight: 600;
}
.center .btns {
  margin-top: 20px;
}
.center .btns button{
  height: 48px;
  width: 180px;
  border-radius: 5px;
  border: none;
  margin: 0 10px;
  border: 2px solid #ffffff;
  font-size: 20px;
  font-weight: 500;
  padding: 0 10px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}
.center .btns button:first-child {
  color: #fff;
  background: none;
}
.btns button:first-child:hover {
  background: white;
  color: black;
}
.center .btns button:last-child {
  background: white;
  color: black;
}
label {
  color:#004a7c;
}
input.btns{
  background: #008dff;
  color: #ffffff;
  height: 55px;
  width: 170px;
  border-radius: 5px;
  border: none;
  margin: 0 10px;
  border: 2px solid #ffffff;
  font-size: 20px;
  font-weight: 500;
  padding: 0 10px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}

input.btns:hover{
  background-color:#004a7c;
}

input.drkinput{
  background: #fefefe;
  color: #004a7c;
  height: 38px;
  width: 286px;
  border-radius: 2px;
  border: none;
  margin: 0 20px;
  border-bottom: 2px solid #004a7c;
  font-size: 16px;
  font-weight: 500;
  padding: 0 10px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}

input.drkinput:hover{border-bottom: 2px solid #008dff;}
input.drkinput:focus{border-bottom: 2px solid #008dff;}

p {margin:24px 0;}
form span {color:#f9423a;font-size:12px;}

@media only screen and (max-width: 912px) and (min-width:601px){
	.halfWide1 {width:60%;}
	.halfWide2 {width:40%}
	.center {left:30%;width:60%;}
	input.drkinput{width:88%;}
	.title img {width:90%;}

}

@media only screen and (max-width: 600px){
	.halfWide1 {width:100%;}
	.halfWide2 {display:none;}
	.center {left:50%;width:80%;}
	.title img {width:96%;}
	input.drkinput{margin:0;}
	.maincontent{padding:0 3%;}
	
}

