* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  background-color: #fff;
  color: #000;
  text-rendering: optimizeLegibility;
  font-size: 18px;
  font-family: "work sans", "Arial", sans-serif;
}

.row {
  max-width: 1140px;
  margin: 0 auto;
}

/*** Header Section****/
.header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgb(0, 0, 0, 0.7)),
    url(img/back.jpg);
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.header_nav {
  box-shadow: 0 4px 4px rgba(255, 255, 255, 0.2);
  padding: 0 5vw 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main_nav {
  list-style: none;
}
.main_nav li {
  display: inline;
  margin-right: 30px;
  text-transform: uppercase;
}

.main_nav li a:link,
.main_nav li a:visited {
  text-decoration: none;
  color: #fff;
  font-size: 22px;
  padding: 5px 0;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
  border-bottom: 2px solid #fff;
}
.main_nav li a:hover,
.main_nav li a:active {
  border-bottom: 2px solid #ff1493;
  color: #ff1493;
}

.mobile_menu_handler {
  display: none;
}

.mobile_menu {
  display: none;
}

.logo {
  padding: 10px 10px;
  height: 100px;
  width: auto;
}

.header_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

h1 {
  font-size: 60px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 15px;
}

h2 {
  font-size: 35px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 14px;
}
h3 {
  font-size: 25px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 12px;
}
.header_text_box {
  margin-bottom: 100px;
}

.btn:link,
.btn:visited {
  text-decoration: none;
  padding: 10px 30px;
  border-radius: 200px;
}

.btn_full:link,
.btn:visited {
  background-color: #f052e3;
  color: #fff;
}
.btn:hover,
.btn:active {
  background-color: #be0692;
}
.btn_ghost:link,
.btn_ghost:visited {
  border: 2px solid #ed07b7;
  color: #ed07b7;
}

.btn_ghost:hover,
.btn_ghost:active {
  background-color: #ed07b7;
  color: #fff;
}
/************ HEADER SECTION ENDS ************/

/**************** COMMON STYLES ***************/
.section_heading {
  text-align: center;
  font-size: 250%;
  color: #000;
  margin-bottom: 20px;
}

.section_sub_heading {
  text-align: center;
  font-size: 150%;
  color: #555;
  font-weight: 300;
  margin-bottom: 30px;
}
.section_sub_heading::after {
  display: block;
  height: 2px;
  width: 100px;
  background-color: #ed07b7;
  content: " ";
  margin: 30px auto 0 auto;
}
/**************** COMMON STYLES END ***************/

/**************** PRODUCTS SECTION STYLES ***************/
.work_section {
  text-align: center;
  background-color: #e1dbdb;
  padding: 150px 0;
}

.work_portfolio {
  list-style: none;
  width: 90%;
  margin: 10px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-flow: row wrap;
}

.work_portfolio li {
  max-width: 30%;
  margin: 15px 10px;
  transition: all 0.2s ease-in-out;
}
.work_portfolio li:hover {
  outline: 3px solid #ed07b7;
  outline-offset: 10px;
}

.portfolio_image {
  background-color: #efefef;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.portfolio_image__img {
  width: 350px;
  height: 350px;
  overflow: hidden;
}

.portfolio_image__img img {
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in-out;
}

.portfolio_image img:hover {
  transform: scale(1.15);
  cursor: pointer;
}

.work_para {
  color: #2a2a2a;
  padding: 15px 0;
  font-size: 20px;
}
/**************** PRODUCTS SECTION STYLES END ***************/

/************* Clients sections*****************/
.partners_section {
  text-align: center;
  padding: 150px 0;
}

.client_container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-flow: row wrap;
}
.client_container * {
  padding: 10px;
  box-sizing: border-box;
}

.client_logo {
  width: 275px;
  height: 250px;
  margin: 5px 20px;
  border: 1px dashed #efefef;
}

.partner_logo {
  width: 100%;
  height: 100%;
}
/************ Client Section Ends ***********/

/**********Contact Section**********/
.contact_section {
  background-color: rgb(225, 224, 224);
  padding: 120px 120px;
  clear: both;
  height: 110vh;
}
.contact_sub_heading {
  text-align: left;
  font-size: 36px;
  color: #000;
  font-weight: 500;
  background-color: #efefef;
}

.contact li {
  font-size: 25px;
  margin-left: 40px;
  margin-bottom: 5px;
}

.contact_section_content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.contact_section_content > div {
  flex: 1;
}

.contact_card_title {
  border-radius: 15px;
  padding: 20px;
  width: 90%;
  margin: 10px auto;
  height: 150px;
  box-shadow: 0 2px 3px rgba(30, 144, 255, 0.3);
  background-color: #efefef;
}

.contact_card_title > p {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 10px;
}

.content_card_content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: row nowrap;
}

.contact_card_content_icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.content_card_content span {
  font-size: 18px;
  line-height: 20px;
}

.contact_map {
  border: 1px solid dodgerblue;
  box-sizing: border-box;
  box-shadow: 0 2px 3px rgba(dodgerblue, 0.3);
  overflow: hidden;
  max-width: 43vw;
}

iframe {
  height: 363px;
  width: 825px;
}
/*********** CONTACT SECTION ENDS ***************/

/*********** FOOTER SECTION STARTS *************/
footer {
  background-color: rgb(54, 53, 53);
  padding: 50px;
  font-size: 100%;
  opacity: 80%;
}
footer p {
  color: #e1dbdb;
  text-align: center;
  margin-top: 15px;
  line-height: 1.5;
}

.footer_nav li {
  list-style: none;
  display: inline;
  margin-right: 10px;
}

.footer_nav li a:link,
.footer_nav li a:visited {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.footer_nav li a:hover,
.footer_nav li a:active {
  color: #e1dbdb;
}
/************ FOOTER SECTION ENDS ****************/

/*********** RESPOSIVE MEDIA QUERY ************************/
@media (max-width: 600px) {
  html {
    font-size: 0.8rem;
  }

  .row {
    max-width: 90%;
  }

  /*** Header Section****/
  .header {
    background-size: 100% 100%;
  }
  .header_box {
    width: 93%;
  }
  .main_nav {
    display: none;
  }
  .mobile_menu_handler {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    padding: .5rem;
    border: .1rem solid #2a2a2a;
    border-radius: 1rem;
  }
  .mobile_menu_handler img {
    width: 100%;
    height: 100%;
  }
  .mobile_menu {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 70%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
    color: #efefef;
    font-size: 1.8rem;
    transform: translateX(100%);
    transition: all .2s ease-in-out;
  }
  .mobile_menu_close {
    text-align: right;
    margin: 1rem 2rem 0 0;
  }
  .mobile_menu_show {
    transform: translateX(0);
  }
  .mobile_menu a {
    display: block;
    color: #efefef;
    margin: 20px auto;
    text-align: center;
    text-decoration: none;
  }
  .logo {
    height: 70px;
  }
  h1 {
    font-size: 3.2rem;
    font-weight: 400;
  }
  h2 {
    font-size: 2.4rem;
  }
  h3 {
    font-size: 1.6rem;
  }
  .header_text_box {
    margin-bottom: 5rem;
  }
  /**************** COMMON STYLES ***************/
  .section_heading {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  .section_sub_heading {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .section_sub_heading::after {
    margin: 20px auto 0 auto;
  }
  /**************** COMMON STYLES END ***************/

  /**************** PRODUCTS SECTION STYLES ***************/
  .work_section {
    padding: 7.5rem 0;
  }
  .work_portfolio {
    width: 90%;
  }
  .work_portfolio li {
    max-width: 90%;
    margin: 2rem;
  }
  .portfolio_image__img {
    width: 25rem;
    height: 25rem;
  }
  /**************** PRODUCTS SECTION STYLES END ***************/

  /************* Clients sections*****************/
  .partners_section {
    padding: 7.5rem 0;
  }
  .client_logo {
    width: 20rem;
    height: 17.5rem;
    margin: 1rem 0;
  }
  /************ Client Section Ends ***********/

  /**********Contact Section**********/
  .contact_section {
    margin: 0 auto;
    padding: 7.5rem 0;
    height: 80rem;
  }
  .contact_section_content {
    flex-direction: column;
    align-items: center;
  }
  .contact_card_title {
    padding: 1.5rem;
    height: 12rem;
  }
  .contact_card_title > p {
    font-size: 1.8rem;
    line-height: 2rem;
  }
  .content_card_content span {
    font-size: 18px;
    line-height: 20px;
    max-width: 80%;
    word-break: break-all;
  }
  .contact_map {
    max-width: 27.5rem;
    max-height: 19.5rem;
  }
  iframe {
    height: 19.5rem;
    width: 27.5rem;
  }
  /*********** CONTACT SECTION ENDS ***************/

  /*********** FOOTER SECTION STARTS *************/
  footer {
    padding: 4rem 0;
    opacity: 80%;
  }
  .footer_nav {
    text-align: center;
  }
  .footer_nav li {
    list-style: none;
    display: inline;
    margin-right: 10px;
  }

  .footer_nav li a:link,
  .footer_nav li a:visited {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer_nav li a:hover,
  .footer_nav li a:active {
    color: #e1dbdb;
  }
  /************ FOOTER SECTION ENDS ****************/
}
/*********** RESPOSIVE MEDIA QUERY ENDS *******************/
