/* all common css start */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  display: inline;
}
ul,
ol {
  list-style-type: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  line-height: 0.8;
}
.container {
  width: 1320px;
  margin: 0 auto;
}
/* all common css end */

/* header part start */
#headerPart {
  padding: 25px 0px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #191919;
  z-index: 1;
}
.haderFlex {
  display: flex;
  align-items: center;
}
.logo {
  width: 15%;
  transition: 0.4s;
}
.logo:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
}
.menu {
  width: 55%;
}
.menu ul {
  display: flex;
}
.menu ul li {
  padding: 0px 15px;
}
.menu ul li a {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #dddddd;
  transition: 0.4s;
}
.menu ul li a:hover {
  color: #fc3a5a;
}
.menuSocialIcon {
  width: 30%;
  text-align: right;
}
.menuSocialIcon a {
  padding: 0px 12px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  transition: 0.4s;
}
.menuSocialIcon a:hover {
  color: #fc3a5a;
}
.menuSocialIcon a i {
  transition: 0.4s;
}
.menuSocialIcon a:hover i {
  color: #fc3a5a !important;
}
.smallIcon {
  font-size: 14px;
}
/* header part end */
/* banner part start */
.bannerImg {
  padding-top: 337px;
  background-image: url(../images/banner\ 2.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.bannerText h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 27px;
  color: #ffffff;
  line-height: 40px;
}
.bannerText h1 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 60px;
  color: #ffffff;
  line-height: 89px;
  position: relative;
  display: inline-block;
}
.bannerText h1::after {
  height: 4px;
  width: 90px;
  position: absolute;
  bottom: 17px;
  right: -115px;
  content: "";
  background: #fff;
}
.bannerText p {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 24px;
  width: 521px;
}
.bannerBtn {
  margin-top: 48px;
  padding: 20px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #121212;
  background-color: #ffffff;
  display: inline-block;
  transition: 0.4s;
}
.bannerBtn:hover {
  color: #ffffff;
  background-color: #fd3a5c;
}
.bannerBtn:hover i {
  color: #000000 !important;
}
.bannerSocialIcon {
  padding-top: 301px;
  padding-bottom: 103px;
}
.bannerSocialIcon a {
  padding: 15px;
  border-radius: 50%;
  background: #d9d9d9;
  color: #000000;
  margin-right: 20px;
  transition: 0.4s;
}
.bannerSocialIcon a:hover {
  background: #fd3a5c;
  color: #ffffff;
}
/* banner part end */
/* about part start */
#aboutPart {
  background: #121212;
  padding-bottom: 80px;
}
.aboutHaderText h2 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 38px;
  color: #ffffff;
  line-height: 56px;
  width: 450px;
  padding-top: 34px;
  padding-bottom: 57px;
  display: inline-block;
  position: relative;
}
.aboutHaderText h2::after {
  height: 3px;
  width: 120px;
  background-color: #ff4655;
  position: absolute;
  bottom: 70px;
  right: 130px;
  content: "";
}
.aboutImg::after {
  height: 5px;
  width: 150px;
  background-color: #ff4655;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.aboutImg::before {
  height: 150px;
  width: 5px;
  background-color: #ff4655;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.aboutFlex {
  display: flex;
  padding-bottom: 55px;
}
.aboutImg {
  width: 60%;
  position: relative;
}
.aboutImg img:hover {
  border-bottom-right-radius: 60px;
  box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
  -moz-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
}
.aboutText {
  width: 40%;
}
.aboutText h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 27px;
  color: #ffffff;
  line-height: 40px;
}
.aboutText ul li i {
  margin-right: 10px;
}
.aboutText ul li {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  line-height: 22px;
  padding-top: 20px;
}
.aboutText p {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  line-height: 27px;
  padding-top: 13px;
  padding-bottom: 30px;
  width: 501px;
}
.aboutText a {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 24px;
  padding: 13px 43px 13px 24px;
  background-color: #212121;
  transition: 0.4s;
}
.aboutText a:hover {
  color: rgb(253, 58, 92);
  background-color: #ffffff;
  transition: 0.4s;
}
.aboutText a:hover i {
  color: #000000;
}
.aboutFooter {
  display: flex;
  justify-content: space-between;
}
.afBox {
  width: 22%;
  position: relative;
  background-color: #212121;
  border-top-right-radius: 45px;
  border-bottom-left-radius: 45px;
  text-align: center;
  padding: 20px;
  transition: 0.4s;
}
.afBox h2 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 38px;
  color: #ffffff;
  line-height: 56px;
}
.afBox h2::after {
  height: 10px;
  width: 10px;
  background-color: #ff4655;
  position: absolute;
  right: 95px;
  bottom: 55px;
  content: "";
  border-radius: 50%;
}
.afBox h4 {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #ffffff;
  line-height: 27px;
}
.afBox:hover {
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  background: #ff4655;
  box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
  -moz-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
}
.afBox:hover h2::after {
  background: #ffffff;
}
/* about part end */

/* theme part start */
#themePart {
  background: #191919;
}
.themeText {
  text-align: right;
}
.themeText h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 38px;
  color: #ffffff;
  line-height: 46px;
  padding-top: 115px;
  width: 454px;
  display: inline-block;
  position: relative;
}
.themeText h3::after {
  height: 4px;
  width: 105px;
  position: absolute;
  bottom: 8px;
  right: 115px;
  content: "";
  background: #fd3a5c;
}
.theme {
  position: relative;
  padding-bottom: 80px;
}
.themeFlex {
  display: flex;
  position: relative;
}
.themeFlex Img {
  transition: 0.4s;
}
.themeFlex Img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
}
.themeFlex .themeFlexImg1 {
  width: 50%;
}
.themeFlex .themeFlexImg2 {
  width: 50%;
  position: absolute;
  top: 170px;
  right: 0;
}
.themeIcon {
  position: absolute;
  bottom: 10px;
  right: -10px;
}
.themeIcon i {
  padding: 14px 21px 14px 15px;
  color: #ffffff;
  border: 1px solid #ffffff;
  background: #000000;
  border-radius: 50%;
  display: block;
  margin-bottom: 15px;
  transition: 0.4s;
}
.themeIcon i:hover {
  color: #ffffff;
  background: #fd3a5c;
}
/* theme part end */

/* video part start */
#videoPart {
  background: #121212;
  padding-top: 80px;
  padding-bottom: 90px;
}
.videoHeaderText {
  text-align: left;
}
.videoHeaderText h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 38px;
  color: #ffffff;
  line-height: 56px;
  padding-bottom: 68px;
  display: inline-block;
  position: relative;
  width: 446px;
}
.videoHeaderText h3::after {
  height: 4px;
  width: 120px;
  position: absolute;
  bottom: 77px;
  right: 180px;
  content: "";
  background: #ff4655;
}
.videoImgFlex {
  display: flex;
  justify-content: space-between;
}
.videoImgFlex .img1 {
  width: 32.5%;
  position: relative;
  filter: grayscale(100%);
  transition: 0.4s ease;
}
.img1:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
  box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
  -moz-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
}
.img1:hover .imgTextparnt {
  visibility: visible;
  opacity: 1;
}
.img1:hover .vBtn {
  visibility: visible;
  opacity: 1;
}
.w100 {
  width: 100%;
  height: 100%;
}
.vBtn {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
}
.imgTextparnt {
  position: absolute;
  left: 25px;
  bottom: 50px;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}
.imgTextparnt h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #ffffff;
  line-height: 26px;
}
.imgTextparnt h5 {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #ffffff;
  line-height: 24px;
  display: inline-block;
}
.imgTextparnt h6 {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 24px;
  position: absolute;
  display: inline-block;
  right: -210px;
  bottom: 0px;
}
.img1 h6::after {
  height: 5px;
  width: 5px;
  position: absolute;
  bottom: 8px;
  right: 32px;
  content: "";
  background: #ff4655;
  border-radius: 50%;
}
.videoFooterText h3 {
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 25px;
  color: #ffffff;
  line-height: 30px;
  padding-top: 61px;
  padding-bottom: 50px;
}
.videoFooterFlex {
  display: flex;
  align-items: center;
  padding-bottom: 59px;
}
.videoFtrLeft {
  width: 40%;
  display: flex;
  align-items: center;
  background: #212121;
  clip-path: polygon(0 0, 100% 0%, 93% 100%, 0% 100%);
  padding: 10px;
  position: relative;
  transition: 0.4s;
}
.videoFtrLeft:hover {
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
  -moz-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
}
.videoFtrLeft h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #ffffff;
  line-height: 38px;
  letter-spacing: 3%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 60px;
}
.videoFtrLeft:hover h2 {
  color: #fd3a5c;
  transition: 0.4s;
}
.videoFtrLeft:hover h2:hover {
  color: #f26a26;
}
.videoFtrMiddle {
  width: 20%;
}
.videoFtrMiddle h2 {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 40px;
  color: #ffffff;
  line-height: 59px;
  letter-spacing: 15%;
  text-align: center;
}
.videoFtrRight {
  width: 40%;
  display: flex;
  align-items: center;
  background: #212121;
  position: relative;
  padding: 40px;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 7% 100%);
  transition: 0.4s;
}
.videoFtrRight:hover {
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
  -moz-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
}
.videoFtrRight h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #ffffff;
  line-height: 38px;
  letter-spacing: 3%;
}
.videoFtrRight:hover h2 {
  color: #fd3a5c;
  transition: 0.4s;
}
.videoFtrRight:hover h2:hover {
  color: #68fe9a;
}
.videoFtrRight img {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.pb90 {
  padding-bottom: 90px;
}
/* video part end */

/* game poster start */
#gamePoster {
  background: #191919;
  padding-bottom: 131px;
}
.posterHeadText {
  padding-top: 90px;
  padding-bottom: 60px;
  text-align: right;
}
.posterHeadText h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 38px;
  color: #ffffff;
  line-height: 46px;
  width: 449px;
  letter-spacing: 7%;
  position: relative;
  display: inline-block;
}
.posterHeadText h3::after {
  height: 4px;
  width: 105px;
  position: absolute;
  bottom: 10px;
  right: 80px;
  content: "";
  background: #ff4655;
  position: absolute;
}
.gamePosterImgFlex {
  display: flex;
  justify-content: space-between;
  padding-bottom: 60px;
}
.gamePosterImg {
  width: 24%;
  transition: 1s;
  position: relative;
  height: 600px;
  overflow: hidden;
}
.plusIcon {
  position: absolute;
  top: 14px;
  right: 15px;
  transition: 0.4s;
}
.gamePosterImg:hover .plusIcon {
  transform: scale(0.75);
  -webkit-transform: scale(0.75);
  -moz-transform: scale(0.75);
}
.gamePosterImg:hover {
  box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
  -moz-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
}
.gamePosterImgTxt {
  width: 100%;
  height: 200px;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: -100%;
  transition: 1s;
}
.gamePosterImg:hover .gamePosterImgTxt {
  bottom: -30px;
}
.gamePosterImg h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #ffffff;
  line-height: 26px;
  letter-spacing: 7%;
  padding-top: 10px;
}
.gamePosterImg h4 {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #818181;
  line-height: 24px;
  letter-spacing: 10%;
  padding: 15px 0px;
}
.salePrice {
  padding-bottom: 60px;
  display: flex;
  align-items: center;
}
.salePrice h5 {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  line-height: 21px;
  letter-spacing: 2%;
  padding: 4px 3px 5px 4px;
  background: #ff4655;
  margin-right: 10px;
}
.salePrice h4 {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #818181;
  line-height: 24px;
  letter-spacing: 6%;
  padding-right: 10px;
  text-decoration: line-through;
}
h6 {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  line-height: 21px;
  letter-spacing: 2%;
}
.gpFooterHeadTxt {
  text-align-last: left;
}
.gpFooterHeadTxt h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #ffffff;
  line-height: 24px;
  padding-bottom: 30px;
}
.gpfooterFlex {
  display: flex;
  background: #212121;
  padding-top: 45px;
  padding-bottom: 42px;
  transition: 0.4s;
}
.gpfooterFlex:hover {
  box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
  -moz-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
}
.footerTxt {
  padding-left: 44px;
}
.footerTxt h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ff4655;
  line-height: 24px;
  letter-spacing: 10%;
}
.footerTxt h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 38px;
  color: #ffffff;
  line-height: 46px;
  width: 580px;
  padding: 15px 0px;
}
.footerTxt p {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #666666;
  line-height: 24px;
  width: 603px;
}
.footerTxt a {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  line-height: 24px;
  background: #121212;
  padding: 13px 31px;
  margin-top: 25px;
  display: inline-block;
  transition: 0.4s;
  outline: none;
}
.footerTxt a:hover {
  color: #ffffff;
  background: #fd3a5c;
}
.footerImg {
  margin-left: 134px;
  transition: 0.4s;
}
.footerImg:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
}
/* game poster end */

/* gaming accesories part start */
#gamingAccesoriesPart {
  background: #121212;
}
.gAHeaderTxt h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 38px;
  color: #ffffff;
  line-height: 56px;
  letter-spacing: 7%;
  width: 446px;
  padding-top: 90px;
  padding-bottom: 109px;
  position: relative;
  display: inline-block;
  transition: 0.4s !important;
}
.gAHeaderTxt h3::after {
  height: 4px;
  width: 120px;
  position: absolute;
  bottom: 120px;
  right: 125px;
  content: "";
  background: #ff4655;
}
.gAImgFlex {
  display: flex;
  justify-content: space-between;
  padding-bottom: 90px;
}
.gAblackdiv {
  width: 24%;
  background: #212121;
  text-align: center;
  position: relative;
  height: 465px;
  transition: 0.4s;
}
.gAblackdiv img {
  transition: 0.4s;
}
.gAblackdiv:hover img {
  transform: scale(0.7);
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
}
.gAblackdiv:hover h3 {
  color: #00ffa6;
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
}
.gAblackdiv:hover h5 {
  color: #ff4655;
}
.gAblackdiv:hover h6 {
  color: orange;
  transition: 0.4s;
}
.gAblackdiv:hover h6:hover {
  color: deepskyblue;
}
.gAblackdiv:hover {
  box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
  -moz-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
}
.gAblackdiv h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 40px;
  color: #ffffff;
  line-height: 59px;
  letter-spacing: 1%;
  padding-top: 22px;
  padding-bottom: 7px;
}
.gAblackdiv h5 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 25px;
  color: #ffffff;
  line-height: 37px;
  padding-top: 45px;
  padding-bottom: 7px;
}
.gAblackdiv h6 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #ff4655;
  line-height: 24px;
  padding-bottom: 24px;
}

/* gaming accesories part end */

/* professional team start */
#professionalTeam {
  background-color: #191919;
  padding-bottom: 70px;
}
.pTText {
  text-align: right;
}
.pTText h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 38px;
  color: #ffffff;
  line-height: 46px;
  width: 490px;
  letter-spacing: 7%;
  padding-top: 100px;
  padding-bottom: 50px;
  position: relative;
  display: inline-block;
}
.pTText h3::after {
  height: 4px;
  width: 105px;
  position: absolute;
  bottom: 60px;
  right: 80px;
  content: "";
  background: #ff4655;
}
.pTImgFlex {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
}
.pTImg {
  position: relative;
  width: 49%;
  transition: 0.4s;
  filter: grayscale(100%);
  transition: 0.4s ease;
}
.pTImg img {
  display: block;
  width: 100%;
}
.pTImg:hover .pTvText h3 {
  visibility: hidden;
  opacity: 1;
}
.pTvText {
  position: absolute;
  left: 0px;
  bottom: 35px;
}
.pTvText h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: #ffffff;
  line-height: 36px;
  padding: 25px 557px 29px 30px;
  background: #252424;
  background: linear-gradient(
    90deg,
    rgba(37, 36, 36, 1) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  margin-bottom: -42px;
  width: 115px;
  display: block;
}
.pTImgText {
  position: absolute;
  left: 0px;
  bottom: 30px;
  margin-left: 20px;
  visibility: hidden;
  opacity: 0;
}
.pTImg:hover .pTImgText {
  visibility: visible;
  opacity: 1;
}
.pTImg:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
  box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
  -moz-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
}
.pTImg:hover .btnIconFlex a {
  color: #ffffff;
  background-color: #ff4655;
}
.pTImg:hover .btnIconFlex a:hover {
  color: #ff0101;
  background-color: #ffffff;
}
.pTImgText h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: #ffffff;
  line-height: 36px;
  padding-top: 40px;
}
.pTImgText p {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 24px;
  padding-top: 6px;
  padding-bottom: 20px;
  width: 300px;
}
.btnIconFlex {
  display: flex;
}
.btnIconFlex a {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 24px;
  padding: 10px;
  background-color: #ff4655;
  margin-right: 250px;
  transition: 0.4s;
}
.btnIconFlex i {
  display: inline-block;
  padding: 10px;
  background: #ff4655;
  margin-right: 20px;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  transition: 0.4s;
}
.btnIconFlex i:hover {
  color: #ff4655 !important;
  background: #ffffff;
}
/* professional team end */

/* FAQ part start */
#faqPart {
  padding-top: 55px;
  padding-bottom: 200px;
  background: #121212;
}
.faqHeadTxt h2 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 38px;
  color: #ffffff;
  line-height: 46px;
  letter-spacing: 10%;
  width: 493px;
  padding-bottom: 92px;
  display: inline-block;
  position: relative;
}
.faqHeadTxt h2::after {
  height: 4px;
  width: 129px;
  position: absolute;
  bottom: 97px;
  right: 5px;
  content: "";
  background: #ff4655;
}
.faqTxtmain {
  position: relative;
}
.faqTxtFlex {
  display: flex;
  justify-content: space-between;
  transition: 0.4s;
}
.faqBLeft {
  height: 1px;
  width: 100%;
  background: #666666;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faqBRight {
  position: absolute;
  height: 100%;
  width: 1px;
  background: #666666;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pl40 {
  padding-left: 122px;
}
.pt82 {
  padding-top: 82px;
}
.faqFlex1 {
  display: flex;
  width: 50%;
}
.faqFlex1Left {
  padding-right: 42px;
}
.faqFlex1Left h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 38px;
  color: #ffffff;
  line-height: 46px;
  letter-spacing: 10%;
  padding: 12px 26px;
  background-color: #ff4655;
  display: inline-block;
}
.faqFlex1Right h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #ffffff;
  line-height: 26px;
}
.faqFlex1Right p {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 24px;
  padding-top: 11px;
  padding-bottom: 74px;
  width: 427px;
}
.faqFlex1:hover .faqFlex1Left h3 {
  color: #ff4655;
  background: #ffffff;
  box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
  -moz-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
}
.faqFlex1:hover .faqFlex1Right h4 {
  color: #ff4655;
}
.faqFlex1:hover .faqFlex1Right p {
  color: #ffffff;
}
/* FAQ part end */

/* footer part start */
#footerPart {
  background: #191919;
  padding-top: 112px;
  padding-bottom: 70px;
}
.footerTopFlex {
  display: flex;
  background: #ff4655;
  align-items: center;
  margin-top: -220px;
  width: 100%;
}
.footerTopFlex:hover {
  box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
  -moz-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.6);
}
.footerTopLeft {
  width: 70%;
}
.footerTopLeft h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: #ffffff;
  line-height: 48px;
  padding: 35px 140px 34px 30px;
  width: 640px;
}
.footerTopRight {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-right: 500px;
  margin-right: 30px;
}
.footerTopRight form i {
  position: absolute;
  top: 48%;
  left: 10px;
  transform: translateY(-50%);
  font-size: 20px;
  padding-left: 20px;
}
.footerTopRight input {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  color: #666666;
  line-height: 19px;
  padding: 10px 300px 11px 20px;
  border-radius: 30px;
}
.footerTopRight input::placeholder {
  font-size: 20px;
  padding-left: 45px;
}
.footerTopRight button {
  position: absolute;
  right: 37px;
  top: 0px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 19px;
  padding: 10px 30px 10px 30px;
  background-color: #191919;
  border-radius: 30px;
  transition: 0.4s;
}
.footerTopRight button:hover {
  color: #ff0101;
}
.fFooterFlex {
  display: flex;
  justify-content: space-between;
  background: #191919;
  margin-top: 30px;
}
.footer1 {
  width: 36%;
}
.footer2 {
  width: 15%;
}
.footer3 {
  width: 15%;
}
.footer4 {
  width: 28%;
}
.footer1 p {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 24px;
  padding-top: 30px;
  padding-bottom: 59px;
  width: 390px;
}
.footer1 .fSocialIcon i {
  width: 50px;
  height: 50px;
  background: #212529;
  border-radius: 50%;
  padding-top: 15px;
  margin-right: 20px;
  transition: 0.4s;
}
.footer1 .fSocialIcon i:hover {
  background: #ff4655;
}
.footer2 h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 25px;
  color: #ffffff;
  line-height: 30px;
  letter-spacing: 7%;
}
.footer2 h4 {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 24px;
  padding: 30px 0px;
  transform: 0.4s;
}
.footer2 h4:hover {
  color: #ff4655;
}
.footer3 h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 25px;
  color: #ffffff;
  line-height: 30px;
  letter-spacing: 7%;
}
.footer3 h4 {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 24px;
  padding: 30px 0px;
  transition: 0.4s;
}
.footer3 h4:hover {
  color: #ff4655;
}
.footer4 .footer4Txt h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 25px;
  color: #ffffff;
  line-height: 30px;
  letter-spacing: 7%;
  padding-bottom: 30px;
}
.footer4 .footerImgFlex img {
  width: 32.5%;
  margin-top: 10px;
  padding-right: 5px;
  transition: 0.4s;
}
.footer4 .footerImgFlex img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
}
.chh {
  padding-right: 0 !important;
}
/* footer part end */

/* copy right part start */
#copyRightPart {
  padding-top: 50px;
  padding-bottom: 25px;
  background: #191919;
}
.copyRightHr {
  position: relative;
}
.hr {
  width: 1320px;
  height: 1px;
  background-color: #666666;
  position: absolute;
  left: 0px;
  top: -25px;
}
.copyRightTxt {
  text-align: center;
}
.copyRightTxt h5 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  line-height: 24px;
  transition: 0.4s;
}
.copyRightTxt h5 a span {
  color: #ff4655;
}
/* copy right part end */
