It due to the layout with/without hero section.
You can add this custom css code:
.t3-header .headright {
border-left: 0;
}
.t3-header .headright .head-search .search, .t3-header .headright .head-search .form-search {
height: 90px;
width: 90px;
}
.t3-header .headright .head-search .search .form-control,
.t3-header .headright .head-search .form-search .form-control,
.t3-header .headright .head-search .search .search-query,
.t3-header .headright .head-search .form-search .search-query {
background-position: 35px center;
background-color: transparent;
border: 0;
border-radius: 0;
border-left: 1px solid rgb(255 255 255 / 20%);
color: #000000;
padding: 0 0 0 90px;
height: 90px;
width: 90px;
}
.t3-header .headright .head-search .search .form-control:focus,
.t3-header .headright .head-search .form-search .form-control:focus,
.t3-header .headright .head-search .search .search-query:focus,
.t3-header .headright .head-search .form-search .search-query:focus {
border: 0;
border-left: 1px solid rgba(255,255,255,0.2);
width: 210px;
padding-right: 25px;
-webkit-transition: all 500ms;
-o-transition: all 500ms;
transition: all 500ms;
}
into the file: root/templates/ja_morgan/css/custom.css (Create this file if it doesn't exist now)
Regards