@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html,
body {
  scroll-behavior: smooth;
  font-family: "Rubik", sans-serif;
}
button {
  font-family: "Rubik", sans-serif;
}
:root {
  --primary-color: #333333;
  --secondary-color: #ee5f38;
  --default-text-color: #636363;
  --color-white: #ffffff;
  --color-gray-600: #eff3f7;
}
.container_xl {
  width: 100%;
  max-width: 1200px;
  padding-inline: 15px;
  margin-inline: auto;
}
.header__transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
.sticky_header {
  position: fixed;
  z-index: 999;
}
.sticky_header.show {
  background-color: #fff;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.15);
}
.main_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.logo_lg {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 30px;
  font-weight: 700;
}
.sm_logo {
  font-size: 22px !important;
  text-transform: uppercase;
}
.sm_logo span {
  font-size: 22px !important;
}
.logo span {
  color: var(--secondary-color);

  text-decoration: none;
  color: var(--secondary-color);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}
.main_header_right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav_list {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
}
.nav_link a {
  text-decoration: none;
  font-size: 18px;
  line-height: 28px;
  color: var(--primary-color);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.nav_link a:hover {
  color: var(--secondary-color);
}
.download_cv_btn {
  width: 189.55px;
  height: 52px;
  background-color: var(--secondary-color);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  cursor: pointer;
  gap: 10px;
  transition: all 0.3s ease 0s;
}
.download_cv_btn_sm {
  width: 165.86px !important;
  height: 38px !important;
  gap: 7px !important;
  margin-top: 30px;
  margin-inline: auto;
}
.download_cv_btn_sm img {
  width: 12px;
}
.download_cv_btn_sm button {
  font-size: 15px !important;
  line-height: 38px !important;
}
.download_cv_btn:hover {
  background-color: var(--default-text-color);
}
.download_cv_btn button {
  background-color: transparent;
  border: none;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-white);
  font-weight: 500;
  letter-spacing: 0.2px;
  cursor: pointer;
  font-family: "Rubik", sans-serif;
}
.download_cv_btn img {
  width: 100%;
  max-width: 24px;
}
.hamburger_menu {
  display: none;
}
.hamburger_menu_icon svg {
  width: 32px;
  cursor: pointer;
}
.hero_section {
  width: 100%;
  height: 838.7px;
  overflow: hidden;
}
.hero_section_bg {
  background-image: url(./images/hero-section-bg.png);
  width: 100%;
  height: 838.7px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hero_section_inner {
  display: flex;
  align-items: center;
  padding: 140px 0 70px;
}
.hero__thumbnail {
  position: relative;
  width: 100%;
  max-width: 450px;
}
.hero__thumbnail img {
  width: 100%;
}
.animation_common {
  animation-duration: 3s;
  animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  animation-name: animateUpDown;
  animation-iteration-count: infinite;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.animation_hero_left {
  width: 101px;
  height: 101px;
  transition: all 0.3s ease 0s;
  border-radius: 4px;
  background-color: var(--color-white);
  position: absolute;
  top: 68px;
  left: -40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-hero-b{
  top: unset !important;
  bottom: 20px !important;
  left: -40px;
}
.animation_hero_left img {
  width: 80%;
}
@keyframes animateUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}
.animation_hero_right {
  width: 101px;
  height: 101px;
  transition: all 0.3s ease 0s;
  border-radius: 4px;
  background-color: var(--color-white);
  top: 179px;
  right: -12px;
  position: absolute;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.animation_hero_right img{
  max-width: 86px;
}
.complete_project_container {
  position: absolute;
  bottom: 7px;
  right: 0;
  display: flex;
  align-items: center;
  padding: 14px 30px 12px 15px;
  border-radius: 50px;
  background-color: var(--color-white);
  gap: 12px;
}
.complete_project_content span {
  font-size: 25px;
  line-height: 26px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2px;
}
.complete_content {
  font-size: 17px;
  line-height: 25px;
  font-weight: 400;
  color: var(--primary-color);
}
.hero_content {
  padding-left: 100px;
  width: calc(100% - 450px);
}
.hero_content_subtitle {
  font-size: 24px;
  line-height: 28px;
  color: var(--secondary-color);
  font-style: italic;
}
.hero_title {
  font-size: 58px;
  line-height: 66px;
  color: #000248;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 15px;
}
.hero_subtitle2 {
  font-size: 24px;
  line-height: 32px;
  color: var(--primary-color);
  font-weight: 400;
  margin-bottom: 20px;
}
.hero_about {
  font-size: 20px;
  line-height: 30px;
  color: var(--default-text-color);
  font-weight: 400;
  margin-bottom: 30px;
}
.hero_content_footer {
  display: flex;
  align-items: center;
  gap: 20px;
}
.about_me_btn {
  padding: 10px 42px;
  border-radius: 50px;
  border: 1px solid var(--secondary-color);
  background-color: transparent;
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  color: var(--secondary-color);
  cursor: pointer;
  display: inline-block;
  transition: color 0.15s ease-in-out, 0.15s ease-in-out, 0.15s ease-in-out,
    0.15s ease-in-out;
}
.about_me_btn:hover {
  background-color: var(--secondary-color);
  color: var(--color-white);
}
.social__share_wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.follow_me_title {
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  color: var(--primary-color);
}
.social_icon_wrapper {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 10px;
}
.social_icons {
  width: 30px;
  height: 30px;
  border: 1px solid var(--secondary-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.social_icons a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease 0s;
}
.social_icons a:hover {
  background: var(--secondary-color);
}
.social_icons a:hover svg path {
  fill: var(--color-white);
}
/* <!-- start-services-Section-css --> */
.service_section {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}
.section_heading_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.common_section_heading_wrapper {
  width: 100%;
  max-width: 580px;
}
.common_section_heading {
  font-size: 24px;
  line-height: 28px;
  color: var(--secondary-color);
  font-weight: 500;
  text-transform: uppercase;
}
.custom-text-transform {
  text-transform: unset !important;
}
.common_section_heading_title {
  font-size: 42px;
  line-height: 52px;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 10px;
}
.section_heading_desc {
  width: 100%;
  max-width: 450px !important;
}
.section_heading_desc {
  font-size: 17px;
  line-height: 28px;
  color: var(--default-text-color);
  font-weight: 400;
}
.contact_heading_desc {
  max-width: 100% !important;
}
.service_section_inner {
  display: flex;
  gap: 0px 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.service_card {
  width: 370px;
  padding: 50px 40px 40px;
  box-shadow: 0 0 50px 0 rgba(196, 206, 213, 0.2);
  background-color: var(--color-white);
  transition: 0.4s;
  border-radius: 10px;
  margin-bottom: 30px;
}

.service_card:hover {
  transform: translateY(-15px);
  box-shadow: 0 0 150px 0 rgba(196, 206, 213, 0.7);
}
.service_card_icon {
  width: 92px;
  height: 92px;
  border-radius: 50px;
  background-color: #48cda0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.service_card_icon img {
  width: 48px;
}
.service_card_icon::before {
  position: absolute;
  content: "";
  width: 65px;
  height: 75px;
  opacity: 0.26;
  -webkit-transform: translatex(-50%);
  transform: translateY(-50%);
  background: #79dab9;
  top: -12px;
}
.service_card_icon2 {
  background-color: #ed5f38 !important;
}
.service_card_icon2::before {
  background: #ed5f38;
}
.service_card_icon3 {
  background-color: #007eff !important;
}
.service_card_icon3::before {
  background: #007eff;
}
.service_card_icon4 {
  background-color: #e6bc13 !important;
}
.service_card_icon4::before {
  background: #e6bc13;
}
.service_card_icon5 {
  background-color: #ed38d1 !important;
}
.service_card_icon5::before {
  background: #ed38d1;
}
.service_card_icon6 {
  background-color: #a348cd !important;
}
.service_card_icon6::before {
  background: #a348cd;
}
.service_card_icon2 {
  background-color: #ed5f38 !important;
}
.service_card_icon2::before {
  background: #ed5f38;
}
.service_card_title {
  font-size: 25px;
  line-height: 28px;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
}
.services_card_desc {
  font-size: 17px;
  line-height: 28px;
  color: var(--default-text-color);
  font-weight: 400;
  margin-bottom: 20px;
}
.services_card_link {
  font-size: 17px;
  line-height: 20px;
  color: #48cda0;
  font-weight: 400;
  text-decoration: none;
  padding-left: 15px;
  position: relative;
  transition: all 0.3s ease 0s;
}
.services_card_link::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background-color: #48cda0;
  left: 0;
  top: 7px;
}
.services_card_link:hover {
  color: var(--primary-color);
}
.read_more_color_2 {
  color: #ed5f38;
}
.read_more_color_2::before {
  background-color: #ed5f38;
}
.read_more_color_3 {
  color: #007eff;
}
.read_more_color_3::before {
  background-color: #007eff;
}
.read_more_color_4 {
  color: #e6bc13;
}
.read_more_color_4::before {
  background-color: #e6bc13;
}
.read_more_color_5 {
  color: #ed38d1;
}
.read_more_color_5::before {
  background-color: #ed38d1;
}
.read_more_color_6 {
  color: #a348cd;
}
.read_more_color_6::before {
  background-color: #a348cd;
}
/* <!-- About-Section-css-start --> */
.about_section_bg {
  background-image: url(./images/about-bg-image.png);
}
.about_Section {
  padding: 100px 0px;
}
.about_content_wrapper {
  display: flex;
  gap: 100px;
}
.about_contents {
  width: 50%;
}
.about_thumbnail {
  width: 50%;
}
.section_heading {
  margin-bottom: 30px;
}
.section_sub_title {
  font-size: 24px;
  line-height: 28px;
  color: var(--secondary-color);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section_heading_title {
  font-size: 42px;
  line-height: 52px;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 10px;
}
.about_info_title {
  font-size: 24px;
  line-height: 28px;
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 20px;
}
.personal_info_wrapper {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
}
.contact_info_wrapper{
  width: 100%;
  max-width: 275px;
}
.about_info_items {
  font-size: 17px;
  line-height: 25px;
  color: var(--default-text-color);
  font-weight: 400;
  padding: 10px 0px 10px 24px;
  position: relative;
  width: 100%;
  word-break: break-all;
  padding-right: 9px;
}
.about_info_items a {
  font-size: 17px;
  line-height: 25px;
  color: var(--default-text-color);
  font-weight: 400;
  padding: 10px 0px 10px 24px;
  position: relative;
  width: 50%;
  word-break: break-all;
  padding-right: 10px;
  text-decoration: none;
  padding: 0px;
  transition: .3s;
}
.about_info_items a:hover{
  color: var(--secondary-color);
}
.about_info_items::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid var(--secondary-color);
  top: 22px;
  left: 0;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
  border-radius: 50%;
}
.about_info_items::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background: var(--secondary-color);
  top: 22px;
  left: 5px;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
  border-radius: 50%;
}
.width_full {
  width: 100% !important;
}
.btn_hire_me {
  padding: 0px 40px;
  letter-spacing: 0.2px;
  font-size: 22px;
  line-height: 48px;
  font-weight: 500;
  margin-top: 35px;
  border-radius: 50px;
  background-color: var(--secondary-color);
  color: var(--color-white);
  border: 0px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.btn_hire_me:hover {
  background-color: var(--primary-color);
  color: var(--color-white);
}
.about_thumbnail {
  width: 50%;
}
.thumbnail_container {
  position: relative;
}
.thumbnail_container img {
  width: 100%;
  position: relative;
  z-index: 10;
}
.thumbnail_container::before {
  width: 250px;
  height: 250px;
  position: absolute;
  content: "";
  border: 13px solid var(--secondary-color);
  border-radius: 50%;
  bottom: -61px;
  left: -96px;
  animation-duration: 3s;
  animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  animation-name: animateUpDown;
  animation-iteration-count: infinite;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 0;
}
.about_experience {
  margin-top: 30px;
  text-align: center;
}
.about_year_experience {
  font-size: 80px;
  line-height: 80px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 5px;
  text-align: center;
}
.title_stroke {
  text-shadow: 3px 3px 0 #ee5f38, -1px -1px 0 #ee5f38, 1px -1px 0 #ee5f38,
    -1px 1px 0 #ee5f38, 1px 1px 0 #ee5f38;
}
.experience_subtitle {
  font-size: 28px;
  line-height: 32px;
  font-weight: 600;
  color: var(--primary-color);
}
/* <!-- Brand-Section-start-css --> */
.brand_section {
  padding-block: 101px;
  border-bottom: 1px solid #d9d9d9;
}
.brand_section_inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
}
.brand_logo_wrapper {
  border-right: 1px solid #dddddd;
  text-align: center;
}
.brand_logo_wrapper:last-child{
  border-right: 0px;
}
.brand_logo_items {
  padding: 40px 0px;
  height: 130px;
  border-bottom: 1px solid #dddddd;
  display: flex;
  align-items: center;
}
.brand_logo_items img {
  margin-inline: auto;
  opacity: 0.7;
  transition: all 0.3s ease 0s;
}
.brand_logo_items img:hover {
  opacity: 1;
  transform: scale(1.1);
}
.brand_logo_items:last-child {
  border-bottom: 0px;
}
/* <!-- experence_and_education_section_CSS_start --> */
.experence_edu_section {
  padding-block: 100px;
}
.experence_edu_innner_section {
  display: flex;
  gap: 60px;
}
.resume_wrapper {
  position: relative;
  width: 50%;
}
.border_position {
  position: absolute;
  content: "";
  width: 1px;
  background: var(--secondary-color);
  left: 0;
  top: 10px;
  bottom: 5px;
}
.resume_wrapper_edu {
  height: fit-content;
}
.resume_items {
  padding-left: 30px;
  margin-bottom: 43px;
  position: relative;
}
.border_round {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid var(--secondary-color);
  left: -9px;
  top: 10px;
  border-radius: 50%;
  background: var(--color-white);
}
.resume_items_inner {
  display: flex;
  gap: 20px;
}
.resume_icons {
  min-width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.resume_contents_top {
  display: flex;
  margin-bottom: 10px;
  gap: 15px;
}
.customHeight{
  height: 55px;
}
.resume_content_title {
  font-size: 25px;
  line-height: 30px;
  color: var(--primary-color);
  font-weight: 600;
}
.resume_content_subtitle {
  font-size: 13px;
  line-height: 20px;
  background: var(--secondary-color);
  color: var(--color-white);
  padding: 5px 17px;
  text-transform: uppercase;
  border-radius: 15px;
  display: inline-block;
  white-space: nowrap;
  max-height: 30px;
}
.cyara-titile-height{
  height: 49px !important;
}
.resume__content_desc {
  margin-bottom: 20px;
  color: var(--default-text-color);
  font-size: 17px;
  line-height: 28px;
  font-weight: 400;
  position: relative;
  padding-left: 14px;
}
.resume__content_desc::before{
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background-color: var(--default-text-color);
  position: absolute;
  top: 11px;
  left: 0;
}
.resume_date {
  font-size: 17px;
  line-height: 20px;
  font-weight: 500;
  color: var(--secondary-color);
  position: relative;
  padding-left: 20px;
  display: inline-block;
}
.resume_date::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  background: var(--secondary-color);
  left: 0;
  top: 50%;
  transform: translatey(-50%);
}
.resume_items:last-child {
  margin: 0;
}

/* skill_section_css_start */
.skill_section_container {
  padding-bottom: 100px;
}
.skills_section {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
.skill_step {
  width: 50%;
}
.skill_items {
  margin-bottom: 30px;
}
.skill_text {
  position: relative;
  padding-bottom: 20px;
}
.skills_name {
  font-size: 17px;
  line-height: 25px;
  font-weight: 500;
  color: var(--primary-color) s;
}
.skill_field {
  position: relative;
}
.skill_field::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  bottom: 0;
  left: 0;
  background-color: #e5e7eb;
  border-radius: 2rem;
}
.skill_field::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 6px;
  bottom: 2px;
  left: 0;
  background-color: var(--secondary-color);
  border-radius: 20px;
}
/* certification-section */
.certification-section{
  padding-top: 40px;
  padding-bottom: 100px;
}
.certification_block{
  margin-bottom: 33px;
}
.certification_items{
  display: flex;
  gap: 60px;
}
.certification_logo{
  width: 150px;
  min-width: 150px;
  height: 150px;
  border-radius: 100%;
  overflow: hidden;
}
.certification_logo img{
  width: 100%;
  height: 100%;
}
.border_box{
  border: 1px solid #e0e0e0;
}
.certification_title{
  font-size: 25px;
  line-height: 30px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}
.certification_text{
  color: var(--default-text-color);
  font-size: 17px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 2px;
}
.certification_text span{
  font-weight: 500;
}

.certification-tags{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.certification-tags span{
  display: inline-flex;
  padding: 5px 17px;
  border-radius: 15px;
  background-color: var(--secondary-color);
  color: var(--color-white);
  font-size: 14px;
}
.certification_heading{
  margin-top: 0px !important;
  line-height: 46px;
}
.certification_sec_header{
  align-items: unset !important;
}
/* <!--portfolio_section-CSS_start --> */
.portfolio_section {
  background-color: var(--color-gray-600);
  padding-top: 100px;
  padding-bottom: 70px;
}
.portfolio_card_wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0px 30px;
}
.portfolio_cards {
  width: 33%;
  max-width: 369.95px;
  height: 310.95px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
  cursor: pointer;
  z-index: 11;
  transition: 0.3s ease;
}
.portfolio_cards img {
  width: 100%;
  height: 100%;
  z-index: 10;
  transition: 0.3s ease;
}
.portfolio_cards:hover img {
  transform: scale(1.1);
}
.portfolio_cards:hover .portfolio_contents {
  opacity: 1;
  bottom: 35px;
}
.portfolio_contents {
  position: absolute;
  padding-inline: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  z-index: 44;
  opacity: 0;
  transition: 0.2s;
}
.portfolio_zoom {
  margin-bottom: 60px;
  color: #fff;
  transition: 0.3s ease;
}
.portfolio_cards:hover .portfolio_zoom {
  margin-bottom: 30px;
}
.portfolio_title {
  margin-bottom: 15px;
  color: var(--color-white);
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
}
.portfolio_desc {
  font-size: 17px;
  line-height: 28px;
  font-weight: 400;
  color: var(--color-white);
  display: -webkit-box;
  max-width: 320px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.portfolio_cards::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 22;
}
.portfolio_cards:hover.portfolio_cards::before {
  opacity: 0.6;
}
/* <!-- Start_testimonial_section_CSS --> */
.testimonial__section {
  padding-block: 100px;
  position: relative;
  overflow: hidden;
}
.text_align_center {
  text-align: center;
  margin-inline: auto;
}
.testimonial_body {
  margin-inline: auto;
}
.position_custom {
  position: relative;
}
.testimonial_wrapper {
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.testimonial_contents {
  margin-bottom: 30px;
  min-width: 100%;
}
.rating_wrapper {
  display: flex;
  align-items: center;
  gap: 0px 7px;
  margin-bottom: 13px;
  list-style: none;
  justify-content: center;
}
.rating_list {
  line-height: 22px;
  text-decoration: none;
}
.rating_icon {
  display: inline-block;
  transition: all 0.3s ease 0s;
}
.testimonial_desc {
  font-size: 24px;
  line-height: 38px;
  color: var(--default-text-color);
  opacity: 0.8;
  font-style: italic;
}
.testimonial_author {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50px;
  margin-bottom: 25px;
  margin-inline: auto;
}
.testimonial_author img {
  width: 100%;
  height: 100%;
}
.testimonial_author_title {
  font-size: 22px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-color);
}
.testimonial_author_subtitle {
  font-size: 17px;
  line-height: 20px;
  font-weight: 400;
  color: var(--default-text-color);
}
.slick-dots {
  bottom: -45px;
  left: -5px;
}
.slick-dots li {
  margin: 0px 4px;
  width: auto;
}
.slick-dots li button:before {
  display: none;
}
.slick-dots li button {
  font-size: 0px !important;
  width: 28px !important;
  height: 10px !important;
  background-color: #bdbdbd;
  -webkit-font-smoothing: antialiased;
  border-radius: 50px !important;
  transition: all 0.3s ease;
}
.slick-dots li.slick-active button {
  background-color: #ee5f38;
  width: 35px !important;
}
.testimonial_left_icon {
  rotate: 180deg;
}
.testimonial_left_icon {
  position: absolute;
  content: "";
  top: 38%;
  left: 5%;
}
.testimonial_right_icon {
  position: absolute;
  content: "";
  top: 38%;
  right: 5%;
}
.swiper_slider {
  width: 749px;
  flex-shrink: 0;
  transform: translate3d(0px, 0, 0);
  position: relative;
  transition-property: transform;
  display: flex;
  margin-inline: auto;
}
/* <!-- Start_contact_section_CSS --> */
.contact_section {
  padding-top: 100px;
  /* margin-bottom: 100px; */
}
.contact_section_bg {
  background: url(./images/contact-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
}
.contact_wrapper {
  display: flex;
  align-items: center;
}
.contact_form {
  width: 100%;
  max-width: 570px;
  position: relative;
}
.margin_bottom_10 {
  margin-bottom: 10px;
}
.input_field_wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 30px;
}
.contact_input {
  padding-inline: 15px;
}
.contact__input_field {
  padding: 2px 20px;
  width: 50%;
  height: 45px;
  width: 261px;
  background: var(--color-white);
  border-radius: 10px;
  font-size: 16px;
  border: 2px solid transparent;
}
.contact__input_field:focus {
  border-color: var(--secondary-color);
  outline: none;
}
.contact__input_field::placeholder {
  font-size: 16px;
  line-height: 26px;
}
.contact_textarea_field {
  height: 150px;
  width: 100%;
  background: var(--color-white);
  border: 2px solid transparent;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 16px;
}
.contact_textarea_field:focus {
  border-color: var(--secondary-color);
  outline: none;
}
.contact_textarea_field::placeholder {
  font-size: 16px;
  line-height: 26px;
}
.contact_form_btn {
  margin-top: 30px;
  font-size: 18px;
  line-height: 48px;
  height: 52px;
  display: inline-block;
  padding: 0 40px;
  letter-spacing: 0.2px;
  border-radius: 25px;
  background: var(--secondary-color);
  color: var(--color-white);
  border: 0;
  font-weight: 500;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  min-width: 203px;
}
.contact_form_btn:hover {
  background: var(--primary-color);
  color: var(--color-white);
}
.contact_info {
  padding-left: 65px;
}
.contact_info_items {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
}
.contact_info_icons {
  width: 70px;
  height: 70px;
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
}
.contact_info_icons img {
  width: 25px;
}
.mail_icon img {
  width: 28px;
}
.contact_info_title {
  font-size: 25px;
  line-height: 28px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}
.contact_address {
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 8px;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.contact_info_desc a {
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 8px;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.contact_info_desc a:hover {
  color: var(--secondary-color);
}
.contact_info_items:last-child {
  margin-bottom: 0px;
}



/* <!-- Start_blog_section_CSS--> */
.blog_section {
  padding-top: 100px;
  padding-bottom: 94.5px;
}
.blog_section_inner, .inner_section_learning{
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.inner_section_learning{
  margin-top: 25px;
}
.blog_cards_wrapper {
  width: 370px;
  transition: 0.3s;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 20px;
}
.blog_cards_wrapper:hover {
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.2);
}
.blogs_card {
  width: 100%;
  text-decoration: none;
}
.blog_card_thumbnail {
  width: 100%;
  height: 254px;
  overflow: hidden;
}
.blog_card_thumbnail img {
  width: 100%;
  height: 100%;
}
.blog_card_contents {
  padding: 30px;
}
.blog_card_tag {
  background: var(--secondary-color);
  color: var(--color-white);
  font-size: 14px;
  padding: 4px 7px;
  border-radius: 5px;
  text-decoration: none;
  height: 25px;
}
.blog_card_title {
  color: var(--primary-color);
  font-size: 25px;
  line-height: 32px;
  font-weight: 500;
  margin-bottom: 12px;
  margin-top: 13px;
  transition: all 0.3s ease 0s;
}
.blog_card_title:hover {
  color: var(--secondary-color);
}
.blog_card_desc {
  color: var(--default-text-color);
  font-size: 15px;
  line-height: 27px;
  font-weight: 400;

  display: -webkit-box;
  max-width: 320px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* <!--Start_footer_section_CSS --> */
.footer-bg {
  background-image: url(./images/footer-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.footer_section {
  padding-top: 51px;
  padding-bottom: 51px;
}
.footer_content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_desc {
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
  color: var(--default-text-color);
}

.trems_and_privacy_link {
  display: flex;
  align-items: center;
  gap: 25px;
}
.footer_link {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  color: var(--default-text-color);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.footer_link:hover {
  color: var(--secondary-color);
}
/* modal_css */
.modal_backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
}
.outer_layer {
  overflow: hidden;
  border-radius: 10px;
}
.modal_backdrop.show {
  visibility: visible;
  opacity: 1;
  animation: slowdown 0.3s ease forwards;
}
@keyframes slowdown {
  0% {
    top: -20px;
  }
  100% {
    top: 10px;
  }
}
.fade {
  transition: opacity 0.15s linear;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0.5;
  z-index: 999;
}
.model_protfolio {
  position: relative;
  width: 750px;
  height: 650px;
  background-color: #fff;
  padding: 50px 30px 30px;
  z-index: 1099;
  border-radius: 10px;
  overflow-y: auto;
  border: 1px solid rgba(0, 0, 0, 0.2);
  position: relative;
}

.modal_close_btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  position: absolute;
  right: 20px;
  top: 10px;
  transition: all 0.3s ease 0s;
}
.modal_close_btn img {
  width: 14px;
}
.modal_close_btn:hover {
  background: var(--primary-color);
  opacity: 0.75;
}
.portfolio_modal_title {
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 30px;
}
.portfolio_modal_info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.portfolio_modal_info_wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  line-height: 20px;
  color: var(--default-text-color);
  margin-bottom: 12px;
  color: #8e8d8d;
}
.portfolio_modal_info_name {
  font-weight: 600;
  color: var(--default-text-color);
  text-decoration: none;
}
.link_hover {
  transition: all 0.3s ease 0s;
}
.link_hover:hover {
  color: var(--secondary-color) !important;
}
.margin_bottom_0 {
  margin-bottom: 0px !important;
}
.portfolio_modal_info_desc {
  font-size: 16px;
  line-height: 28px;
  color: var(--default-text-color);
  margin-bottom: 30px;
}
.portfolio_modal_info_desc span{
  padding-left: 22px;
  display: block;
  position: relative;
  margin-bottom: 2px;
}
.portfolio_modal_info_desc span::before{
  content: "";
  position: absolute;
  top: 10px;
  left: 8px;
  width:8px;
  height: 8px;
  border-radius: 100%;
  background-color: #000248;
}
.portfolio__modal_info_media img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* <!-- scroll_top --> */
.scroll_top {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 999999;
  outline: none;
  background-color: var(--secondary-color);
  color: var(--default-text-color);
  box-shadow: 0 2px 22px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  opacity: 1;
  transition: 0.3s ease-in;
  line-height: 1;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll_top svg {
  width: 25px;
}
.ionicon {
  color: #fff;
}
.blog_card_contents {
  padding-top: 34px;
}
/* mobile_nav */
.mobile_header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  min-width: 300px;
  background-color: var(--color-white) !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease 0s;
  opacity: 0;
  transform: translateX(-100%);
}
.closeNav {
  transform: translateX(0);
  opacity: 1;
  z-index: 9999999999999;
}
.top_header {
  padding: 25px 15px;
}
.top_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_close_btn {
  position: relative;
  align-self: center;
  width: 20px;
  height: 20px;
  padding: 0;
  text-indent: -9999px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.header_close_btn::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #000;
}
.header_close_btn::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  content: "";
  transform: rotate(-45deg);
  background-color: #000;
}
.nav_sm {
  overflow-y: auto;
  height: 100%;
}
.mob_nav_list {
  overflow: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 324px;
}
.mob_nav_links {
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}
.border_bottom_0 {
  border-bottom: 0px;
}
.menu_items_sm {
  display: block;
  padding: 15px 20px;
  text-transform: uppercase;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  line-height: 14px;
  transition: all 0.3s ease 0s;
}
.mob_nav_links:hover .menu_items_sm {
  color: var(--secondary-color);
}
.custom_scroll::-webkit-scrollbar {
  width: 4px;
  height: 2px;
}
.custom_scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.custom_scroll::-webkit-scrollbar-thumb {
  background: #cccccc;
}
.custom_scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}
/* modal_blog */
.modal_blog_img img {
  border-radius: 10px;
}
.modal_blog_img {
  margin-bottom: 30px;
}
.modal_blog {
  padding: 65px 30px 30px !important;
}
.blog_details_title {
  font-size: 28px;
  line-height: 32px;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 20px;
}
.blog_details_decs {
  font-size: 16px;
  line-height: 28px;
  color: var(--default-text-color);
  font-weight: 400;
  margin-bottom: 15px;
}
.comment_margin_left {
  margin-left: 50px;
}
.comment_input_field_wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}
.comment_input_field {
  width: 33.333%;
  margin-bottom: 20px;
}
.reviews_comment_reply_input {
  width: 100%;
  border: 1px solid #d9d9d9;
  height: 50px;
  border-radius: 5px;
  padding: 0 15px;
  font-size: 15px;
  color: var(--default-text-color);
}
.reviews_comment_reply_input::placeholder {
  font-size: 15px;
  color: var(--default-text-color);
}
.comment_textarea textarea {
  width: 100%;
  height: 100px;
  resize: none;
  padding: 12px 15px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  font-size: 15px;
  color: var(--default-text-color);
}
.comment_textarea textarea::placeholder {
  font-size: 15px;
  color: var(--default-text-color);
}
.blogs_comment_btn {
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  padding: 0 25px;
  font-weight: 400;
  height: 40px;
  border-radius: 50px;
  color: var(--color-white);
  background: var(--secondary-color);
  border: 0;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  margin-top: 18px;
}
.blogs_comment_btn:hover {
  background: var(--primary-color);
}
.margin_bottom_8 {
  margin-bottom: 8px !important;
}
.light_dark_btn {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: var(--color-white);
  border: 0;
  border-radius: 50%;
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
  border-radius: 1rem 0 0 1rem;
  z-index: 9;
  cursor: pointer;
}
.dark_mode_icon,
.light_mode_icon {
  width: 25px;
}
.light_mode_icon {
  display: none;
}
.bg_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  z-index: 999;
  pointer-events: none;
}
.body_overflow_hidden {
  overflow: hidden;
}
/* Resume_Css Started */
.resume_header {
  background-color: #fff !important;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.15) !important;
  width: 100% !important;
}
.resume_header_two {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.resume_header_img {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  overflow: hidden;
}
.resume_header_img img {
  width: 100%;
  height: 100%;
}
.padding-y-20 {
  padding-block: 20px;
}
.flexBox_center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.resume_contact_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.resume_heading {
  font-family: "Montserrat", sans-serif;
  color: #002b7f !important;
  margin-bottom: 6px;
  line-height: 51px !important;
  font-size: 49px !important;
}
.resume_subtitle {
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.info_text {
  color: #323232 !important;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  transition: all 0.3s ease;
  margin-left: 3px;
  font-weight: 700;
  font-size: 18px;
}
.info_text:hover {
  color: var(--secondary-color) !important;
}
.resume_container {
  margin-top: 100px;
}
.resume_header_content {
  width: 67%;
}
.sub_heading_resume {
  font-size: 25px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #002b7f !important;
  line-height: 18px;
}
.resume_experience_section {
  padding-top: 10px;
}
.aboutDesc{
    color: var(--primary-color);
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 2px;
}
.resume_experience {
  padding-top: 0px !important;
}
.margin-bottom {
  margin-bottom: 18px;
}
.resume_border_round {
  width: 18px;
  height: 18px;
  background-color: var(--primary-color);
  left: -8px;
  border: 3px solid #fff;
  top: 2px;
}
.resume_border_position {
  background: #b6b3b3;
  left: 0;
  top: 2px;
  bottom: 0px;
  width: 2px;
}
.resume_desc_wrapper {
  display: flex;
  gap: 14px;
}
.resume_pg_items {
  padding-left: 40px !important;
}
.resume_wrapper_tw {
  width: 80%;
  margin-top: -2px;
}
.title_exp {
  font-size: 18px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  color: #002b7f !important;
  line-height: 19px;
  white-space: nowrap;
  margin-bottom: 20px;
  margin-top: -3px;
}
.edu_title {
  margin-bottom: 15px !important;
}
.sub_title_exp {
  font-size: 17px;
  font-weight: 400 !important;
  font-family: "Open Sans", sans-serif;
  color: var(--default-text-color);
  line-height: 16px;
  white-space: nowrap;
}
.resume_exp_date {
  width: 15%;
}
.resume_pg_title {
  font-family: "Montserrat", sans-serif;
  font-size: 27px;
  line-height: 27px;
  color: #053286;
  font-weight: 400 !important;
  margin-bottom: 11px;
  margin-top: -3px;
}
.work_resume_title {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  color: var(--secondary-color);
  position: relative;
  margin-bottom: 10px;
  display: inline-block;
}
.resume_content_pg_desc {
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 16px;
  line-height: 20px !important;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  position: relative;
  padding-left: 23px;
  margin-bottom: 2px !important;
}
.padding_b_twenty {
  padding-bottom: 20px;
}
.resume_content_pg_desc::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #7d7d7d;
  top: 9px;
  left: 4px;
}
.section_projects {
  padding-top: 38px;
}
/* projects_css */
.project_name {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  line-height: 24px;
  font-weight: 400;
  color: #002b7f;
  position: relative;
  margin-bottom: 14px;
  display: inline-block;
  text-transform: uppercase;
}
.proj_link_text_wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.project_links_text {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  color: var(--primary-color);
  display: inline-block;
  margin-left: 6px;
}
.project_links_link {
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
}
.project_links_link:hover {
  color: var(--secondary-color) !important;
}
.project_link_flex {
  display: flex;
  align-items: center;
  gap: 30px;
}
.pg_text {
  color: var(--primary-color) !important;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}
.zamakan_desc_pr {
  padding-right: 10px;
}
.alpha_plus_pr {
  padding-right: 44px;
}
.ncdg_pr {
  padding-right: 36px;
}
.pg_text_list {
  margin-top: 10px;
}
.listed_text {
  padding-left: 24px;
  position: relative;
}
.listed_text::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #7d7d7d;
  top: 9px;
  left: 4px;
  position: absolute;
}
.prject_sub_container {
  margin-bottom: 20px;
}
.resume_pg_skill_wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 23px;
}
.pg_skill_text {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  color: var(--primary-color);
  padding-inline: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid #d7d4d4;
  transition: all 0.3s ease;
}
.pg_skill_text:hover {
  border-color: var(--secondary-color);
}
.resume_experience_wrapper {
  padding-top: 20px;
}
.exp_mb {
  margin-bottom: 22px;
}
.section_skill {
  padding-top: 60px;
}
.padding-b-100{
  padding-bottom: 100px;
}
.resume_exp_date_sm {
  display: none;
}
.hover_none:hover {
  color: var(--primary-color) !important;
}
.animation {
  animation: 0.2s ease all;
  position: relative;
  transform: translateY(130px);
}
@keyframes animation {
  0% {
    transform: translateY(130px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.animation {
  animation: animation 1s forwards;
}

.animationZoom {
  animation: 0.2s ease all;
}

.margin_tt {
  margin-top: 30px !important;
}
.height_FSD {
  height: 60px;
}

.margin__b {
  margin-bottom: 47px;
}
/* Form Validations Error */
.form-error {
  background-color: #fde8e8;
  border: 2px solid #e02424;
}
.form-error::placeholder {
  color: #e02424;
}
/* End Form Validation Error */
/* Loader */
.loader {
  display: none;
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #ee5f38;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  position: absolute;
  bottom: 12px;
  left: 74px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.form-submission {
  padding: 20px;
  margin-top: 20px;
  font-size: 18px;
  color: #000;
  background-color: #ddffdd;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
  display: none;
}
.closebtn {
    margin-left: 15px;
    color: #2E8B57;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
  }
  .closebtn:hover {
    color: #66CDAA;
  }
  .text_icon_wrapper svg{
    position: relative;
    top: 1px;
  }
  .e-commerce-height{
    min-height: 56px;
  }
.max-para{
  max-width: 417px;
  width: 100%;
}
/*tech-slider */
.tech_slider {
  width: 100%;
  height: 100px;
  overflow: hidden;
  position: relative;
  margin: auto;
}
.tech-slide-track {
  display: flex;
  animation: scroll 24s linear infinite;
  width: calc(250px * 26);
}
.tech_slider::before{
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: " ";
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  z-index: 999;
}
.tech_slider::after{
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: " ";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 120px;
  z-index: 999;
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.tech-slide {
  min-width: 250px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tech-slide img {
  width: fit-content;
  height: auto;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 13)); 
  }
}

/* Media_Qeury_Started */
@media (max-width: 1365px) {
  .animation_hero_left {
    left: 2.5px;
  }
  .download_cv_btn {
    height: 48px;
  }
  .hero_title {
    font-size: 52px;
    line-height: 60px;
  }
  .about_me_btn {
    font-size: 22px;
    line-height: 33px;
    padding: 7px 32px;
  }
  .hero_content {
    padding-left: 80px;
    padding-left: 80px;
    margin-top: -4px;
  }
  .service_card {
    padding: 40px 30px 30px;
  }
  .common_section_heading {
    font-size: 22px;
    line-height: 26px;
  }
  .common_section_heading_title {
    font-size: 40px;
    line-height: 50px;
  }
  .service_card_title {
    font-size: 22px;
    line-height: 25px;
  }
  .section_sub_title {
    font-size: 22px;
    line-height: 26px;
  }
  .section_heading_title {
    font-size: 40px;
    line-height: 50px;
  }
  .resume_content_title {
    font-size: 22px;
    line-height: 28px;
  }
  .skills_section {
    gap: 60px;
  }
  .testimonial_icons_wrapper img {
    width: 100px;
    height: 262px;
  }
  .testimonial_desc {
    font-size: 22px;
    line-height: 35px;
  }
  .swiper_slider {
    width: 749px;
  }
  .contact__input_field {
    width: 270px;
  }
  .contact_info_title {
    font-size: 22px;
  }
  .contact_info {
    padding-left: 60px;
  }
  .blog_card_title {
    font-size: 22px;
    line-height: 30px;
  }
  .animation_hero_right {
    right: 0px;
  }
  .complete_project_content span {
    font-size: 22px;
    line-height: 26px;
  }
  .complete_project_container {
    gap: 12px;
    height: 80px;
    bottom: 5px;
  }
  .main_header_right {
    height: 52px;
  }
  .complete_project-icom img {
    top: 2px;
    position: relative;
  }
  .complete_content {
    margin-top: 2px;
  }
  .hero_subtitle2 {
    font-size: 25px;
    line-height: 35px;
  }
  .social_icon_wrapper {
    margin-top: -2px;
  }
  .download_cv_btn img {
    margin-top: 1px;
  }
  .service_section {
    padding-bottom: 74px;
  }
  .thumbnail_container::before {
    width: 224px;
    height: 224px;
    bottom: -75px;
    left: -83px;
  }
  .about_experience {
    margin-top: 25px;
    text-align: center;
  }
  .resume__content_desc {
    margin-bottom: 21px;
  }
  .skill_text {
    padding-bottom: 21px;
  }
  .download_cv_btn {
    width: 189.55px;
  }
  .contact_form_btn {
    font-size: 18px;
    line-height: 48px;
    height: 48px;
    padding: 0 30px;
    margin-top: 33px;
  }
  .resume_pg_title {
    font-size: 22px !important;
    line-height: 28px !important;
  }
  .zamakan_desc_pr {
    padding-right: 0px;
  }
  .alpha_plus_pr {
    padding-right: 0px;
  }
  .ncdg_pr {
    padding-right: 0px;
  }
  .service_card_icon::before {
    top: -3px;
  }
  .e-commerce-height{
    min-height: auto;
  }
}
@media (max-width:1239px){
  .skills_section{
    padding-inline: 40px;
  }
}
@media (max-width: 1199px) {
  .container_xl {
    max-width: 992px;
  }
  .download_cv_btn {
    font-size: 16px;
    line-height: 45px;
  }
  .hero__thumbnail {
    max-width: 400px;
  }
  .hero_content_subtitle {
    font-size: 22px;
    line-height: 25px;
    font-weight: 400;
  }
  .hero_title {
    font-size: 45px;
    line-height: 50px;
  }
  .hero_subtitle2 {
    font-size: 22px;
    line-height: 32px;
  }
  .hero_content {
    width: calc(100% - 400px);
    padding-left: 50px;
  }
  .about_me_btn {
    font-size: 22px;
    line-height: 33px;
    padding: 7px 32px;
  }
  .hero_content_footer {
    gap: 20px;
  }
  .social__share_wrapper {
    gap: 20px;
  }
  .animation_hero_left {
    width: 70px;
    height: 70px;
  }
  .animation_hero_right {
    width: 70px;
    height: 70px;
  }
  .complete_project_content span {
    font-size: 22px;
    line-height: 26px;
  }
  .service_card {
    width: 31%;
    max-width: max-content;
    padding: 30px 25px 25px;
  }
 
  .services_card_desc {
    width: 100%;
    max-width: 250.66px;
    margin-bottom: 15px;
  }
  .service_card_icon {
    width: 70px;
    height: 70px;
  }
  .service_card_icon::before {
    width: 50px;
    height: 48px;
    transform: translateY(-89%);
    top: 10px;
  }
  .common_section_heading {
    font-size: 20px;
    line-height: 26px;
  }
  .common_section_heading_title {
    font-size: 34px;
    line-height: 43px;
    margin-top: 9px;
  }
  .height_FSD {
    height: 37px;
  }
  .service_card_title {
    font-size: 20px;
    line-height: 25px;
    margin-top: 20px;
  }
  .about_Section {
    padding: 80px 0px;
  }
  .section_sub_title {
    font-size: 20px;
    line-height: 26px;
  }
  .section_heading_title {
    font-size: 34px;
    line-height: 43px;
  }
  .about_info_title {
    font-size: 22px;
    line-height: 26px;
  }
  .about_info_items {
    font-size: 16px;
    line-height: 25px;
    padding-left: 24px;
  }
  .about_info_items a {
    font-size: 16px;
    line-height: 25px;
    padding-left: 24px;
    padding: 0px;
  }
  .about_content_wrapper {
    gap: 26px;
  }
  .btn_hire_me {
    padding: 0px 30px;
    font-size: 20px;
    line-height: 45px;
    margin-top: 25px;
  }
  .about_year_experience {
    font-size: 70px;
    line-height: 64px;
  }
  .experience_subtitle {
    font-size: 22px;
    line-height: 30px;
  }
  .thumbnail_container::before {
    width: 124px;
    height: 124px;
    bottom: -17px;
    left: -30px;
  }
  .hero_section_bg {
    height: 738.84px;
  }
  .hero_section_inner {
    padding: 120px 0 60px;
  }
  .resume_content_title {
    font-size: 20px;
    line-height: 25px;
  }
  .resume_contents_top {
    width: 100%;
    flex-direction: column;
    margin-bottom: 15px;
    gap: 10px 15px;
    align-items: flex-start;
  }
  .customHeight{
    height: auto;
    gap: 23px;
  }
  .resume__content_desc {
    margin-bottom: 21px;
    font-size: 16px;
    line-height: 26px;
  }
  .skills_section {
    gap:30px 50px;
  }
  .skills_section{
    padding-inline: 0px;
  }
  .skill_section_container {
    padding-bottom: 80px;
  }
  .portfolio_cards {
    width: 33%;
    max-width: 300.63px;
    height: 252.69px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    cursor: pointer;
    z-index: 11;
    transition: 0.3s ease;
  }
  .swiper_slider {
    width: 616px;
  }
  .testimonial_desc {
    font-size: 20px;
    line-height: 33px;
  }
  .testimonial__section {
    padding-block: 80px;
  }
  .contact_form {
    max-width: 466px;
  }
  .contact__input_field {
    width: 100%;
    max-width: 218px;
  }
  .contact_section_bg {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .contact_info_icons {
    width: 60px;
    height: 60px;
  }
  .blog_cards_wrapper {
    width: 300.66px;
  }
  .blog_card_thumbnail {
    height: 206.39px;
  }
  .blog_card_contents {
    padding: 25px;
    padding-top: 30px;
  }
  .blog_card_title {
    font-size: 20px;
    line-height: 28px;
  }
  .service_section {
    padding-top: 80px;
    padding-bottom: 53px;
  }
  .blog_section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .download_cv_btn {
    height: 45px;
    width: 176.42px;
  }
  .download_cv_btn button {
    font-size: 16px;
    line-height: 45px;
  }
  .main_header_right {
    height: 52px;
  }
  .nav_list {
    gap: 25px;
  }
  .download_cv_btn img {
    margin-top: 0px;
  }
  .hero_about {
    font-size: 18px;
  }
  .services_card_desc {
    min-height: 168px;
  }
  .about_experience {
    margin-top: 20px;
    text-align: center;
  }
  .brand_section {
    padding-block: 81px;
  }
  .experence_edu_section {
    padding-block: 80px;
  }
  .resume_content_subtitle {
    font-size: 12px;
  }
  .section_heading_desc {
    max-width: unset;
  }
  .contact__input_field {
    padding-top: 5px;
  }
  .contact_info {
    margin-top: -4px;
  }
  .footer_section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .portfolio_modal_title {
    font-size: 28px;
    line-height: 32px;
  }
  .blog_details_title {
    font-size: 25px;
    line-height: 30px;
  }
  .blog_details_decs {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .contact_form_btn {
    font-size: 16px;
    line-height: 45px;
    height: 45px;
    display: inline-block;
    padding: 0 30px;
    width: 169.69px;
  }
  .portfolio_section {
    padding-block: 80px;
  }
  .slick-dotted {
    max-width: 616px;
  }
  .resume_exp_date {
    width: 18%;
  }
  .resume_wrapper_tw {
    width: 82%;
  }
  .resume_heading {
    line-height: 46px !important;
    font-size: 46px !important;
  }
  .info_text {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
  }
  .text_icon_wrapper {
    margin-bottom: 4px;
  }
  .text_icon_wrapper svg{
    position: relative;
    top: 2px;
  }
  .sub_heading_resume {
    font-size: 22px;
    font-weight: 700;
  }
  .title_exp {
    font-size: 16px;
    font-weight: 500;
    line-height: 17px;
    margin-bottom: 17px;
  }
  .work_resume_title {
    font-size: 18px;
    line-height: 18px;
  }
  .project_name {
    font-size: 20px;
    line-height: 23px;
  }
  .pg_skill_text {
    font-size: 16px;
    line-height: 21px;
  }
  .resume_desc_wrapper {
    gap: 7px;
  }
  /* .contact_section {
    margin-bottom: 80px;
  } */
  .logo {
    font-size: 22px;
  }
  .logo span {
    font-size: 22px;
  }
  .resume__content_desc::before{
    top: 9px;
  }
  .margin__b {
    margin-bottom: 68px;
  }
  .e-commerce-height{
    min-height: 26px;
  }
  .animation_hero_right img {
    max-width: 60px;
  }
  .contact_info_wrapper {
    width: 100%;
    max-width: 238px;
  }
  .white-space{
    white-space: nowrap;
  }
  .certification_title {
    font-size: 20px;
    line-height: 25px;
  }
  .cyara-titile-height{
    height: auto !important;
    gap: 34px;
  }
}

@media (max-width: 991px) {
  .container_xl {
    max-width: 768px;
  }
  .main_header_right {
    display: none;
  }
  .hamburger_menu {
    display: inline-block;
  }
  .animation_hero_right img {
    max-width: 47px;
  }
  .hero__thumbnail {
    max-width: 300px;
  }
  .hero_content_subtitle {
    font-size: 18px;
    line-height: 22px;
  }
  .hero_title {
    font-size: 35px;
    line-height: 40px;
    margin-top: 8px;
  }
  .hero_subtitle2 {
    font-size: 18px;
    line-height: 26px;
  }
  .hero_content {
    width: calc(100% - 300px);
    padding-left: 40px;
    margin-top: -6px;
  }
  .hero_about {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 17px;
  }
  .about_me_btn {
    font-size: 18px;
    line-height: 27px;
    padding: 5px 25px;
  }
  .hero_content_footer {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .social__share_wrapper {
    gap: 20px;
  }
  .animation_hero_left {
    width: 60px;
    height: 60px;
  }
  .animation_hero_right {
    width: 60px;
    height: 60px;
  }
  .hero_section_inner {
    padding-top: 120px;
  }
  .main_header {
    padding-top: 29px;
    padding-bottom: 24px;
  }
  .complete_project_container {
    padding: 10px 30px 10px 15px;
    height: 71px;
  }
  .complete_project-icom img {
    width: 100%;
  }
  .complete_project_content span {
    font-size: 18px;
    line-height: 24px;
  }
  .complete_content {
    font-size: 15px;
    line-height: 25px;
  }
  .complete_project-icom {
    width: 35px;
  }
  .service_section {
    padding-block: 45px;
  }
  .section_heading_wrapper {
    flex-direction: column;
    text-align: center;
    gap: 20px 0px;
  }
  .common_section_heading {
    font-size: 18px;
    line-height: 24px;
  }
  .customHeight{
    height: auto;
  }
  .common_section_heading_title {
    font-size: 28px;
    line-height: 35px;
    margin-top: 10px;
  }
  .height_FSD {
    height: auto;
  }
  .section_heading_desc {
    font-size: 17px;
    line-height: 28px;
    max-width: 100% !important;
  }
  .service_card_title {
    font-size: 18px;
    line-height: 23px;
    margin-top: 18px;
    margin-bottom: 10px;
  }
  .services_card_desc {
    font-size: 15px;
    line-height: 26px;
    min-height: auto;
  }
  .experence_edu_section {
    padding-block: 70px;
  }
  .service_card {
    padding: 25px 20px 20px;
    max-width: 359px;
    width: 100%;
  }
  .service_section_inner {
    gap: 0px 20px;
  }
  .service_card_icon {
    width: 60px;
    height: 60px;
  }
  .service_card_icon::before {
    width: 45px;
    height: 40px;
  }
  .brand_section {
    padding-block: 70px;
  }
  .about__content {
    width: 100%;
    max-width: 418.88px;
  }
  .section_sub_title {
    font-size: 18px;
    line-height: 24px;
  }
  .section_heading_title {
    font-size: 28px;
    line-height: 35px;
  }
  .about_info_title {
    font-size: 20px;
    line-height: 24px;
  }
  .section_heading {
    margin-bottom: 25px;
  }
  .about_Section {
    padding: 70px 0px;
  }
  .about_thumbnail {
    width: 100%;
    max-width: 241px;
  }
  .about_info_items {
    font-size: 15px;
    line-height: 25px;
    padding: 8px 6px 8px 25px;
  }
  .about_info_items a {
    font-size: 15px;
    line-height: 25px;
    padding: 8px 6px 8px 25px;
    padding: 0px;
  }
  .about_contents {
    width: 100%;
  }
  .brand_logo_items {
    padding: 30px 25px;
    height: unset;
    height: 108px;
  }
  .brand_logo_items img {
    width: 100%;
    height: auto;
  }
  .ryzeo-brand-logo img{
    width: 100% !important;
    max-width: 45px !important;
  }
  .hero_section_bg {
    height: 650px;
  }
  .hero_section_inner {
    padding: 120px 0 60px;
  }
  .experence_edu_section {
    padding-block: 70px;
  }
  .resume_content_title {
    font-size: 18px;
    line-height: 23px;
  }
  .resume_content_subtitle {
    font-size: 12px;
  }
  .skills_section {
    flex-wrap: wrap;
  }
  .skill_step {
    width: 46%;
  }
  .hero_subtitle2 {
    margin-bottom: 8px;
  }
  .e-commerce-height{
    min-height: auto;
  }
  .skill_section_container {
    padding-bottom: 70px;
  }
  .portfolio_cards {
    width: 50%;
    max-width: 354px;
    height: 297.55px;
  }
  .testimonial__section {
    padding-top: 70px;
    padding-bottom: 75px;
  }
  .testimonial_desc {
    max-width: 531px;
    margin-inline: auto;
  }
  .rating_wrapper {
    margin-bottom: 4px;
  }
  .testimonial_contents {
    margin-bottom: 25px;
  }
  .testimonial_desc {
    font-size: 18px;
    line-height: 30px;
  }
  .testimonial_icons_wrapper img {
    width: 60px;
  }
  .testimonial_left_icon {
    left: 3%;
  }
  .testimonial_right_icon {
    right: 3%;
  }
  .contact_wrapper {
    flex-direction: column;
  }
  .contact_form {
    max-width: 100%;
  }
  .contact_info {
    padding-left: 0px;
    display: flex;
    margin-top: 30px;
    gap: 0px 15px;
    align-items: baseline;
    margin-right: auto;
  }
  .contact_section_bg {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .contact__input_field {
    max-width: 50%;
  }
  .input_field_wrapper {
    gap: 20px;
    margin-bottom: 25px;
  }
  .contact_form_btn {
    margin-top: 23px;
    font-size: 15px;
    line-height: 42px;
    height: 42px;
    display: inline-block;
    padding: 0 20px;
    width: 143px;
    min-width: unset;
  }
  .contact_info_icons {
    width: 50px;
    height: 50px;
    margin-top: -3px;
  }
  .contact_info_icons img {
    width: 20px;
  }
  .contact_info_title {
    font-size: 20px;
    line-height: 25px;
  }
  .contact_info_desc a,
  span {
    font-size: 16px;
    line-height: 30px;
  }
  .blog_cards_wrapper {
    width: 359px;
  }
  .blog_card_thumbnail {
    height: 246.44px;
  }
  .blog_section_inner {
    gap: 0px 20px;
  }
  .blog_card_title {
    margin-bottom: 10px;
  }
  .footer_section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .blog_section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .service_card_icon img {
    width: 39px;
  }
  .contact_sec_headings {
    text-align: left !important;
  }
  .common_section_heading_wrapper {
    max-width: 100%;
  }
  .margin_bottom_10 {
    margin-bottom: 8px !important;
  }
  .contact__input_field {
    padding-top: 4px;
  }
  .contact_address {
    font-size: 16px;
    line-height: 30px;
  }
  .blog_desc {
    max-width: 100% !important;
  }
  .blog_card_contents {
    padding-top: 23px;
  }
  .blog_card_title {
    margin-top: 7px;
  }
  .model_protfolio {
    width: 690px;
  }
  .portfolio_modal_title {
    margin-bottom: 25px;
  }
  .portfolio_modal_info_desc {
    margin-bottom: 25px;
  }
  .comment_margin_left {
    margin-left: 30px;
  }
  .comment_input_field_wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }
  .comment_input_field {
    width: 48.3%;
    gap: 0px 20px;
  }
  /* .contact_section {
    margin-bottom: 70px;
  } */
  .customHeight {
    gap: 30px;
  }
  .cyara-titile-height {
    gap: 34px;
  }
  .social_icon_wrapper {
    margin-top: 0px;
  }
  .follow_me_title {
    margin-top: 1px;
  }
  .portfolio_section {
    padding-block: 70px;
  }
  .slick-dotted {
    max-width: 531px;
  }
  .contact_info_items {
    align-items: center;
  }
  .resume_wrapper_tw {
    width: 70%;
  }
  .resume_exp_date {
    width: 25%;
  }
  .resume_heading {
    line-height: 42px !important;
    font-size: 42px !important;
  }
  .resume_h_title {
    font-size: 16px;
    line-height: 23px;
    font-weight: 600;
  }
  .resume_experience_section {
    padding-top: 20px;
  }
  .resume_pg_title {
    font-size: 26px;
    line-height: 26px;
  }
  .work_resume_title {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
  }
  .resume_experience_wrapper {
    padding-top: 0px;
  }
  .resume_desc_wrapper {
    gap: 5px;
  }
  .loader {
    bottom: 9px;
  }
  .padding-top-lg{
    margin-top: 98px !important;
  }
  .contact_info_wrapper {
    max-width: 246px;
  }
  .white-space{
    white-space: unset;
  }
  .certification_title {
    font-size: 18px;
    line-height: 23px;
}
}
@media (max-width: 767px) {
  .container_xl {
    max-width: 576px;
  }
  .main_header {
    padding-top: 29px;
    padding-bottom: 24px;
  }
  .hero_section_inner {
    flex-direction: column;
    gap: 39px 0px;
    padding-bottom: 60px;
  }
  .hero_title {
    margin-bottom: 10px;
  }
  .hero_subtitle2 {
    margin-bottom: 15px;
  }
  .hero__thumbnail {
    max-width: 350px;
  }
  .hero_content {
    width: 100%;
    max-width: 491.39px;
    text-align: center;
    padding-left: 0px;
  }
  .hero_content_subtitle {
    text-align: center;
  }
  .hero_content_footer {
    align-items: center;
  }
  .complete_content {
    line-height: 24px;
  }
  .complete_project-icom img {
    margin-top: 1px;
  }
  .hamburger_menu_icon svg {
    width: 32px;
  }
  .brand_section {
    padding-block: 60px;
  }
  .service_section {
    padding-block: 60px;
    padding-bottom: 38px;
  }
  .section_heading_wrapper {
    margin-bottom: 30px;
  }
  /* .contact_section {
    margin-bottom: 60px;
  } */
  .about_experience {
    margin-top: 15px;
  }
  .about_content_wrapper {
    gap: 42px;
  }
  .about_info_title {
    margin-bottom: 15px;
  }
  .common_section_heading {
    font-size: 17px;
  }
  .service_card {
    max-width: 263px;
    margin-bottom: 25px;
  }
  .section_heading_desc {
    font-size: 16px;
    line-height: 26px;
  }
  .common_section_heading_title {
    font-size: 25px;
    line-height: 32px;
  }
  .about_Section {
    padding: 60px 0px;
  }
  .about__thumbnail {
    width: 95%;
  }
  .thumbnail_container::before {
    width: 94px;
    height: 94px;
    bottom: -3px;
    left: -12px;
  }
  .about_year_experience {
    font-size: 50px;
    line-height: 54px;
  }
  .experience_subtitle {
    font-size: 20px;
    line-height: 26px;
  }
  .section_heading {
    margin-bottom: 25px;
  }
  .section_sub_title {
    font-size: 17px;
    line-height: 24px;
  }
  .section_heading_title {
    font-size: 25px;
    line-height: 32px;
  }
  .about_info_title {
    font-size: 18px;
    line-height: 24px;
  }
  .about_info_items {
    font-size: 17px;
    line-height: 25px;
    padding: 8px 10px 8px 25px;
    font-size: 15px;
    line-height: 25px;
  }
  .about_info_items a {
    font-size: 17px;
    line-height: 25px;
    padding: 8px 10px 8px 25px;
    font-size: 15px;
    line-height: 25px;
    padding: 0px;
  }
  .btn_hire_me {
    padding: 0px 25px;
    font-size: 16px;
    line-height: 38px;
    margin-top: 15px;
  }
  .about_thumbnail {
    width: 95%;
    max-width: 100%;
    margin-inline: auto;
  }
  .brand_section_inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
  }
  .brand_section_inner {
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
  }
  .brand_logo_items {
    padding: 25px 20px;
    height: 103px;
  }
  .brand_logo_items img {
    width: unset;
  }
  .brand_logo_wrapper:nth-child(2) {
    border-right: 0;
  }
  .brand_logo_wrapper:last-child {
    border-right: 0;
  }
  .brand_logo_items:last-child {
    border-bottom: 1px solid #dddddd;
  }
  .border-bottom-zero{
    border-bottom: 0px !important;
  }
  .brand_section {
    padding-block: 60px;
  }
  .hero_section_bg {
    height: auto;
  }
  .experence_edu_section {
    padding-block: 60px;
  }
  .experence_edu_innner_section {
    flex-direction: column;
    gap: 0px 60px;
  }
  .margin-custom-ryzeo{
    margin-bottom: 43px !important;
  }
  .border-position-right{
    top: -7px !important;
  }
  .resume__content_desc {
    margin-bottom: 15px;
  }
  .skill_section_container {
    padding-bottom: 60px;
  }
  .portfolio_cards {
    width: 50%;
    max-width: 258px;
    height: 216.86px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .portfolio_desc {
    display: none;
  }
  .portfolio_zoom {
    margin-bottom: 50px;
  }
  .portfolio_title {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0px;
  }
  .swiper_slider {
    width: 448px;
  }
  .testimonial_icons_wrapper img {
    width: 40px;
  }
  .testimonial_left_icon {
    left: 2%;
  }
  .testimonial_right_icon {
    right: 2%;
  }
  .testimonial__section {
    padding-block: 60px;
  }
  .contact_section_bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .contact_info {
    flex-wrap: wrap;
    gap: 0px 30px;
  }
  .padding-b-100{
    padding-bottom: 60px;
  }
  .blog_cards_wrapper {
    width: 263px;
  }
  .blog_card_thumbnail {
    height: 180.53px;
  }
  .blog_card_contents {
    padding: 25px 20px;
    padding-top: 23px;
  }
  .blog_card_title {
    font-size: 18px;
    line-height: 25px;
  }
  .footer_content {
    flex-direction: column;
    gap: 15px 0px;
  }
  .footer_desc {
    font-size: 16px;
    line-height: 26px;
  }
  .footer_link {
    font-size: 16px;
  }
  .trems_and_privacy_link {
    gap: 20px;
  }
  .footer_section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .blog_section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .about_content_wrapper {
    flex-direction: column-reverse;
  }
  .experence_edu_section {
    padding-block: 60px;
  }
  .testimonial__section {
    padding-bottom: 67px;
  }
  .contact__input_field {
    padding-top: 4px;
  }
  .contact_form_btn {
    line-height: 38px;
    height: 38px;
  }
  .contact_info_items {
    margin-bottom: 27px;
  }
  .model_protfolio {
    width: 100%;
    max-width: 720px;
  }
  .portfolio_modal_info {
    align-items: unset;
    gap: 0px 20px;
    margin-bottom: 15px;
    flex-direction: column;
  }
  .portfolio_modal_info_wrapper {
    margin-bottom: 0px;
  }
  .portfolio_modal_title {
    font-size: 25px;
    line-height: 30px;
  }
  .modal_backdrop {
    padding-inline: 20px;
  }
  .skill_step {
    width: 45%;
  }
  .modal_close_btn {
    width: 37px;
    height: 37px;
  }
  .modal_blog {
    padding: 60px 20px 30px !important;
  }
  .blog_details_title {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 15px;
  }
  .margin_bottom_8 {
    margin-bottom: 8px !important;
    font-size: 18px;
  }
  .resume_wrapper {
    width: 100%;
  }
  .portfolio_cards {
    display: flex;
  }
  .portfolio_section {
    padding-block: 60px;
  }
  .slikSlider {
    max-width: 560px !important;
    width: 560px !important;
  }
  .slick-dotted {
    max-width: 447px;
  }
  .contact_info_items {
    align-items: center;
  }
  .resume_header_two {
    flex-direction: column-reverse;
  }
  .resume_heading {
    line-height: 36px !important;
    font-size: 33px !important;
    text-align: center;
  }
  .resume_contact_wrapper {
    flex-direction: column;
    text-align: center;
  }
  .resume_subtitle {
    text-align: center;
  }
  .resume_wrapper_tw {
    max-width: 80%;
  }
  .resume_exp_date {
    width: 40%;
  }
  .work_resume_title {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
  }
  .resume_pg_skill_wrapper {
    gap: 14px 21px;
  }
  .project_name {
    margin-bottom: 10px;
  }
  .listed_text {
    padding-left: 18px;
  }
  .resume_border_round {
    width: 16px;
    height: 16px;
    left: -7px;
  }
  .icon_mail svg {
    left: unset;
  }
  .display_sm_none {
    display: none;
  }
  .margin__b {
    margin-bottom: unset;
  }
  .customHeight {
    gap: 10px;
  }
  .cyara-titile-height {
    gap: 10px;
  }
  .loader {
    height: 28px;
    width: 28px;
  }
  .aboutDesc{
    text-align: justify;
  }
  .contact_info_wrapper {
    max-width: 260px;
  }
  .certification_items {
    display: flex;
    gap: 24px;
  }
  .certification_text {
    font-size: 16px;
    line-height: 26px;
  }
  .certification-tags span {
    padding: 1px 17px;
  }
  .certification-tags {
    margin-bottom: 15px;
  }
  .certification-section {
    padding-bottom: 60px;
  }
  .certification_logo {
    width: 130px;
    min-width: 130px;
    height: 130px;
  }
  .padding-top-lg{
    margin-top: 43px !important;
  }
}
@media (max-width: 674px) {
  .comment_input_field {
    width: 47%;
    gap: 0px 20px;
  }
}
@media (max-width: 575px) {
  .hero_about {
    font-size: 16px;
    line-height: 24px;
  }
  .service_card {
    width: 100%;
    max-width: 100%;
  }
  .services_card_desc {
    max-width: 100%;
  }
  .about_info_items {
    width: 100%;
  }
  .section_heading_title {
    font-size: 23px;
    line-height: 32px;
  }
  .about_info_title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
  }
  .brand_logo_items img {
    max-width: 100%;
  }
  .hero_section_bg {
    height: auto;
  }
  .resume_content_title {
    font-size: 17px;
    line-height: 20px;
  }
  .portfolio_cards {
    width: 47.3%;
    max-width: 47.3%;
    height: auto;
  }
  .portfolio_card_wrapper {
    gap: 0px 20px;
    justify-content: space-between;
  }
  .swiper_slider {
    width: 100%;
  }
  .portfolio_cards:hover .portfolio_zoom {
    margin-bottom: 0px;
  }
  .portfolio_contents {
    gap: 10px;
  }
  .input_field_wrapper {
    flex-direction: column;
    margin-bottom: 25px;
    gap: 25px 30px;
  }
  .contact__input_field {
    max-width: 100%;
  }
  .blog_cards_wrapper {
    width: 100%;
  }
  .blog_card_thumbnail {
    min-height: 271.16px;
    height: auto;
  }
  .testimonial_desc {
    max-width: 447px;
    margin-inline: auto;
  }
  .testimonial__section {
    padding-bottom: 67px;
  }
  .contact__input_field {
    padding-top: 5px;
  }
  .model_protfolio {
    height: 553px;
  }
  .modal_close_btn {
    width: 32px;
    height: 32px;
  }
  .modal_close_btn img {
    width: 11px;
  }
  .skill_step {
    width: 100%;
  }
  .comment_input_field {
    width: 100%;
    margin-bottom: 15px;
  }
  .comment_input_field_wrapper {
    gap: 0px 20px;
  }
  .portfolio_zoom {
    margin-bottom: -30px;
  }
  .portfolio_cards:hover portfolio_zoom {
    margin-bottom: 2px;
  }
  .portfolio_contents {
    bottom: 11px !important;
  }
  .portfolio_title {
    font-size: 16px;
    line-height: 18px;
  }
  .slikSlider {
    max-width: 100% !important;
    width: 100% !important;
  }
  .testimonial_wrapper {
    margin-right: 0px !important;
  }
  .slick-dotted {
    max-width: 359px;
  }
  .resume_exp_date {
    display: none;
  }
  .resume_pg_items {
    padding-left: 27px !important;
  }
  .resume_wrapper_tw {
    max-width: 100%;
  }
  .resume_exp_date_sm {
    display: flex !important;
  }
  .title_exp {
    font-size: 16px;
    font-weight: 500;
  }
  .sub_title_exp {
    margin-left: 20px;
  }
  .resume_exp_date {
    width: 100%;
  }
  .resume_content_pg_desc {
    padding-left: 18px;
    margin-bottom: 2px !important;
  }
  .resume_heading {
    line-height: 26px !important;
    font-size: 24px !important;
    text-align: center;
  }
  .resume_header_content {
    width: 100%;
  }
  .personal_info_wrapper{
    flex-direction: column;
  }
  .info_bio_block{
    width: 100%;
  }
  .contact_info_wrapper{
    max-width: 100%;
  }
  .certification_items {
    display: flex;
    gap: 25px 60px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .certification_logo {
    margin-inline: auto;
  }
  .certification_title {
    font-size: 17px;
    line-height: 24px;
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
  }
  .certification-tags {
    justify-content: center;
  }
  .marquee_tech_slider img {
    margin-right: 125px;
  }
  .mb-zero{
    margin-bottom: 0px !important;
  }
  .blog_cards_wrapper:last-child{
    margin-bottom: 0px !important;
  }
  .certification_block{
    margin-bottom: 48px;
  }
  .resume_icons{
    width: 45px;
    height: 45px;
    min-width: 45px;
  }
  .resume_icons img{
    width: 22px;
  }
}
@media (max-width: 479px) {
  .hero__thumbnail {
    max-width: 449px;
    padding-inline: 20px;
  }
  .animation_hero_right {
    right: 0;
  }
  .main_header {
    padding-bottom: 24px;
  }
  .hero_section_inner {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .complete_project_container {
    right: 20px;
  }
  .complete_content {
    margin-top: 2px;
  }
  .hero_title {
    margin-top: 8px;
    margin-bottom: 10px;
    font-size: 28px;
    line-height: 32px;
  }
  .portfolio_cards {
    width: 46.3%;
    height: auto;
    max-height: auto;
  }
  .hero_subtitle2 {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 26px;
  }
  .hero_about {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 24px;
  }
  .follow_me_title {
    line-height: 24px;
  }
  .social_icon_wrapper {
    gap: 10px;
  }
  .hero_content {
    width: 98%;
    margin-top: -4px;
  }
  .social__share_wrapper {
    flex-wrap: wrap;
  }
  .common_section_heading_title {
    font-size: 23px;
    line-height: 32px;
  }
  .resume_items {
    padding-left: 25px;
    margin-bottom: 33px;
  }
  .resume_icons {
    min-width: 45px;
    height: 45px;
  }
  .resume_items_inner {
    gap: 15px;
  }
  .testimonial_icons_wrapper {
    display: none;
  }
  .about_info_items {
    width: 100%;
  }
  .testimonial_desc {
    max-width: 100%;
  }
  .blog_card_contents {
    padding: 25px 20px !important;
  }
  .portfolio_modal_title {
    font-size: 22px;
    line-height: 24px;
  }
  .model_protfolio {
    padding: 50px 15px 30px;
  }
  .modal_backdrop {
    padding-inline: 10px;
  }
  .skill_field.width_custom_4::after {
    width: 98%;
  }
  .skill_field.width_custom_3::after {
    width: 97%;
  }
  .modal_blog {
    padding: 60px 10px 30px !important;
  }
  .modal_blog_img {
    margin-bottom: 25px;
  }
  .about_info_items::before {
    top: 50%;
  }
  .about_info_items::after {
    top: 50%;
  }
  .portfolio_cards:hover .portfolio_zoom {
    margin-bottom: -10px;
  }
  .portfolio_contents {
    gap: 5px;
  }
  .portfolio_contents {
    bottom: 9px !important;
  }

  .portfolio_zoom svg {
    width: 28px;
  }
  .mobile_header {
    max-width: 300px;
  }
  .slick-dotted {
    max-width: 100%;
  }
  .sub_title_exp {
    margin-top: -3px;
  }
  .resume_pg_title {
    font-size: 21px !important;
    line-height: 26px !important;
  }
  .tech_slider::before{
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    content: " ";
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    z-index: 999;
  }
  .tech_slider::after{
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    content: " ";
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    z-index: 999;
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }
}
@media (max-width: 375px) {
  .blog_card_thumbnail {
    /* min-height: 199.08px; */
    min-height: auto;
  }
  .resume_contents_pg {
    width: 100%;
  }
  .resume_exp_date {
    justify-content: space-between;
  }
  .sub_title_exp {
    white-space: unset;
  }
  .mobile_header {
    min-width: unset;
  }
  .mobile_header{
    max-width: 260px;
  }
  .contact_info_desc a, span{
    word-break: break-all;
  }
  .certification-tags span {
    padding: 1px 13px;
  }
  .icon-hero-b {
    top: unset !important;
    bottom: 115px !important;
  }
}
@media (max-width: 319px) {
  .portfolio_card_wrapper {
    justify-content: center;
  }
  .certification-tags span {
    padding: 6px 13px;
  }
  .certification-tags span{
    line-height: 16px;
  }
  .resume_items_inner {
    gap: 15px;
    flex-direction: column;
  }
  .logo {
    font-size: 8vw;
  }
  .logo span{
    font-size: 8vw;
  }
  .complete_project_container {
    position: unset;
    padding: 10px;
    height: auto;
    width: 90%;
  }
}
@media (min-width: 768px) {
  .display_lg_none {
    display: none;
  }
}
@media (min-width: 1366px) {
  .complete_project_container {
    height: 80px;
    bottom: 5px;
  }
  .complete_project-icom img {
    position: relative;
    top: 2px;
  }
  .complete_content {
    margin-top: 2px;
  }
  .hero_content {
    margin-top: -4px;
  }
  .follow_me_title {
    margin-top: -1px;
  }
  .service_section {
    padding-bottom: 70px;
  }
  .btn_hire_me {
    height: 52px;
  }
  .thumbnail_container::before {
    width: 224px;
    height: 224px;
    bottom: -75px;
    left: -83px;
  }
  .about_experience {
    margin-top: 25px;
    text-align: center;
  }
  .resume__content_desc {
    margin-bottom: 21px;
  }
  .skill_text {
    padding-bottom: 21px;
  }
  .testimonial_left_icon,
  .testimonial_right_icon {
    width: 200px;
    height: 260px;
  }
  .rating_wrapper {
    gap: 0px 7px;
  }
  .rating_wrapper {
    margin-bottom: 13px;
  }
  .section_heading_desc {
    max-width: 100%;
  }
  .contact__input_field {
    width: 50%;
  }
  .contact_info {
    padding-left: 80px;
  }
  .contact_form_btn {
    margin-top: 53px;
  }
  .contact__input_field {
    padding-top: 2px;
  }
  .blog_card_title {
    margin-top: 13px;
  }
  .blog_card_contents {
    padding-top: 34px;
  }
  .footer_content {
    height: 26px;
  }
}
@media (min-width: 1399px) {
  .hero_section_bg {
    height: 838.7px;
  }

  .hero_section_inner {
    display: flex;
    align-items: center;
    padding: 140px 0px 70px;
  }
  .download_cv_btn img {
    margin-top: 1px;
  }
  .services_card_desc {
    min-height: 140px;
  }
}
@media (min-width: 1600px) {
  .hero_section_bg {
    height: 917.59px;
  }
  .main_header {
    padding-block: 25px;
  }
  .section_heading_wrapper {
    margin-bottom: 50px;
  }
  .common_section_heading_title {
    font-size: 46px;
    line-height: 55px;
    margin-top: 10px;
  }
  .model_protfolio {
    position: relative;
    width: 750px;
    height: 100%;
    max-height: 750px;
  }
  .hero_content {
    padding-left: 135px;
    width: calc(100% - 486px);
  }
  .animation_hero_right {
    right: -50px;
  }
  .hero_section_inner {
    padding: 160px 0px 80px;
  }
  .complete_project_container {
    bottom: 4px;
  }
  .complete_project_container {
    padding: 17px 30px 13px 15px;
  }

  .hero__thumbnail {
    position: relative;
    width: 100%;
    max-width: 485px;
  }
  .complete_content {
    margin-top: 0px;
  }
  .complete_project-icom img {
    top: 1px;
  }
  .hero_content {
    padding-left: 100px;
    width: calc(100% - 485px);
    margin-top: -3px;
  }
  .follow_me_title {
    margin-top: 1px;
  }
  .service_section {
    padding-bottom: 70px;
  }
  .section_heading_title {
    font-size: 46px;
    line-height: 55px;
  }
  .about_contents {
    width: 56.33%;
    min-width: 535px;
  }
  .about_info_items {
    padding: 10px 4px 10px 25px;
  }
  .btn_hire_me {
    height: 52px;
  }
  .thumbnail_container img {
    width: unset;
  }
  .thumbnail_container::before {
    width: 224px;
    height: 224px;
    bottom: -75px;
    left: -83px;
  }
  .about_experience {
    margin-top: 25px;
    text-align: center;
  }
  .resume__content_desc {
    line-height: 29px;
  }
  .rating_wrapper {
    gap: 0px 7px;
  }
  .rating_wrapper {
    margin-bottom: 14px;
  }
  .testimonial_left_icon {
    top: 38%;
    left: 8%;
  }
  .testimonial_right_icon {
    top: 38%;
    right: 8%;
  }
  .testimonial_left_icon,
  .testimonial_right_icon {
    width: 260px;
    height: 260px;
  }
  .section_heading_desc {
    max-width: 100%;
  }
  .contact_info {
    padding-left: 80px;
  }
  .contact__input_field {
    width: 50%;
  }
  .contact_info {
    margin-top: 2px;
  }
  .contact_form_btn {
    margin-top: 53px;
  }
  .resume__content_desc {
    margin-bottom: 19px;
  }
  .hero_about {
    margin-bottom: 31px;
  }
  .contact_section_bg {
    padding: 100px 0 100px;
  }
  .contact_textarea_field {
    padding: 10px 19px;
  }
  .hero_content_footer {
    position: relative;
    top: -1px;
  }
  .resume_content_pg_desc {
    font-size: 16px;
    line-height: 20px;
  }
}
